class Google::Apis::ApigatewayV1beta::ApigatewayListGatewaysResponse
Response message for ApiGatewayService.ListGateways
Attributes
gateways[RW]
Gateways. Corresponds to the JSON property `gateways` @return [Array<Google::Apis::ApigatewayV1beta::ApigatewayGateway>]
next_page_token[RW]
Next page token. Corresponds to the JSON property `nextPageToken` @return [String]
unreachable_locations[RW]
Locations that could not be reached. Corresponds to the JSON property `unreachableLocations` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigateway_v1beta/classes.rb, line 668 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigateway_v1beta/classes.rb, line 673 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