Class: Google::Apis::ContainerV1::AdditionalPodRangesConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AdditionalPodRangesConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
AdditionalPodRangesConfig is the configuration for additional pod secondary ranges supporting the ClusterUpdate message.
Instance Attribute Summary collapse
-
#pod_range_info ⇒ Array<Google::Apis::ContainerV1::RangeInfo>
Output only.
-
#pod_range_names ⇒ Array<String>
Name for pod secondary ipv4 range which has the actual range defined ahead.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AdditionalPodRangesConfig
constructor
A new instance of AdditionalPodRangesConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AdditionalPodRangesConfig
Returns a new instance of AdditionalPodRangesConfig.
154 155 156 |
# File 'lib/google/apis/container_v1/classes.rb', line 154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pod_range_info ⇒ Array<Google::Apis::ContainerV1::RangeInfo>
Output only. Information for additional pod range.
Corresponds to the JSON property podRangeInfo
147 148 149 |
# File 'lib/google/apis/container_v1/classes.rb', line 147 def pod_range_info @pod_range_info end |
#pod_range_names ⇒ Array<String>
Name for pod secondary ipv4 range which has the actual range defined ahead.
Corresponds to the JSON property podRangeNames
152 153 154 |
# File 'lib/google/apis/container_v1/classes.rb', line 152 def pod_range_names @pod_range_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
159 160 161 162 |
# File 'lib/google/apis/container_v1/classes.rb', line 159 def update!(**args) @pod_range_info = args[:pod_range_info] if args.key?(:pod_range_info) @pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names) end |