Class: Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse
- 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
-
#dns_peerings ⇒ Array<Google::Apis::DatafusionV1beta1::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.
948 949 950 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 948 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_peerings ⇒ Array<Google::Apis::DatafusionV1beta1::DnsPeering>
List of dns peering.
Corresponds to the JSON property dnsPeerings
940 941 942 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 940 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
946 947 948 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 946 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
953 954 955 956 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 953 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 |