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

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.

[View source]

714
715
716
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 714

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)

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

def next_page_token
  @next_page_token
end

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

Spokes to be returned. Corresponds to the JSON property spokes


707
708
709
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 707

def spokes
  @spokes
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)

712
713
714
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 712

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

719
720
721
722
723
# File 'lib/google/apis/networkconnectivity_v1alpha1/classes.rb', line 719

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