Skip to content

cloudDirectSetWanThrottleSettings

CloudDirectSetWanThrottleSettings is used to set WAN Throttle Settings for the NCD cluster.

Arguments

Argument Type Description
input (required) CloudDirectSetWanThrottleSettingsInput! Details for WAN Throttle.

Returns

CloudDirectSetWanThrottleSettingsReply!

Sample

mutation CloudDirectSetWanThrottleSettings($input: CloudDirectSetWanThrottleSettingsInput!) {
  cloudDirectSetWanThrottleSettings(input: $input) {
    downLimitInBytes
    enabled
    upLimitInBytes
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "downLimitInBytes": 0,
    "enabled": true,
    "upLimitInBytes": 0
  }
}
{
  "data": {
    "cloudDirectSetWanThrottleSettings": {
      "downLimitInBytes": 0,
      "enabled": true,
      "upLimitInBytes": 0
    }
  }
}