Share via


JobStorageAccount Constructors

Definition

Overloads

JobStorageAccount()

Initializes a new instance of the JobStorageAccount class.

JobStorageAccount(String, String, String)

Initializes a new instance of the JobStorageAccount class.

JobStorageAccount()

Initializes a new instance of the JobStorageAccount class.

public JobStorageAccount ();
Public Sub New ()

Applies to

JobStorageAccount(String, String, String)

Initializes a new instance of the JobStorageAccount class.

public JobStorageAccount (string accountName = default, string accountKey = default, string authenticationMode = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.JobStorageAccount : string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.JobStorageAccount
Public Sub New (Optional accountName As String = Nothing, Optional accountKey As String = Nothing, Optional authenticationMode As String = Nothing)

Parameters

accountName
String

The name of the Azure Storage account. Required on PUT (CreateOrReplace) requests.

accountKey
String

The account key for the Azure Storage account. Required on PUT (CreateOrReplace) requests.

authenticationMode
String

Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'

Applies to