The API allows you to list, view, edit and create tasks.
Returns list of tasks filtered by specified query parameters.
name | type | description | constraints | multivalued |
---|---|---|---|---|
backup | query | no | ||
backup-destination | query | no | ||
direction | query | no | ||
filter | query | no | ||
hypervisor | query | no | ||
hypervisor-manager | query | no | ||
mounted-backup-assigned | query | required | no | |
node | query | no | ||
orderBy | query | no | ||
parent-task | query | no | ||
project-uuid | query | no | ||
protected-entity | query | no | ||
restore-job | query | no | ||
schedule | query | no | ||
state | query | "CANCELLED" or "FAILED" or "FINISHED" or "QUEUED" or "RUNNING" | no | |
states | query | "CANCELLED" or "FAILED" or "FINISHED" or "QUEUED" or "RUNNING" | yes | |
storage-provider | query | no | ||
type | query | "BACKUP_CLEANUP" or "BACKUP_DESTINATION_INIT" or "BACKUP_DESTINATION_SYNC" or "CONNECTIVITY_TEST" or "DELETE" or "EJECT_TAPE" or "EXPORT" or "IMPORT" or "IMPORT_TAPE" or "INVENTORY_SYNC" or "LIVE_MIGRATION" or "MOUNT" or "RESTORE" or "SNAPSHOT" or "SNAPSHOT_CLEANUP" or "SNAPSHOT_REVERSION" or "STAGING_CLEANUP" or "STORE" or "TAPE_MANAGER_INVENTORY_SYNC" or "UNMOUNT" or "UPLOAD" | no | |
workflow-execution | query | no |
media type | data type | description |
---|---|---|
application/json | array of TaskListRecord (JSON) | list of tasks filtered by specified query parameters |
GET /tasks
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"priority" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupType" : "INCREMENTAL",
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"originEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nfsStorageId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"progress" : 66.5
} ]
Remove all finished tasks.
name | type | description |
---|---|---|
project-uuid | query | specify project UUID to remove only tasks related to project |
DELETE /tasks/all-finished
Content-Type: */*
...
HTTP/1.1 204 No Content
Remove all finished and queued tasks.
name | type | description |
---|---|---|
project-uuid | query | specify project UUID to remove only tasks related to project |
DELETE /tasks/all-finished-and-queued
Content-Type: */*
...
HTTP/1.1 204 No Content
Cancel all running tasks.
name | type | description |
---|---|---|
project-uuid | query | specify project UUID to cancel only tasks related to project |
DELETE /tasks/all-running
Content-Type: */*
...
HTTP/1.1 204 No Content
Create delete tasks to remove protected entities. * * @param guids specify list of local unique identifiers for protected entities (use by vProtect)
media type | data type |
---|---|
application/json | array of StringDTO (JSON) |
media type | data type | description |
---|---|---|
application/json | TaskBatchResponse (JSON) | detailed list of delete tasks |
POST /tasks/batch-delete
Content-Type: application/json
Accept: application/json
[ {
"value" : "..."
} ]
HTTP/1.1 201 Created
Content-Type: application/json
{
"successful" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"unsuccessful" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"tasks" : [ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : { },
"virtualEnvironmentContext" : { },
"storageContext" : { },
"applicationContext" : { },
"cloudContext" : { },
"osContext" : { },
"tapeContext" : { }
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : { },
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "SPARSE",
"taskFiles" : [ {
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : { },
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : { },
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : { },
"backupFile" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : { },
"backupFile" : { },
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : { },
"network" : { },
"networkInterfaceCard" : { }
}, {
"guid" : "...",
"task" : { },
"network" : { },
"networkInterfaceCard" : { }
} ],
"filesToSynchronize" : [ {
"task" : { },
"backupFile" : { },
"backupDestination" : { }
}, {
"task" : { },
"backupFile" : { },
"backupDestination" : { }
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : { },
"schedules" : [ { }, { } ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"ruleBackupDestinations" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"ruleBackupDestinations" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ { }, { } ],
"excludes" : [ { }, { } ]
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ { }, { } ],
"excludes" : [ { }, { } ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupFileDetails" : { },
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupFileDetails" : { },
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"cloudTaskOptions" : {
"accordingToPolicy" : true,
"path" : "...",
"container" : "...",
"destinationEmail" : "...",
"destinationExternalSourceId" : "...",
"deleted" : true,
"overwrite" : true,
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"features" : [ { }, { } ],
"objects" : [ { }, { } ],
"recursive" : true,
"restoreType" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}, {
"parentTask" : {
"guid" : "...",
"name" : "..."
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : { },
"virtualEnvironmentContext" : { },
"storageContext" : { },
"applicationContext" : { },
"cloudContext" : { },
"osContext" : { },
"tapeContext" : { }
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : { },
"guid" : "...",
"name" : "..."
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : { },
"guid" : "...",
"name" : "..."
},
"protectedEntitySnapshot" : {
"guid" : "...",
"name" : "..."
},
"hypervisor" : {
"guid" : "...",
"name" : "..."
},
"hypervisorManager" : {
"guid" : "...",
"name" : "..."
},
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"cloudServiceProvider" : {
"guid" : "...",
"name" : "..."
},
"osAgent" : {
"guid" : "...",
"name" : "..."
},
"tapeManager" : {
"guid" : "...",
"name" : "..."
},
"backup" : {
"guid" : "...",
"name" : "..."
},
"mountedBackup" : {
"guid" : "...",
"name" : "..."
},
"schedule" : {
"guid" : "...",
"name" : "..."
},
"node" : {
"guid" : "...",
"name" : "..."
},
"restoreJob" : {
"guid" : "...",
"name" : "..."
},
"backupDestination" : {
"type" : { },
"guid" : "...",
"name" : "..."
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "...",
"name" : "..."
},
"restoreVmFlavor" : {
"guid" : "...",
"name" : "..."
},
"restoreAccessKey" : {
"guid" : "...",
"name" : "..."
},
"restoreProject" : {
"guid" : "...",
"name" : "..."
},
"project" : {
"guid" : "...",
"name" : "..."
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : { },
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THIN",
"taskFiles" : [ {
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : { },
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : { },
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : { },
"backupFile" : { },
"guid" : "..."
}, {
"task" : { },
"backupFile" : { },
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : { },
"network" : { },
"networkInterfaceCard" : { }
}, {
"guid" : "...",
"task" : { },
"network" : { },
"networkInterfaceCard" : { }
} ],
"filesToSynchronize" : [ {
"task" : { },
"backupFile" : { },
"backupDestination" : { }
}, {
"task" : { },
"backupFile" : { },
"backupDestination" : { }
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : { },
"schedules" : [ { }, { } ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"ruleBackupDestinations" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"ruleBackupDestinations" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ { }, { } ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ { }, { } ],
"excludes" : [ { }, { } ]
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ { }, { } ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ { }, { } ],
"excludes" : [ { }, { } ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "...",
"name" : "..."
},
"backupLocation" : {
"guid" : "...",
"backup" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupFileDetails" : { },
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupFileDetails" : { },
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"cloudTaskOptions" : {
"accordingToPolicy" : true,
"path" : "...",
"container" : "...",
"destinationEmail" : "...",
"destinationExternalSourceId" : "...",
"deleted" : true,
"overwrite" : true,
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"features" : [ { }, { } ],
"objects" : [ { }, { } ],
"recursive" : true,
"restoreType" : "ALL_SERIES"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "...",
"name" : "..."
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "...",
"name" : "..."
},
"tapeDrive" : {
"guid" : "...",
"name" : "..."
},
"tapeLocation" : {
"guid" : "...",
"name" : "..."
},
"guid" : "...",
"type" : {
"name" : "...",
"description" : "..."
},
"state" : {
"name" : "...",
"description" : "..."
},
"windowStart" : 12345,
"windowEnd" : 12345,
"creationTime" : 12345,
"finishTime" : 12345,
"progress" : 12345.0,
"priority" : 12345,
"backupType" : {
"name" : "...",
"description" : "..."
}
} ]
}
Cancel selected running tasks.
media type | data type |
---|---|
application/json | array of TaskListRecord (JSON) |
POST /tasks/cancel-running
Content-Type: application/json
[ {
"priority" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupType" : "INCREMENTAL",
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"originEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nfsStorageId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"progress" : 66.5
} ]
HTTP/1.1 201 Created
Update id of changed block tracking (CBT) for specified task
media type | data type | description |
---|---|---|
application/json | UpdateCbtTaskRequest (JSON) | specify id of changed block tracking (CBT) for specified task |
PUT /tasks/cbt-id
Content-Type: application/json
{
"taskGuid" : "...",
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
}
}
HTTP/1.1 204 No Content
Create connectivity test tasks to check connection with target entities.
media type | data type | description |
---|---|---|
application/json | ConnectivityTestTaskRequest (JSON) | specifies sets of hypervisors, hypervisor managers, backup destinations and storage providers for which connectivity test task will be created. |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of connectivity tasks. |
POST /tasks/connectivity-test
Content-Type: application/json
Accept: application/json
{
"backupDestinations" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"hypervisors" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"hypervisorManagers" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"storageProviders" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"tapeManagers" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ]
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "SPARSE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_DISK_ATTACHMENT",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "LVM_THIN",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "LVM_THIN",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "APP_TAR",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_IMAGE_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "ARCHIVE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "LOCAL",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_AZURE_INC",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CONTACTS"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create delete tasks to remove protected entity.
name | type | description |
---|---|---|
project-uuid | query |
media type | data type | description |
---|---|---|
application/json | StringDTO (JSON) | specify delete request |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of delete tasks |
POST /tasks/delete
Content-Type: application/json
Accept: application/json
{
"value" : "..."
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THIN",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "AKI",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OVM",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "VM_IMAGE_PLUS_INCREMENTAL_DISKS",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "GROUP"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_BASE64",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AZURE_FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_INSTALLED_APP"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
} ],
"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" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Remove selected finished tasks.
media type | data type |
---|---|
application/json | array of TaskListRecord (JSON) |
POST /tasks/delete-finished
Content-Type: application/json
[ {
"priority" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupType" : "INCREMENTAL",
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"originEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nfsStorageId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"progress" : 66.5
} ]
HTTP/1.1 201 Created
Remove selected finished and queued tasks.
media type | data type |
---|---|
application/json | array of TaskListRecord (JSON) |
POST /tasks/delete-finished-and-queued
Content-Type: application/json
[ {
"priority" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupType" : "SYNCHRONIZATION",
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"originEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nfsStorageId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"progress" : 66.5
} ]
HTTP/1.1 201 Created
Returns detailed list of tasks filtered by specified query parameters.
name | type | description | constraints | multivalued |
---|---|---|---|---|
backup | query | no | ||
backup-destination | query | no | ||
direction | query | no | ||
filter | query | no | ||
hypervisor | query | no | ||
hypervisor-manager | query | no | ||
mounted-backup-assigned | query | required | no | |
node | query | no | ||
orderBy | query | no | ||
parent-task | query | no | ||
project-uuid | query | no | ||
protected-entity | query | no | ||
restore-job | query | no | ||
schedule | query | no | ||
state | query | "CANCELLED" or "FAILED" or "FINISHED" or "QUEUED" or "RUNNING" | no | |
states | query | "CANCELLED" or "FAILED" or "FINISHED" or "QUEUED" or "RUNNING" | yes | |
storage-provider | query | no | ||
type | query | "BACKUP_CLEANUP" or "BACKUP_DESTINATION_INIT" or "BACKUP_DESTINATION_SYNC" or "CONNECTIVITY_TEST" or "DELETE" or "EJECT_TAPE" or "EXPORT" or "IMPORT" or "IMPORT_TAPE" or "INVENTORY_SYNC" or "LIVE_MIGRATION" or "MOUNT" or "RESTORE" or "SNAPSHOT" or "SNAPSHOT_CLEANUP" or "SNAPSHOT_REVERSION" or "STAGING_CLEANUP" or "STORE" or "TAPE_MANAGER_INVENTORY_SYNC" or "UNMOUNT" or "UPLOAD" | no | |
workflow-execution | query | no |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of tasks filtered by specified query parameters |
GET /tasks/detailed
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_SITE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "EXCLUDED_DISK",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "GROUP"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_BASE64",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "GROUP"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "SSH_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_VMWARE",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create eject tape task.
media type | data type | description |
---|---|---|
application/json | EjectTapeTaskRequest (JSON) | specify tapes for which will be eject tape tasks |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of eject tape tasks |
POST /tasks/eject-tape
Content-Type: application/json
Accept: application/json
{
"tapes" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "DYNAMICALLY_EXPANDING",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CONTACTS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_HYPERV",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_META_NUTANIX_INC",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "VM_IMAGE_PLUS_INCREMENTAL_DISKS",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "LOCAL",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_JSON_INC",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create list of export tasks.
media type | data type | description |
---|---|---|
application/json | ExportTaskRequest (JSON) | specify details of export tasks |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of export tasks |
POST /tasks/export
Content-Type: application/json
Accept: application/json
{
"retryCount" : 12345,
"protectedEntities" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"excludedEntities" : true,
"backupPolicy" : "...",
"protectedEntityType" : "STORAGE",
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"async" : true,
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "FIXED_SIZE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_AZURE",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_CEPH",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "NONE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_IMAGE_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "NVRAM_INC",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_SITE"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create import task for cloud.
media type | data type | description |
---|---|---|
application/json | ImportForCloudTaskRequest (JSON) | specify details of import task for cloud |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | details of newly created import task for cloud |
POST /tasks/import-for-cloud
Content-Type: application/json
Accept: application/json
{
"protectedEntities" : [ {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"type" : {
"name" : "...",
"description" : "..."
},
"guid" : "...",
"name" : "..."
} ],
"tab" : "...",
"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" : "SINGLE_EVENT"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_SITE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_NUTANIX",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_LIST"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_BASE64",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CHANNEL"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "TO_REMOVE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "TO_REMOVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "UNRECOGNIZED",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "GROUP"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_GCP",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create import task for agent.
media type | data type | description |
---|---|---|
application/json | ImportForAgentTaskRequest (JSON) | specify details of import task for cloud |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | details of newly created import task for cloud |
POST /tasks/import-for-os-agent
Content-Type: application/json
Accept: application/json
{
"protectedEntities" : [ {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"type" : {
"name" : "...",
"description" : "..."
},
"guid" : "...",
"name" : "..."
} ],
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
}
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "EAGERZEROED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_JSON",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_SITE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "ONEDRIVE"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VMA_LZO",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_SITE"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT_CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CHANNEL"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_VMWARE",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_PAGE_LIBRARY"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"path" : "..."
} ],
"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
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create import tape task.
media type | data type | description |
---|---|---|
application/json | ImportTapeTaskRequest (JSON) | specify tapes for which will be import tape tasks |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of import tape tasks |
POST /tasks/import-tape
Content-Type: application/json
Accept: application/json
{
"tapes" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ]
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "FIXED_SIZE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "TAR_LZO",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "GROUP"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "GROUP"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_VMWARE",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "PORTWORX_VOLUME",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "GROUP"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_PAGE_LIBRARY"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OVF",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CHANNEL"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Update incSnapRequired filed for specified task
media type | data type | description |
---|---|---|
application/json | UpdateIncSnapRequired (JSON) | specify incSnapRequired filed for specified task |
PUT /tasks/inc-snap-required
Content-Type: application/json
{
"taskGuid" : "...",
"incSnapRequired" : true
}
HTTP/1.1 204 No Content
Create restore and mount task for handling instant restore.
media type | data type | description |
---|---|---|
application/json | InstantRestoreTaskRequest (JSON) | specify details of restore and mount task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created restore and mount task |
POST /tasks/instant-restore
Content-Type: application/json
Accept: application/json
{
"overwrite" : true,
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"sparsifyRestoreEnabled" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"restoredNetworks" : [ {
"network" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"networkInterfaceCard" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"network" : {
"guid" : "...",
"name" : "..."
},
"networkInterfaceCard" : {
"guid" : "...",
"name" : "..."
}
} ],
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nodeConfig" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"unmountTime" : 12345,
"mode" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"restoreClusterId" : "...",
"migrateAfterInstantRestore" : true,
"restoreStorageId" : "...",
"nfsStorageId" : "...",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "ARI",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ]
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "FIXED_SIZE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_DISK_META_JSON",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AWS_EBS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_GCP_INC",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_INSTALLED_APP"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "SSH_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "TO_REMOVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_SITE"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "FILE_LIST_SQLITE",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "OPENSTACK_CINDER",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_LIST"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Update inventory.
media type | data type | description |
---|---|---|
application/json | InventoryRequest (JSON) | specify what to update in inventory |
POST /tasks/inventory
Content-Type: application/json
{
"hvGuid" : "...",
"hvmGuid" : "...",
"computeZoneGuid" : "...",
"stpGuid" : "...",
"cspGuid" : "...",
"authenticationDomainGuid" : "...",
"osAgentGuid" : "...",
"remoteHVs" : [ {
"password" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cluster" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"host" : "...",
"sshPort" : 12345,
"nodeConfig" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"sshKeyPath" : "...",
"user" : "...",
"vmExportImportMode" : "VM_IMAGE_PLUS_INCREMENTAL_DISKS",
"transferNicAddress" : "...",
"dataCenterName" : "...",
"vmOwner" : "...",
"vmOwningGroup" : "...",
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageType" : "DEFAULT",
"licenseCovered" : true,
"useNetcat" : true,
"libvirtSettings" : {
"libvirtSshTimeout" : 12345,
"libvirtSshKnownHostsPath" : "...",
"libvirtSshProgressRefreshRate" : 12345,
"libvirtLvmSnapshotSize" : "...",
"libvirtLvmSnapshotExtents" : "...",
"libvirtAlwaysExportFullIfVmTurnedOff" : true
},
"citrixSettings" : {
"citrixExportRefreshRate" : 12345,
"citrixEnableXvaCompression" : true,
"citrixSnapshotRemovalTimeout" : 12345
},
"proxmoxSettings" : {
"proxmoxBackupStorage" : "...",
"proxmoxCompressionType" : "DISABLED",
"proxmoxNbdBufferReleaseMaxAttempts" : 12345,
"proxmoxNbdBufferReleaseTimeout" : 12345,
"proxmoxNbdBufferReleaseWaitPeriod" : 12345,
"proxmoxAvailableNbdWaitPeriod" : 12345,
"proxmoxConnectQcow2ToNbdWaitPeriod" : 12345
},
"hvHypervSettings" : {
"hypervExportChunksNumber" : 12345
},
"trustAllCerts" : true
}, {
"password" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"cluster" : {
"guid" : "...",
"name" : "..."
},
"dataCenter" : {
"guid" : "...",
"name" : "..."
},
"type" : {
"name" : "...",
"description" : "..."
},
"host" : "...",
"sshPort" : 12345,
"nodeConfig" : {
"guid" : "...",
"name" : "..."
},
"sshKeyPath" : "...",
"user" : "...",
"vmExportImportMode" : "SSH_TRANSFER",
"transferNicAddress" : "...",
"dataCenterName" : "...",
"vmOwner" : "...",
"vmOwningGroup" : "...",
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"storageType" : "CEPH",
"licenseCovered" : true,
"useNetcat" : true,
"libvirtSettings" : {
"libvirtSshTimeout" : 12345,
"libvirtSshKnownHostsPath" : "...",
"libvirtSshProgressRefreshRate" : 12345,
"libvirtLvmSnapshotSize" : "...",
"libvirtLvmSnapshotExtents" : "...",
"libvirtAlwaysExportFullIfVmTurnedOff" : true
},
"citrixSettings" : {
"citrixExportRefreshRate" : 12345,
"citrixEnableXvaCompression" : true,
"citrixSnapshotRemovalTimeout" : 12345
},
"proxmoxSettings" : {
"proxmoxBackupStorage" : "...",
"proxmoxCompressionType" : "LZO",
"proxmoxNbdBufferReleaseMaxAttempts" : 12345,
"proxmoxNbdBufferReleaseTimeout" : 12345,
"proxmoxNbdBufferReleaseWaitPeriod" : 12345,
"proxmoxAvailableNbdWaitPeriod" : 12345,
"proxmoxConnectQcow2ToNbdWaitPeriod" : 12345
},
"hvHypervSettings" : {
"hypervExportChunksNumber" : 12345
},
"trustAllCerts" : true
} ],
"remoteDataCenters" : [ {
"name" : "...",
"uuid" : "...",
"guid" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"name" : "...",
"uuid" : "...",
"guid" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
}
} ],
"remoteVMs" : [ {
"name" : "...",
"uuid" : "...",
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"resourceGroup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"vmBackupPolicy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"snapshotMgmtPolicy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"present" : true,
"tags" : [ "...", "..." ],
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvCluster" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"baseImageCreationConfig" : {
"windowsImageRequired" : "INHERIT",
"linuxImageRequired" : "FALSE"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"externalReference" : "...",
"hvType" : "XEN",
"networkInterfaceCards" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmResourceType" : "DEPLOYMENT",
"vmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"accessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"parentFolderName" : "...",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}, {
"name" : "...",
"uuid" : "...",
"hypervisor" : {
"guid" : "...",
"name" : "..."
},
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"resourceGroup" : {
"guid" : "...",
"name" : "..."
},
"vmBackupPolicy" : {
"guid" : "...",
"name" : "..."
},
"snapshotMgmtPolicy" : {
"guid" : "...",
"name" : "..."
},
"present" : true,
"tags" : [ "...", "..." ],
"dataCenter" : {
"guid" : "...",
"name" : "..."
},
"hvCluster" : {
"guid" : "...",
"name" : "..."
},
"baseImageCreationConfig" : {
"windowsImageRequired" : "FALSE",
"linuxImageRequired" : "INHERIT"
},
"project" : {
"guid" : "...",
"name" : "..."
},
"externalReference" : "...",
"hvType" : "XEN",
"networkInterfaceCards" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmResourceType" : "DEPLOYMENT_CONFIG",
"vmFlavor" : {
"guid" : "...",
"name" : "..."
},
"accessKey" : {
"guid" : "...",
"name" : "..."
},
"parentFolderName" : "...",
"type" : {
"name" : "...",
"description" : "..."
}
} ],
"remoteStorages" : [ {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"isSnapshotable" : true,
"present" : true,
"storageBackupPolicy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"snapshotMgmtPolicy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storagePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"path" : "...",
"description" : "..."
}, {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"isSnapshotable" : true,
"present" : true,
"storageBackupPolicy" : {
"guid" : "...",
"name" : "..."
},
"snapshotMgmtPolicy" : {
"guid" : "...",
"name" : "..."
},
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"storagePool" : {
"guid" : "...",
"name" : "..."
},
"path" : "...",
"description" : "..."
} ],
"remoteVmDisks" : {
"property1" : { },
"property2" : { }
},
"clustersRemote" : [ {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nodeConfig" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"projects" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"visibleForAllProjects" : true
}, {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"dataCenter" : {
"guid" : "...",
"name" : "..."
},
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"nodeConfig" : {
"guid" : "...",
"name" : "..."
},
"projects" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"visibleForAllProjects" : true
} ],
"remoteStoragePools" : [ {
"uuid" : "...",
"name" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : {
"guid" : "...",
"name" : "..."
}
} ],
"hvmProjects" : [ {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"active" : true,
"backupDestinations" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"authenticationDomains" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"sourceAuthenticationDomain" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"quota" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"active" : true,
"backupDestinations" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"authenticationDomains" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"sourceAuthenticationDomain" : {
"guid" : "...",
"name" : "..."
},
"quota" : {
"guid" : "...",
"name" : "..."
}
} ],
"remoteStorageVolumes" : [ {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"storage" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"present" : true,
"excludedFromBackup" : true
}, {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"storage" : {
"guid" : "...",
"name" : "..."
},
"present" : true,
"excludedFromBackup" : true
} ],
"hypervisorStorages" : [ {
"uuid" : "...",
"name" : "...",
"totalUsedSpace" : 12345,
"totalAvailableSpace" : 12345,
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"clusters" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"type" : "GCE_PD",
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storagePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"totalUsedSpace" : 12345,
"totalAvailableSpace" : 12345,
"hypervisor" : {
"guid" : "...",
"name" : "..."
},
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"clusters" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"type" : "GCP_DISK_TYPE",
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"storagePool" : {
"guid" : "...",
"name" : "..."
}
} ],
"remoteHVsVersion" : {
"property1" : "...",
"property2" : "..."
},
"remoteNetworks" : [ {
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"projects" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"sourceProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvCluster" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"hypervisorManager" : {
"guid" : "...",
"name" : "..."
},
"hypervisor" : {
"guid" : "...",
"name" : "..."
},
"projects" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"sourceProject" : {
"guid" : "...",
"name" : "..."
},
"dataCenter" : {
"guid" : "...",
"name" : "..."
},
"hvCluster" : {
"guid" : "...",
"name" : "..."
}
} ],
"remoteNetworkInterfaceCards" : [ {
"nicUuid" : "...",
"nicName" : "...",
"virtualMachineUuid" : "...",
"networkUuid" : "..."
}, {
"nicUuid" : "...",
"nicName" : "...",
"virtualMachineUuid" : "...",
"networkUuid" : "..."
} ],
"remoteVmFlavors" : [ {
"uuid" : "...",
"name" : "...",
"vcpus" : 12345,
"ram" : 12345,
"totalDiskSpace" : 12345,
"configuration" : "...",
"shared" : true,
"present" : true,
"projects" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvClusters" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ]
}, {
"uuid" : "...",
"name" : "...",
"vcpus" : 12345,
"ram" : 12345,
"totalDiskSpace" : 12345,
"configuration" : "...",
"shared" : true,
"present" : true,
"projects" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"hvClusters" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ]
} ],
"remoteAccessKeys" : [ {
"uuid" : "...",
"name" : "...",
"userId" : "...",
"publicKey" : "...",
"type" : "X509_CERTIFICATE",
"present" : true,
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"userId" : "...",
"publicKey" : "...",
"type" : "SSH",
"present" : true,
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"authenticationDomain" : {
"guid" : "...",
"name" : "..."
},
"project" : {
"guid" : "...",
"name" : "..."
},
"dataCenter" : {
"guid" : "...",
"name" : "..."
}
} ],
"remoteCloudUsers" : [ {
"email" : "...",
"externalSourceId" : "...",
"name" : "...",
"userPurpose" : "SHARED"
}, {
"email" : "...",
"externalSourceId" : "...",
"name" : "...",
"userPurpose" : "LINKED"
} ],
"remoteCloudGroups" : [ {
"name" : "...",
"externalSourceId" : "...",
"teamsGroup" : true,
"members" : [ "...", "..." ]
}, {
"name" : "...",
"externalSourceId" : "...",
"teamsGroup" : true,
"members" : [ "...", "..." ]
} ],
"remoteCloudSites" : [ {
"externalSourceId" : "...",
"groupExternalSourceId" : "...",
"parentExternalSourceId" : "...",
"name" : "...",
"accessLevel" : "...",
"siteType" : "TEAMS",
"webUrl" : "..."
}, {
"externalSourceId" : "...",
"groupExternalSourceId" : "...",
"parentExternalSourceId" : "...",
"name" : "...",
"accessLevel" : "...",
"siteType" : "TEAMS",
"webUrl" : "..."
} ],
"remoteCloudTeams" : [ {
"name" : "...",
"externalSourceId" : "...",
"teamsGroup" : true,
"members" : [ "...", "..." ]
}, {
"name" : "...",
"externalSourceId" : "...",
"teamsGroup" : true,
"members" : [ "...", "..." ]
} ],
"remoteAuthenticationDomains" : [ {
"name" : "...",
"domainId" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"name" : "...",
"domainId" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
}
} ],
"clusterUuidToClusterMap" : {
"property1" : {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nodeConfig" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"projects" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"visibleForAllProjects" : true
},
"property2" : {
"uuid" : "...",
"name" : "...",
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"dataCenter" : {
"guid" : "...",
"name" : "..."
},
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"nodeConfig" : {
"guid" : "...",
"name" : "..."
},
"projects" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"visibleForAllProjects" : true
}
},
"storagePoolUuidToStoragePoolMap" : {
"property1" : {
"uuid" : "...",
"name" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
},
"property2" : {
"uuid" : "...",
"name" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : {
"guid" : "...",
"name" : "..."
}
}
},
"hypervisorRemoteStorages" : {
"property1" : {
"uuid" : "...",
"name" : "...",
"totalUsedSpace" : 12345,
"totalAvailableSpace" : 12345,
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"clusters" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"type" : "AWS_EBS",
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storagePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
},
"property2" : {
"uuid" : "...",
"name" : "...",
"totalUsedSpace" : 12345,
"totalAvailableSpace" : 12345,
"hypervisor" : {
"guid" : "...",
"name" : "..."
},
"hvManager" : {
"guid" : "...",
"name" : "..."
},
"clusters" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"type" : "UNDEFINED",
"storageProvider" : {
"guid" : "...",
"name" : "..."
},
"storagePool" : {
"guid" : "...",
"name" : "..."
}
}
},
"completed" : true,
"chunkNumber" : 12345,
"version" : "...",
"inventoryTaskGuid" : "...",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
HTTP/1.1 201 Created
Create inventory synchronization task.
media type | data type | description |
---|---|---|
application/json | InventorySyncTaskRequest (JSON) | specify hypervisors and hypervisor managers for which will be created inventory synchronization task |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of inventory synchronization tasks |
POST /tasks/inventory-sync
Content-Type: application/json
Accept: application/json
{
"hypervisors" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"hypervisorManagers" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"storageProviders" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"cloudServiceProviders" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"osAgents" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"synchronizeAllEnvironments" : true
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THIN",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VMDK",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_HYPERV_INC",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "EXPORT_STORAGE_REPO",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_DATABASE_INC",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
} ],
"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" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
media type | data type |
---|---|
application/json | LiveMigrationTaskRequest (JSON) |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) |
POST /tasks/live-migration
Content-Type: application/json
Accept: application/json
{
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreStorageId" : "...",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_NUTANIX",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"overwrite" : true
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THICK",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "FILE_LIST_CSV",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "GCE_PD",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CHANNEL"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "GCE_PD",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_SITE"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "TAR_LZO",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "GCE_PD",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CHANNEL"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_NUTANIX",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Get last modification timestamp.
media type | data type | description |
---|---|---|
application/json | TimestampDTO (JSON) | last modification timestamp |
GET /tasks/modification-timestamps
Content-Type: application/json
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"value" : 12345
}
Create mount task.
media type | data type | description |
---|---|---|
application/json | MountTaskRequest (JSON) | specify details of mount task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created mount task |
POST /tasks/mount
Content-Type: application/json
Accept: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "ONEDRIVE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_CEPH",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_SITE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "XVA",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT_CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "DONT_TOUCH"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "OPENSTACK_CINDER",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_NUTANIX",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "LOCAL",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
} ],
"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
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Returns list of tasks to be executed by the node.
name | type | description |
---|---|---|
node | query | specify node guid as task executor |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | list of tasks |
GET /tasks/queued
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "FIXED_SIZE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENSTACK_CINDER",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_HC3",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "PORTWORX_VOLUME",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CONTACTS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OPENNEBULA",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "UNRECOGNIZED",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_MAILBOX"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VHD",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MAILBOX"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create tasks to remove old backups.
media type | data type | description |
---|---|---|
application/json | BackupCleanupTaskRequest (JSON) | specify details of task to remove old backups |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of newly created task to remove old backups |
POST /tasks/remove-old-backups
Content-Type: application/json
Accept: application/json
{
"backupDestinations" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"parentTask" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nameGuidAndType" : {
"type" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"type" : "UNMOUNT",
"workflowExecution" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"definitionName" : "BACKUP_DESTINATION_SYNCHRONIZATION",
"currentStep" : "SYNC_STORAGE_VOLUMES",
"progress" : 12345.0,
"priority" : 12345,
"originEntityType" : "SYSTEM_SCHEDULE",
"originEntityName" : "...",
"originEntityGuid" : "...",
"info" : "...",
"state" : "QUEUED",
"builtIn" : true,
"builtInType" : "SNAPSHOT_REVERSION",
"createdTime" : 12345,
"lastModifiedTime" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"windowStart" : 12345,
"commonContext" : { },
"virtualEnvironmentContext" : { },
"storageContext" : { },
"applicationContext" : { },
"cloudContext" : { },
"osContext" : { },
"tapeContext" : { },
"tasks" : [ { }, { } ],
"workflowDestinations" : [ { }, { } ],
"source" : { },
"nodeConfig" : { },
"backupDestinations" : [ { }, { } ],
"backupType" : "INCREMENTAL",
"protectedEntityNameGuidAndType" : { },
"auditEntityName" : "...",
"duration" : 12345
},
"state" : "QUEUED",
"windowStart" : 12345,
"windowEnd" : 12345,
"progressChange" : 12345,
"creationTime" : 12345,
"finishTime" : 12345,
"startTime" : 12345,
"progress" : 12345.0,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"migrateAfterInstantRestore" : true,
"migrationStorageId" : "...",
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"restoreImageStorageId" : "...",
"restoreStoragePool" : {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : { },
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"restoreProject" : {
"uuid" : "...",
"name" : "...",
"active" : true,
"present" : true,
"hvManager" : { },
"backupDestinations" : [ { }, { } ],
"guid" : "...",
"ver" : 12345,
"hypervisorClusters" : [ { }, { } ],
"hypervisorStorages" : [ { }, { } ],
"quota" : { },
"authenticationDomains" : [ { }, { } ],
"sourceAuthenticationDomain" : { },
"auditEntityName" : "...",
"availableAuthenticationDomain" : { },
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"restoreType" : "RESTORE_AND_IMPORT",
"restoreVmFlavor" : {
"uuid" : "...",
"name" : "...",
"vcpus" : 12345,
"ram" : 12345,
"totalDiskSpace" : 12345,
"configuration" : "...",
"shared" : true,
"present" : true,
"hvManager" : { },
"hvClusters" : [ { }, { } ],
"guid" : "...",
"projects" : [ { }, { } ],
"ver" : 12345,
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"restoreAccessKey" : {
"uuid" : "...",
"name" : "...",
"userId" : "...",
"publicKey" : "...",
"type" : "SSH",
"present" : true,
"hvManager" : { },
"authenticationDomain" : { },
"project" : { },
"dataCenter" : { },
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"authenticationDomain" : {
"name" : "...",
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"usedForAuthentication" : true,
"present" : true,
"hvManager" : { },
"auditEntityName" : "...",
"password" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"overwrite" : true,
"extract" : true,
"incSnapRequired" : true,
"sparsifyRestoreEnabled" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"restoredDiskAllocationFormat" : "THICK",
"statusInfo" : "...",
"node" : {
"nodeIp" : "...",
"lastSeen" : 12345,
"name" : "...",
"password" : "...",
"guid" : "...",
"version" : "...",
"proxyVmUuid" : "...",
"ver" : 12345,
"nfsStorageId" : "...",
"state" : "STOPPING",
"nodeConfig" : { },
"tasks" : [ { }, { } ],
"backupDestinationInitInfos" : [ { }, { } ],
"nodeAllocatedResources" : [ { }, { } ],
"totalSpace" : 12345,
"usedSpace" : 12345,
"lastSuccessfulLogin" : 12345,
"lastFailedLogin" : 12345,
"lastFailedLoginIp" : "...",
"hypervisors" : [ { }, { } ],
"nameAndGuid" : { },
"hypervisorCluster" : { },
"nameGuidAndType" : { },
"auditEntityName" : "..."
},
"preferredNode" : {
"nodeIp" : "...",
"lastSeen" : 12345,
"name" : "...",
"password" : "...",
"guid" : "...",
"version" : "...",
"proxyVmUuid" : "...",
"ver" : 12345,
"nfsStorageId" : "...",
"state" : "QUEUED_STOP",
"nodeConfig" : { },
"tasks" : [ { }, { } ],
"backupDestinationInitInfos" : [ { }, { } ],
"nodeAllocatedResources" : [ { }, { } ],
"totalSpace" : 12345,
"usedSpace" : 12345,
"lastSuccessfulLogin" : 12345,
"lastFailedLogin" : 12345,
"lastFailedLoginIp" : "...",
"hypervisors" : [ { }, { } ],
"nameAndGuid" : { },
"hypervisorCluster" : { },
"nameGuidAndType" : { },
"auditEntityName" : "..."
},
"protectedEntityType" : "OS_AGENT",
"protectedEntitySnapshot" : {
"guid" : "...",
"snapshotTime" : 12345,
"ver" : 12345,
"uuid" : "...",
"protectedEntity" : { },
"lastStoredSnapshotAssignments" : [ { }, { } ],
"status" : "QUEUED",
"vmSnapshotMgmtRule" : { },
"storageSnapshotMgmtRule" : { },
"warnings" : [ { }, { } ],
"warningsPresent" : true,
"metadata" : "...",
"firstRemovalAttempt" : 12345,
"lastRemovalAttempt" : 12345,
"numberOfRemovalAttempts" : 12345,
"numberOfDaysRemovalAttempts" : 12345,
"nameAndGuid" : { },
"standAlone" : true,
"nameGuidAndType" : { },
"auditEntityName" : "..."
},
"cloudServiceProvider" : {
"guid" : "...",
"ver" : 12345,
"name" : "...",
"cloudServiceProviderType" : "MICROSOFT365",
"nodeConfig" : { },
"settings" : {
"property1" : "...",
"property2" : "..."
},
"cloudSites" : [ { }, { } ],
"cloudUsers" : [ { }, { } ],
"nameAndGuid" : { },
"cloudGroups" : [ { }, { } ],
"cloudTeams" : [ { }, { } ],
"nameGuidAndType" : { },
"auditEntityName" : "...",
"anyManagementEntityFromPool" : { },
"pool" : { }
},
"dstProtectedEntity" : {
"nameGuidAndType" : { },
"nodeConfig" : { },
"present" : true,
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"name" : "...",
"sshHost" : "...",
"lastSuccessfulFullBackupSizeForFETB" : 12345,
"type" : "CLOUD_TEAMS",
"lastSuccessfulIncBackup" : { },
"warningsPresent" : true,
"buildInType" : "MSSQL_DB_BACKUP",
"credential" : { },
"lastChainMarkedForDeletion" : true,
"bounded" : true,
"snapshotMgmtPolicy" : { },
"typeDeletable" : true,
"lastStoredSnapshots" : [ { }, { } ],
"storageProviderIfPresent" : { },
"backupDestinationsByBackups" : [ { }, { } ],
"sshPort" : 12345,
"lastSuccessfulFullBackup" : { },
"backups" : [ { }, { } ],
"specialOperation" : "DISCARD_METADATA_DATABASES",
"lastStoredSnapshot" : { },
"backupPolicy" : { },
"cloud" : true,
"auditEntityName" : "...",
"lastRestoreJob" : { },
"lastStoredSnapshotAssignments" : [ { }, { } ],
"averageProgress" : 12345.0,
"lastSuccessfulBackup" : { }
},
"schedule" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"name" : "...",
"millisSinceLocalMidnight" : 12345,
"startWindowLength" : 12345,
"active" : true,
"lastRun" : 12345,
"nameGuidAndType" : { },
"lastSupposedRun" : 12345,
"type" : "STORAGE_SNAPSHOT",
"executionType" : "TIME",
"backupType" : "SYNCHRONIZATION",
"daysOfWeek" : [ "WEDNESDAY", "TUESDAY" ],
"dayOfWeekOccurrences" : [ "SECOND_IN_MONTH", "SECOND_IN_MONTH" ],
"months" : [ "AUGUST", "OCTOBER" ],
"rules" : [ { }, { } ],
"interval" : { },
"projects" : [ { }, { } ],
"visibleForAllProjects" : true,
"buildInType" : "DB2_BACKUP",
"forceFullBackup" : true,
"auditEntityName" : "...",
"startTime" : 12345
},
"backupType" : "INCREMENTAL",
"mountedBackup" : {
"guid" : "...",
"ver" : 12345,
"backup" : { },
"targetHypervisor" : { },
"backupLocation" : { },
"mode" : "OS_DOWNLOAD",
"finishedMount" : true,
"mountedFiles" : [ { }, { } ],
"mountedFileSystems" : [ { }, { } ],
"sharedMountPath" : "...",
"creationTime" : 12345,
"allowedClients" : [ "...", "..." ],
"nameAndGuid" : { },
"node" : { },
"nameGuidAndType" : { },
"unmountAttempted" : true,
"unmountTime" : 12345,
"cloudFeature" : "TEAMS_MEMBERS",
"downloadStatus" : "FAILED",
"restoredVmUuid" : "...",
"lastMountTaskId" : "...",
"lastRestoreTaskId" : "...",
"nfsStorageId" : "...",
"mountedDisks" : [ { }, { } ],
"auditEntityName" : "...",
"anyBackup" : { }
},
"restoredNetworks" : [ {
"task" : { },
"network" : { },
"networkInterfaceCard" : { },
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
}, {
"task" : { },
"network" : { },
"networkInterfaceCard" : { },
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
} ],
"vmSnapshotMgmtRule" : {
"retentionVersions" : 12345,
"policy" : { },
"snapshots" : [ { }, { } ],
"retentionDays" : 12345,
"name" : "...",
"schedules" : [ { }, { } ],
"guid" : "...",
"position" : 12345,
"ver" : 12345,
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"storageSnapshotMgmtRule" : {
"retentionVersions" : 12345,
"policy" : { },
"retentionDays" : 12345,
"snapshots" : [ { }, { } ],
"name" : "...",
"schedules" : [ { }, { } ],
"guid" : "...",
"position" : 12345,
"ver" : 12345,
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"baseImage" : {
"uuid" : "..."
},
"restoreJob" : {
"guid" : "...",
"ver" : 12345,
"restoreTime" : 12345,
"size" : 12345,
"status" : "INPROGRESS",
"statusInfo" : "...",
"protectedEntity" : { },
"tasks" : [ { }, { } ],
"archivedTasks" : [ { }, { } ],
"backup" : { },
"nameAndGuid" : { },
"dstProtectedEntity" : { },
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"nameGuidAndType" : { },
"restoreHostId" : "...",
"restoredPeName" : "...",
"restorePath" : "...",
"restoreVmFlavor" : { },
"restoreAccessKey" : { },
"restoreProject" : { },
"project" : { },
"baseImage" : "...",
"dataCenterName" : "...",
"restoredDiskAllocationFormat" : "EAGERZEROED",
"mountedBackupMode" : "CLOUD_PST_DOWNLOAD",
"backupType" : "FULL",
"restoreType" : "RESTORE_AND_MOUNT",
"node" : { },
"recoveryPlanPolicy" : { },
"warningsPresent" : true,
"taskDurationTime" : 12345,
"warnings" : [ { }, { } ],
"auditEntityName" : "...",
"anyRelatedBackup" : { }
},
"policy" : {
"guid" : "...",
"name" : "...",
"ver" : 12345,
"priority" : 12345,
"backupRetryCount" : 12345,
"autoAssignSettings" : { },
"autoRemoveNonPresent" : true,
"active" : true,
"buildInType" : "REAR_BACKUP",
"rules" : [ { }, { } ],
"visibleForAllProjects" : true,
"projects" : [ { }, { } ],
"nameAndGuid" : { },
"nameGuidAndType" : { },
"auditEntityName" : "..."
},
"rules" : [ {
"name" : "...",
"schedules" : [ { }, { } ],
"policy" : { },
"guid" : "...",
"position" : 12345,
"ver" : 12345,
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
}, {
"name" : "...",
"schedules" : [ { }, { } ],
"policy" : { },
"guid" : "...",
"position" : 12345,
"ver" : 12345,
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
} ],
"backupLocation" : {
"guid" : "...",
"ver" : 12345,
"backup" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"status" : "FAILED",
"type" : "INCREMENTAL",
"statusInfo" : "...",
"retentionHint" : "DONT_TOUCH",
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"protectedEntityDisplayName" : "...",
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"taskOptions" : "...",
"osAgent" : {
"guid" : "...",
"ver" : 12345,
"description" : "...",
"secret" : "...",
"lastLoginDate" : 12345,
"lastSeen" : 12345,
"status" : "DISCONNECTED",
"beingDeleted" : true,
"nodeConfig" : { },
"osBackupPolicy" : { },
"enabledScheduledBackups" : true,
"nameAndGuid" : { },
"osType" : "LINUX",
"auditEntityName" : "...",
"anyManagementEntityFromPool" : { },
"name" : "...",
"sshHost" : "...",
"sshPort" : 12345,
"lastSuccessfulFullBackupSizeForFETB" : 12345,
"pool" : { },
"type" : "VM",
"backupPolicy" : { },
"lastSuccessfulFullBackup" : { },
"lastRestoreJob" : { },
"peProviderForSystemNotification" : { },
"lastSuccessfulIncBackup" : { },
"lastStoredSnapshotAssignments" : [ { }, { } ],
"osAgent" : { },
"backups" : [ { }, { } ],
"warningsPresent" : true,
"buildInType" : "VPROTECT_GIT_REPOSITORY_BACKUP",
"credential" : { },
"averageProgress" : 12345.0,
"lastChainMarkedForDeletion" : true,
"specialOperation" : "DISCARD_METADATA_DATABASES",
"lastSuccessfulBackup" : { },
"nameGuidAndType" : { },
"present" : true,
"snapshotMgmtPolicy" : { },
"lastStoredSnapshot" : { },
"lastStoredSnapshots" : [ { }, { } ],
"typeDeletable" : true,
"bounded" : true,
"backupDestinationsByBackups" : [ { }, { } ],
"storageProviderIfPresent" : { },
"cloud" : true
},
"parentTask" : { },
"computeZone" : {
"uuid" : "...",
"name" : "...",
"visibleForAllProjects" : true,
"hvManager" : { },
"dataCenter" : { },
"guid" : "...",
"storages" : [ { }, { } ],
"ver" : 12345,
"hypervisors" : [ { }, { } ],
"networks" : [ { }, { } ],
"projects" : [ { }, { } ],
"nodeConfig" : { },
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"tape" : {
"name" : "...",
"serialNumber" : "...",
"totalSpace" : 12345,
"initialized" : true,
"state" : "EJECTED",
"guid" : "...",
"tapeLibrary" : { },
"tapeLock" : { },
"ver" : 12345,
"tapePoolBackupDestination" : { },
"tapeLocation" : { },
"type" : "REGULAR",
"auditEntityName" : "...",
"tapeChunks" : [ { }, { } ],
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"tapeDrive" : {
"uuid" : "...",
"name" : "...",
"path" : "...",
"tapePath" : "...",
"present" : true,
"lastUsedDate" : 12345,
"tapeLibrary" : { },
"tapePoolBackupDestinations" : [ { }, { } ],
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"tapeLocation" : {
"name" : "...",
"description" : "...",
"tapes" : [ { }, { } ],
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"strategy" : {
"backupStatusUpdateRequired" : true
},
"taskTimeout" : 12345,
"critical" : true,
"auditEntityName" : "...",
"taskFiles" : [ {
"task" : { },
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : "THICK",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true,
"markedForRestore" : true,
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
}, {
"task" : { },
"backupFile" : { },
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : "THICK",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true,
"markedForRestore" : true,
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
} ],
"source" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"auditEntityName" : "..."
},
"nodeConfig" : {
"guid" : "...",
"ver" : 12345,
"backupDestinations" : [ { }, { } ],
"nodes" : [ { }, { } ],
"hypervisors" : [ { }, { } ],
"hypervisorManagers" : [ { }, { } ],
"storageProviders" : [ { }, { } ],
"applications" : [ { }, { } ],
"nameAndGuid" : { },
"cloudServiceProviders" : [ { }, { } ],
"hypervisorCluster" : { },
"nameGuidAndType" : { },
"tapeManagers" : [ { }, { } ],
"name" : "...",
"modificationTime" : 12345,
"isDefault" : true,
"generalSettings" : { },
"threadsSettings" : { },
"netcatSettings" : { },
"cloudAgentSettings" : { },
"auditEntityName" : "...",
"defaultNode" : { },
"usedInArchitecture" : true,
"architectureInfo" : "...",
"pathableBackupDestinations" : [ { }, { } ]
},
"primaryIncrementalSnapshotRequired" : true,
"backup" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"snapshotTime" : 12345,
"backupTime" : 12345,
"archiveExpire" : 12345,
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"hidden" : true,
"originEntityType" : "SYSTEM_SCHEDULE",
"originEntityName" : "...",
"originEntityGuid" : "...",
"description" : "...",
"status" : "PARTIAL_SUCCESS",
"statusInfo" : "...",
"storedBytes" : 12345,
"backupLocations" : [ { }, { } ],
"protectedEntity" : { },
"node" : { },
"backupRule" : { },
"protectedEntityType" : "CLOUD_TEAMS",
"type" : "INCREMENTAL",
"parentBackup" : { },
"tasks" : [ { }, { } ],
"files" : [ { }, { } ],
"archivedTasks" : [ { }, { } ],
"vmExportImportMode" : "CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ { }, { } ],
"baseImage" : { },
"sourceProject" : { },
"retentionHint" : "DONT_TOUCH",
"archivedBackup" : { },
"taskDurationTime" : 12345,
"auditEntityName" : "...",
"primaryBackupDestination" : { },
"primaryLocation" : { },
"nonPrimaryLocations" : [ { }, { } ],
"secondaryBackupDestinations" : [ { }, { } ],
"allBackupDestinations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"locationStatuses" : [ "PRESENT", "IN_PROGRESS" ],
"overallStatus" : "FAILED",
"statusBasedOnBackupFileLocations" : "FAILED",
"agentType" : true,
"deletable" : true
},
"originBackupRule" : {
"name" : "...",
"schedules" : [ { }, { } ],
"guid" : "...",
"position" : 12345,
"ver" : 12345,
"auditEntityName" : "...",
"markedForDeletion" : true,
"ruleBackupDestinations" : [ { }, { } ],
"snapshotAssignments" : [ { }, { } ],
"isIncBackupObsoleteDueToBackupDestinationsChanged" : true,
"active" : true,
"nameAndGuid" : { },
"type" : "APPLICATION",
"backups" : [ { }, { } ],
"nameGuidAndType" : { },
"backupDestinations" : [ { }, { } ],
"otherActiveBackupDestinations" : [ { }, { } ],
"primaryBackupDestination" : { },
"otherBackupDestinations" : [ { }, { } ],
"primaryBackupDestinationInOtherBackupDestinations" : true,
"backupCopyEnabled" : true,
"policy" : { }
},
"hypervisor" : {
"guid" : "...",
"ver" : 12345,
"host" : "...",
"type" : "KUBERNETES",
"nodeConfig" : { },
"user" : "...",
"sshKeyPath" : "...",
"sshPort" : 12345,
"lastInventorySyncDate" : 12345,
"lastSuccessfulInventorySyncDate" : 12345,
"storageProvider" : { },
"vms" : [ { }, { } ],
"hvManager" : { },
"nameAndGuid" : { },
"vmExportImportMode" : "VM_IMAGE_PLUS_INCREMENTAL_DISKS",
"transferNicAddress" : "...",
"nameGuidAndType" : { },
"dataCenterName" : "...",
"dataCenter" : { },
"cluster" : { },
"vmOwner" : "...",
"vmOwningGroup" : "...",
"storageType" : "CEPH",
"licenseCovered" : true,
"useNetcat" : true,
"citrixSettings" : { },
"libvirtSettings" : { },
"proxmoxSettings" : { },
"hvHypervSettings" : { },
"version" : "...",
"subtype" : "XENSERVER",
"trustAllCerts" : true,
"password" : "...",
"auditEntityName" : "...",
"anyManagementEntityFromPool" : { },
"pool" : { }
},
"hypervisorManager" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"url" : "...",
"type" : "OPENSTACK",
"nodeConfig" : { },
"user" : "...",
"sshKeyPath" : "...",
"useToken" : true,
"sshPort" : 12345,
"lastInventorySyncDate" : 12345,
"lastSuccessfulInventorySyncDate" : 12345,
"hypervisors" : [ { }, { } ],
"vms" : [ { }, { } ],
"dataCenters" : [ { }, { } ],
"projects" : [ { }, { } ],
"vmExportImportMode" : "DISK_IMAGE_TRANSFER",
"baseImageCreationConfig" : { },
"account" : "...",
"storageType" : "CEPH",
"useNetcat" : true,
"region" : "...",
"ovmSettings" : { },
"rhvSettings" : { },
"awsSettings" : { },
"vmwareSettings" : { },
"openStackSettings" : { },
"nutanixSettings" : { },
"oadpSettings" : { },
"hvmHypervSettings" : { },
"hvmAzureSettings" : { },
"gcpSettings" : { },
"endpointInterfaceType" : "ADMIN",
"version" : "...",
"subtype" : "OTHER",
"authenticationDomains" : [ { }, { } ],
"hypervisorClusters" : [ { }, { } ],
"trustAllCerts" : true,
"password" : "...",
"accessKey" : "...",
"secretKey" : "...",
"auditEntityName" : "...",
"anyManagementEntityFromPool" : { },
"pool" : { },
"networks" : [ { }, { } ]
},
"project" : {
"uuid" : "...",
"name" : "...",
"active" : true,
"present" : true,
"hvManager" : { },
"backupDestinations" : [ { }, { } ],
"guid" : "...",
"ver" : 12345,
"hypervisorClusters" : [ { }, { } ],
"hypervisorStorages" : [ { }, { } ],
"quota" : { },
"authenticationDomains" : [ { }, { } ],
"sourceAuthenticationDomain" : { },
"auditEntityName" : "...",
"availableAuthenticationDomain" : { },
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"dataCenter" : {
"name" : "...",
"uuid" : "...",
"hvManager" : { },
"virtualMachines" : [ { }, { } ],
"hypervisors" : [ { }, { } ],
"guid" : "...",
"hypervisorClusters" : [ { }, { } ],
"ver" : 12345,
"recoveryPlanRules" : [ { }, { } ],
"networks" : [ { }, { } ],
"auditEntityName" : "...",
"fullName" : "...",
"uniqueId" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"hvCluster" : {
"uuid" : "...",
"name" : "...",
"visibleForAllProjects" : true,
"hvManager" : { },
"dataCenter" : { },
"guid" : "...",
"storages" : [ { }, { } ],
"ver" : 12345,
"hypervisors" : [ { }, { } ],
"networks" : [ { }, { } ],
"projects" : [ { }, { } ],
"nodeConfig" : { },
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"storageProvider" : {
"guid" : "...",
"ver" : 12345,
"name" : "...",
"host" : "...",
"user" : "...",
"availabilityZone" : "...",
"lastInventorySyncDate" : 12345,
"lastSuccessfulInventorySyncDate" : 12345,
"serverPartnerUuid" : "...",
"cephSettings" : { },
"afsSettings" : { },
"type" : "NUTANIX_VG",
"nodeConfig" : { },
"version" : "...",
"storagePoolManagementStrategy" : "INCLUDE",
"managedStoragePools" : [ "...", "..." ],
"nameAndGuid" : { },
"trustAllCerts" : true,
"auditEntityName" : "...",
"password" : "...",
"nameGuidAndType" : { },
"anyManagementEntityFromPool" : { },
"pool" : { }
},
"storagePool" : {
"name" : "...",
"uuid" : "...",
"size" : 12345,
"usedSpace" : 12345,
"storageProvider" : { },
"auditEntityName" : "...",
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"tapeManager" : {
"url" : "...",
"name" : "...",
"state" : "UNKNOWN",
"nodeConfig" : { },
"lastInventorySyncDate" : 12345,
"lastSuccessfulInventorySyncDate" : 12345,
"guid" : "...",
"auditEntityName" : "...",
"ver" : 12345,
"secretKey" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"appCmdExecConfig" : {
"guid" : "...",
"ver" : 12345,
"name" : "...",
"cmdArg" : [ "...", "..." ],
"applications" : [ { }, { } ],
"appCmdExecConfigParams" : [ { }, { } ],
"cmdExecMethod" : "REMOTE_POWERSHELL",
"exportData" : true,
"removeFilesAfterExport" : true,
"sourceType" : "FILE",
"sourcePath" : "...",
"buildInType" : "ETCD_BACKUP",
"timeout" : 12345,
"userModifiable" : true,
"nameAndGuid" : { },
"ignoredExitCodes" : "...",
"stdErrorHandling" : "IGNORE_WITHOUT_WARNING",
"auditEntityName" : "...",
"nameGuidAndType" : { },
"useNetcat" : true
},
"priority" : 12345,
"backupQueued" : true,
"restoreJobQueued" : true,
"hypervisorManagerType" : "OPENSHIFT",
"protectedEntity" : {
"nameGuidAndType" : { },
"nodeConfig" : { },
"present" : true,
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"name" : "...",
"sshHost" : "...",
"lastSuccessfulFullBackupSizeForFETB" : 12345,
"type" : "CLOUD_GROUP",
"lastSuccessfulIncBackup" : { },
"warningsPresent" : true,
"buildInType" : "OVIRT_RHV_DB_BACKUP",
"credential" : { },
"lastChainMarkedForDeletion" : true,
"bounded" : true,
"snapshotMgmtPolicy" : { },
"typeDeletable" : true,
"lastStoredSnapshots" : [ { }, { } ],
"storageProviderIfPresent" : { },
"backupDestinationsByBackups" : [ { }, { } ],
"sshPort" : 12345,
"lastSuccessfulFullBackup" : { },
"backups" : [ { }, { } ],
"specialOperation" : "DISCARD_METADATA_DATABASES",
"lastStoredSnapshot" : { },
"backupPolicy" : { },
"cloud" : true,
"auditEntityName" : "...",
"lastRestoreJob" : { },
"lastStoredSnapshotAssignments" : [ { }, { } ],
"averageProgress" : 12345.0,
"lastSuccessfulBackup" : { }
},
"backupDestination" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"name" : "...",
"modificationTime" : 12345,
"dedupEnabled" : true,
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"trustAllCerts" : true,
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"backupDestinationBackups" : [ { }, { } ],
"ruleBackupDestinations" : [ { }, { } ],
"type" : "NETBACKUP",
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"encryptionEnabled" : true,
"warnings" : [ "...", "..." ],
"defaultBackupDestination" : true,
"spaceThreshold" : 12345,
"description" : "...",
"state" : "REQUIRED_INITIALIZATION",
"auditEntityName" : "...",
"nameGuidAndType" : { },
"randomAccessSupported" : true,
"backups" : [ { }, { } ],
"synthetic" : true,
"tapePool" : true,
"assignedToPolicyRules" : true
},
"kvmVm" : true,
"cloudDownload" : true
}
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "SPARSE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "LOCAL",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_OPENNEBULA",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_MAILBOX"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CLOUD_DATABASE",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "OPENNEBULA_IMAGE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "TO_REMOVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_DATABASE",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_SITE"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create tasks to remove old snapshots.
media type | data type | description |
---|---|---|
application/json | SnapshotsCleanupTaskRequest (JSON) | specify details of task to remove old snapshots |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of newly created task to remove old snapshots |
POST /tasks/remove-old-snapshots
Content-Type: application/json
Accept: application/json
{
"protectedEntities" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"periodic" : true
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "DYNAMICALLY_EXPANDING",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_NUTANIX",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_PAGE_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "NONE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_HC3",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_IMAGE_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MEMBERS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_KUBERNETES",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_MAILBOX"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create restore task.
media type | data type | description |
---|---|---|
application/json | RestoreTaskRequest (JSON) | specify details of restore task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created restore task |
POST /tasks/restore
Content-Type: application/json
Accept: application/json
{
"restorePath" : "...",
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"overwrite" : true,
"extract" : true,
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"retryCount" : 12345,
"filesToRestore" : [ {
"guid" : "...",
"ver" : 12345,
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"mountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"encryption" : 12345,
"config" : "...",
"objectName" : "...",
"nameAndGuid" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"sessionId" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX",
"format" : "CBT_BASE64",
"nameGuidAndType" : {
"type" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"underlyingStorageType" : "LOCAL",
"compressionType" : "TAR",
"backup" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"snapshotTime" : 12345,
"backupTime" : 12345,
"archiveExpire" : 12345,
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"hidden" : true,
"originEntityType" : "USER",
"originEntityName" : "...",
"originEntityGuid" : "...",
"description" : "...",
"status" : "INPROGRESS",
"statusInfo" : "...",
"storedBytes" : 12345,
"backupLocations" : [ { }, { } ],
"protectedEntity" : { },
"node" : { },
"backupRule" : { },
"protectedEntityType" : "CLOUD_GROUP",
"type" : "SYNCHRONIZATION",
"parentBackup" : { },
"tasks" : [ { }, { } ],
"files" : [ { }, { } ],
"archivedTasks" : [ { }, { } ],
"vmExportImportMode" : "CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ { }, { } ],
"baseImage" : { },
"sourceProject" : { },
"retentionHint" : "STANDARD_RETENTION",
"archivedBackup" : { },
"taskDurationTime" : 12345,
"auditEntityName" : "...",
"primaryBackupDestination" : { },
"primaryLocation" : { },
"nonPrimaryLocations" : [ { }, { } ],
"secondaryBackupDestinations" : [ { }, { } ],
"allBackupDestinations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"locationStatuses" : [ "IN_PROGRESS", "IN_PROGRESS" ],
"overallStatus" : "PARTIAL_SUCCESS",
"statusBasedOnBackupFileLocations" : "FAILED",
"agentType" : true,
"deletable" : true
},
"parentBackupFile" : { },
"locations" : [ {
"backupDestination" : { },
"backupFile" : { },
"guid" : "...",
"status" : "PRESENT",
"ver" : 12345,
"roleType" : "PRIMARY",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"path" : "...",
"tapeChunks" : [ { }, { } ],
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
}, {
"backupDestination" : { },
"backupFile" : { },
"guid" : "...",
"status" : "CREATING",
"ver" : 12345,
"roleType" : "SECONDARY",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "...",
"tapeChunks" : [ { }, { } ],
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
} ],
"lvmType" : true,
"metadataFormat" : true,
"diskFormat" : true,
"restoresTime" : [ 12345, 12345 ],
"vmDisk" : {
"name" : "...",
"uuid" : "...",
"devicePath" : "...",
"fullDevicePath" : "...",
"guid" : "...",
"ver" : 12345,
"controllerId" : "...",
"slot" : "...",
"size" : 12345,
"present" : true,
"excludedFromBackup" : true,
"bootable" : true,
"image" : true,
"volumeSource" : "...",
"volumeType" : "...",
"type" : "OPENSHIFT_UNSNAPSHOTTABLE_DISK",
"supported" : true,
"snapshots" : [ { }, { } ],
"virtualMachine" : { },
"originalStorage" : { },
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"auditEntityName" : "..."
}, {
"guid" : "...",
"ver" : 12345,
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"mountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"encryption" : 12345,
"config" : "...",
"objectName" : "...",
"nameAndGuid" : {
"guid" : "...",
"name" : "..."
},
"sessionId" : "...",
"cloudFeature" : "ONEDRIVE",
"format" : "VM_META_LIBVIRT",
"nameGuidAndType" : {
"type" : { },
"guid" : "...",
"name" : "..."
},
"underlyingStorageType" : "VSPHERE",
"compressionType" : "GZIP",
"backup" : {
"guid" : "...",
"ver" : 12345,
"nameAndGuid" : { },
"nameGuidAndType" : { },
"snapshotTime" : 12345,
"backupTime" : 12345,
"archiveExpire" : 12345,
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"hidden" : true,
"originEntityType" : "SCHEDULE",
"originEntityName" : "...",
"originEntityGuid" : "...",
"description" : "...",
"status" : "SUCCESS",
"statusInfo" : "...",
"storedBytes" : 12345,
"backupLocations" : [ { }, { } ],
"protectedEntity" : { },
"node" : { },
"backupRule" : { },
"protectedEntityType" : "CLOUD_GROUP",
"type" : "SYNCHRONIZATION",
"parentBackup" : { },
"tasks" : [ { }, { } ],
"files" : [ { }, { } ],
"archivedTasks" : [ { }, { } ],
"vmExportImportMode" : "EXPORT_STORAGE_REPO",
"warningsPresent" : true,
"warnings" : [ { }, { } ],
"baseImage" : { },
"sourceProject" : { },
"retentionHint" : "DONT_TOUCH",
"archivedBackup" : { },
"taskDurationTime" : 12345,
"auditEntityName" : "...",
"primaryBackupDestination" : { },
"primaryLocation" : { },
"nonPrimaryLocations" : [ { }, { } ],
"secondaryBackupDestinations" : [ { }, { } ],
"allBackupDestinations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"locationStatuses" : [ "PRESENT", "FAILED" ],
"overallStatus" : "SUCCESS_REMOVED",
"statusBasedOnBackupFileLocations" : "SUCCESS",
"agentType" : true,
"deletable" : true
},
"parentBackupFile" : { },
"locations" : [ {
"backupDestination" : { },
"backupFile" : { },
"guid" : "...",
"status" : "PRESENT",
"ver" : 12345,
"roleType" : "ARCHIVE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "...",
"tapeChunks" : [ { }, { } ],
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
}, {
"backupDestination" : { },
"backupFile" : { },
"guid" : "...",
"status" : "TORECREATE",
"ver" : 12345,
"roleType" : "PRIMARY",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "...",
"tapeChunks" : [ { }, { } ],
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
} ],
"lvmType" : true,
"metadataFormat" : true,
"diskFormat" : true,
"restoresTime" : [ 12345, 12345 ],
"vmDisk" : {
"name" : "...",
"uuid" : "...",
"devicePath" : "...",
"fullDevicePath" : "...",
"guid" : "...",
"ver" : 12345,
"controllerId" : "...",
"slot" : "...",
"size" : 12345,
"present" : true,
"excludedFromBackup" : true,
"bootable" : true,
"image" : true,
"volumeSource" : "...",
"volumeType" : "...",
"type" : "OPENSTACK_NOVA",
"supported" : true,
"snapshots" : [ { }, { } ],
"virtualMachine" : { },
"originalStorage" : { },
"auditEntityName" : "...",
"nameAndGuid" : { },
"nameGuidAndType" : { }
},
"auditEntityName" : "..."
} ]
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THIN",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CHANNEL"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_JSON",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "UNRECOGNIZED",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_HYPERV",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "GCE_PD",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "ARCHIVE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "OPENSTACK_VOLUME_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OPENSTACK",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_LIST"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Create restore and import task.
name | type | description |
---|---|---|
project-uuid | query |
media type | data type | description |
---|---|---|
application/json | RestoreAndImportTaskRequest (JSON) | specify details of restore and import task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created restore and import task |
POST /tasks/restore-and-import
Content-Type: application/json
Accept: application/json
{
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"taskFiles" : [ {
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"markedForRestore" : true,
"diskAllocationFormat" : "FIXED_SIZE",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"markedForRestore" : true,
"diskAllocationFormat" : "THIN",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"overwrite" : true,
"extract" : true,
"sparsifyRestoreEnabled" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"restoredNetworks" : [ {
"network" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"networkInterfaceCard" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"network" : {
"guid" : "...",
"name" : "..."
},
"networkInterfaceCard" : {
"guid" : "...",
"name" : "..."
}
} ],
"imageRefForRestore" : "...",
"restoreImageStorageId" : "..."
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "EAGERZEROED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MEMBERS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_NUTANIX_INC",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "NONE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2_INC",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "PORTWORX_VOLUME",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "DONT_TOUCH"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_VMWARE_INC",
"backupFileType" : "VM_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_INSTALLED_APP"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Create restore and mount task
media type | data type | description |
---|---|---|
application/json | RestoreAndMountTaskRequest (JSON) | specify details of restore and mount task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created restore and mount task |
POST /tasks/restore-and-mount
Content-Type: application/json
Accept: application/json
{
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedFileSystems" : [ {
"fileSystem" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"fileSystem" : {
"guid" : "...",
"name" : "..."
},
"mountedBackup" : {
"guid" : "...",
"name" : "..."
},
"mountedFile" : {
"guid" : "...",
"name" : "..."
}
} ],
"mountedDisks" : [ {
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"backupFile" : {
"guid" : "...",
"name" : "..."
}
} ],
"allowedClients" : [ "...", "..." ],
"nodeConfig" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"unmountTime" : 12345,
"mode" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "FIXED_SIZE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENSTACK_VOLUME_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "STORAGE_META_AFS",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_DOCUMENT_LIBRARY"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "APP_TAR",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "SSH_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "OPENNEBULA_SYSTEM_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VMA_GZIP",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_ARCHIVE_MAILBOX"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Create snapshot reversion task.
media type | data type | description |
---|---|---|
application/json | SnapshotReversionTaskRequest (JSON) | specify details of snapshot reversion task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created snapshot reversion task |
POST /tasks/revert
Content-Type: application/json
Accept: application/json
{
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"priority" : 50
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_MOUNT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "DYNAMICALLY_EXPANDING",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "LVM_THIN",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_DATABASE",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "AZURE_FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CLOUD_DATABASE",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_LIST"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_DISK_META_JSON",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "LOCAL",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_INSTALLED_APP"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Create snapshot task.
media type | data type | description |
---|---|---|
application/json | SnapshotTaskRequest (JSON) | specify details of snapshot task |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | details of newly created snapshot task |
POST /tasks/snapshot
Content-Type: application/json
Accept: application/json
{
"protectedEntities" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"rule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"priority" : 50
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_JSON_INC",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "OPENSTACK_CINDER",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OPENSTACK",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "LVM_THIN",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_LIST"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "SSH_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "REMOVED",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VG_NUTANIX",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CHANNEL"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Update state of tasks.
media type | data type | description |
---|---|---|
application/json | UpdateTasksStateRequest (JSON) | specify state and tasks to update |
PUT /tasks/state
Content-Type: application/json
{
"state" : "QUEUED",
"statusInfo" : "...",
"tasks" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ]
}
HTTP/1.1 204 No Content
Update tape manager inventory.
media type | data type | description |
---|---|---|
application/json | TapeManagerInventoryRequest (JSON) | specify what to update in inventory |
POST /tasks/tape-manager-inventory
Content-Type: application/json
{
"tapeManagerGuid" : "...",
"tapeLibraries" : [ {
"uuid" : "...",
"name" : "...",
"path" : "...",
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"path" : "...",
"tapeManager" : {
"guid" : "...",
"name" : "..."
}
} ],
"tapeDrives" : [ {
"uuid" : "...",
"name" : "...",
"path" : "...",
"tapePath" : "...",
"tapeLibrary" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"uuid" : "...",
"name" : "...",
"path" : "...",
"tapePath" : "...",
"tapeLibrary" : {
"guid" : "...",
"name" : "..."
}
} ],
"tapes" : [ {
"name" : "...",
"state" : "EJECTED",
"tapeLibrary" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"name" : "...",
"state" : "EJECTED",
"tapeLibrary" : {
"guid" : "...",
"name" : "..."
}
} ],
"inventoryTaskGuid" : "...",
"type" : "DRIVES"
}
HTTP/1.1 201 Created
Create tape manager inventory synchronization task.
media type | data type | description |
---|---|---|
application/json | TapeManagerInventorySyncTaskRequest (JSON) | specify tape managers for which will be created inventory synchronization task |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | detailed list of inventory synchronization tasks |
POST /tasks/tape-manager-inventory-sync
Content-Type: application/json
Accept: application/json
{
"tapeManagers" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"synchronizeAllEnvironments" : true
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "PREALLOCATED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "LVM",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CLOUD_DATABASE",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_DATABASE",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT_CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "ARCHIVE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "ARCHIVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "PORTWORX_VOLUME",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CBT_BASE64",
"backupFileType" : "DISK_INC",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CONTACTS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"path" : "..."
} ],
"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" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Create unmount task.
media type | data type | description |
---|---|---|
application/json | UnmountTaskRequest (JSON) | specify details of unmount task |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | details of newly created unmount task |
POST /tasks/unmount
Content-Type: application/json
Accept: application/json
{
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "EAGERZEROED",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "XVA",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "USER_CHATS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "AZURE_FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_HYPERV",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "NONE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "SSH_TRANSFER",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "FAILED",
"statusInfo" : "...",
"retentionHint" : "TO_REMOVE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "AZURE_FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "USER_CHATS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "NVRAM_INC",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
media type | data type |
---|---|
application/json | UploadFilesRequest (JSON) |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) |
POST /tasks/upload
Content-Type: application/json
Accept: application/json
{
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"protectedEntity" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"destinationPath" : "...",
"credential" : {
"guid" : "...",
"name" : "...",
"user" : "...",
"secretKey" : "...",
"sshKey" : "...",
"sshKeyPath" : "...",
"powerShellTransportType" : "NTLM"
}
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE_AND_IMPORT",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "SPARSE",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"underlyingStorageType" : "GCP_DISK_TYPE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CALENDARS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "RAW",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "UNDEFINED",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_DOCUMENT_LIBRARY"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "TAR_LZO",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "DISK_ATTACHMENT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "RECREATE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "SECONDARY",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "LVM_THIN",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_LIST"
},
"status" : "PRESENT",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_OPENSTACK_INC",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Remove task.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
DELETE /tasks/{guid}
Content-Type: */*
...
HTTP/1.1 204 No Content
Get a single task details.
name | type | description | default | constraints |
---|---|---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) | ||
extended | query | specify whether to show extended details; with default value false | false | boolean |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | a single task details |
GET /tasks/{guid}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "DYNAMICALLY_EXPANDING",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "STORAGE_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "NONE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "EXCHANGE_CONTACTS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "EXCLUDED_DISK",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_LIST"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "QUOBYTE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "VM_META_NUTANIX",
"backupFileType" : "CLOUD_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "OPENNEBULA_SYSTEM_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_LIST"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "INHERIT",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "STANDARD_RETENTION",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "RECREATE"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_DOCUMENT_LIBRARY"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "DISABLED",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZATION_FAILED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "CLOUD_DATABASE",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "GLUSTERFS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_PAGE_LIBRARY"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
} ],
"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_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Create tasks from recovery plan.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for recovery plan (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | array of TaskListRecord (JSON) | list of newly created tasks from specified recovery plan |
POST /tasks/{guid}
Content-Type: */*
Accept: application/json
...
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"priority" : 12345,
"startTime" : 12345,
"finishTime" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupType" : "FULL",
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"originEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"nfsStorageId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"progress" : 66.5
} ]
Create import task for cloud.
media type | data type | description |
---|---|---|
application/json | CloudTaskWithOptionsPerFeatureRequest (JSON) | specify details of import task for cloud |
media type | data type | description |
---|---|---|
application/json | array of TaskDetails (JSON) | details of newly created import task for cloud |
POST /tasks/import-for-cloud/per-feature
Content-Type: application/json
Accept: application/json
{
"protectedEntities" : [ {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"type" : {
"name" : "...",
"description" : "..."
},
"guid" : "...",
"name" : "..."
} ],
"tab" : "...",
"cloudTaskOptionsList" : [ {
"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" : "SINGLE_EVENT"
}, {
"accordingToPolicy" : true,
"path" : "...",
"container" : "...",
"destinationEmail" : "...",
"destinationExternalSourceId" : "...",
"deleted" : true,
"overwrite" : true,
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"features" : [ {
"name" : "...",
"description" : "..."
}, {
"name" : "...",
"description" : "..."
} ],
"objects" : [ {
"type" : { },
"guid" : "..."
}, {
"type" : { },
"guid" : "..."
} ],
"recursive" : true,
"restoreType" : "ALL_SERIES"
} ]
}
HTTP/1.1 201 Created
Content-Type: application/json
[ {
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THICK",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "UNRECOGNIZED",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"underlyingStorageType" : "FILE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MEMBERS"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_GCP",
"backupFileType" : "VM_META_ZIP",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "GCE_PD",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "ONEDRIVE"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS_MAILBOX"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_MEMBERS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "CHANGED_BLOCK_TRACKING",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "DONT_TOUCH",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"status" : "IN_PROGRESS",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "INITIALIZING",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "STORAGEOS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "TEAMS"
},
"status" : "CREATING",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "SECONDARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "VM_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR",
"underlyingStorageType" : "SCALEIO",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "ONEDRIVE"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "OVERWRITE_IF_DIFFERENT",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "SSH",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
} ]
Update backup type of task.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | BackupType (JSON) | specify backup type of task to update |
media type | data type | description |
---|---|---|
application/json | TaskDetails (JSON) | task details |
PUT /tasks/{guid}/backup-type
Content-Type: application/json
Accept: application/json
"FULL"
HTTP/1.1 204 No Content
Content-Type: application/json
{
"parentTask" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"workflowExecution" : {
"guid" : "...",
"commonContext" : {
"virtualMachine" : { },
"application" : { },
"storage" : { },
"cloudGroup" : { },
"cloudSite" : { },
"cloudUser" : { },
"cloudTeams" : { },
"osAgent" : { }
},
"virtualEnvironmentContext" : {
"hvCluster" : { },
"hypervisor" : { },
"hypervisorManager" : { },
"project" : { },
"dataCenter" : { }
},
"storageContext" : {
"storageProvider" : { }
},
"applicationContext" : {
"appCmdExecConfig" : { }
},
"cloudContext" : {
"cloudServiceProvider" : { }
},
"osContext" : {
"osAgent" : { }
},
"tapeContext" : {
"tapeManager" : { }
}
},
"restoreType" : "RESTORE",
"statusInfo" : "...",
"progressChange" : 12345,
"startTime" : 12345,
"hypervisorCertChainCreationTime" : 12345,
"hypervisorManagerCertChainCreationTime" : 12345,
"storageProviderCertChainCreationTime" : 12345,
"backupDestinationCertChainCreationTime" : 12345,
"retryCount" : 12345,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"protectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntityDisplayName" : "...",
"dstProtectedEntity" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"protectedEntitySnapshot" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"hypervisorManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"storageProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"cloudServiceProvider" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"osAgent" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"mountedBackup" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedule" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"node" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreJob" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupDestination" : {
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoredPeName" : "...",
"restorePath" : "...",
"restoreStorageId" : "...",
"restoreClusterId" : "...",
"restoreHostId" : "...",
"restoreToOriginalVolumeType" : true,
"restoreStoragePool" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreVmFlavor" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreAccessKey" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreProject" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"project" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"authenticationDomain" : {
"guid" : "...",
"name" : "...",
"present" : true,
"domainId" : "...",
"user" : "...",
"defaultProjectName" : "...",
"hvManager" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"usedForAuthentication" : true
},
"restoredDiskAllocationFormat" : "THICK",
"taskFiles" : [ {
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "SQLITE_DATABASE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"underlyingStorageType" : "OPENNEBULA_FILE_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_GCP_INC",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "GZIP",
"underlyingStorageType" : "CEPH",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "SHAREPOINT_LIST"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"diskAllocationFormat" : {
"name" : "...",
"description" : "..."
},
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ],
"filesToRestore" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"guid" : "..."
} ],
"restoredNetworks" : [ {
"guid" : "...",
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
}, {
"guid" : "...",
"task" : {
"guid" : "...",
"name" : "..."
},
"network" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"present" : true,
"networkInterfaceCards" : [ { }, { } ],
"hypervisorManager" : { },
"hypervisor" : { },
"projects" : [ { }, { } ],
"sourceProject" : { },
"dataCenter" : { },
"hvCluster" : { }
},
"networkInterfaceCard" : {
"guid" : "...",
"uuid" : "...",
"name" : "...",
"network" : { },
"virtualMachine" : { },
"backups" : [ { }, { } ]
}
} ],
"filesToSynchronize" : [ {
"task" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupFile" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "APP_IMAGE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "AZURE_DISK",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "SHAREPOINT_LIST"
},
"backupDestination" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}
}, {
"task" : {
"guid" : "...",
"name" : "..."
},
"backupFile" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_OPENNEBULA",
"backupFileType" : "OS_FILE",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_GZIP",
"underlyingStorageType" : "OPENNEBULA_BACKUP_DS",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS"
},
"backupDestination" : {
"guid" : "...",
"name" : "..."
}
} ],
"snapshotMgmtRule" : {
"guid" : "...",
"name" : "...",
"retentionVersions" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"retentionDays" : 12345,
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345
},
"vmBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"backupCount" : 12345,
"removable" : true,
"markedForDeletion" : true,
"daysToKeepRetentionLock" : 12345
} ],
"storageBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"appBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"cloudBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
} ],
"backupCount" : 12345,
"markedForDeletion" : true
} ],
"osBackupRules" : [ {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"schedules" : [ {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "PRIMARY",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
}, {
"guid" : "...",
"name" : "...",
"policy" : {
"guid" : "...",
"name" : "..."
},
"schedules" : [ {
"guid" : "...",
"name" : "..."
}, {
"guid" : "...",
"name" : "..."
} ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"ruleBackupDestinations" : [ {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "ARCHIVE",
"backupRetentionSettings" : { }
}, {
"guid" : "...",
"name" : "...",
"policy" : { },
"schedules" : [ { }, { } ],
"vmCount" : 12345,
"schedulesCount" : 12345,
"position" : 12345,
"active" : true,
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"rule" : { },
"backupDestination" : { },
"roleType" : "SECONDARY",
"backupRetentionSettings" : { }
} ],
"removable" : true,
"daysToKeepRetentionLock" : 12345,
"backupCount" : 12345,
"includes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ],
"excludes" : [ {
"type" : "EXCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
}, {
"type" : "INCLUDE",
"protectedEntityGuid" : "...",
"directory" : "...",
"recursive" : true,
"includeMountedFileSystems" : true,
"filters" : [ { }, { } ]
} ]
} ],
"baseImage" : {
"uuid" : "..."
},
"dataCenter" : {
"name" : "...",
"guid" : "..."
},
"overwrite" : true,
"diskUuidToCbtId" : {
"property1" : "...",
"property2" : "..."
},
"extract" : true,
"powerOnAfterRestore" : true,
"failTaskAfterPowerOnFail" : true,
"sparsifyRestoreEnabled" : true,
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345,
"policy" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"backupLocation" : {
"guid" : "...",
"backup" : {
"backupTime" : 12345,
"taskTimeStats" : { },
"archiveExpire" : 12345,
"statusInfo" : "...",
"protectedEntity" : { },
"parentBackup" : { },
"backupDestination" : { },
"backupLocations" : [ { }, { } ],
"networkInterfaceCards" : [ { }, { } ],
"size" : 12345,
"fileCount" : 12345,
"effectiveBackupObjectsCount" : 12345,
"effectiveBackupSize" : 12345,
"vmExportImportMode" : "EXPORT_STORAGE_REPO",
"warningsPresent" : true,
"warnings" : [ "...", "..." ],
"baseImage" : { },
"sourceProject" : { },
"node" : { },
"backupRule" : { },
"hidden" : true,
"retentionHint" : "TO_REMOVE",
"originEntity" : { },
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"snapshotTime" : 1451649601000,
"status" : { },
"type" : { }
},
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "PRIMARY",
"status" : "PRESENT",
"statusInfo" : "...",
"retentionHint" : "STANDARD_RETENTION"
},
"locations" : [ {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "REQUIRED_INITIALIZATION",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : { },
"modificationTime" : 1451649601000
},
"roleType" : "ARCHIVE",
"backupFileDetails" : {
"backupTime" : 1451649601000,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "QCOW2",
"backupFileType" : "DISK_META",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "PORTWORX_VOLUME",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"cloudFeature" : "ONEDRIVE"
},
"status" : "REMOVED",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "LZMA",
"path" : "..."
}, {
"guid" : "...",
"backupDestination" : {
"name" : "...",
"nodeConfigs" : [ { }, { } ],
"projects" : [ { }, { } ],
"totalAvailableSpace" : 12345,
"totalUsedSpace" : 12345,
"totalDedupUsedSpace" : 12345,
"totalDedupAvailableSpace" : 12345,
"preAccessCmdArgs" : [ "...", "..." ],
"postAccessCmdArgs" : [ "...", "..." ],
"preAccessCmdExecEnabled" : true,
"postAccessCmdExecEnabled" : true,
"preAccessCmdExecTimeout" : 12345,
"postAccessCmdExecTimeout" : 12345,
"backupDestinationInitInfos" : [ { }, { } ],
"initRequired" : true,
"dedupEnabled" : true,
"encryptionEnabled" : true,
"defaultBackupDestination" : true,
"description" : "...",
"daysToKeepRetentionLock" : 12345,
"visibleForAllVms" : true,
"backupDestinationForCloud" : true,
"objectTaggingEnabled" : true,
"trustAllCerts" : true,
"backupDestinationState" : "NOT_INITIALIZED",
"guid" : "...",
"type" : { },
"modificationTime" : 12345
},
"roleType" : "PRIMARY",
"backupFileDetails" : {
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"size" : 12345,
"effectiveBackupSize" : 12345,
"effectiveSuccessfulObjects" : 12345,
"effectiveTotalDirectories" : 12345,
"effectiveFailedObjects" : 12345,
"effectiveProcessedDirectories" : 12345,
"effectiveSkippedObjects" : 12345,
"path" : "...",
"originalPath" : "...",
"locations" : [ { }, { } ],
"backup" : { },
"mountable" : true,
"iscsiMountable" : true,
"originalStorageId" : "...",
"originalDiskId" : "...",
"format" : "DISK_META_OPENNEBULA",
"backupFileType" : "CBT",
"vmDisk" : { },
"parentBackupFile" : { },
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_LZMA",
"underlyingStorageType" : "VSPHERE",
"restoresTime" : [ 12345, 12345 ],
"objectName" : "...",
"sessionId" : "...",
"guid" : "...",
"cloudFeature" : "TEAMS_CONVERSATION"
},
"status" : "TORECREATE",
"backupTime" : 12345,
"lastModifiedTime" : 12345,
"encryption" : 12345,
"config" : "...",
"compressionType" : "TAR_BZIP2",
"path" : "..."
} ],
"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" : "SINGLE_EVENT"
},
"osTaskOptions" : {
"forceFullBackup" : true,
"discardMetadataDatabase" : true,
"pointInTime" : 12345,
"includeInRestore" : [ "...", "..." ],
"restorePath" : "...",
"restoreMode" : "SKIP_ALWAYS",
"destinationAgentGuid" : "...",
"restoreWithOriginalPath" : true,
"deleted" : true
},
"nfsStorageId" : "...",
"imageRefForRestore" : "...",
"uploadFiles" : {
"paths" : [ "...", "..." ],
"basePath" : "...",
"host" : "...",
"commandType" : "POWERSHELL",
"destinationPath" : "...",
"credentialGuid" : "..."
},
"computeZone" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"restoreImageStorageId" : "...",
"tape" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeDrive" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"tapeLocation" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"type" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"state" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
},
"windowStart" : 1451649601000,
"windowEnd" : 1451677502000,
"creationTime" : 1451649601000,
"finishTime" : 1451677502000,
"progress" : 66.5,
"priority" : 50,
"backupType" : {
"name" : "ENUM_NAME",
"description" : "Enum description"
}
}
Update cloud task progress with processed object count and total object count.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | UpdateTaskProgressAndTransferSizeRequest (JSON) | specify value of task progress to update |
PUT /tasks/{guid}/cloud-progress
Content-Type: application/json
{
"progress" : 12345.0,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"transferSize" : 12345
}
HTTP/1.1 204 No Content
Update os task progress with processed object count and total object count.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | UpdateTaskProgressAndTransferSizeRequest (JSON) | specify value of task progress to update |
PUT /tasks/{guid}/os-progress
Content-Type: application/json
{
"progress" : 12345.0,
"processedObjectCount" : 12345,
"totalObjectCount" : 12345,
"transferSize" : 12345
}
HTTP/1.1 204 No Content
Update task progress.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | DoubleDTO (JSON) | specify value of task progress to update |
PUT /tasks/{guid}/progress
Content-Type: application/json
{
"value" : 66.5
}
HTTP/1.1 204 No Content
Change restoreHostId for specified Task.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | StringDTO (JSON) | specify new restore host id to update |
PUT /tasks/{guid}/restore-host-id
Content-Type: application/json
{
"value" : "..."
}
HTTP/1.1 204 No Content
Update restore storage id.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | StringDTO (JSON) | specify restore storage id to update |
PUT /tasks/{guid}/restore-storage-id
Content-Type: application/json
{
"value" : "..."
}
HTTP/1.1 204 No Content
Get the state of task.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | TaskStatus (JSON) |
GET /tasks/{guid}/state
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"taskGuid" : "...",
"taskState" : "QUEUED",
"statusInfo" : "...",
"progress" : 12345.0
}
Update state of task.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | TaskState (JSON) | specify task state to update |
PUT /tasks/{guid}/state
Content-Type: application/json
"QUEUED"
HTTP/1.1 204 No Content
Update task files of a task
name | type | description |
---|---|---|
guid | path | specify local unique identifier for recovery plan (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | TaskFilesListRequest (JSON) | specify request containing task files to be updated |
POST /tasks/{guid}/task-files
Content-Type: application/json
{
"taskFilesRecordRequestList" : [ {
"backupFile" : {
"guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
"name" : "Entity name"
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"markedForRestore" : true,
"diskAllocationFormat" : "SPARSE",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
}, {
"backupFile" : {
"guid" : "...",
"name" : "..."
},
"path" : "...",
"config" : "...",
"storageId" : "...",
"markedForRestore" : true,
"diskAllocationFormat" : "EAGERZEROED",
"originalDiskGuid" : "...",
"diskName" : "...",
"excludedFromRestore" : true
} ]
}
HTTP/1.1 201 Created
Update task transfer info
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | TransferInfoRequest (JSON) | specify transfer info package to update task with |
media type | data type | description |
---|---|---|
application/json | object (JSON) | task details |
PUT /tasks/{guid}/transfer-info
Content-Type: application/json
Accept: application/json
{
"dataTransferTimestampStart" : 12345,
"dataTransferTimestampEnd" : 12345
}
HTTP/1.1 204 No Content
Content-Type: application/json
...
Update task progress.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | DataTransferRateRequest (JSON) | specify value of task transfer rate to add |
PUT /tasks/{guid}/transfer-rate
Content-Type: application/json
{
"guid" : "...",
"bytesIn" : 12345,
"bytesOut" : 12345,
"creationTime" : 12345,
"transferSpeed" : 12345,
"overridePreviousRateIfNeeded" : true,
"operationType" : "BYTES_IN"
}
HTTP/1.1 204 No Content
Update task progress.
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | DataTransferRateRequest (JSON) | specify value of task transfer rate to add |
PUT /tasks/{guid}/transfer-rate/incremental
Content-Type: application/json
{
"guid" : "...",
"bytesIn" : 12345,
"bytesOut" : 12345,
"creationTime" : 12345,
"transferSpeed" : 12345,
"overridePreviousRateIfNeeded" : true,
"operationType" : "NONE"
}
HTTP/1.1 204 No Content
Get last transfer rate of the archived task taken by task
name | type | description |
---|---|---|
guid | path | specify local unique identifier for task (use by vProtect) |
media type | data type | description |
---|---|---|
application/json | DataTransferRateDetails (JSON) |
GET /tasks/{guid}/transfer-rate/last
Content-Type: application/json
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"archivedTask" : "...",
"bytesIn" : 12345,
"bytesOut" : 12345,
"creationTime" : 12345,
"transferSpeed" : 12345
}