google-apis-datafusion_v1 0.11.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc826ba75ee6da5d9b0371381e3bed9ac6ef89f2abd025217e3964f9c21b7365
4
- data.tar.gz: 6df7a52fe0492b25c9d3749557069b6527a23746876ddd6e302eeaeff0d1275b
3
+ metadata.gz: 53ded4a8625cb0b86a38d0a9fe7309752f3b6c067534506f32170803a0349d4e
4
+ data.tar.gz: 923874da0d3c4f4968162cbefd1336225f79d42801bd7f97767132a467acd62f
5
5
  SHA512:
6
- metadata.gz: 9d13ce21dda642f0e1cdb73656cffbdd3d8f466a9ffd173ad5bdd012d68c331d010bb8455522e47a613ede28bf99df775cbc978790de4772644ec0bc2fca1bef
7
- data.tar.gz: 7fc779790369f3d1c843ffdcf636e5435a00524cb75c1e1a778fc3e40be2de3104a58aeea9276e51ea907890115e53fce9f4c5a339c5b5ca67f439413c6b1f7d
6
+ metadata.gz: 87e76baf68371e8c6939dc40a5fe02d1ed05e2dc40c5002455073e91eea371282247a8faf2cfa7e69a5ccc76bf3e4fa9032bba064cb2d15d339395bc96eda9b3
7
+ data.tar.gz: f979ef0faca366991b8beaca80c4fc82f4735a3e3b766922a9aa5467d0d5b24cf44849966d0e06dd04cb4f6c357028cbba7a8149149b0b2df78c67388f944cde
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Release history for google-apis-datafusion_v1
2
2
 
3
+ ### v0.14.0 (2022-06-07)
4
+
5
+ * Regenerated from discovery document revision 20220603
6
+ * Regenerated using generator version 0.5.0
7
+ * Unspecified changes
8
+
9
+ ### v0.13.0 (2022-05-09)
10
+
11
+ * Regenerated from discovery document revision 20220504
12
+
13
+ ### v0.12.0 (2022-03-21)
14
+
15
+ * Regenerated from discovery document revision 20220316
16
+ * Regenerated using generator version 0.4.1
17
+
3
18
  ### v0.11.0 (2021-12-14)
4
19
 
5
20
  * Unspecified changes
@@ -60,8 +60,8 @@ module Google
60
60
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
61
61
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
62
62
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
63
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
64
- # DATA_WRITE logging.
63
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
64
+ # from DATA_WRITE logging.
65
65
  class AuditConfig
66
66
  include Google::Apis::Core::Hashable
67
67
 
@@ -141,7 +141,7 @@ module Google
141
141
  # @return [Google::Apis::DatafusionV1::Expr]
142
142
  attr_accessor :condition
143
143
 
144
- # Specifies the principals requesting access for a Cloud Platform resource. `
144
+ # Specifies the principals requesting access for a Google Cloud resource. `
145
145
  # members` can have the following values: * `allUsers`: A special identifier
146
146
  # that represents anyone who is on the internet; with or without a Google
147
147
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -224,11 +224,55 @@ module Google
224
224
  end
225
225
  end
226
226
 
227
+ # DNS peering configuration. These configurations are used to create DNS peering
228
+ # with the customer Cloud DNS.
229
+ class DnsPeering
230
+ include Google::Apis::Core::Hashable
231
+
232
+ # Optional. Optional description of the dns zone.
233
+ # Corresponds to the JSON property `description`
234
+ # @return [String]
235
+ attr_accessor :description
236
+
237
+ # Required. The dns name suffix of the zone.
238
+ # Corresponds to the JSON property `domain`
239
+ # @return [String]
240
+ attr_accessor :domain
241
+
242
+ # Required. The resource name of the dns peering zone. Format: projects/`project`
243
+ # /locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
244
+ # Corresponds to the JSON property `name`
245
+ # @return [String]
246
+ attr_accessor :name
247
+
248
+ # Optional. Optional target network to which dns peering should happen.
249
+ # Corresponds to the JSON property `targetNetwork`
250
+ # @return [String]
251
+ attr_accessor :target_network
252
+
253
+ # Optional. Optional target project to which dns peering should happen.
254
+ # Corresponds to the JSON property `targetProject`
255
+ # @return [String]
256
+ attr_accessor :target_project
257
+
258
+ def initialize(**args)
259
+ update!(**args)
260
+ end
261
+
262
+ # Update properties of this object
263
+ def update!(**args)
264
+ @description = args[:description] if args.key?(:description)
265
+ @domain = args[:domain] if args.key?(:domain)
266
+ @name = args[:name] if args.key?(:name)
267
+ @target_network = args[:target_network] if args.key?(:target_network)
268
+ @target_project = args[:target_project] if args.key?(:target_project)
269
+ end
270
+ end
271
+
227
272
  # A generic empty message that you can re-use to avoid defining duplicated empty
