INPUT_OBJECT

ManagedVolumePatchSlaClientConfigInput

Description

Supported in v5.3+

link GraphQL Schema definition

  • input ManagedVolumePatchSlaClientConfigInput {
  • # The full command with arguments to run the main backup script that backs up data
  • # from the host.
  • backupScriptCommand: String
  • # Supported in v5.3+
  • # An optional timeout for the main backup script in seconds. When this value is 0
  • # or unspecified no timeout is used.
  • backupScriptTimeout: Long
  • # Supported in v5.3+
  • # A list of mount paths where the host mounts individual channels for managed
  • # volumes.
  • channelHostMountPaths: [String!]
  • # Supported in v5.3+
  • # The ID of the host that mounts the managed volume channels and where the backup
  • # scripts run.
  • clientHostId: String
  • # The full command with arguments to run the optional post-backup script that runs
  • # after unsuccessful data backup.
  • postBackupScriptOnBackupFailureCommand: String
  • # Supported in v5.3+
  • # An optional timeout for the post-backup script that runs after unsuccessful data
  • # backup in seconds. When this value is 0 or unspecified no timeout is used.
  • postBackupScriptOnBackupFailureTimeout: Long
  • # The full command with arguments to run the optional post-backup script that runs
  • # after data backup is complete.
  • postBackupScriptOnBackupSuccessCommand: String
  • # Supported in v5.3+
  • # An optional timeout for the post-backup script that runs after data backup is
  • # complete in seconds. When this value is 0 or unspecified no timeout is used.
  • postBackupScriptOnBackupSuccessTimeout: Long
  • # The full command with arguments to run the optional pre-backup script that runs
  • # after data backup is complete.
  • preBackupScriptCommand: String
  • # Supported in v5.3+
  • # An optional timeout for the pre-backup script in seconds. When this value is 0
  • # or unspecified no timeout is used.
  • preBackupScriptTimeout: Long
  • # Supported in v5.3+
  • # Specifies whether a failure of the pre-backup script halts the backup process.
  • shouldCancelBackupOnPreBackupScriptFailure: Boolean
  • # Supported in v5.3+
  • # The name of the user that runs the scripts on the host.
  • username: String
  • # Required. Supported in v5.3+
  • # Specifies whether to disable the execution of the optional post-backup script
  • # that runs after unsuccessful data backup.
  • shouldDisablePostBackupScriptOnBackupFailure: Boolean!
  • # Required. Supported in v5.3+
  • # Specifies whether to disable the execution of the optional post-backup script
  • # that runs after data backup is complete.
  • shouldDisablePostBackupScriptOnBackupSuccess: Boolean!
  • # Required. Supported in v5.3+
  • # Specifies whether to disable the execution of the optional pre-backup script.
  • shouldDisablePreBackupScript: Boolean!
  • }