Class: Google::Apis::ApigatewayV1beta::ApigatewayListApiConfigsResponse

Inherits:
Object
  • Object
show all
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.ListApiConfigs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApigatewayListApiConfigsResponse

Returns a new instance of ApigatewayListApiConfigsResponse.

[View source]

636
637
638
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 636

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

Instance Attribute Details

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

API Configs. Corresponds to the JSON property apiConfigs


624
625
626
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 624

def api_configs
  @api_configs
end

#next_page_tokenString

Next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)

629
630
631
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 629

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>)

634
635
636
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 634

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

641
642
643
644
645
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 641

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