228
273
  # messages in your APIs. A typical example is to use it as the request or the
229
274
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
230
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
231
- # `Empty` is empty JSON object ````.
275
+ # protobuf.Empty) returns (google.protobuf.Empty); `
232
276
  class Empty
233
277
  include Google::Apis::Core::Hashable
234
278
 
@@ -241,6 +285,33 @@ module Google
241
285
  end
242
286
  end
243
287
 
288
+ # Confirguration of PubSubEventWriter.
289
+ class EventPublishConfig
290
+ include Google::Apis::Core::Hashable
291
+
292
+ # Required. Option to enable Event Publishing.
293
+ # Corresponds to the JSON property `enabled`
294
+ # @return [Boolean]
295
+ attr_accessor :enabled
296
+ alias_method :enabled?, :enabled
297
+
298
+ # Required. The resource name of the Pub/Sub topic. Format: projects/`project_id`
299
+ # /topics/`topic_id`
300
+ # Corresponds to the JSON property `topic`
301
+ # @return [String]
302
+ attr_accessor :topic
303
+
304
+ def initialize(**args)
305
+ update!(**args)
306
+ end
307
+
308
+ # Update properties of this object
309
+ def update!(**args)
310
+ @enabled = args[:enabled] if args.key?(:enabled)
311
+ @topic = args[:topic] if args.key?(:topic)
312
+ end
313
+ end
314
+
244
315
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
245
316
  # CEL is a C-like expression language. The syntax and semantics of CEL are
246
317
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -367,6 +438,11 @@ module Google
367
438
  attr_accessor :enable_stackdriver_monitoring
368
439
  alias_method :enable_stackdriver_monitoring?, :enable_stackdriver_monitoring
369
440
 
441
+ # Confirguration of PubSubEventWriter.
442
+ # Corresponds to the JSON property `eventPublishConfig`
443
+ # @return [Google::Apis::DatafusionV1::EventPublishConfig]
444
+ attr_accessor :event_publish_config
445
+
370
446
  # Output only. Cloud Storage bucket generated by Data Fusion in the customer
371
447
  # project.
372
448
  # Corresponds to the JSON property `gcsBucket`
@@ -481,6 +557,7 @@ module Google
481
557
  @enable_rbac = args[:enable_rbac] if args.key?(:enable_rbac)
482
558
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
483
559
  @enable_stackdriver_monitoring = args[:enable_stackdriver_monitoring] if args.key?(:enable_stackdriver_monitoring)
560
+ @event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
484
561
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
485
562
  @labels = args[:labels] if args.key?(:labels)
486
563
  @name = args[:name] if args.key?(:name)
@@ -526,6 +603,32 @@ module Google
526
603
  end
527
604
  end
528
605
 
606
+ # Response message for list DNS peerings.
607
+ class ListDnsPeeringsResponse
608
+ include Google::Apis::Core::Hashable
609
+
610
+ # List of dns peering.
611
+ # Corresponds to the JSON property `dnsPeerings`
612
+ # @return [Array<Google::Apis::DatafusionV1::DnsPeering>]
613
+ attr_accessor :dns_peerings
614
+
615
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
616
+ # field is omitted, there are no subsequent pages.
617
+ # Corresponds to the JSON property `nextPageToken`
618
+ # @return [String]
619
+ attr_accessor :next_page_token
620
+
621
+ def initialize(**args)
622
+ update!(**args)
623
+ end
624
+
625
+ # Update properties of this object
626
+ def update!(**args)
627
+ @dns_peerings = args[:dns_peerings] if args.key?(:dns_peerings)
628
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
629
+ end
630
+ end
631
+
529
632
  # Response message for the list instance request.
530
633
  class ListInstancesResponse
531
634
  include Google::Apis::Core::Hashable
