Skip to content

downloadOracleSnapshotFromLocation

Download Oracle snapshot from an archival location Supported in v9.0+ Initiates an asynchronous job to download an Oracle database snapshot and associated log snapshots using the snapshot ID. The response includes the ID of the asynchronous job request. To see the status of the request, poll /oracle/request/{id}.

Arguments

Argument Type Description
input (required) DownloadOracleSnapshotFromLocationInput! Input for V1DownloadOracleSnapshotFromLocation.

Returns

AsyncRequestStatus!

Sample

mutation DownloadOracleSnapshotFromLocation($input: DownloadOracleSnapshotFromLocationInput!) {
  downloadOracleSnapshotFromLocation(input: $input) {
    endTime
    id
    nodeId
    progress
    result
    startTime
    status
  }
}
{
  "input": {
    "locationId": "example-string",
    "snapshotId": "example-string"
  }
}
{
  "data": {
    "downloadOracleSnapshotFromLocation": {
      "endTime": "2024-01-01T00:00:00.000Z",
      "id": "example-string",
      "nodeId": "example-string",
      "progress": 0.0,
      "result": "example-string",
      "startTime": "2024-01-01T00:00:00.000Z",
      "error": {
        "message": "example-string"
      },
      "links": [
        {
          "href": "example-string",
          "rel": "example-string"
        }
      ]
    }
  }
}