Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApimServiceExtensionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListApimServiceExtensionsResponse
- 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 list service extensions.
Instance Attribute Summary collapse
-
#apim_service_extensions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtension>
service extension in a given organization.
-
#next_page_token ⇒ String
Page token that you can include in an
ListApimServiceExtensionsrequest to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListApimServiceExtensionsResponse
constructor
A new instance of GoogleCloudApigeeV1ListApimServiceExtensionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListApimServiceExtensionsResponse
Returns a new instance of GoogleCloudApigeeV1ListApimServiceExtensionsResponse.
6607 6608 6609 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6607 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apim_service_extensions ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApimServiceExtension>
service extension in a given organization.
Corresponds to the JSON property apimServiceExtensions
6599 6600 6601 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6599 def apim_service_extensions @apim_service_extensions end |
#next_page_token ⇒ String
Page token that you can include in an ListApimServiceExtensions request to
retrieve the next page. If omitted, no subsequent pages exist.
Corresponds to the JSON property nextPageToken
6605 6606 6607 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6605 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6612 6613 6614 6615 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6612 def update!(**args) @apim_service_extensions = args[:apim_service_extensions] if args.key?(:apim_service_extensions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |