Class: Google::Apis::ComputeBeta::NodeTemplateNodeTypeFlexibility
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NodeTemplateNodeTypeFlexibility
- 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
-
#cpus ⇒ String
Corresponds to the JSON property
cpus. -
#local_ssd ⇒ String
Corresponds to the JSON property
localSsd. -
#memory ⇒ String
Corresponds to the JSON property
memory.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeTemplateNodeTypeFlexibility
constructor
A new instance of NodeTemplateNodeTypeFlexibility.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeTemplateNodeTypeFlexibility
Returns a new instance of NodeTemplateNodeTypeFlexibility.
23074 23075 23076 |
# File 'lib/google/apis/compute_beta/classes.rb', line 23074 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpus ⇒ String
Corresponds to the JSON property cpus
23062 23063 23064 |
# File 'lib/google/apis/compute_beta/classes.rb', line 23062 def cpus @cpus end |
#local_ssd ⇒ String
Corresponds to the JSON property localSsd
23067 23068 23069 |
# File 'lib/google/apis/compute_beta/classes.rb', line 23067 def local_ssd @local_ssd end |
#memory ⇒ String
Corresponds to the JSON property memory
23072 23073 23074 |
# File 'lib/google/apis/compute_beta/classes.rb', line 23072 def memory @memory end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23079 23080 23081 23082 23083 |
# File 'lib/google/apis/compute_beta/classes.rb', line 23079 def update!(**args) @cpus = args[:cpus] if args.key?(:cpus) @local_ssd = args[:local_ssd] if args.key?(:local_ssd) @memory = args[:memory] if args.key?(:memory) end |