ExportTaskRequest Data Type

Properties
name data type constraints description
retryCount number required, min: 0
protectedEntities array of NameAndGuid  
excludedEntities boolean required
backupPolicy string  
protectedEntityType ProtectedEntityType  
rules array of NameAndGuid  
project NameAndGuid  
cloudTaskOptions CloudTaskOptions  
osTaskOptions OSTaskOptions  
async boolean required
windowStart number  
windowEnd number  
priority number required, max: 100, min: 0
backupType BackupType required

Example

{
  "retryCount" : 12345,
  "protectedEntities" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ],
  "excludedEntities" : true,
  "backupPolicy" : "...",
  "protectedEntityType" : "CLOUD_TEAMS",
  "rules" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ],
  "project" : {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  },
  "cloudTaskOptions" : {
    "accordingToPolicy" : true,
    "path" : "...",
    "container" : "...",
    "destinationEmail" : "...",
    "destinationExternalSourceId" : "...",
    "deleted" : true,
    "overwrite" : true,
    "forceFullBackup" : true,
    "discardMetadataDatabase" : true,
    "pointInTime" : 12345,
    "features" : [ {
      "name" : "ENUM_NAME",
      "description" : "Enum description"
    }, {
      "name" : "...",
      "description" : "..."
    } ],
    "objects" : [ {
      "type" : { },
      "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
    }, {
      "type" : { },
      "guid" : "..."
    } ],
    "recursive" : true,
    "restoreType" : "ALL_SERIES"
  },
  "osTaskOptions" : {
    "forceFullBackup" : true,
    "discardMetadataDatabase" : true,
    "pointInTime" : 12345,
    "includeInRestore" : [ "...", "..." ],
    "restorePath" : "...",
    "restoreMode" : "OVERWRITE_ALWAYS",
    "destinationAgentGuid" : "...",
    "restoreWithOriginalPath" : true,
    "deleted" : true
  },
  "async" : true,
  "windowStart" : 1451649601000,
  "windowEnd" : 1451677502000,
  "priority" : 50,
  "backupType" : {
    "name" : "ENUM_NAME",
    "description" : "Enum description"
  }
}