Skip to content

hostRbsNetworkLimit

Get RBS network throttle limits for a host.

Arguments

Argument Type Description
hostId (required) String! ID of the host to get RBS network throttle limits for.

Returns

GetHostRbsNetworkThrottleResponse!

Sample

query HostRbsNetworkLimit($hostId: String!) {
  hostRbsNetworkLimit(hostId: $hostId)
}
{
  "hostId": "example-string"
}
{
  "data": {
    "hostRbsNetworkLimit": {
      "networkThrottleLimits": {
        "throttlePercent": 0,
        "throttleValue": 0
      }
    }
  }
}