Class: Google::Apis::ComputeBeta::InstancePropertiesPatch

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstancePropertiesPatch

Returns a new instance of InstancePropertiesPatch.



17378
17379
17380
# File 'lib/google/apis/compute_beta/classes.rb', line 17378

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#labelsHash<String,String>

The label key-value pairs that you want to patch onto the instance. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


17370
17371
17372
# File 'lib/google/apis/compute_beta/classes.rb', line 17370

def labels
  @labels
end

#metadataHash<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

Returns:

  • (Hash<String,String>)


17376
17377
17378
# File 'lib/google/apis/compute_beta/classes.rb', line 17376

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17383
17384
17385
17386
# File 'lib/google/apis/compute_beta/classes.rb', line 17383

def update!(**args)
  @labels = args[:labels] if args.key?(:labels)
  @metadata = args[:metadata] if args.key?(:metadata)
end