OBJECT

TprFilesetTemplatePatch

Description

Fileset template patch.

link GraphQL Schema definition

  • type TprFilesetTemplatePatch {
  • # Action taken if script fails. Options are 'abort' and 'continue'.
  • backupScriptErrorHandling: String
  • # Paths that are exceptions to the excluded paths.
  • exceptions: [String!]!
  • # Paths to exclude from the fileset.
  • excludes: [String!]!
  • # Fileset options.
  • filesetOptions: TprFilesetOptions
  • # ID of the fileset template.
  • id: String!
  • # Paths to include in the fileset.
  • includes: [String!]!
  • # Name of the fileset template.
  • name: String
  • # Script to run after backup of this fileset ends.
  • postBackupScript: String
  • # Script to run before backup of this fileset starts.
  • preBackupScript: String
  • # Specifies whether to override the cluster-wide blocklisted filesystem paths.
  • shouldOverrideClusterWideBlocklistedFilesystemPaths: Boolean
  • # Specifies whether to retry the pre-backup script if the backup fails.
  • shouldRetryPrescriptIfBackupFails: Boolean
  • # Comma-separated list of blocklisted filesystem paths specific to this template.
  • templateBlocklistedFilesystemPaths: String
  • }