Class: Google::Apis::ComputeBeta::InstanceConsumptionInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceConsumptionInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#guest_cpus ⇒ Fixnum
The number of virtual CPUs that are available to the instance.
-
#local_ssd_gb ⇒ Fixnum
The amount of local SSD storage available to the instance, defined in GiB.
-
#memory_mb ⇒ Fixnum
The amount of physical memory available to the instance, defined in MiB.
-
#min_node_cpus ⇒ Fixnum
The minimal guaranteed number of virtual CPUs that are reserved.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceConsumptionInfo
constructor
A new instance of InstanceConsumptionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceConsumptionInfo
Returns a new instance of InstanceConsumptionInfo.
15470 15471 15472 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#guest_cpus ⇒ Fixnum
The number of virtual CPUs that are available to the instance.
Corresponds to the JSON property guestCpus
15453 15454 15455 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15453 def guest_cpus @guest_cpus end |
#local_ssd_gb ⇒ Fixnum
The amount of local SSD storage available to the instance, defined in GiB.
Corresponds to the JSON property localSsdGb
15458 15459 15460 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15458 def local_ssd_gb @local_ssd_gb end |
#memory_mb ⇒ Fixnum
The amount of physical memory available to the instance, defined in MiB.
Corresponds to the JSON property memoryMb
15463 15464 15465 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15463 def memory_mb @memory_mb end |
#min_node_cpus ⇒ Fixnum
The minimal guaranteed number of virtual CPUs that are reserved.
Corresponds to the JSON property minNodeCpus
15468 15469 15470 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15468 def min_node_cpus @min_node_cpus end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15475 15476 15477 15478 15479 15480 |
# File 'lib/google/apis/compute_beta/classes.rb', line 15475 def update!(**args) @guest_cpus = args[:guest_cpus] if args.key?(:guest_cpus) @local_ssd_gb = args[:local_ssd_gb] if args.key?(:local_ssd_gb) @memory_mb = args[:memory_mb] if args.key?(:memory_mb) @min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus) end |