Class ExportRequest

java.lang.Object
com.microsoft.azure.management.sql.ExportRequest
Direct Known Subclasses:
ImportRequest

public class ExportRequest extends Object
Export database parameters.
  • Constructor Details

    • ExportRequest

      public ExportRequest()
  • Method Details

    • storageKeyType

      public StorageKeyType storageKeyType()
      Get the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'.
      Returns:
      the storageKeyType value
    • 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.
    • 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
    • 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.
    • storageUri

      public String storageUri()
      Get the storage uri to use.
      Returns:
      the storageUri value
    • withStorageUri

      public ExportRequest withStorageUri(String storageUri)
      Set the storage uri to use.
      Parameters:
      storageUri - the storageUri value to set
      Returns:
      the ExportRequest object itself.
    • administratorLogin

      public String administratorLogin()
      Get the name of the SQL administrator.
      Returns:
      the administratorLogin 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.
    • administratorLoginPassword

      public String administratorLoginPassword()
      Get the password of the SQL administrator.
      Returns:
      the administratorLoginPassword value
    • 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.
    • authenticationType

      public AuthenticationType authenticationType()
      Get the authentication type. Possible values include: 'SQL', 'ADPassword'.
      Returns:
      the authenticationType value
    • 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.