@@ -1023,7 +1126,7 @@ module Google
1023
1126
  include Google::Apis::Core::Hashable
1024
1127
 
1025
1128
  # The set of permissions to check for the `resource`. Permissions with wildcards
1026
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
1129
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
1027
1130
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
1028
1131
  # Corresponds to the JSON property `permissions`
1029
1132
  # @return [Array<String>]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatafusionV1
18
18
  # Version of the google-apis-datafusion_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211028"
25
+ REVISION = "20220603"
26
26
  end
27
27
  end
28
28
  end
@@ -58,12 +58,24 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class DnsPeering
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class Empty
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
64
70
  include Google::Apis::Core::JsonObjectSupport
65
71
  end
66
72
 
73
+ class EventPublishConfig
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class Expr
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
@@ -82,6 +94,12 @@ module Google
82
94
  include Google::Apis::Core::JsonObjectSupport
83
95
  end
84
96
 
97
+ class ListDnsPeeringsResponse
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
85
103
  class ListInstancesResponse
86
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
105
 
@@ -214,12 +232,31 @@ module Google
214
232
  end
215
233
  end
216
234
 
235
+ class DnsPeering
236
+ # @private
237
+ class Representation < Google::Apis::Core::JsonRepresentation
238
+ property :description, as: 'description'
239
+ property :domain, as: 'domain'
240
+ property :name, as: 'name'
241
+ property :target_network, as: 'targetNetwork'
242
+ property :target_project, as: 'targetProject'
243
+ end
244
+ end
245
+
217
246
  class Empty
218
247
  # @private
219
248
  class Representation < Google::Apis::Core::JsonRepresentation
220
249
  end
221
250
  end
222
251
 
252
+ class EventPublishConfig
253
+ # @private
254
+ class Representation < Google::Apis::Core::JsonRepresentation
255
+ property :enabled, as: 'enabled'
256
+ property :topic, as: 'topic'
257
+ end
258
+ end
259
+
223
260
  class Expr
224
261
  # @private
225
262
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -248,6 +285,8 @@ module Google
248
285
  property :enable_rbac, as: 'enableRbac'
249
286
  property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
250
287
  property :enable_stackdriver_monitoring, as: 'enableStackdriverMonitoring'
288
+ property :event_publish_config, as: 'eventPublishConfig', class: Google::Apis::DatafusionV1::EventPublishConfig, decorator: Google::Apis::DatafusionV1::EventPublishConfig::Representation
289
+
251
290
  property :gcs_bucket, as: 'gcsBucket'
252
291
  hash :labels, as: 'labels'
253
292
  property :name, as: 'name'
@@ -277,6 +316,15 @@ module Google
277
316
  end
278
317
  end
279
318
 
319
+ class ListDnsPeeringsResponse
320
+ # @private
321
+ class Representation < Google::Apis::Core::JsonRepresentation
322
+ collection :dns_peerings, as: 'dnsPeerings', class: Google::Apis::DatafusionV1::DnsPeering, decorator: Google::Apis::DatafusionV1::DnsPeering::Representation
323
+
324
+ property :next_page_token, as: 'nextPageToken'
325
+ end
326
+ end
327
+
280
328
  class ListInstancesResponse
281
329
  # @private
282
330
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -90,8 +90,8 @@ module Google
90
90
  # The resource that owns the locations collection, if applicable.
91
91
  # @param [String] filter
92
92
  # A filter to narrow down results to a preferred subset. The filtering language
93
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
94
- # AIP-160](https://google.aip.dev/160).
93
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
94
+ # in [AIP-160](https://google.aip.dev/160).
95
95
  # @param [Boolean] include_unrevealed_locations
96
96
  # If true, the returned list will include locations which are not yet revealed.
97
97
  # @param [Fixnum] page_size
@@ -233,16 +233,20 @@ module Google
233
233
  # Gets the access control policy for a resource. Returns an empty policy if the
234
234
  # resource exists and does not have a policy set.
235
235
  # @param [String] resource
236
- # REQUIRED: The resource for which the policy is being requested. See the
237
- # operation documentation for the appropriate value for this field.
236
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
237
+ # names](https://cloud.google.com/apis/design/resource_names) for the
238
+ # appropriate value for this field.
238
239
  # @param [Fixnum] options_requested_policy_version
