Class: Google::Apis::NetworkservicesV1::ListMulticastConsumerAssociationsResponse

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

Overview

Response message for ListMulticastConsumerAssociations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListMulticastConsumerAssociationsResponse

Returns a new instance of ListMulticastConsumerAssociationsResponse.



3393
3394
3395
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3393

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

Instance Attribute Details

#multicast_consumer_associationsArray<Google::Apis::NetworkservicesV1::MulticastConsumerAssociation>

The list of multicast consumer associations. Corresponds to the JSON property multicastConsumerAssociations



3381
3382
3383
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3381

def multicast_consumer_associations
  @multicast_consumer_associations
end

#next_page_tokenString

A page token from an earlier query, as returned in next_page_token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3386
3387
3388
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3386

def next_page_token
  @next_page_token
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


3391
3392
3393
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3391

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3398
3399
3400
3401
3402
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3398

def update!(**args)
  @multicast_consumer_associations = args[:multicast_consumer_associations] if args.key?(:multicast_consumer_associations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end