class Google::Apis::ApigatewayV1::ApigatewayListApisResponse
Response message for ApiGatewayService.ListApis
Attributes
apis[RW]
APIs. Corresponds to the JSON property `apis` @return [Array<Google::Apis::ApigatewayV1::ApigatewayApi>]
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 583 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 588 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