class Google::Apis::BaremetalsolutionV2::ListInstancesResponse

Message for response to listing Instances.

Attributes

instances[RW]

The list of Instance. Corresponds to the JSON property `instances` @return [Array<Google::Apis::BaremetalsolutionV2::Instance>]

next_page_token[RW]

A token identifying a page of results the server should return. Corresponds to the JSON property `nextPageToken` @return [String]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/baremetalsolution_v2/classes.rb, line 277
def update!(**args)
  @instances = args[:instances] if args.key?(:instances)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end