class Google::Apis::AppengineV1beta5::ListInstancesResponse

Response message for Instances.ListInstances.

Attributes

instances[RW]

The instances belonging to the requested version. Corresponds to the JSON property `instances` @return [Array<Google::Apis::AppengineV1beta5::Instance>]

next_page_token[RW]

Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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