Class: Google::Apis::ComputeBeta::InstanceSettingsMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceSettingsMetadata
- 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
-
#items ⇒ Hash<String,String>
A metadata key/value items map.
-
#kind ⇒ String
[Output Only] Type of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceSettingsMetadata
constructor
A new instance of InstanceSettingsMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceSettingsMetadata
Returns a new instance of InstanceSettingsMetadata.
19793 19794 19795 |
# File 'lib/google/apis/compute_beta/classes.rb', line 19793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Hash<String,String>
A metadata key/value items map. The total size of all keys and values must be
less than 512KB.
Corresponds to the JSON property items
19786 19787 19788 |
# File 'lib/google/apis/compute_beta/classes.rb', line 19786 def items @items end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#metadata for metadata.
Corresponds to the JSON property kind
19791 19792 19793 |
# File 'lib/google/apis/compute_beta/classes.rb', line 19791 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19798 19799 19800 19801 |
# File 'lib/google/apis/compute_beta/classes.rb', line 19798 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |