Skip to content

oracleAcoExampleDownloadLink

Link to download the Advanced Recovery Options example file Supported in v5.3+ Link to download the Advanced Recovery Options example file which can be used to customize Oracle recoveries.

Arguments

Argument Type Description
input (required) ClusterUuidWithDbIdInput! Specifies input for V1GetExampleAcoDownloadLink including the Oracle database ID.

Returns

OracleFileDownloadLink!

Sample

query OracleAcoExampleDownloadLink($input: ClusterUuidWithDbIdInput!) {
  oracleAcoExampleDownloadLink(input: $input) {
    downloadLink
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "dbId": "example-string"
  }
}
{
  "data": {
    "oracleAcoExampleDownloadLink": {
      "downloadLink": "example-string"
    }
  }
}