Class: Google::Apis::ComputeV1::ResourceCommitment
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::ResourceCommitment
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
Commitment for a particular resource (a Commitment is composed of one or more of these).
Instance Attribute Summary collapse
-
#amount ⇒ Fixnum
The amount of the resource purchased (in a type-dependent unit, such as bytes).
-
#type ⇒ String
Type of resource for which this commitment applies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourceCommitment
constructor
A new instance of ResourceCommitment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResourceCommitment
Returns a new instance of ResourceCommitment
15441 15442 15443 |
# File 'generated/google/apis/compute_v1/classes.rb', line 15441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amount ⇒ Fixnum
The amount of the resource purchased (in a type-dependent unit, such as bytes).
For vCPUs, this can just be an integer. For memory, this must be provided in
MB. Memory must be a multiple of 256 MB, with up to 6.5GB of memory per every
vCPU.
Corresponds to the JSON property amount
15433 15434 15435 |
# File 'generated/google/apis/compute_v1/classes.rb', line 15433 def amount @amount end |
#type ⇒ String
Type of resource for which this commitment applies. Possible values are VCPU
and MEMORY
Corresponds to the JSON property type
15439 15440 15441 |
# File 'generated/google/apis/compute_v1/classes.rb', line 15439 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15446 15447 15448 15449 |
# File 'generated/google/apis/compute_v1/classes.rb', line 15446 def update!(**args) @amount = args[:amount] if args.key?(:amount) @type = args[:type] if args.key?(:type) end |