Class: Google::Apis::ContainerV1::ResourceLimit
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ResourceLimit
- 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
Contains information about amount of some resource in the cluster. For memory, value should be in GB.
Instance Attribute Summary collapse
-
#maximum ⇒ Fixnum
Maximum amount of the resource in the cluster.
-
#minimum ⇒ Fixnum
Minimum amount of the resource in the cluster.
-
#resource_type ⇒ String
Resource name "cpu", "memory" or gpu-specific string.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourceLimit
constructor
A new instance of ResourceLimit.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourceLimit
Returns a new instance of ResourceLimit.
3198 3199 3200 |
# File 'lib/google/apis/container_v1/classes.rb', line 3198 def initialize(**args) update!(**args) end |
Instance Attribute Details
#maximum ⇒ Fixnum
Maximum amount of the resource in the cluster.
Corresponds to the JSON property maximum
3186 3187 3188 |
# File 'lib/google/apis/container_v1/classes.rb', line 3186 def maximum @maximum end |
#minimum ⇒ Fixnum
Minimum amount of the resource in the cluster.
Corresponds to the JSON property minimum
3191 3192 3193 |
# File 'lib/google/apis/container_v1/classes.rb', line 3191 def minimum @minimum end |
#resource_type ⇒ String
Resource name "cpu", "memory" or gpu-specific string.
Corresponds to the JSON property resourceType
3196 3197 3198 |
# File 'lib/google/apis/container_v1/classes.rb', line 3196 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3203 3204 3205 3206 3207 |
# File 'lib/google/apis/container_v1/classes.rb', line 3203 def update!(**args) @maximum = args[:maximum] if args.key?(:maximum) @minimum = args[:minimum] if args.key?(:minimum) @resource_type = args[:resource_type] if args.key?(:resource_type) end |