Azure Container Instances · JSON Structure

Azure Container Instances Azure File Volume Structure

The properties of the Azure File volume. Azure File shares are mounted as volumes.

Type: object Properties: 4 Required: 2
AzureCloudContainer InstancesContainersMicrosoftServerless

AzureFileVolume is a JSON Structure definition published by Azure Container Instances, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

readOnly shareName storageAccountKey storageAccountName

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-container-instances/refs/heads/main/json-structure/azure-container-instances-azure-file-volume-structure.json",
  "description": "The properties of the Azure File volume. Azure File shares are mounted as volumes.",
  "type": "object",
  "properties": {
    "readOnly": {
      "description": "The flag indicating whether the Azure File shared mounted as a volume is read-only.",
      "type": "boolean"
    },
    "shareName": {
      "description": "The name of the Azure File share to be mounted as a volume.",
      "type": "string"
    },
    "storageAccountKey": {
      "description": "The storage account access key used to access the Azure File share.",
      "type": "string"
    },
    "storageAccountName": {
      "description": "The name of the storage account that contains the Azure File share.",
      "type": "string"
    }
  },
  "required": [
    "shareName",
    "storageAccountName"
  ],
  "name": "AzureFileVolume"
}