Skip to content

updateReplicationNetworkThrottleBypass

Update the throttle bypass configuration of a replication target location on a particular source.

Arguments

Argument Type Description
input (required) UpdateReplicationNetworkThrottleBypassInput! Input for V1UpdateReplicationTargetInfo.

Returns

ResponseSuccess!

Sample

mutation UpdateReplicationNetworkThrottleBypass($input: UpdateReplicationNetworkThrottleBypassInput!) {
  updateReplicationNetworkThrottleBypass(input: $input) {
    success
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "config": {
      "shouldBypassReplicationThrottle": true
    },
    "id": "example-string"
  }
}
{
  "data": {
    "updateReplicationNetworkThrottleBypass": {
      "success": true
    }
  }
}