Class: Google::Apis::ApigatewayV1beta::ApigatewayListApiConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigatewayV1beta::ApigatewayListApiConfigsResponse
- 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.ListApiConfigs
Instance Attribute Summary collapse
-
#api_configs ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayApiConfig>
API Configs.
-
#next_page_token ⇒ String
Next page token.
-
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApigatewayListApiConfigsResponse
constructor
A new instance of ApigatewayListApiConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApigatewayListApiConfigsResponse
Returns a new instance of ApigatewayListApiConfigsResponse.
606 607 608 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 606 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_configs ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayApiConfig>
API Configs.
Corresponds to the JSON property apiConfigs
594 595 596 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 594 def api_configs @api_configs end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
599 600 601 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 599 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
604 605 606 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 604 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
611 612 613 614 615 |
# File 'generated/google/apis/apigateway_v1beta/classes.rb', line 611 def update!(**args) @api_configs = args[:api_configs] if args.key?(:api_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |