INPUT_OBJECT

ExportMssqlDbJobConfigInput

Description

Supported in v5.0+

link GraphQL Schema definition

  • input ExportMssqlDbJobConfigInput {
  • # Supported in v5.0+
  • # A Boolean value that determines whether an existing database can be overwritten
  • # by a database this is exported from a backup. Set to false to prevent
  • # overwrites. This is the default. Set to true to allow overwrites.
  • allowOverwrite: Boolean
  • # Supported in v5.0+
  • # A Boolean value that determines the recovery option to use during database
  • # restore. When this value is 'true', the database is restored using the RECOVERY
  • # option and is fully functional at the end of the restore operation. When this
  • # value is 'false', the database is restored using the NORECOVERY option and
  • # remains in recovering mode at the end of the restore operation.
  • finishRecovery: Boolean
  • # Supported in v5.0+
  • # Maximum number of parallel data streams that can be used to copy data to the
  • # target system.
  • maxDataStreams: Int
  • # Supported in v5.0+
  • # The target path to store all data files.
  • targetDataFilePath: String
  • # Supported in v5.0+
  • # One target path for each individual database file. Overrides targetDataFilePath
  • # and targetLogFilePath.
  • targetFilePaths: [MssqlDbFileExportPathInput!]
  • # Supported in v5.0+
  • # The target path to store all log files.
  • targetLogFilePath: String
  • # Required. Supported in v5.0+
  • recoveryPoint: MssqlRecoveryPointInput!
  • # Required. Supported in v5.0+
  • # Name of the new database.
  • targetDatabaseName: String!
  • # Required. Supported in v5.0+
  • # ID of the Microsoft SQL instance for the new database.
  • targetInstanceId: String!
  • }