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.
6616 6617 6618 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6616 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
6608 6609 6610 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6608 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
6614 6615 6616 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6614 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6621 6622 6623 6624 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6621 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 |