Class: Google::Apis::ContainerV1::AdditionalPodRangesConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AdditionalPodRangesConfig

Returns a new instance of AdditionalPodRangesConfig.



83
84
85
# File 'lib/google/apis/container_v1/classes.rb', line 83

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#pod_range_namesArray<String>

Name for pod secondary ipv4 range which has the actual range defined ahead. Corresponds to the JSON property podRangeNames

Returns:

  • (Array<String>)


81
82
83
# File 'lib/google/apis/container_v1/classes.rb', line 81

def pod_range_names
  @pod_range_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



88
89
90
# File 'lib/google/apis/container_v1/classes.rb', line 88

def update!(**args)
  @pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names)
end