Class: Google::Apis::ContainerV1::NodePoolAutoscaling
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::NodePoolAutoscaling
- 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
NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.
Instance Attribute Summary collapse
-
#autoprovisioned ⇒ Boolean
(also: #autoprovisioned?)
Can this node pool be deleted automatically.
-
#enabled ⇒ Boolean
(also: #enabled?)
Is autoscaling enabled for this node pool.
-
#location_policy ⇒ String
Location policy used when scaling up a nodepool.
-
#max_node_count ⇒ Fixnum
Maximum number of nodes for one location in the node pool.
-
#min_node_count ⇒ Fixnum
Minimum number of nodes for one location in the node pool.
-
#total_max_node_count ⇒ Fixnum
Maximum number of nodes in the node pool.
-
#total_min_node_count ⇒ Fixnum
Minimum number of nodes in the node pool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodePoolAutoscaling
constructor
A new instance of NodePoolAutoscaling.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodePoolAutoscaling
Returns a new instance of NodePoolAutoscaling.
6197 6198 6199 |
# File 'lib/google/apis/container_v1/classes.rb', line 6197 def initialize(**args) update!(**args) end |
Instance Attribute Details
#autoprovisioned ⇒ Boolean Also known as: autoprovisioned?
Can this node pool be deleted automatically.
Corresponds to the JSON property autoprovisioned
6156 6157 6158 |
# File 'lib/google/apis/container_v1/classes.rb', line 6156 def autoprovisioned @autoprovisioned end |
#enabled ⇒ Boolean Also known as: enabled?
Is autoscaling enabled for this node pool.
Corresponds to the JSON property enabled
6162 6163 6164 |
# File 'lib/google/apis/container_v1/classes.rb', line 6162 def enabled @enabled end |
#location_policy ⇒ String
Location policy used when scaling up a nodepool.
Corresponds to the JSON property locationPolicy
6168 6169 6170 |
# File 'lib/google/apis/container_v1/classes.rb', line 6168 def location_policy @location_policy end |
#max_node_count ⇒ Fixnum
Maximum number of nodes for one location in the node pool. Must be >=
min_node_count. There has to be enough quota to scale up the cluster.
Corresponds to the JSON property maxNodeCount
6174 6175 6176 |
# File 'lib/google/apis/container_v1/classes.rb', line 6174 def max_node_count @max_node_count end |
#min_node_count ⇒ Fixnum
Minimum number of nodes for one location in the node pool. Must be greater
than or equal to 0 and less than or equal to max_node_count.
Corresponds to the JSON property minNodeCount
6180 6181 6182 |
# File 'lib/google/apis/container_v1/classes.rb', line 6180 def min_node_count @min_node_count end |
#total_max_node_count ⇒ Fixnum
Maximum number of nodes in the node pool. Must be greater than or equal to
total_min_node_count. There has to be enough quota to scale up the cluster.
The total_*_node_count fields are mutually exclusive with the *_node_count
fields.
Corresponds to the JSON property totalMaxNodeCount
6188 6189 6190 |
# File 'lib/google/apis/container_v1/classes.rb', line 6188 def total_max_node_count @total_max_node_count end |
#total_min_node_count ⇒ Fixnum
Minimum number of nodes in the node pool. Must be greater than or equal to 0
and less than or equal to total_max_node_count. The total_*_node_count fields
are mutually exclusive with the *_node_count fields.
Corresponds to the JSON property totalMinNodeCount
6195 6196 6197 |
# File 'lib/google/apis/container_v1/classes.rb', line 6195 def total_min_node_count @total_min_node_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6202 6203 6204 6205 6206 6207 6208 6209 6210 |
# File 'lib/google/apis/container_v1/classes.rb', line 6202 def update!(**args) @autoprovisioned = args[:autoprovisioned] if args.key?(:autoprovisioned) @enabled = args[:enabled] if args.key?(:enabled) @location_policy = args[:location_policy] if args.key?(:location_policy) @max_node_count = args[:max_node_count] if args.key?(:max_node_count) @min_node_count = args[:min_node_count] if args.key?(:min_node_count) @total_max_node_count = args[:total_max_node_count] if args.key?(:total_max_node_count) @total_min_node_count = args[:total_min_node_count] if args.key?(:total_min_node_count) end |