google-apis-datafusion_v1beta1 0.12.0 → 0.13.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 +5 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +12 -76
- 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 +59 -51
- 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: e356ac0a205b1bfb23b0d7ba503b037c6941c46a4d8070ef996ea85ff3bf9cc3
|
|
4
|
+
data.tar.gz: 30a203b16ace11b08c7753d8b3b42f10503248e92d9bc934d7afd12918143faa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aec8a429b8b28d46f1f9aca40501c76c2c1e1da3a4035bdd4d693722e1e5d6ecbd8a639cf6ec0e30839682f9aa934e99b0517fcde01e927844f72589e37c4ab6
|
|
7
|
+
data.tar.gz: 75f3827036ee9b02c6c6bafef6cf6b854399091a93e6f188e05df3005392d6a57629ef25bd76e8a8b4e6388d44632be7f43ceba6b0f7b94a361f6e4537ccdc4e
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -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,9 +257,9 @@ 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
|
|
|
@@ -654,17 +622,17 @@ module Google
|
|
|
654
622
|
end
|
|
655
623
|
end
|
|
656
624
|
|
|
657
|
-
#
|
|
625
|
+
# Response message for list DNS peerings.
|
|
658
626
|
class ListDnsPeeringsResponse
|
|
659
627
|
include Google::Apis::Core::Hashable
|
|
660
628
|
|
|
661
|
-
# List of dns peering
|
|
629
|
+
# List of dns peering.
|
|
662
630
|
# Corresponds to the JSON property `dnsPeerings`
|
|
663
631
|
# @return [Array<Google::Apis::DatafusionV1beta1::DnsPeering>]
|
|
664
632
|
attr_accessor :dns_peerings
|
|
665
633
|
|
|
666
|
-
#
|
|
667
|
-
#
|
|
634
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
635
|
+
# field is omitted, there are no subsequent pages.
|
|
668
636
|
# Corresponds to the JSON property `nextPageToken`
|
|
669
637
|
# @return [String]
|
|
670
638
|
attr_accessor :next_page_token
|
|
@@ -1111,38 +1079,6 @@ module Google
|
|
|
1111
1079
|
end
|
|
1112
1080
|
end
|
|
1113
1081
|
|
|
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
1082
|
# Request message for RemoveIamPolicy method.
|
|
1147
1083
|
class RemoveIamPolicyRequest
|
|
1148
1084
|
include Google::Apis::Core::Hashable
|
|
@@ -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.13.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 = "20220316"
|
|
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
|
|
@@ -269,13 +269,16 @@ module Google
|
|
|
269
269
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
270
270
|
# operation documentation for the appropriate value for this field.
|
|
271
271
|
# @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
|
-
#
|
|
272
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
273
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
274
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
275
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
276
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
277
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
278
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
279
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
280
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
281
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
279
282
|
# @param [String] fields
|
|
280
283
|
# Selector specifying which fields to include in a partial response.
|
|
281
284
|
# @param [String] quota_user
|
|
@@ -539,7 +542,7 @@ module Google
|
|
|
539
542
|
# Add DNS peering on the given resource.
|
|
540
543
|
# @param [String] parent
|
|
541
544
|
# Required. The resource on which DNS peering will be created.
|
|
542
|
-
# @param [Google::Apis::DatafusionV1beta1::
|
|
545
|
+
# @param [Google::Apis::DatafusionV1beta1::DnsPeering] dns_peering_object
|
|
543
546
|
# @param [String] fields
|
|
544
547
|
# Selector specifying which fields to include in a partial response.
|
|
545
548
|
# @param [String] quota_user
|
|
@@ -549,34 +552,30 @@ module Google
|
|
|
549
552
|
# Request-specific options
|
|
550
553
|
#
|
|
551
554
|
# @yield [result, err] Result & error if block supplied
|
|
552
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
|
555
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::DnsPeering] parsed result object
|
|
553
556
|
# @yieldparam err [StandardError] error object if request failed
|
|
554
557
|
#
|
|
555
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
|
558
|
+
# @return [Google::Apis::DatafusionV1beta1::DnsPeering]
|
|
556
559
|
#
|
|
557
560
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
558
561
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
559
562
|
# @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::
|
|
563
|
+
def create_project_location_instance_dns_peering(parent, dns_peering_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
564
|
+
command = make_simple_command(:post, 'v1beta1/{+parent}/dnsPeerings', options)
|
|
565
|
+
command.request_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
|
566
|
+
command.request_object = dns_peering_object
|
|
567
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::DnsPeering::Representation
|
|
568
|
+
command.response_class = Google::Apis::DatafusionV1beta1::DnsPeering
|
|
566
569
|
command.params['parent'] = parent unless parent.nil?
|
|
567
570
|
command.query['fields'] = fields unless fields.nil?
|
|
568
571
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
569
572
|
execute_or_queue_command(command, &block)
|
|
570
573
|
end
|
|
571
574
|
|
|
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.
|
|
575
|
+
# Remove DNS peering on the given resource.
|
|
576
|
+
# @param [String] name
|
|
577
|
+
# Required. The name of the DNS peering zone to delete. Format: projects/`
|
|
578
|
+
# project`/locations/`location`/instances/`instance`/dnsPeerings/`dns_peering`
|
|
580
579
|
# @param [String] fields
|
|
581
580
|
# Selector specifying which fields to include in a partial response.
|
|
582
581
|
# @param [String] quota_user
|
|
@@ -586,30 +585,36 @@ module Google
|
|
|
586
585
|
# Request-specific options
|
|
587
586
|
#
|
|
588
587
|
# @yield [result, err] Result & error if block supplied
|
|
589
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
|
588
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::Empty] parsed result object
|
|
590
589
|
# @yieldparam err [StandardError] error object if request failed
|
|
591
590
|
#
|
|
592
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
|
591
|
+
# @return [Google::Apis::DatafusionV1beta1::Empty]
|
|
593
592
|
#
|
|
594
593
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
595
594
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
596
595
|
# @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?
|
|
596
|
+
def delete_project_location_instance_dns_peering(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
597
|
+
command = make_simple_command(:delete, 'v1beta1/{+name}', options)
|
|
598
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::Empty::Representation
|
|
599
|
+
command.response_class = Google::Apis::DatafusionV1beta1::Empty
|
|
600
|
+
command.params['name'] = name unless name.nil?
|
|
604
601
|
command.query['fields'] = fields unless fields.nil?
|
|
605
602
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
606
603
|
execute_or_queue_command(command, &block)
|
|
607
604
|
end
|
|
608
605
|
|
|
609
|
-
#
|
|
606
|
+
# List DNS peering for a given resource.
|
|
610
607
|
# @param [String] parent
|
|
611
|
-
# Required. The
|
|
612
|
-
#
|
|
608
|
+
# Required. The parent, which owns this collection of dns peerings. Format:
|
|
609
|
+
# projects/`project`/locations/`location`/instances/`instance`
|
|
610
|
+
# @param [Fixnum] page_size
|
|
611
|
+
# The maximum number of dns peerings to return. The service may return fewer
|
|
612
|
+
# than this value. If unspecified, at most 10 dns peerings will be returned. The
|
|
613
|
+
# maximum value is 50; values above 50 will be coerced to 50.
|
|
614
|
+
# @param [String] page_token
|
|
615
|
+
# A page token, received from a previous `ListDnsPeerings` call. Provide this to
|
|
616
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
617
|
+
# to `ListDnsPeerings` must match the call that provided the page token.
|
|
613
618
|
# @param [String] fields
|
|
614
619
|
# Selector specifying which fields to include in a partial response.
|
|
615
620
|
# @param [String] quota_user
|
|
@@ -619,21 +624,21 @@ module Google
|
|
|
619
624
|
# Request-specific options
|
|
620
625
|
#
|
|
621
626
|
# @yield [result, err] Result & error if block supplied
|
|
622
|
-
# @yieldparam result [Google::Apis::DatafusionV1beta1::
|
|
627
|
+
# @yieldparam result [Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse] parsed result object
|
|
623
628
|
# @yieldparam err [StandardError] error object if request failed
|
|
624
629
|
#
|
|
625
|
-
# @return [Google::Apis::DatafusionV1beta1::
|
|
630
|
+
# @return [Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse]
|
|
626
631
|
#
|
|
627
632
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
628
633
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
629
634
|
# @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
|
|
635
|
+
def list_project_location_instance_dns_peerings(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
636
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/dnsPeerings', options)
|
|
637
|
+
command.response_representation = Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse::Representation
|
|
638
|
+
command.response_class = Google::Apis::DatafusionV1beta1::ListDnsPeeringsResponse
|
|
636
639
|
command.params['parent'] = parent unless parent.nil?
|
|
640
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
641
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
637
642
|
command.query['fields'] = fields unless fields.nil?
|
|
638
643
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
639
644
|
execute_or_queue_command(command, &block)
|
|
@@ -645,13 +650,16 @@ module Google
|
|
|
645
650
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
646
651
|
# operation documentation for the appropriate value for this field.
|
|
647
652
|
# @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
|
-
#
|
|
653
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
654
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
655
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
656
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
657
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
658
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
659
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
660
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
661
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
662
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
655
663
|
# @param [String] fields
|
|
656
664
|
# Selector specifying which fields to include in a partial response.
|
|
657
665
|
# @param [String] quota_user
|
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.13.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-
|
|
11
|
+
date: 2022-03-28 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.13.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.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
|