Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListInstancesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Overview

Response for ListInstances.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListInstancesResponse

Returns a new instance of GoogleCloudApigeeV1ListInstancesResponse.



5575
5576
5577
# File 'lib/google/apis/apigee_v1/classes.rb', line 5575

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instancesArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Instance>

Instances in the specified organization. Corresponds to the JSON property instances



5567
5568
5569
# File 'lib/google/apis/apigee_v1/classes.rb', line 5567

def instances
  @instances
end

#next_page_tokenString

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

Returns:

  • (String)


5573
5574
5575
# File 'lib/google/apis/apigee_v1/classes.rb', line 5573

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5580
5581
5582
5583
# File 'lib/google/apis/apigee_v1/classes.rb', line 5580

def update!(**args)
  @instances = args[:instances] if args.key?(:instances)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end