Class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::NetworkPerformanceConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb
Overview
Configuration of all network bandwidth tiers
Instance Attribute Summary collapse
-
#external_ip_egress_bandwidth_tier ⇒ String
Specifies the network bandwidth tier for the NodePool for traffic to external/ public IP addresses.
-
#total_egress_bandwidth_tier ⇒ String
Specifies the total network bandwidth tier for the NodePool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkPerformanceConfig
constructor
A new instance of NetworkPerformanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkPerformanceConfig
Returns a new instance of NetworkPerformanceConfig.
3607 3608 3609 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3607 def initialize(**args) update!(**args) end |
Instance Attribute Details
#external_ip_egress_bandwidth_tier ⇒ String
Specifies the network bandwidth tier for the NodePool for traffic to external/
public IP addresses.
Corresponds to the JSON property externalIpEgressBandwidthTier
3600 3601 3602 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3600 def external_ip_egress_bandwidth_tier @external_ip_egress_bandwidth_tier end |
#total_egress_bandwidth_tier ⇒ String
Specifies the total network bandwidth tier for the NodePool.
Corresponds to the JSON property totalEgressBandwidthTier
3605 3606 3607 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3605 def total_egress_bandwidth_tier @total_egress_bandwidth_tier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3612 3613 3614 3615 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3612 def update!(**args) @external_ip_egress_bandwidth_tier = args[:external_ip_egress_bandwidth_tier] if args.key?(:external_ip_egress_bandwidth_tier) @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier) end |