ExportRequest Class

  • java.lang.Object
    • com.microsoft.azure.management.sql.ExportRequest

public class ExportRequest

Export database parameters.

Method Summary

Modifier and Type Method and Description
String administratorLogin()

Get the name of the SQL administrator.

String administratorLoginPassword()

Get the password of the SQL administrator.

AuthenticationType authenticationType()

Get the authentication type. Possible values include: 'SQL', 'ADPassword'.

String storageKey()

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

StorageKeyType storageKeyType()

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

String storageUri()

Get the storage uri to use.

ExportRequest withAdministratorLogin(String administratorLogin)

Set the name of the SQL administrator.

ExportRequest withAdministratorLoginPassword(String administratorLoginPassword)

Set the password of the SQL administrator.

ExportRequest withAuthenticationType(AuthenticationType authenticationType)

Set the authentication type. Possible values include: 'SQL', 'ADPassword'.

ExportRequest withStorageKey(String storageKey)

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

ExportRequest withStorageKeyType(StorageKeyType storageKeyType)

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

ExportRequest withStorageUri(String storageUri)

Set the storage uri to use.

Method Details

administratorLogin

public String administratorLogin()

Get the name of the SQL administrator.

Returns:

the administratorLogin value

administratorLoginPassword

public String administratorLoginPassword()

Get the password of the SQL administrator.

Returns:

the administratorLoginPassword value

authenticationType

public AuthenticationType authenticationType()

Get the authentication type. Possible values include: 'SQL', 'ADPassword'.

Returns:

the authenticationType value

storageKey

public String storageKey()

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

Returns:

the storageKey value

storageKeyType

public StorageKeyType storageKeyType()

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

Returns:

the storageKeyType value

storageUri

public String storageUri()

Get the storage uri to use.

Returns:

the storageUri value

withAdministratorLogin

public ExportRequest withAdministratorLogin(String administratorLogin)

Set the name of the SQL administrator.

Parameters:

administratorLogin - the administratorLogin value to set

Returns:

the ExportRequest object itself.

withAdministratorLoginPassword

public ExportRequest withAdministratorLoginPassword(String administratorLoginPassword)

Set the password of the SQL administrator.

Parameters:

administratorLoginPassword - the administratorLoginPassword value to set

Returns:

the ExportRequest object itself.

withAuthenticationType

public ExportRequest withAuthenticationType(AuthenticationType authenticationType)

Set the authentication type. Possible values include: 'SQL', 'ADPassword'.

Parameters:

authenticationType - the authenticationType value to set

Returns:

the ExportRequest object itself.

withStorageKey

public ExportRequest withStorageKey(String storageKey)

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.

withStorageKeyType

public ExportRequest withStorageKeyType(StorageKeyType storageKeyType)

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.

withStorageUri

public ExportRequest withStorageUri(String storageUri)

Set the storage uri to use.

Parameters:

storageUri - the storageUri value to set

Returns:

the ExportRequest object itself.

Applies to