ImmutabilityPolicyProperties

The properties of an ImmutabilityPolicy of a blob container.

AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

Properties

Name Type Description
etag string ImmutabilityPolicy Etag.
properties object The properties of an ImmutabilityPolicy of a blob container.
updateHistory array The ImmutabilityPolicy update history of the blob container.
View JSON Schema on GitHub

JSON Schema

azure-storage-account-immutability-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-immutability-policy-properties-schema.json",
  "title": "ImmutabilityPolicyProperties",
  "description": "The properties of an ImmutabilityPolicy of a blob container.",
  "properties": {
    "etag": {
      "description": "ImmutabilityPolicy Etag.",
      "readOnly": true,
      "type": "string"
    },
    "properties": {
      "$ref": "#/definitions/ImmutabilityPolicyProperty",
      "description": "The properties of an ImmutabilityPolicy of a blob container.",
      "x-ms-client-flatten": true
    },
    "updateHistory": {
      "description": "The ImmutabilityPolicy update history of the blob container.",
      "items": {
        "$ref": "#/definitions/UpdateHistoryProperty"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}