class Google::Apis::ComputeBeta::GuestAttributes

A guest attributes entry.

Attributes

kind[RW]
Output Only

Type of the resource. Always compute#guestAttributes for guest

attributes entry. Corresponds to the JSON property `kind` @return [String]

query_path[RW]

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` @return [String]

query_value[RW]

Array of guest attribute namespace/key/value tuples. Corresponds to the JSON property `queryValue` @return [Google::Apis::ComputeBeta::GuestAttributesValue]

variable_key[RW]

The key to search for. Corresponds to the JSON property `variableKey` @return [String]

variable_value[RW]
Output Only

The value found for the requested key.

Corresponds to the JSON property `variableValue` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 9411
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_beta/classes.rb, line 9416
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