AzureStorageInfoValue Class
Azure Files or Blob Storage access information value for dictionary storage.
Constructor
AzureStorageInfoValue(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
type
|
Type of storage. Known values are: "AzureFiles" and "AzureBlob". |
|
account_name
|
Name of the storage account. |
|
share_name
|
Name of the file share (container name, for Blob storage). |
|
access_key
|
Access key for the storage account. |
|
mount_path
|
Path to mount the storage within the site's runtime environment. |
|
state
|
State of the storage account. Known values are: "Ok", "InvalidCredentials", "InvalidShare", and "NotValidated". |
|
protocol
|
Mounting protocol to use for the storage account. Known values are: "Smb", "Http", and "Nfs". |
Attributes
access_key
Access key for the storage account.
access_key: str | None
account_name
Name of the storage account.
account_name: str | None
mount_path
Path to mount the storage within the site's runtime environment.
mount_path: str | None
protocol
"Smb", "Http", and "Nfs".
protocol: str | _models.AzureStorageProtocol | None
share_name
Name of the file share (container name, for Blob storage).
share_name: str | None
state
"Ok", "InvalidCredentials", "InvalidShare", and "NotValidated".
state: str | _models.AzureStorageState | None
type
"AzureFiles" and "AzureBlob".
type: str | _models.AzureStorageType | None