AzureStorageInfoValue Constructors

Definition

Overloads

AzureStorageInfoValue()

Initializes a new instance of the AzureStorageInfoValue class.

AzureStorageInfoValue(Nullable<AzureStorageType>, String, String, String, String, Nullable<AzureStorageState>)

Initializes a new instance of the AzureStorageInfoValue class.

AzureStorageInfoValue()

Initializes a new instance of the AzureStorageInfoValue class.

public AzureStorageInfoValue ();
Public Sub New ()

Applies to

AzureStorageInfoValue(Nullable<AzureStorageType>, String, String, String, String, Nullable<AzureStorageState>)

Initializes a new instance of the AzureStorageInfoValue class.

public AzureStorageInfoValue (Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageType? type = default, string accountName = default, string shareName = default, string accessKey = default, string mountPath = default, Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageState? state = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageInfoValue : Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageType> * string * string * string * string * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageState> -> Microsoft.Azure.Management.AppService.Fluent.Models.AzureStorageInfoValue
Public Sub New (Optional type As Nullable(Of AzureStorageType) = Nothing, Optional accountName As String = Nothing, Optional shareName As String = Nothing, Optional accessKey As String = Nothing, Optional mountPath As String = Nothing, Optional state As Nullable(Of AzureStorageState) = Nothing)

Parameters

type
Nullable<AzureStorageType>

Type of storage. Possible values include: 'AzureFiles', 'AzureBlob'

accountName
String

Name of the storage account.

shareName
String

Name of the file share (container name, for Blob storage).

accessKey
String

Access key for the storage account.

mountPath
String

Path to mount the storage within the site's runtime environment.

state
Nullable<AzureStorageState>

State of the storage account. Possible values include: 'Ok', 'InvalidCredentials', 'InvalidShare'

Applies to