Class: Google::Apis::NetworkconnectivityV1alpha1::ListSpokesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networkconnectivity_v1alpha1/classes.rb,
lib/google/apis/networkconnectivity_v1alpha1/representations.rb,
lib/google/apis/networkconnectivity_v1alpha1/representations.rb

Overview

The response for HubService.ListSpokes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSpokesResponse

Returns a new instance of ListSpokesResponse.



695
696
697
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 695

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


683
684
685
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 683

def next_page_token
  @next_page_token
end

#spokesArray<Google::Apis::NetworkconnectivityV1alpha1::Spoke>

Spokes to be returned. Corresponds to the JSON property spokes



688
689
690
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 688

def spokes
  @spokes
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


693
694
695
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 693

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



700
701
702
703
704
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 700

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