google-apis-datafusion_v1beta1 0.26.0 → 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71898b9d5eae17a3eae2e08150225b53cce298aefab0ca4bf92f63be9fb91ac0
|
4
|
+
data.tar.gz: 7e60e1ba73fd16bff23f5276f2987d9b3a402b87e8791211cea83bb43e049066
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52f38162d9bc76dbf028366b62eee97332d2074b73d4c5db0a5f3ed177787e0711145c57a1ea43ee2ab4b90c5343d8a75ecf21d4bec214bd45584ae83d400d2c
|
7
|
+
data.tar.gz: 3bcc8f1bf59b785c96b47ecf8f94feff94e641e20c4a13ad1d7af72806a609340fd57cf75a80d1f28efecf179545203b74e1780fa89ce31fdedf8677a414a948
|
data/CHANGELOG.md
CHANGED
@@ -387,22 +387,22 @@ module Google
|
|
387
387
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
388
388
|
# the request, the resource, or both. To learn which resources support
|
389
389
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
390
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
390
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
391
391
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
392
392
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
393
393
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
394
394
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
395
395
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
396
396
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
397
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
398
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
399
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
400
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
401
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
402
|
-
# access description: Does not grant access after Sep 2020
|
403
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
404
|
-
# a description of IAM and its features, see the
|
405
|
-
# cloud.google.com/iam/docs/).
|
397
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
398
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
399
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
400
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
401
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
402
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
403
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
404
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
405
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
406
406
|
# Corresponds to the JSON property `policy`
|
407
407
|
# @return [Google::Apis::DatafusionV1beta1::Policy]
|
408
408
|
attr_accessor :policy
|
@@ -551,6 +551,11 @@ module Google
|
|
551
551
|
# @return [String]
|
552
552
|
attr_accessor :p4_service_account
|
553
553
|
|
554
|
+
# Optional. Current patch revision of the Data Fusion.
|
555
|
+
# Corresponds to the JSON property `patchRevision`
|
556
|
+
# @return [String]
|
557
|
+
attr_accessor :patch_revision
|
558
|
+
|
554
559
|
# Specifies whether the Data Fusion instance should be private. If set to true,
|
555
560
|
# all Data Fusion nodes will have private IP addresses and will not be able to
|
556
561
|
# access the public internet.
|
@@ -607,6 +612,12 @@ module Google
|
|
607
612
|
# @return [String]
|
608
613
|
attr_accessor :version
|
609
614
|
|
615
|
+
# Output only. Endpoint on which the Data Fusion UI is accessible to third-party
|
616
|
+
# users.
|
617
|
+
# Corresponds to the JSON property `workforceIdentityServiceEndpoint`
|
618
|
+
# @return [String]
|
619
|
+
attr_accessor :workforce_identity_service_endpoint
|
620
|
+
|
610
621
|
# Name of the zone in which the Data Fusion instance will be created. Only
|
611
622
|
# DEVELOPER instances use this field.
|
612
623
|
# Corresponds to the JSON property `zone`
|
@@ -639,6 +650,7 @@ module Google
|
|
639
650
|
@network_config = args[:network_config] if args.key?(:network_config)
|
640
651
|
@options = args[:options] if args.key?(:options)
|
641
652
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
653
|
+
@patch_revision = args[:patch_revision] if args.key?(:patch_revision)
|
642
654
|
@private_instance = args[:private_instance] if args.key?(:private_instance)
|
643
655
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
644
656
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -649,6 +661,7 @@ module Google
|
|
649
661
|
@type = args[:type] if args.key?(:type)
|
650
662
|
@update_time = args[:update_time] if args.key?(:update_time)
|
651
663
|
@version = args[:version] if args.key?(:version)
|
664
|
+
@workforce_identity_service_endpoint = args[:workforce_identity_service_endpoint] if args.key?(:workforce_identity_service_endpoint)
|
652
665
|
@zone = args[:zone] if args.key?(:zone)
|
653
666
|
end
|
654
667
|
end
|
@@ -895,29 +908,48 @@ module Google
|
|
895
908
|
class NetworkConfig
|
896
909
|
include Google::Apis::Core::Hashable
|
897
910
|
|
898
|
-
#
|
899
|
-
#
|
900
|
-
#
|
911
|
+
# Optional. Type of connection for establishing private IP connectivity between
|
912
|
+
# the Data Fusion customer project VPC and the corresponding tenant project from
|
913
|
+
# a predefined list of available connection modes. If this field is unspecified
|
914
|
+
# for a private instance, VPC peering is used.
|
915
|
+
# Corresponds to the JSON property `connectionType`
|
916
|
+
# @return [String]
|
917
|
+
attr_accessor :connection_type
|
918
|
+
|
919
|
+
# Optional. The IP range in CIDR notation to use for the managed Data Fusion
|
920
|
+
# instance nodes. This range must not overlap with any other ranges used in the
|
921
|
+
# Data Fusion instance network. This is required only when using connection type
|
922
|
+
# VPC_PEERING. Format: a.b.c.d/22 Example: 192.168.0.0/22
|
901
923
|
# Corresponds to the JSON property `ipAllocation`
|
902
924
|
# @return [String]
|
903
925
|
attr_accessor :ip_allocation
|
904
926
|
|
905
|
-
# Name of the network in the customer project with which the Tenant
|
906
|
-
# be peered for executing pipelines.
|
927
|
+
# Optional. Name of the network in the customer project with which the Tenant
|
928
|
+
# Project will be peered for executing pipelines. This is required only when
|
929
|
+
# using connection type VPC peering. In case of shared VPC where the network
|
907
930
|
# resides in another host project the network should specified in the form of
|
908
|
-
# projects/`
|
931
|
+
# projects/`project-id`/global/networks/`network`. This is only required for
|
932
|
+
# connectivity type VPC_PEERING.
|
909
933
|
# Corresponds to the JSON property `network`
|
910
934
|
# @return [String]
|
911
935
|
attr_accessor :network
|
912
936
|
|
937
|
+
# Configuration for using Private Service Connect to establish connectivity
|
938
|
+
# between the Data Fusion consumer project and the corresponding tenant project.
|
939
|
+
# Corresponds to the JSON property `privateServiceConnectConfig`
|
940
|
+
# @return [Google::Apis::DatafusionV1beta1::PrivateServiceConnectConfig]
|
941
|
+
attr_accessor :private_service_connect_config
|
942
|
+
|
913
943
|
def initialize(**args)
|
914
944
|
update!(**args)
|
915
945
|
end
|
916
946
|
|
917
947
|
# Update properties of this object
|
918
948
|
def update!(**args)
|
949
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
919
950
|
@ip_allocation = args[:ip_allocation] if args.key?(:ip_allocation)
|
920
951
|
@network = args[:network] if args.key?(:network)
|
952
|
+
@private_service_connect_config = args[:private_service_connect_config] if args.key?(:private_service_connect_config)
|
921
953
|
end
|
922
954
|
end
|
923
955
|
|
@@ -958,13 +990,13 @@ module Google
|
|
958
990
|
# @return [String]
|
959
991
|
attr_accessor :name
|
960
992
|
|
961
|
-
# The normal response of the operation
|
962
|
-
#
|
963
|
-
#
|
964
|
-
#
|
965
|
-
#
|
966
|
-
#
|
967
|
-
#
|
993
|
+
# The normal, successful response of the operation. If the original method
|
994
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
995
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
996
|
+
# response should be the resource. For other methods, the response should have
|
997
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
998
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
999
|
+
# `TakeSnapshotResponse`.
|
968
1000
|
# Corresponds to the JSON property `response`
|
969
1001
|
# @return [Hash<String,Object>]
|
970
1002
|
attr_accessor :response
|
@@ -1060,22 +1092,22 @@ module Google
|
|
1060
1092
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1061
1093
|
# the request, the resource, or both. To learn which resources support
|
1062
1094
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1063
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1095
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1064
1096
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1065
1097
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1066
1098
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1067
1099
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1068
1100
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1069
1101
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1070
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1071
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1072
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1073
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1074
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1075
|
-
# access description: Does not grant access after Sep 2020
|
1076
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1077
|
-
# a description of IAM and its features, see the
|
1078
|
-
# cloud.google.com/iam/docs/).
|
1102
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1103
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1104
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1105
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1106
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1107
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1108
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1109
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1110
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1079
1111
|
class Policy
|
1080
1112
|
include Google::Apis::Core::Hashable
|
1081
1113
|
|
@@ -1144,6 +1176,49 @@ module Google
|
|
1144
1176
|
end
|
1145
1177
|
end
|
1146
1178
|
|
1179
|
+
# Configuration for using Private Service Connect to establish connectivity
|
1180
|
+
# between the Data Fusion consumer project and the corresponding tenant project.
|
1181
|
+
class PrivateServiceConnectConfig
|
1182
|
+
include Google::Apis::Core::Hashable
|
1183
|
+
|
1184
|
+
# Output only. The CIDR block to which the CDF instance can't route traffic to
|
1185
|
+
# in the consumer project VPC. The size of this block is /25. The format of this
|
1186
|
+
# field is governed by RFC 4632. Example: 240.0.0.0/25
|
1187
|
+
# Corresponds to the JSON property `effectiveUnreachableCidrBlock`
|
1188
|
+
# @return [String]
|
1189
|
+
attr_accessor :effective_unreachable_cidr_block
|
1190
|
+
|
1191
|
+
# Required. The reference to the network attachment used to establish private
|
1192
|
+
# connectivity. It will be of the form projects/`project-id`/regions/`region`/
|
1193
|
+
# networkAttachments/`network-attachment-id`.
|
1194
|
+
# Corresponds to the JSON property `networkAttachment`
|
1195
|
+
# @return [String]
|
1196
|
+
attr_accessor :network_attachment
|
1197
|
+
|
1198
|
+
# Optional. Input only. The CIDR block to which the CDF instance can't route
|
1199
|
+
# traffic to in the consumer project VPC. The size of this block should be at
|
1200
|
+
# least /25. This range should not overlap with the primary address range of any
|
1201
|
+
# subnetwork used by the network attachment. This range can be used for other
|
1202
|
+
# purposes in the consumer VPC as long as there is no requirement for CDF to
|
1203
|
+
# reach destinations using these addresses. If this value is not provided, the
|
1204
|
+
# server chooses a non RFC 1918 address range. The format of this field is
|
1205
|
+
# governed by RFC 4632. Example: 192.168.0.0/25
|
1206
|
+
# Corresponds to the JSON property `unreachableCidrBlock`
|
1207
|
+
# @return [String]
|
1208
|
+
attr_accessor :unreachable_cidr_block
|
1209
|
+
|
1210
|
+
def initialize(**args)
|
1211
|
+
update!(**args)
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Update properties of this object
|
1215
|
+
def update!(**args)
|
1216
|
+
@effective_unreachable_cidr_block = args[:effective_unreachable_cidr_block] if args.key?(:effective_unreachable_cidr_block)
|
1217
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
1218
|
+
@unreachable_cidr_block = args[:unreachable_cidr_block] if args.key?(:unreachable_cidr_block)
|
1219
|
+
end
|
1220
|
+
end
|
1221
|
+
|
1147
1222
|
# Request message for RemoveIamPolicy method.
|
1148
1223
|
class RemoveIamPolicyRequest
|
1149
1224
|
include Google::Apis::Core::Hashable
|
@@ -1198,22 +1273,22 @@ module Google
|
|
1198
1273
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1199
1274
|
# the request, the resource, or both. To learn which resources support
|
1200
1275
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1201
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1276
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1202
1277
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1203
1278
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1204
1279
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1205
1280
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1206
1281
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1207
1282
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1208
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1209
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1210
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1211
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1212
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1213
|
-
# access description: Does not grant access after Sep 2020
|
1214
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1215
|
-
# a description of IAM and its features, see the
|
1216
|
-
# cloud.google.com/iam/docs/).
|
1283
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1284
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1285
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1286
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1287
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1288
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1289
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1290
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1291
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1217
1292
|
# Corresponds to the JSON property `policy`
|
1218
1293
|
# @return [Google::Apis::DatafusionV1beta1::Policy]
|
1219
1294
|
attr_accessor :policy
|
@@ -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.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -166,6 +166,12 @@ module Google
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
167
167
|
end
|
168
168
|
|
169
|
+
class PrivateServiceConnectConfig
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
169
175
|
class RemoveIamPolicyRequest
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
177
|
|
@@ -341,6 +347,7 @@ module Google
|
|
341
347
|
|
342
348
|
hash :options, as: 'options'
|
343
349
|
property :p4_service_account, as: 'p4ServiceAccount'
|
350
|
+
property :patch_revision, as: 'patchRevision'
|
344
351
|
property :private_instance, as: 'privateInstance'
|
345
352
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
346
353
|
property :service_account, as: 'serviceAccount'
|
@@ -351,6 +358,7 @@ module Google
|
|
351
358
|
property :type, as: 'type'
|
352
359
|
property :update_time, as: 'updateTime'
|
353
360
|
property :version, as: 'version'
|
361
|
+
property :workforce_identity_service_endpoint, as: 'workforceIdentityServiceEndpoint'
|
354
362
|
property :zone, as: 'zone'
|
355
363
|
end
|
356
364
|
end
|
@@ -433,8 +441,11 @@ module Google
|
|
433
441
|
class NetworkConfig
|
434
442
|
# @private
|
435
443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
444
|
+
property :connection_type, as: 'connectionType'
|
436
445
|
property :ip_allocation, as: 'ipAllocation'
|
437
446
|
property :network, as: 'network'
|
447
|
+
property :private_service_connect_config, as: 'privateServiceConnectConfig', class: Google::Apis::DatafusionV1beta1::PrivateServiceConnectConfig, decorator: Google::Apis::DatafusionV1beta1::PrivateServiceConnectConfig::Representation
|
448
|
+
|
438
449
|
end
|
439
450
|
end
|
440
451
|
|
@@ -476,6 +487,15 @@ module Google
|
|
476
487
|
end
|
477
488
|
end
|
478
489
|
|
490
|
+
class PrivateServiceConnectConfig
|
491
|
+
# @private
|
492
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
493
|
+
property :effective_unreachable_cidr_block, as: 'effectiveUnreachableCidrBlock'
|
494
|
+
property :network_attachment, as: 'networkAttachment'
|
495
|
+
property :unreachable_cidr_block, as: 'unreachableCidrBlock'
|
496
|
+
end
|
497
|
+
end
|
498
|
+
|
479
499
|
class RemoveIamPolicyRequest
|
480
500
|
# @private
|
481
501
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.27.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: 2023-
|
11
|
+
date: 2023-10-29 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.27.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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Data Fusion API V1beta1
|