class Google::Apis::AppengineV1::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::AppengineV1::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_v1/classes.rb, line 1590 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_v1/classes.rb, line 1595 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end