Azure Storage Account · JSON Structure

Azure Storage Account Encryption Structure

The encryption settings on the storage account.

Type: object Properties: 3 Required: 1
AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

Encryption is a JSON Structure definition published by Azure Storage Account, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

keySource keyvaultproperties services

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-structure/azure-storage-account-encryption-structure.json",
  "description": "The encryption settings on the storage account.",
  "properties": {
    "keySource": {
      "default": "Microsoft.Storage",
      "description": "The encryption keySource (provider). Possible values (case-insensitive):  Microsoft.Storage, Microsoft.Keyvault",
      "enum": [
        "Microsoft.Storage",
        "Microsoft.Keyvault"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "KeySource"
      }
    },
    "keyvaultproperties": {
      "$ref": "#/definitions/KeyVaultProperties",
      "description": "Properties provided by key vault.",
      "x-ms-client-name": "KeyVaultProperties"
    },
    "services": {
      "$ref": "#/definitions/EncryptionServices",
      "description": "List of services which support encryption."
    }
  },
  "type": "object",
  "required": [
    "keySource"
  ],
  "name": "Encryption"
}