Skip to content

updateVcenterHotAddBandwidth

Set the ingest and export bandwidth limits for HotAdd with the vCenter Supported in v5.3+ Set the ingest and export bandwidth limits in Mbps when using HotAdd with the vCenter. These limits are shared across all HotAdd proxies for the Center.

Arguments

Argument Type Description
input (required) UpdateVcenterHotAddBandwidthInput! Input for V1SetHotAddBandwidth.

Returns

RequestSuccess!

Sample

mutation UpdateVcenterHotAddBandwidth($input: UpdateVcenterHotAddBandwidthInput!) {
  updateVcenterHotAddBandwidth(input: $input) {
    success
  }
}
{
  "input": {
    "hotAddBandwidthInfo": {
      "exportLimit": 0,
      "ingestLimit": 0
    },
    "id": "example-string"
  }
}
{
  "data": {
    "updateVcenterHotAddBandwidth": {
      "success": true
    }
  }
}