Azure Storage Account · JSON Structure

Azure Storage Account Azure Files Identity Based Authentication Structure

Settings for Azure Files identity based authentication.

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

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

Properties

activeDirectoryProperties directoryServiceOptions

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-azure-files-identity-based-authentication-structure.json",
  "description": "Settings for Azure Files identity based authentication.",
  "properties": {
    "activeDirectoryProperties": {
      "$ref": "#/definitions/ActiveDirectoryProperties",
      "description": "Required if choose AD."
    },
    "directoryServiceOptions": {
      "description": "Indicates the directory service used.",
      "enum": [
        "None",
        "AADDS",
        "AD"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "DirectoryServiceOptions"
      }
    }
  },
  "type": "object",
  "required": [
    "directoryServiceOptions"
  ],
  "name": "AzureFilesIdentityBasedAuthentication"
}