google-apis-datafusion_v1beta1 0.11.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/datafusion_v1beta1/classes.rb +17 -82
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1beta1/representations.rb +1 -52
- data/lib/google/apis/datafusion_v1beta1/service.rb +83 -66
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c0835593c29e39e6396710a2a3a387e8219e79177cd5d7f791e41ebbf984baf
|
4
|
+
data.tar.gz: b5dae16111e004e76eef2b32b4f575716cbf3d9a88889a30dbdd74f51780ae3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd63e30c934ba04291f3e3bcd061f118b1a3e6c13c43526c9aa1a34bcec7b398acd59c1829e1b59e7bbdc5e17ec1226119400469e50365167ea044c6c6ede308
|
7
|
+
data.tar.gz: 607ff4f2c73b0c76c5d1f0c2cb0512cf0d645cddbbf485a6898e05935742599ba7c4b0d5a54c74c2799dab33bff103aac5caf5601aa659c6b78aa8f905b3960d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
2
2
|
|
3
|
+
### v0.14.0 (2022-05-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220504
|
6
|
+
|
7
|
+
### v0.13.0 (2022-03-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220316
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.12.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.11.0 (2021-11-02)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20211028
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datafusion_v1beta1"
|
|
51
51
|
client = Google::Apis::DatafusionV1beta1::DataFusionService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -41,39 +41,6 @@ module Google
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
44
|
-
# Request message to create dns peering.
|
45
|
-
class AddDnsPeeringRequest
|
46
|
-
include Google::Apis::Core::Hashable
|
47
|
-
|
48
|
-
# DNS peering configuration. These configurations are used to create DNS peering
|
49
|
-
# with the customer Cloud DNS.
|
50
|
-
# Corresponds to the JSON property `dnsPeering`
|
51
|
-
# @return [Google::Apis::DatafusionV1beta1::DnsPeering]
|
52
|
-
attr_accessor :dns_peering
|
53
|
-
|
54
|
-
def initialize(**args)
|
55
|
-
update!(**args)
|
56
|
-
end
|
57
|
-
|
58
|
-
# Update properties of this object
|
59
|
-
def update!(**args)
|
60
|
-
@dns_peering = args[:dns_peering] if args.key?(:dns_peering)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
# Response message for set dns peering method.
|
65
|
-
class AddDnsPeeringResponse
|
66
|
-
include Google::Apis::Core::Hashable
|
67
|
-
|
68
|
-
def initialize(**args)
|
69
|
-
update!(**args)
|
70
|
-
end
|
71
|
-
|
72
|
-
# Update properties of this object
|
73
|
-
def update!(**args)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
44
|
# Specifies the audit configuration for a service. The configuration determines
|
78
45
|
# which permission types are logged, and what identities, if any, are exempted
|
79
46
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -87,8 +54,8 @@ module Google
|
|
87
54
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
88
55
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
89
56
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
90
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
91
|
-
# DATA_WRITE logging.
|
57
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
58
|
+
# from DATA_WRITE logging.
|
92
59
|
class AuditConfig
|
93
60
|
include Google::Apis::Core::Hashable
|
94
61
|
|
@@ -168,7 +135,7 @@ module Google
|
|
168
135
|
# @return [Google::Apis::DatafusionV1beta1::Expr]
|
169
136
|
attr_accessor :condition
|
170
137
|
|
171
|
-
# Specifies the principals requesting access for a Cloud
|
138
|
+
# Specifies the principals requesting access for a Google Cloud resource. `
|
172
139
|
# members` can have the following values: * `allUsers`: A special identifier
|
173
140
|
# that represents anyone who is on the internet; with or without a Google
|
174
141
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -261,11 +228,17 @@ module Google
|
|
261
228
|
# @return [String]
|
262
229
|
attr_accessor :description
|
263
230
|
|
264
|
-
# Required.
|
231
|
+
# Required. The dns name suffix of the zone.
|
265
232
|
# Corresponds to the JSON property `domain`
|
266
233
|
# @return [String]
|
267
234
|
attr_accessor :domain
|
268
235
|
|
236
|
+
# Required. The resource name of the dns peering zone. Format: projects/`project`
|
237
|
+
# /locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
|
238
|
+
# Corresponds to the JSON property `name`
|
239
|
+
# @return [String]
|
240
|
+
attr_accessor :name
|
241
|
+
|
269
242
|
# Optional. Optional target network to which dns peering should happen.
|
270
243
|
# Corresponds to the JSON property `targetNetwork`
|
271
244
|
# @return [String]
|
@@ -276,11 +249,6 @@ module Google
|
|
276
249
|
# @return [String]
|
277
250
|
attr_accessor :target_project
|
278
251
|
|
279
|
-
# Required. Name of the zone.
|
280
|
-
# Corresponds to the JSON property `zone`
|
281
|
-
# @return [String]
|
282
|
-
attr_accessor :zone
|
283
|
-
|
284
252
|
def initialize(**args)
|
285
253
|
update!(**args)
|
286
254
|
end
|
@@ -289,17 +257,16 @@ module Google
|
|
289
257
|
def update!(**args)
|
290
258
|
@description = args[:description] if args.key?(:description)
|
291
259
|
@domain = args[:domain] if args.key?(:domain)
|
260
|
+
@name = args[:name] if args.key?(:name)
|
292
261
|
@target_network = args[:target_network] if args.key?(:target_network)
|
293
262
|
@target_project = args[:target_project] if args.key?(:target_project)
|
294
|
-
@zone = args[:zone] if args.key?(:zone)
|
295
263
|
end
|
296
264
|
end
|
297
265
|
|
298
266
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
299
267
|
# messages in your APIs. A typical example is to use it as the request or the
|
300
268
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
301
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
302
|
-
# `Empty` is empty JSON object ````.
|
269
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
303
270
|
class Empty
|
304
271
|
include Google::Apis::Core::Hashable
|
305
272
|
|
@@ -654,17 +621,17 @@ module Google
|
|
654
621
|
end
|
655
622
|
end
|
656
623
|
|
657
|
-
#
|
624
|
+
# Response message for list DNS peerings.
|
658
625
|
class ListDnsPeeringsResponse
|
659
626
|
include Google::Apis::Core::Hashable
|
660
627
|
|
661
|
-
# List of dns peering
|
628
|
+
# List of dns peering.
|
662
629
|
# Corresponds to the JSON property `dnsPeerings`
|
663
630
|
# @return [Array<Google::Apis::DatafusionV1beta1::DnsPeering>]
|
664
631
|
attr_accessor :dns_peerings
|
665
632
|
|
666
|
-
#
|
667
|
-
#
|
633
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
634
|
+
# field is omitted, there are no subsequent pages.
|
668
635
|
# Corresponds to the JSON property `nextPageToken`
|
669
636
|
# @return [String]
|
670
637
|
attr_accessor :next_page_token
|
@@ -1111,38 +1078,6 @@ module Google
|
|
1111
1078
|
end
|
1112
1079
|
end
|
1113
1080
|
|
1114
|
-
# Request message to remove dns peering.
|
1115
|
-
class RemoveDnsPeeringRequest
|
1116
|
-
include Google::Apis::Core::Hashable
|
1117
|
-
|
1118
|
-
# Required. The zone to be removed.
|
1119
|
-
# Corresponds to the JSON property `zone`
|
1120
|
-
# @return [String]
|
1121
|
-
attr_accessor :zone
|
1122
|
-
|
1123
|
-
def initialize(**args)
|
1124
|
-
update!(**args)
|
1125
|
-
end
|
1126
|
-
|
1127
|
-
# Update properties of this object
|
1128
|
-
def update!(**args)
|
1129
|
-
@zone = args[:zone] if args.key?(:zone)
|
1130
|
-
end
|
1131
|
-
end
|
1132
|
-
|
1133
|
-
# Response message for set dns peering method.
|
1134
|
-
class RemoveDnsPeeringResponse
|
1135
|
-
include Google::Apis::Core::Hashable
|
1136
|
-
|
1137
|
-
def initialize(**args)
|
1138
|
-
update!(**args)
|
1139
|
-
end
|
1140
|
-
|
1141
|
-
# Update properties of this object
|
1142
|
-
def update!(**args)
|
1143
|
-
end
|
1144
|
-
end
|
1145
|
-
|
1146
1081
|
# Request message for RemoveIamPolicy method.
|
1147
1082
|
class RemoveIamPolicyRequest
|
1148
1083
|
include Google::Apis::Core::Hashable
|
@@ -1279,7 +1214,7 @@ module Google
|
|
1279
1214
|
include Google::Apis::Core::Hashable
|
1280
1215
|
|
1281
1216
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
1282
|
-
# (such as
|
1217
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
1283
1218
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
1284
1219
|
# Corresponds to the JSON property `permissions`
|
1285
1220
|
# @return [Array<String>]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatafusionV1beta1
|
18
18
|
# Version of the google-apis-datafusion_v1beta1 gem
|
19
|
-
GEM_VERSION = "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.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220504"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,18 +28,6 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
-
class AddDnsPeeringRequest
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
|
-
class AddDnsPeeringResponse
|
38
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
-
|
40
|
-
include Google::Apis::Core::JsonObjectSupport
|
41
|
-
end
|
42
|
-
|
43
31
|
class AuditConfig
|
44
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
33
|
|
@@ -172,18 +160,6 @@ module Google
|
|
172
160
|
include Google::Apis::Core::JsonObjectSupport
|
173
161
|
end
|
174
162
|
|
175
|
-
class RemoveDnsPeeringRequest
|
176
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
-
|
178
|
-
include Google::Apis::Core::JsonObjectSupport
|
179
|
-
end
|
180
|
-
|
181
|
-
class RemoveDnsPeeringResponse
|
182
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
-
|
184
|
-
include Google::Apis::Core::JsonObjectSupport
|
185
|
-
end
|
186
|
-
|
187
163
|
class RemoveIamPolicyRequest
|
188
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
165
|
|
@@ -245,20 +221,6 @@ module Google
|
|
245
221
|
end
|
246
222
|
end
|
247
223
|
|
248
|
-
class AddDnsPeeringRequest
|
249
|
-
# @private
|
250
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
251
|
-
property :dns_peering, as: 'dnsPeering', class: Google::Apis::DatafusionV1beta1::DnsPeering, decorator: Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
252
|
-
|
253
|
-
end
|
254
|
-
end
|
255
|
-
|
256
|
-
class AddDnsPeeringResponse
|
257
|
-
# @private
|
258
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
259
|
-
end
|
260
|
-
end
|
261
|
-
|
262
224
|
class AuditConfig
|
263
225
|
# @private
|
264
226
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -304,9 +266,9 @@ module Google
|
|
304
266
|
class Representation < Google::Apis::Core::JsonRepresentation
|
305
267
|
property :description, as: 'description'
|
306
268
|
property :domain, as: 'domain'
|
269
|
+
property :name, as: 'name'
|
307
270
|
property :target_network, as: 'targetNetwork'
|
308
271
|
property :target_project, as: 'targetProject'
|
309
|
-
property :zone, as: 'zone'
|
310
272
|
end
|
311
273
|
end
|
312
274
|
|
@@ -494,19 +456,6 @@ module Google
|
|
494
456
|
end
|
495
457
|
end
|
496
458
|
|
497
|
-
class RemoveDnsPeeringRequest
|
498
|
-
# @private
|
499
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
500
|
-
property :zone, as: 'zone'
|
501
|
-
end
|
502
|
-
end
|
503
|
-
|
504
|
-
class RemoveDnsPeeringResponse
|
505
|
-
# @private
|
506
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
507
|
-
end
|
508
|
-
end
|
509
|
-
|
510
459
|
class RemoveIamPolicyRequest
|
511
460
|
# @private
|
512
461
|
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"
|
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
|
@@ -266,16 +266,20 @@ module Google
|
|
266
266
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
267
267
|
# resource exists and does not have a policy set.
|
268
268
|
# @param [String] resource
|
269
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
270
|
-
#
|
269
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
270
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
271
|
+
# appropriate value for this field.
|
271
272
|
# @param [Fixnum] options_requested_policy_version
|
272
|
-
# Optional. The policy
|
273
|
-
# 3. Requests specifying an invalid value will be
|
274
|
-
# policies with any conditional bindings must
|
275
|
-
#
|
276
|
-
# field unset.
|
277
|
-
#
|
278
|
-
#
|
273
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
274
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
275
|
+
# rejected. Requests for policies with any conditional role bindings must
|
276
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
277
|
+
# valid value or leave the field unset. The policy in the response might use the
|
278
|
+
# policy version that you specified, or it might use a lower policy version. For
|
279
|
+
# example, if you specify version 3, but the policy has no conditional role
|
280
|
+
# bindings, the response uses version 1. To learn which resources support
|
281
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
282
|
+
# google.com/iam/help/conditions/resource-policies).
|
279
283
|
# @param [String] fields
|
280
284
|
# Selector specifying which fields to include in a partial response.
|
281
285
|
# @param [String] quota_user
|
@@ -430,8 +434,9 @@ module Google
|
|
430
434
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
431
435
|
# PERMISSION_DENIED` errors.
|
432
436
|
# @param [String] resource
|
433
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
434
|
-
#
|
437
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
438
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
439
|
+
# appropriate value for this field.
|
435
440
|
# @param [Google::Apis::DatafusionV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
436
441
|
# @param [String] fields
|
437
442
|
# Selector specifying which fields to include in a partial response.
|
@@ -468,8 +473,9 @@ module Google
|
|
468
473
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
469
474
|
# This operation may "fail open" without warning.
|
470
475
|
# @param [String] resource
|
471
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
472
|
-
#
|
476
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
477
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
478
|
+
# appropriate value for this field.
|
473
479
|
# @param [Google::Apis::DatafusionV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
474
480
|
# @param [String] fields
|
475
481
|
# Selector specifying which fields to include in a partial response.
|
@@ -536,10 +542,12 @@ module Google
|
|
536
542
|
execute_or_queue_command(command, &block)
|
537
543
|
end
|
538
544
|
|
539
|
-
#
|
545
|
+
# Creates DNS peering on the given resource.
|
540
546
|
# @param [String] parent
|
541
547
|
# Required. The resource on which DNS peering will be created.
|
542
|
-
# @param [Google::Apis::DatafusionV1beta1::
|
548
|
+
# @param [Google::Apis::DatafusionV1beta1::DnsPeering] dns_peering_object
|
549
|
+
# @param [String] dns_peering_id
|
550
|
+
# Required. The name of the peering to create.
|
543
551
|
# @param [String] fields
|
544
552
|
# Selector specifying which fields to include in a partial response.
|
545
553
|
# @param [String] quota_user
|
@@ -549,34 +557,31 @@ module Google
|
|
549
557
|
# Request-specific options
|
550
558
|
#
|
551
559
|
# @yield [result, err] Result & error if block supplied
|
552
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
560
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::DnsPeering] parsed result object
|
553
561
|
# @yieldparam err [StandardError] error object if request failed
|
554
562
|
#
|
555
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
563
|
+
# @return [Google::Apis::DatafusionV1beta1::DnsPeering]
|
556
564
|
#
|
557
565
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
558
566
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
559
567
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
560
|
-
def
|
561
|
-
command = make_simple_command(:post, 'v1beta1/{+parent}/dnsPeerings
|
562
|
-
command.request_representation = Google::Apis::DatafusionV1beta1::
|
563
|
-
command.request_object =
|
564
|
-
command.response_representation = Google::Apis::DatafusionV1beta1::
|
565
|
-
command.response_class = Google::Apis::DatafusionV1beta1::
|
568
|
+
def create_project_location_instance_dns_peering(parent, dns_peering_object = nil, dns_peering_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
569
|
+
command = make_simple_command(:post, 'v1beta1/{+parent}/dnsPeerings', options)
|
570
|
+
command.request_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
571
|
+
command.request_object = dns_peering_object
|
572
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
573
|
+
command.response_class = Google::Apis::DatafusionV1beta1::DnsPeering
|
566
574
|
command.params['parent'] = parent unless parent.nil?
|
575
|
+
command.query['dnsPeeringId'] = dns_peering_id unless dns_peering_id.nil?
|
567
576
|
command.query['fields'] = fields unless fields.nil?
|
568
577
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
569
578
|
execute_or_queue_command(command, &block)
|
570
579
|
end
|
571
580
|
|
572
|
-
#
|
573
|
-
# @param [String]
|
574
|
-
# Required. The
|
575
|
-
#
|
576
|
-
# The maximum number of items to return.
|
577
|
-
# @param [String] page_token
|
578
|
-
# The next_page_token value to use if there are additional results to retrieve
|
579
|
-
# for this list request.
|
581
|
+
# Deletes DNS peering on the given resource.
|
582
|
+
# @param [String] name
|
583
|
+
# Required. The name of the DNS peering zone to delete. Format: projects/`
|
584
|
+
# project`/locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
|
580
585
|
# @param [String] fields
|
581
586
|
# Selector specifying which fields to include in a partial response.
|
582
587
|
# @param [String] quota_user
|
@@ -586,30 +591,36 @@ module Google
|
|
586
591
|
# Request-specific options
|
587
592
|
#
|
588
593
|
# @yield [result, err] Result & error if block supplied
|
589
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
594
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::Empty] parsed result object
|
590
595
|
# @yieldparam err [StandardError] error object if request failed
|
591
596
|
#
|
592
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
597
|
+
# @return [Google::Apis::DatafusionV1beta1::Empty]
|
593
598
|
#
|
594
599
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
595
600
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
596
601
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
597
|
-
def
|
598
|
-
command = make_simple_command(:
|
599
|
-
command.response_representation = Google::Apis::DatafusionV1beta1::
|
600
|
-
command.response_class = Google::Apis::DatafusionV1beta1::
|
601
|
-
command.params['
|
602
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
603
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
602
|
+
def delete_project_location_instance_dns_peering(name, fields: nil, quota_user: nil, options: nil, &block)
|
603
|
+
command = make_simple_command(:delete, 'v1beta1/{+name}', options)
|
604
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::Empty::Representation
|
605
|
+
command.response_class = Google::Apis::DatafusionV1beta1::Empty
|
606
|
+
command.params['name'] = name unless name.nil?
|
604
607
|
command.query['fields'] = fields unless fields.nil?
|
605
608
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
606
609
|
execute_or_queue_command(command, &block)
|
607
610
|
end
|
608
611
|
|
609
|
-
#
|
612
|
+
# Lists DNS peerings for a given resource.
|
610
613
|
# @param [String] parent
|
611
|
-
# Required. The
|
612
|
-
#
|
614
|
+
# Required. The parent, which owns this collection of dns peerings. Format:
|
615
|
+
# projects/`project`/locations/`location`/instances/`instance`
|
616
|
+
# @param [Fixnum] page_size
|
617
|
+
# The maximum number of dns peerings to return. The service may return fewer
|
618
|
+
# than this value. If unspecified, at most 50 dns peerings will be returned. The
|
619
|
+
# maximum value is 200; values above 200 will be coerced to 200.
|
620
|
+
# @param [String] page_token
|
621
|
+
# A page token, received from a previous `ListDnsPeerings` call. Provide this to
|
622
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
623
|
+
# to `ListDnsPeerings` must match the call that provided the page token.
|
613
624
|
# @param [String] fields
|
614
625
|
# Selector specifying which fields to include in a partial response.
|
615
626
|
# @param [String] quota_user
|
@@ -619,21 +630,21 @@ module Google
|
|
619
630
|
# Request-specific options
|
620
631
|
#
|
621
632
|
# @yield [result, err] Result & error if block supplied
|
622
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
633
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse] parsed result object
|
623
634
|
# @yieldparam err [StandardError] error object if request failed
|
624
635
|
#
|
625
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
636
|
+
# @return [Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse]
|
626
637
|
#
|
627
638
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
628
639
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
629
640
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
630
|
-
def
|
631
|
-
command = make_simple_command(:
|
632
|
-
command.
|
633
|
-
command.
|
634
|
-
command.response_representation = Google::Apis::DatafusionV1beta1::RemoveDnsPeeringResponse::Representation
|
635
|
-
command.response_class = Google::Apis::DatafusionV1beta1::RemoveDnsPeeringResponse
|
641
|
+
def list_project_location_instance_dns_peerings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
642
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/dnsPeerings', options)
|
643
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse::Representation
|
644
|
+
command.response_class = Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse
|
636
645
|
command.params['parent'] = parent unless parent.nil?
|
646
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
647
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
637
648
|
command.query['fields'] = fields unless fields.nil?
|
638
649
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
639
650
|
execute_or_queue_command(command, &block)
|
@@ -642,16 +653,20 @@ module Google
|
|
642
653
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
643
654
|
# resource exists and does not have a policy set.
|
644
655
|
# @param [String] resource
|
645
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
646
|
-
#
|
656
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
657
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
658
|
+
# appropriate value for this field.
|
647
659
|
# @param [Fixnum] options_requested_policy_version
|
648
|
-
# Optional. The policy
|
649
|
-
# 3. Requests specifying an invalid value will be
|
650
|
-
# policies with any conditional bindings must
|
651
|
-
#
|
652
|
-
# field unset.
|
653
|
-
#
|
654
|
-
#
|
660
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
661
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
662
|
+
# rejected. Requests for policies with any conditional role bindings must
|
663
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
664
|
+
# valid value or leave the field unset. The policy in the response might use the
|
665
|
+
# policy version that you specified, or it might use a lower policy version. For
|
666
|
+
# example, if you specify version 3, but the policy has no conditional role
|
667
|
+
# bindings, the response uses version 1. To learn which resources support
|
668
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
669
|
+
# google.com/iam/help/conditions/resource-policies).
|
655
670
|
# @param [String] fields
|
656
671
|
# Selector specifying which fields to include in a partial response.
|
657
672
|
# @param [String] quota_user
|
@@ -726,8 +741,9 @@ module Google
|
|
726
741
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
727
742
|
# PERMISSION_DENIED` errors.
|
728
743
|
# @param [String] resource
|
729
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
730
|
-
#
|
744
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
745
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
746
|
+
# appropriate value for this field.
|
731
747
|
# @param [Google::Apis::DatafusionV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
732
748
|
# @param [String] fields
|
733
749
|
# Selector specifying which fields to include in a partial response.
|
@@ -764,8 +780,9 @@ module Google
|
|
764
780
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
765
781
|
# This operation may "fail open" without warning.
|
766
782
|
# @param [String] resource
|
767
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
768
|
-
#
|
783
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
784
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
785
|
+
# appropriate value for this field.
|
769
786
|
# @param [Google::Apis::DatafusionV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
770
787
|
# @param [String] fields
|
771
788
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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:
|
11
|
+
date: 2022-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
|
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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Data Fusion API V1beta1
|