ExportRequest Constructors

Definition

Overloads

ExportRequest()

Initializes a new instance of the ExportRequest class.

ExportRequest(StorageKeyType, String, String, String, String, Nullable<AuthenticationType>)

Initializes a new instance of the ExportRequest class.

ExportRequest()

Initializes a new instance of the ExportRequest class.

public ExportRequest ();
Public Sub New ()

Applies to

ExportRequest(StorageKeyType, String, String, String, String, Nullable<AuthenticationType>)

Initializes a new instance of the ExportRequest class.

public ExportRequest (Microsoft.Azure.Management.Sql.Fluent.Models.StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, Microsoft.Azure.Management.Sql.Fluent.Models.AuthenticationType? authenticationType = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.ExportRequest : Microsoft.Azure.Management.Sql.Fluent.Models.StorageKeyType * string * string * string * string * Nullable<Microsoft.Azure.Management.Sql.Fluent.Models.AuthenticationType> -> Microsoft.Azure.Management.Sql.Fluent.Models.ExportRequest
Public Sub New (storageKeyType As StorageKeyType, storageKey As String, storageUri As String, administratorLogin As String, administratorLoginPassword As String, Optional authenticationType As Nullable(Of AuthenticationType) = Nothing)

Parameters

storageKeyType
StorageKeyType

The type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'

storageKey
String

The storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?."

storageUri
String

The storage uri to use.

administratorLogin
String

The name of the SQL administrator.

administratorLoginPassword
String

The password of the SQL administrator.

authenticationType
Nullable<AuthenticationType>

The authentication type. Possible values include: 'SQL', 'ADPassword'

Applies to