Class: Google::Apis::ApigatewayV1beta::ApigatewayListApisResponse

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.ListApis

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApigatewayListApisResponse

Returns a new instance of ApigatewayListApisResponse.

[View source]

667
668
669
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 667

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

Instance Attribute Details

#apisArray<Google::Apis::ApigatewayV1beta::ApigatewayApi>

APIs. Corresponds to the JSON property apis


655
656
657
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 655

def apis
  @apis
end

#next_page_tokenString

Next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)

660
661
662
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 660

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

665
666
667
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 665

def unreachable_locations
  @unreachable_locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

672
673
674
675
676
# File 'lib/google/apis/apigateway_v1beta/classes.rb', line 672

def update!(**args)
  @apis = args[:apis] if args.key?(:apis)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations)
end