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.



690
691
692
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 690

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



682
683
684
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 682

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)


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

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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