ManagementPolicyProperties

The Storage Account ManagementPolicy properties.

AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

Properties

Name Type Description
lastModifiedTime string Returns the date and time the ManagementPolicies was last modified.
policy object The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts.
View JSON Schema on GitHub

JSON Schema

azure-storage-account-management-policy-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-schema/azure-storage-account-management-policy-properties-schema.json",
  "title": "ManagementPolicyProperties",
  "description": "The Storage Account ManagementPolicy properties.",
  "properties": {
    "lastModifiedTime": {
      "description": "Returns the date and time the ManagementPolicies was last modified.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "policy": {
      "$ref": "#/definitions/ManagementPolicySchema",
      "description": "The Storage Account ManagementPolicy, in JSON format. See more details in: https://docs.microsoft.com/en-us/azure/storage/common/storage-lifecycle-managment-concepts."
    }
  },
  "type": "object",
  "required": [
    "policy"
  ]
}