Class: Google::Apis::ResourceviewsV1beta2::Label
- Inherits:
-
Object
- Object
- Google::Apis::ResourceviewsV1beta2::Label
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/resourceviews_v1beta2/classes.rb,
generated/google/apis/resourceviews_v1beta2/representations.rb,
generated/google/apis/resourceviews_v1beta2/representations.rb
Overview
The Label to be applied to the resource views.
Instance Attribute Summary collapse
-
#key ⇒ String
Key of the label.
-
#value ⇒ String
Value of the label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Label
constructor
A new instance of Label.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Label
Returns a new instance of Label
39 40 41 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 39 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Key of the label.
Corresponds to the JSON property key
32 33 34 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 32 def key @key end |
#value ⇒ String
Value of the label.
Corresponds to the JSON property value
37 38 39 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 37 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 44 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |