class Google::Apis::ApigatewayV1::ApigatewayListGatewaysResponse

Response message for ApiGatewayService.ListGateways

Attributes

gateways[RW]

Gateways. Corresponds to the JSON property `gateways` @return [Array<Google::Apis::ApigatewayV1::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_v1/classes.rb, line 614
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_v1/classes.rb, line 619
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