Class: Google::Apis::ApigatewayV1::ApigatewayListApiConfigsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/apigateway_v1/classes.rb,
generated/google/apis/apigateway_v1/representations.rb,
generated/google/apis/apigateway_v1/representations.rb

Overview

Response message for ApiGatewayService.ListApiConfigs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApigatewayListApiConfigsResponse

Returns a new instance of ApigatewayListApiConfigsResponse.



552
553
554
# File 'generated/google/apis/apigateway_v1/classes.rb', line 552

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_configsArray<Google::Apis::ApigatewayV1::ApigatewayApiConfig>

API Configs. Corresponds to the JSON property apiConfigs



540
541
542
# File 'generated/google/apis/apigateway_v1/classes.rb', line 540

def api_configs
  @api_configs
end

#next_page_tokenString

Next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


545
546
547
# File 'generated/google/apis/apigateway_v1/classes.rb', line 545

def next_page_token
  @next_page_token
end

#unreachable_locationsArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachableLocations

Returns:

  • (Array<String>)


550
551
552
# File 'generated/google/apis/apigateway_v1/classes.rb', line 550

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



557
558
559
560
561
# File 'generated/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