Class: Google::Apis::DatafusionV1::ListDnsPeeringsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1::ListDnsPeeringsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datafusion_v1/classes.rb,
lib/google/apis/datafusion_v1/representations.rb,
lib/google/apis/datafusion_v1/representations.rb
Overview
Response message for list DNS peerings.
Instance Attribute Summary collapse
-
#dns_peerings ⇒ Array<Google::Apis::DatafusionV1::DnsPeering>
List of dns peering.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDnsPeeringsResponse
constructor
A new instance of ListDnsPeeringsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDnsPeeringsResponse
Returns a new instance of ListDnsPeeringsResponse.
891 892 893 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 891 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_peerings ⇒ Array<Google::Apis::DatafusionV1::DnsPeering>
List of dns peering.
Corresponds to the JSON property dnsPeerings
883 884 885 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 883 def dns_peerings @dns_peerings end |
#next_page_token ⇒ String
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
889 890 891 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 889 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
896 897 898 899 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 896 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 |