class Google::Apis::ApigatewayV1::ApigatewayListApiConfigsResponse

Response message for ApiGatewayService.ListApiConfigs

Attributes

api_configs[RW]

API Configs. Corresponds to the JSON property `apiConfigs` @return [Array<Google::Apis::ApigatewayV1::ApigatewayApiConfig>]

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 552
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 557
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