ImportExtensionRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ImportExtensionRequest() |
Initializes a new instance of the ImportExtensionRequest class. |
ImportExtensionRequest(StorageKeyType, String, String, String, String, String, String, Nullable<AuthenticationType>) |
Initializes a new instance of the ImportExtensionRequest class. |
ImportExtensionRequest()
Initializes a new instance of the ImportExtensionRequest class.
public ImportExtensionRequest ();
Public Sub New ()
Applies to
ImportExtensionRequest(StorageKeyType, String, String, String, String, String, String, Nullable<AuthenticationType>)
Initializes a new instance of the ImportExtensionRequest class.
public ImportExtensionRequest (Microsoft.Azure.Management.Sql.Fluent.Models.StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default, string type = default, Microsoft.Azure.Management.Sql.Fluent.Models.AuthenticationType? authenticationType = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.ImportExtensionRequest : Microsoft.Azure.Management.Sql.Fluent.Models.StorageKeyType * string * string * string * string * string * string * Nullable<Microsoft.Azure.Management.Sql.Fluent.Models.AuthenticationType> -> Microsoft.Azure.Management.Sql.Fluent.Models.ImportExtensionRequest
Public Sub New (storageKeyType As StorageKeyType, storageKey As String, storageUri As String, administratorLogin As String, administratorLoginPassword As String, Optional name As String = Nothing, Optional type As String = Nothing, 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.
- name
- String
The name of the extension.
- type
- String
The type of the extension.
- authenticationType
- Nullable<AuthenticationType>
The authentication type. Possible values include: 'SQL', 'ADPassword'
Applies to
Azure SDK for .NET