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.
6657 6658 6659 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6657 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
6649 6650 6651 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6649 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
6655 6656 6657 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6655 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6662 6663 6664 6665 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6662 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 |