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.



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

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



780
781
782
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 780

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)


786
787
788
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 786

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



793
794
795
796
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 793

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