Class ExportRequest
java.lang.Object
com.microsoft.azure.management.sql.ExportRequest
- Direct Known Subclasses:
ImportRequest
Export database parameters.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the name of the SQL administrator.Get the password of the SQL administrator.Get the authentication type.Get the storage key to use.Get the type of the storage key to use.Get the storage uri to use.withAdministratorLogin
(String administratorLogin) Set the name of the SQL administrator.withAdministratorLoginPassword
(String administratorLoginPassword) Set the password of the SQL administrator.withAuthenticationType
(AuthenticationType authenticationType) Set the authentication type.withStorageKey
(String storageKey) Set the storage key to use.withStorageKeyType
(StorageKeyType storageKeyType) Set the type of the storage key to use.withStorageUri
(String storageUri) Set the storage uri to use.
-
Constructor Details
-
ExportRequest
public ExportRequest()
-
-
Method Details
-
storageKeyType
Get the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'.- Returns:
- the storageKeyType value
-
withStorageKeyType
Set the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'.- Parameters:
storageKeyType
- the storageKeyType value to set- Returns:
- the ExportRequest object itself.
-
storageKey
Get the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.".- Returns:
- the storageKey value
-
withStorageKey
Set the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.".- Parameters:
storageKey
- the storageKey value to set- Returns:
- the ExportRequest object itself.
-
storageUri
Get the storage uri to use.- Returns:
- the storageUri value
-
withStorageUri
Set the storage uri to use.- Parameters:
storageUri
- the storageUri value to set- Returns:
- the ExportRequest object itself.
-
administratorLogin
Get the name of the SQL administrator.- Returns:
- the administratorLogin value
-
withAdministratorLogin
Set the name of the SQL administrator.- Parameters:
administratorLogin
- the administratorLogin value to set- Returns:
- the ExportRequest object itself.
-
administratorLoginPassword
Get the password of the SQL administrator.- Returns:
- the administratorLoginPassword value
-
withAdministratorLoginPassword
Set the password of the SQL administrator.- Parameters:
administratorLoginPassword
- the administratorLoginPassword value to set- Returns:
- the ExportRequest object itself.
-
authenticationType
Get the authentication type. Possible values include: 'SQL', 'ADPassword'.- Returns:
- the authenticationType value
-
withAuthenticationType
Set the authentication type. Possible values include: 'SQL', 'ADPassword'.- Parameters:
authenticationType
- the authenticationType value to set- Returns:
- the ExportRequest object itself.
-