ExportRequest Class

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

public class ExportRequest

Export database parameters.

Constructor Summary

Constructor Description
ExportRequest()

Method Summary

Modifier and Type Method and Description
java.lang.String administratorLogin()

Get the name of the SQL administrator.

java.lang.String administratorLoginPassword()

Get the password of the SQL administrator.

AuthenticationType authenticationType()

Get the authentication type.

java.lang.String storageKey()

Get the storage key to use.

StorageKeyType storageKeyType()

Get the type of the storage key to use.

java.lang.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.

ExportRequest withStorageKey(String storageKey)

Set the storage key to use.

ExportRequest withStorageKeyType(StorageKeyType storageKeyType)

Set the type of the storage key to use.

ExportRequest withStorageUri(String storageUri)

Set the storage uri to use.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

ExportRequest

public ExportRequest()

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