Skip to content

replicationNetworkThrottleBypassById

Retrieves replication throttle bypass status for a specified replication target and source.

Arguments

Argument Type Description
input (required) QueryByIdReplicationTargetInfoInput! Input for V1QueryByIdReplicationTargetInfo.

Returns

ReplicationNetworkThrottleBypassReply!

Sample

query ReplicationNetworkThrottleBypassById($input: QueryByIdReplicationTargetInfoInput!) {
  replicationNetworkThrottleBypassById(input: $input) {
    clusterName
    id
    shouldBypassReplicationThrottle
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "id": "example-string"
  }
}
{
  "data": {
    "replicationNetworkThrottleBypassById": {
      "clusterName": "example-string",
      "id": "example-string",
      "shouldBypassReplicationThrottle": true
    }
  }
}