AutoStorageProperties Constructors

Definition

Overloads

AutoStorageProperties()

Initializes a new instance of the AutoStorageProperties class.

AutoStorageProperties(String, DateTime, Nullable<AutoStorageAuthenticationMode>, ComputeNodeIdentityReference)

Initializes a new instance of the AutoStorageProperties class.

AutoStorageProperties()

Initializes a new instance of the AutoStorageProperties class.

public AutoStorageProperties ();
Public Sub New ()

Applies to

AutoStorageProperties(String, DateTime, Nullable<AutoStorageAuthenticationMode>, ComputeNodeIdentityReference)

Initializes a new instance of the AutoStorageProperties class.

public AutoStorageProperties (string storageAccountId, DateTime lastKeySync, Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode? authenticationMode = default, Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference nodeIdentityReference = default);
new Microsoft.Azure.Management.Batch.Models.AutoStorageProperties : string * DateTime * Nullable<Microsoft.Azure.Management.Batch.Models.AutoStorageAuthenticationMode> * Microsoft.Azure.Management.Batch.Models.ComputeNodeIdentityReference -> Microsoft.Azure.Management.Batch.Models.AutoStorageProperties
Public Sub New (storageAccountId As String, lastKeySync As DateTime, Optional authenticationMode As Nullable(Of AutoStorageAuthenticationMode) = Nothing, Optional nodeIdentityReference As ComputeNodeIdentityReference = Nothing)

Parameters

storageAccountId
String

The resource ID of the storage account to be used for auto-storage account.

lastKeySync
DateTime

The UTC time at which storage keys were last synchronized with the Batch account.

authenticationMode
Nullable<AutoStorageAuthenticationMode>

The authentication mode which the Batch service will use to manage the auto-storage account. Possible values include: 'StorageKeys', 'BatchAccountManagedIdentity'

nodeIdentityReference
ComputeNodeIdentityReference

The reference to the user assigned identity which compute nodes will use to access auto-storage.

Applies to