Skip to content

oracleAcoParameters

List of supported Advanced Cloning Options Supported in v6.0+ Get the list of supported Advanced Cloning Options (ACO) parameters.

Arguments

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

Returns

OracleAcoParameterList!

Sample

query OracleAcoParameters($input: ClusterUuidWithDbIdInput!) {
  oracleAcoParameters(input: $input) {
    parameters
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "dbId": "example-string"
  }
}
{
  "data": {
    "oracleAcoParameters": {
      "parameters": [
        "example-string"
      ]
    }
  }
}