Class: Google::Apis::ApigatewayV1beta::ApigatewayListGatewaysResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigatewayV1beta::ApigatewayListGatewaysResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigateway_v1beta/classes.rb,
lib/google/apis/apigateway_v1beta/representations.rb,
lib/google/apis/apigateway_v1beta/representations.rb more...
Overview
Response message for ApiGatewayService.ListGateways
Instance Attribute Summary collapse
-
#gateways ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayGateway>
Gateways.
-
#next_page_token ⇒ String
Next page token.
-
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ApigatewayListGatewaysResponse
constructor
A new instance of ApigatewayListGatewaysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ApigatewayListGatewaysResponse
Returns a new instance of ApigatewayListGatewaysResponse.
698 699 700 |
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 698 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gateways ⇒ Array<Google::Apis::ApigatewayV1beta::ApigatewayGateway>
Gateways.
Corresponds to the JSON property gateways
686 687 688 |
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 686 def gateways @gateways end |
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
691 692 693 |
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 691 def next_page_token @next_page_token end |
#unreachable_locations ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachableLocations
696 697 698 |
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 696 def unreachable_locations @unreachable_locations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
703 704 705 706 707 |
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 703 def update!(**args) @gateways = args[:gateways] if args.key?(:gateways) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end |