Skip to content

replicationNetworkThrottleBypass

Retrieves replication throttle bypass status for all the targets of a replication source.

Arguments

Argument Type Description
input (required) QueryReplicationTargetInfoInput! Input for V1QueryReplicationTargetInfo.

Returns

ReplicationTargetThrottleBypassSummaryListResponse!

Sample

query ReplicationNetworkThrottleBypass($input: QueryReplicationTargetInfoInput!) {
  replicationNetworkThrottleBypass(input: $input) {
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "replicationNetworkThrottleBypass": {
      "total": 0,
      "data": [
        {
          "clusterName": "example-string",
          "id": "example-string",
          "shouldBypassReplicationThrottle": true
        }
      ]
    }
  }
}