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.
7563 7564 7565 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7563 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
7556 7557 7558 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7556 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
7561 7562 7563 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7561 def spaces @spaces end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7568 7569 7570 7571 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7568 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spaces = args[:spaces] if args.key?(:spaces) end |