Skip to content

mountOracleDatabase

Live Mount an Oracle database snapshot Supported in v5.0+ Create an asynchronous job to Live Mount an Oracle database from a snapshot.

Arguments

Argument Type Description
input (required) MountOracleDatabaseInput! Input for MountOracleDatabase.

Returns

AsyncRequestStatus!

Sample

mutation MountOracleDatabase($input: MountOracleDatabaseInput!) {
  mountOracleDatabase(input: $input) {
    endTime
    id
    nodeId
    progress
    result
    startTime
    status
  }
}
{
  "input": {
    "request": {
      "config": {
        "recoveryPoint": {},
        "targetOracleHostOrRacId": "example-string"
      },
      "id": "example-string"
    }
  }
}
{
  "data": {
    "mountOracleDatabase": {
      "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"
        }
      ]
    }
  }
}