OBJECT

UpdateNetworkThrottleReply

Description

Response to update network throttle.

link GraphQL Schema definition

  • type UpdateNetworkThrottleReply {
  • # Supported in v5.0+
  • # Default throttle limit for a resource, in Mbps. The throttle limit is precise to
  • # two decimal places.
  • defaultThrottleLimit: Float
  • # Required. Supported in v5.0+
  • # Boolean value that determines whether a throttle limit is enabled.
  • isEnabled: Boolean!
  • # Required. Supported in v5.0+
  • # An array containing all of the scheduled throttle limits for the specified
  • # resource.
  • scheduledThrottles: [NetworkThrottleScheduleSummary!]!
  • # Supported in v5.2+
  • # The network interface where outgoing traffic is throttled.
  • networkInterface: String
  • # Supported in v8.0+
  • # Network port for archival throttling. This is applicable only when the
  • # `resourceId` is `ArchivalEgress`.
  • archivalThrottlePort: Int
  • # Throttle resource: ReplicationEgress or ArchivalEgress.
  • resourceId: NetworkThrottleResourceId!
  • }