class Google::Apis::NetworkconnectivityV1alpha1::ListSpokesResponse

The response for HubService.ListSpokes.

Attributes

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]

spokes[RW]

Spokes to be returned. Corresponds to the JSON property `spokes` @return [Array<Google::Apis::NetworkconnectivityV1alpha1::Spoke>]

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 522
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 527
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @spokes = args[:spokes] if args.key?(:spokes)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end