class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListInstancesResponse
Response for ListInstances.
Attributes
instances[RW]
Instances in the specified organization. Corresponds to the JSON property `instances` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance>]
next_page_token[RW]
Page token that you can include in a ListInstance request to retrieve the next page of content. If omitted, no subsequent pages exist. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4437 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 4442 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end