239
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
240
- # 3. Requests specifying an invalid value will be rejected. Requests for
241
- # policies with any conditional bindings must specify version 3. Policies
242
- # without any conditional bindings may specify any valid value or leave the
243
- # field unset. To learn which resources support conditions in their IAM policies,
244
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
245
- # resource-policies).
240
+ # Optional. The maximum policy version that will be used to format the policy.
241
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
242
+ # rejected. Requests for policies with any conditional role bindings must
243
+ # specify version 3. Policies with no conditional role bindings may specify any
244
+ # valid value or leave the field unset. The policy in the response might use the
245
+ # policy version that you specified, or it might use a lower policy version. For
246
+ # example, if you specify version 3, but the policy has no conditional role
247
+ # bindings, the response uses version 1. To learn which resources support
248
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
249
+ # google.com/iam/help/conditions/resource-policies).
246
250
  # @param [String] fields
247
251
  # Selector specifying which fields to include in a partial response.
248
252
  # @param [String] quota_user
@@ -326,8 +330,7 @@ module Google
326
330
  # Field mask is used to specify the fields that the update will overwrite in an
327
331
  # instance resource. The fields specified in the update_mask are relative to the
328
332
  # resource, not the full request. A field will be overwritten if it is in the
329
- # mask. If the user does not provide a mask, all the supported fields (labels,
330
- # options, and version currently) will be overwritten.
333
+ # mask. If the user does not provide a mask, the label field will be overwritten.
331
334
  # @param [String] fields
332
335
  # Selector specifying which fields to include in a partial response.
333
336
  # @param [String] quota_user
@@ -397,8 +400,9 @@ module Google
397
400
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
398
401
  # PERMISSION_DENIED` errors.
399
402
  # @param [String] resource
400
- # REQUIRED: The resource for which the policy is being specified. See the
401
- # operation documentation for the appropriate value for this field.
403
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
404
+ # names](https://cloud.google.com/apis/design/resource_names) for the
405
+ # appropriate value for this field.
402
406
  # @param [Google::Apis::DatafusionV1::SetIamPolicyRequest] set_iam_policy_request_object
403
407
  # @param [String] fields
404
408
  # Selector specifying which fields to include in a partial response.
@@ -435,8 +439,9 @@ module Google
435
439
  # permission-aware UIs and command-line tools, not for authorization checking.
436
440
  # This operation may "fail open" without warning.
437
441
  # @param [String] resource
438
- # REQUIRED: The resource for which the policy detail is being requested. See the
439
- # operation documentation for the appropriate value for this field.
442
+ # REQUIRED: The resource for which the policy detail is being requested. See [
443
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
444
+ # appropriate value for this field.
440
445
  # @param [Google::Apis::DatafusionV1::TestIamPermissionsRequest] test_iam_permissions_request_object
441
446
  # @param [String] fields
442
447
  # Selector specifying which fields to include in a partial response.
@@ -467,6 +472,114 @@ module Google
467
472
  execute_or_queue_command(command, &block)
468
473
  end
469
474
 
