Class: Google::Apis::TpuV2::GuestAttributes

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/tpu_v2/classes.rb,
lib/google/apis/tpu_v2/representations.rb,
lib/google/apis/tpu_v2/representations.rb

Overview

A guest attributes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GuestAttributes

Returns a new instance of GuestAttributes.



204
205
206
# File 'lib/google/apis/tpu_v2/classes.rb', line 204

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#query_pathString

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

Returns:

  • (String)


197
198
199
# File 'lib/google/apis/tpu_v2/classes.rb', line 197

def query_path
  @query_path
end

#query_valueGoogle::Apis::TpuV2::GuestAttributesValue

Array of guest attribute namespace/key/value tuples. Corresponds to the JSON property queryValue



202
203
204
# File 'lib/google/apis/tpu_v2/classes.rb', line 202

def query_value
  @query_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



209
210
211
212
# File 'lib/google/apis/tpu_v2/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