Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSpacesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSpacesResponse
- 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
A response to a ListSpaces request containing the list of organization spaces and a page token for the next page.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page. -
#spaces ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space>
List of Apigee organization spaces.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSpacesResponse
constructor
A new instance of GoogleCloudApigeeV1ListSpacesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListSpacesResponse
Returns a new instance of GoogleCloudApigeeV1ListSpacesResponse.
7531 7532 7533 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7531 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
7524 7525 7526 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7524 def next_page_token @next_page_token end |
#spaces ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Space>
List of Apigee organization spaces.
Corresponds to the JSON property spaces
7529 7530 7531 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7529 def spaces @spaces end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7536 7537 7538 7539 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7536 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spaces = args[:spaces] if args.key?(:spaces) end |