Class: Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse

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

Overview

Response message for list DNS peerings.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDnsPeeringsResponse

Returns a new instance of ListDnsPeeringsResponse.



790
791
792
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 790

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

Instance Attribute Details

#dns_peeringsArray<Google::Apis::DatafusionV1beta1::DnsPeering>

List of dns peering. Corresponds to the JSON property dnsPeerings



782
783
784
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 782

def dns_peerings
  @dns_peerings
end

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


788
789
790
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 788

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



795
796
797
798
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 795

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