class Google::Apis::TpuV2alpha1::GetGuestAttributesRequest

Request for GetGuestAttributes.

Attributes

query_path[RW]

The guest attributes path to be queried. Corresponds to the JSON property ‘queryPath` @return [String]

worker_ids[RW]

The 0-based worker ID. If it is empty, all workers’ GuestAttributes will be returned. Corresponds to the JSON property ‘workerIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/tpu_v2alpha1/classes.rb, line 159
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 164
def update!(**args)
  @query_path = args[:query_path] if args.key?(:query_path)
  @worker_ids = args[:worker_ids] if args.key?(:worker_ids)
end