475
+ # Creates DNS peering on the given resource.
476
+ # @param [String] parent
477
+ # Required. The resource on which DNS peering will be created.
478
+ # @param [Google::Apis::DatafusionV1::DnsPeering] dns_peering_object
479
+ # @param [String] dns_peering_id
480
+ # Required. The name of the peering to create.
481
+ # @param [String] fields
482
+ # Selector specifying which fields to include in a partial response.
483
+ # @param [String] quota_user
484
+ # Available to use for quota purposes for server-side applications. Can be any
485
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
486
+ # @param [Google::Apis::RequestOptions] options
487
+ # Request-specific options
488
+ #
489
+ # @yield [result, err] Result & error if block supplied
490
+ # @yieldparam result [Google::Apis::DatafusionV1::DnsPeering] parsed result object
491
+ # @yieldparam err [StandardError] error object if request failed
492
+ #
493
+ # @return [Google::Apis::DatafusionV1::DnsPeering]
494
+ #
495
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
496
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
497
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
498
+ def create_project_location_instance_dns_peering(parent, dns_peering_object = nil, dns_peering_id: nil, fields: nil, quota_user: nil, options: nil, &block)
499
+ command = make_simple_command(:post, 'v1/{+parent}/dnsPeerings', options)
500
+ command.request_representation = Google::Apis::DatafusionV1::DnsPeering::Representation
501
+ command.request_object = dns_peering_object
502
+ command.response_representation = Google::Apis::DatafusionV1::DnsPeering::Representation
503
+ command.response_class = Google::Apis::DatafusionV1::DnsPeering
504
+ command.params['parent'] = parent unless parent.nil?
505
+ command.query['dnsPeeringId'] = dns_peering_id unless dns_peering_id.nil?
506
+ command.query['fields'] = fields unless fields.nil?
507
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
508
+ execute_or_queue_command(command, &block)
509
+ end
510
+
511
+ # Deletes DNS peering on the given resource.
512
+ # @param [String] name
513
+ # Required. The name of the DNS peering zone to delete. Format: projects/`
514
+ # project`/locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
515
+ # @param [String] fields
516
+ # Selector specifying which fields to include in a partial response.
517
+ # @param [String] quota_user
518
+ # Available to use for quota purposes for server-side applications. Can be any
519
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
520
+ # @param [Google::Apis::RequestOptions] options
521
+ # Request-specific options
522
+ #
523
+ # @yield [result, err] Result & error if block supplied
524
+ # @yieldparam result [Google::Apis::DatafusionV1::Empty] parsed result object
525
+ # @yieldparam err [StandardError] error object if request failed
526
+ #
527
+ # @return [Google::Apis::DatafusionV1::Empty]
528
+ #
529
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
530
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
531
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
532
+ def delete_project_location_instance_dns_peering(name, fields: nil, quota_user: nil, options: nil, &block)
533
+ command = make_simple_command(:delete, 'v1/{+name}', options)
534
+ command.response_representation = Google::Apis::DatafusionV1::Empty::Representation
535
+ command.response_class = Google::Apis::DatafusionV1::Empty
536
+ command.params['name'] = name unless name.nil?
537
+ command.query['fields'] = fields unless fields.nil?
538
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
539
+ execute_or_queue_command(command, &block)
540
+ end
541
+
542
+ # Lists DNS peerings for a given resource.
543
+ # @param [String] parent
544
+ # Required. The parent, which owns this collection of dns peerings. Format:
545
+ # projects/`project`/locations/`location`/instances/`instance`
546
+ # @param [Fixnum] page_size
547
+ # The maximum number of dns peerings to return. The service may return fewer
548
+ # than this value. If unspecified, at most 50 dns peerings will be returned. The
549
+ # maximum value is 200; values above 200 will be coerced to 200.
550
+ # @param [String] page_token
551
+ # A page token, received from a previous `ListDnsPeerings` call. Provide this to
552
+ # retrieve the subsequent page. When paginating, all other parameters provided
553
+ # to `ListDnsPeerings` must match the call that provided the page token.
554
+ # @param [String] fields
555
+ # Selector specifying which fields to include in a partial response.
556
+ # @param [String] quota_user
557
+ # Available to use for quota purposes for server-side applications. Can be any
558
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
559
+ # @param [Google::Apis::RequestOptions] options
560
+ # Request-specific options
561
+ #
562
+ # @yield [result, err] Result & error if block supplied
563
+ # @yieldparam result [Google::Apis::DatafusionV1::ListDnsPeeringsResponse] parsed result object
564
+ # @yieldparam err [StandardError] error object if request failed
565
+ #
566
+ # @return [Google::Apis::DatafusionV1::ListDnsPeeringsResponse]
567
+ #
568
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
569
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
570
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
571
+ def list_project_location_instance_dns_peerings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
572
+ command = make_simple_command(:get, 'v1/{+parent}/dnsPeerings', options)
573
+ command.response_representation = Google::Apis::DatafusionV1::ListDnsPeeringsResponse::Representation
574
+ command.response_class = Google::Apis::DatafusionV1::ListDnsPeeringsResponse
575
+ command.params['parent'] = parent unless parent.nil?
576
+ command.query['pageSize'] = page_size unless page_size.nil?
577
+ command.query['pageToken'] = page_token unless page_token.nil?
578
+ command.query['fields'] = fields unless fields.nil?
579
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
580
+ execute_or_queue_command(command, &block)
581
+ end
582
+
470
583
  # Starts asynchronous cancellation on a long-running operation. The server makes
471
584
  # a best effort to cancel the operation, but success is not guaranteed. If the
472
585
  # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datafusion_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Data Fusion API V1