Class: Google::Apis::ApigatewayV1beta::ApigatewayListApisResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigatewayV1beta::ApigatewayListApisResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigateway_v1beta/classes.rb,
generated/google/apis/apigateway_v1beta/representations.rb,
generated/google/apis/apigateway_v1beta/representations.rb
Overview
Response message for ApiGatewayService.ListApis
Instance Attribute Summary collapse
-
#apis ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayApi>
APIs.
-
#next_page_token ⇒ String
Next page token.
-
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApigatewayListApisResponse
constructor
A new instance of ApigatewayListApisResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApigatewayListApisResponse
Returns a new instance of ApigatewayListApisResponse.
637 638 639 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 637 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apis ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayApi>
APIs.
Corresponds to the JSON property apis
625 626 627 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 625 def apis @apis end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
630 631 632 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 630 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
635 636 637 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 635 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
642 643 644 645 646 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 642 def update!(**args) @apis = args[:apis] if args.key?(:apis) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |