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.
6625 6626 6627 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6625 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
6617 6618 6619 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6617 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
6623 6624 6625 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6623 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6630 6631 6632 6633 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6630 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 |