class Google::Apis::TpuV2alpha1::GuestAttributes

A guest attributes.

Attributes

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::TpuV2alpha1::GuestAttributesValue]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/tpu_v2alpha1/classes.rb, line 209
def update!(**args)
  @query_path = args[:query_path] if args.key?(:query_path)
  @query_value = args[:query_value] if args.key?(:query_value)
end