Class: Google::Apis::ComputeBeta::GuestAttributes
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::GuestAttributes
- 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
A guest attributes entry.
Instance Attribute Summary collapse
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#query_path ⇒ String
The path to be queried.
-
#query_value ⇒ Google::Apis::ComputeBeta::GuestAttributesValue
Array of guest attribute namespace/key/value tuples.
-
#self_link ⇒ String
[Output Only] Server-defined URL for this resource.
-
#variable_key ⇒ String
The key to search for.
-
#variable_value ⇒ String
[Output Only] The value found for the requested key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GuestAttributes
constructor
A new instance of GuestAttributes.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GuestAttributes
Returns a new instance of GuestAttributes.
9818 9819 9820 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9818 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
[Output Only] Type of the resource. Always compute#guestAttributes for guest
attributes entry.
Corresponds to the JSON property kind
9790 9791 9792 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9790 def kind @kind end |
#query_path ⇒ String
The path to be queried. This can be the default namespace ('') or a nested
namespace ('\/') or a specified key ('\/\').
Corresponds to the JSON property queryPath
9796 9797 9798 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9796 def query_path @query_path end |
#query_value ⇒ Google::Apis::ComputeBeta::GuestAttributesValue
Array of guest attribute namespace/key/value tuples.
Corresponds to the JSON property queryValue
9801 9802 9803 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9801 def query_value @query_value end |
#self_link ⇒ String
[Output Only] Server-defined URL for this resource.
Corresponds to the JSON property selfLink
9806 9807 9808 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9806 def self_link @self_link end |
#variable_key ⇒ String
The key to search for.
Corresponds to the JSON property variableKey
9811 9812 9813 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9811 def variable_key @variable_key end |
#variable_value ⇒ String
[Output Only] The value found for the requested key.
Corresponds to the JSON property variableValue
9816 9817 9818 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9816 def variable_value @variable_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9823 9824 9825 9826 9827 9828 9829 9830 |
# File 'lib/google/apis/compute_beta/classes.rb', line 9823 def update!(**args) @kind = args[:kind] if args.key?(:kind) @query_path = args[:query_path] if args.key?(:query_path) @query_value = args[:query_value] if args.key?(:query_value) @self_link = args[:self_link] if args.key?(:self_link) @variable_key = args[:variable_key] if args.key?(:variable_key) @variable_value = args[:variable_value] if args.key?(:variable_value) end |