class Google::Apis::NetworkconnectivityV1alpha1::ListHubsResponse

Response for HubService.ListHubs method.

Attributes

hubs[RW]

Hubs to be returned. Corresponds to the JSON property `hubs` @return [Array<Google::Apis::NetworkconnectivityV1alpha1::Hub>]

next_page_token[RW]

The next pagination token in the List response. It should be used as page_token for the following request. An empty value means no more result. Corresponds to the JSON property `nextPageToken` @return [String]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkconnectivity_v1alpha1/classes.rb, line 465
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkconnectivity_v1alpha1/classes.rb, line 470
def update!(**args)
  @hubs = args[:hubs] if args.key?(:hubs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end