Class: Google::Apis::ContainerV1beta1::MaxPodsConstraint

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

Constraints applied to pods.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MaxPodsConstraint

Returns a new instance of MaxPodsConstraint.



4195
4196
4197
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4195

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

Instance Attribute Details

#max_pods_per_nodeFixnum

Constraint enforced on the max num of pods per node. Corresponds to the JSON property maxPodsPerNode

Returns:

  • (Fixnum)


4193
4194
4195
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4193

def max_pods_per_node
  @max_pods_per_node
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4200
4201
4202
# File 'lib/google/apis/container_v1beta1/classes.rb', line 4200

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