Skip to content

networkThrottle

Network Throttle Information.

Arguments

Argument Type Description
input (required) QueryNetworkThrottleInput! Input for InternalQueryNetworkThrottle.

Returns

NetworkThrottleSummaryListResponse!

Sample

query NetworkThrottle($input: QueryNetworkThrottleInput!) {
  networkThrottle(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "networkThrottle": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "archivalThrottlePort": 0,
          "defaultThrottleLimit": 0.0,
          "isEnabled": true,
          "networkInterface": "example-string",
          "resourceId": "NETWORK_THROTTLE_RESOURCE_ID_ARCHIVAL_EGRESS"
        }
      ]
    }
  }
}