Class: Google::Apis::ComputeV1::LicenseResourceRequirements
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::LicenseResourceRequirements
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#min_guest_cpu_count ⇒ Fixnum
Minimum number of guest cpus required to use the Instance.
-
#min_memory_mb ⇒ Fixnum
Minimum memory required to use the Instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LicenseResourceRequirements
constructor
A new instance of LicenseResourceRequirements.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LicenseResourceRequirements
Returns a new instance of LicenseResourceRequirements.
18480 18481 18482 |
# File 'lib/google/apis/compute_v1/classes.rb', line 18480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#min_guest_cpu_count ⇒ Fixnum
Minimum number of guest cpus required to use the Instance. Enforced at
Instance creation and Instance start.
Corresponds to the JSON property minGuestCpuCount
18472 18473 18474 |
# File 'lib/google/apis/compute_v1/classes.rb', line 18472 def min_guest_cpu_count @min_guest_cpu_count end |
#min_memory_mb ⇒ Fixnum
Minimum memory required to use the Instance. Enforced at Instance creation and
Instance start.
Corresponds to the JSON property minMemoryMb
18478 18479 18480 |
# File 'lib/google/apis/compute_v1/classes.rb', line 18478 def min_memory_mb @min_memory_mb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18485 18486 18487 18488 |
# File 'lib/google/apis/compute_v1/classes.rb', line 18485 def update!(**args) @min_guest_cpu_count = args[:min_guest_cpu_count] if args.key?(:min_guest_cpu_count) @min_memory_mb = args[:min_memory_mb] if args.key?(:min_memory_mb) end |