Class: Google::Apis::ComputeBeta::InstancePropertiesPatch
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstancePropertiesPatch
- 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
Overview
Represents the change that you want to make to the instance properties.
Instance Attribute Summary collapse
-
#labels ⇒ Hash<String,String>
The label key-value pairs that you want to patch onto the instance.
-
#metadata ⇒ Hash<String,String>
The metadata key-value pairs that you want to patch onto the instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancePropertiesPatch
constructor
A new instance of InstancePropertiesPatch.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancePropertiesPatch
Returns a new instance of InstancePropertiesPatch.
16276 16277 16278 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#labels ⇒ Hash<String,String>
The label key-value pairs that you want to patch onto the instance.
Corresponds to the JSON property labels
16268 16269 16270 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16268 def labels @labels end |
#metadata ⇒ Hash<String,String>
The metadata key-value pairs that you want to patch onto the instance. For
more information, see Project and instance metadata.
Corresponds to the JSON property metadata
16274 16275 16276 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16274 def @metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16281 16282 16283 16284 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16281 def update!(**args) @labels = args[:labels] if args.key?(:labels) @metadata = args[:metadata] if args.key?(:metadata) end |