google-apis-datafusion_v1 0.26.0 → 0.28.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8952b1f910ebcfa492545a9448d1fdf6fa7fa4b18e8c1348dd3758327beddfda
|
4
|
+
data.tar.gz: 324cdd3f10697fd6cdcd2d8fcadac0c4cdf1b77df37098100f3ac2827440bd70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c453cbc73e7e1bbbd957027262c7b7b03eed342f3047472ddbade53974f2563f6b94fb93be68b5d84bd7bd40c9c710140f977345e056f1e367a38d1e8889376
|
7
|
+
data.tar.gz: d173f0b51eafbb3b802598595497160ca140744ff24aaddcb64a61a5fdfa88f248ed5ef47091a5431dd427150485537ab81eb74bd680e5870de403c54720ff57
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1
|
2
2
|
|
3
|
+
### v0.28.0 (2023-12-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231130
|
6
|
+
|
7
|
+
### v0.27.0 (2023-10-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231017
|
10
|
+
|
3
11
|
### v0.26.0 (2023-05-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230508
|
@@ -229,6 +229,54 @@ module Google
|
|
229
229
|
end
|
230
230
|
end
|
231
231
|
|
232
|
+
# Next tag: 7
|
233
|
+
class DataResidencyAugmentedView
|
234
|
+
include Google::Apis::Core::Hashable
|
235
|
+
|
236
|
+
# Cloud resource to Google owned production object mapping in the form of GURIs.
|
237
|
+
# The GURIs should be available in DG KB storage/cns tables. This is the
|
238
|
+
# preferred way of providing cloud resource mappings. For further details please
|
239
|
+
# read go/cloud-resource-monitoring_sig
|
240
|
+
# Corresponds to the JSON property `crGopoGuris`
|
241
|
+
# @return [Array<String>]
|
242
|
+
attr_accessor :cr_gopo_guris
|
243
|
+
|
244
|
+
# Cloud resource to Google owned production object mapping in the form of
|
245
|
+
# prefixes. These should be available in DG KB storage/cns tables. The entity
|
246
|
+
# type, which is the part of the string before the first colon in the GURI, must
|
247
|
+
# be completely specified in prefix. For details about GURI please read go/guri.
|
248
|
+
# For further details about the field please read go/cloud-resource-
|
249
|
+
# monitoring_sig.
|
250
|
+
# Corresponds to the JSON property `crGopoPrefixes`
|
251
|
+
# @return [Array<String>]
|
252
|
+
attr_accessor :cr_gopo_prefixes
|
253
|
+
|
254
|
+
# This message defines service-specific data that certain service teams must
|
255
|
+
# provide as part of the Data Residency Augmented View for a resource. Next ID:
|
256
|
+
# 2
|
257
|
+
# Corresponds to the JSON property `serviceData`
|
258
|
+
# @return [Google::Apis::DatafusionV1::ServiceData]
|
259
|
+
attr_accessor :service_data
|
260
|
+
|
261
|
+
# The list of project_id's of the tenant projects in the 'google.com' org which
|
262
|
+
# serve the Cloud Resource. See go/drz-mst-sig for more details.
|
263
|
+
# Corresponds to the JSON property `tpIds`
|
264
|
+
# @return [Array<String>]
|
265
|
+
attr_accessor :tp_ids
|
266
|
+
|
267
|
+
def initialize(**args)
|
268
|
+
update!(**args)
|
269
|
+
end
|
270
|
+
|
271
|
+
# Update properties of this object
|
272
|
+
def update!(**args)
|
273
|
+
@cr_gopo_guris = args[:cr_gopo_guris] if args.key?(:cr_gopo_guris)
|
274
|
+
@cr_gopo_prefixes = args[:cr_gopo_prefixes] if args.key?(:cr_gopo_prefixes)
|
275
|
+
@service_data = args[:service_data] if args.key?(:service_data)
|
276
|
+
@tp_ids = args[:tp_ids] if args.key?(:tp_ids)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
232
280
|
# DNS peering configuration. These configurations are used to create DNS peering
|
233
281
|
# with the customer Cloud DNS.
|
234
282
|
class DnsPeering
|
@@ -402,6 +450,12 @@ module Google
|
|
402
450
|
# @return [Google::Apis::DatafusionV1::CryptoKeyConfig]
|
403
451
|
attr_accessor :crypto_key_config
|
404
452
|
|
453
|
+
# Optional. Reserved for future use.
|
454
|
+
# Corresponds to the JSON property `dataplexDataLineageIntegrationEnabled`
|
455
|
+
# @return [Boolean]
|
456
|
+
attr_accessor :dataplex_data_lineage_integration_enabled
|
457
|
+
alias_method :dataplex_data_lineage_integration_enabled?, :dataplex_data_lineage_integration_enabled
|
458
|
+
|
405
459
|
# User-managed service account to set on Dataproc when Cloud Data Fusion creates
|
406
460
|
# Dataproc to run data processing pipelines. This allows users to have fine-
|
407
461
|
# grained access control on Dataproc's accesses to cloud resources.
|
@@ -494,6 +548,11 @@ module Google
|
|
494
548
|
# @return [String]
|
495
549
|
attr_accessor :p4_service_account
|
496
550
|
|
551
|
+
# Optional. Current patch revision of the Data Fusion.
|
552
|
+
# Corresponds to the JSON property `patchRevision`
|
553
|
+
# @return [String]
|
554
|
+
attr_accessor :patch_revision
|
555
|
+
|
497
556
|
# Specifies whether the Data Fusion instance should be private. If set to true,
|
498
557
|
# all Data Fusion nodes will have private IP addresses and will not be able to
|
499
558
|
# access the public internet.
|
@@ -550,6 +609,12 @@ module Google
|
|
550
609
|
# @return [String]
|
551
610
|
attr_accessor :version
|
552
611
|
|
612
|
+
# Output only. Endpoint on which the Data Fusion UI is accessible to third-party
|
613
|
+
# users
|
614
|
+
# Corresponds to the JSON property `workforceIdentityServiceEndpoint`
|
615
|
+
# @return [String]
|
616
|
+
attr_accessor :workforce_identity_service_endpoint
|
617
|
+
|
553
618
|
# Name of the zone in which the Data Fusion instance will be created. Only
|
554
619
|
# DEVELOPER instances use this field.
|
555
620
|
# Corresponds to the JSON property `zone`
|
@@ -567,6 +632,7 @@ module Google
|
|
567
632
|
@available_version = args[:available_version] if args.key?(:available_version)
|
568
633
|
@create_time = args[:create_time] if args.key?(:create_time)
|
569
634
|
@crypto_key_config = args[:crypto_key_config] if args.key?(:crypto_key_config)
|
635
|
+
@dataplex_data_lineage_integration_enabled = args[:dataplex_data_lineage_integration_enabled] if args.key?(:dataplex_data_lineage_integration_enabled)
|
570
636
|
@dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
|
571
637
|
@description = args[:description] if args.key?(:description)
|
572
638
|
@disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
|
@@ -582,6 +648,7 @@ module Google
|
|
582
648
|
@network_config = args[:network_config] if args.key?(:network_config)
|
583
649
|
@options = args[:options] if args.key?(:options)
|
584
650
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
651
|
+
@patch_revision = args[:patch_revision] if args.key?(:patch_revision)
|
585
652
|
@private_instance = args[:private_instance] if args.key?(:private_instance)
|
586
653
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
587
654
|
@service_account = args[:service_account] if args.key?(:service_account)
|
@@ -592,6 +659,7 @@ module Google
|
|
592
659
|
@type = args[:type] if args.key?(:type)
|
593
660
|
@update_time = args[:update_time] if args.key?(:update_time)
|
594
661
|
@version = args[:version] if args.key?(:version)
|
662
|
+
@workforce_identity_service_endpoint = args[:workforce_identity_service_endpoint] if args.key?(:workforce_identity_service_endpoint)
|
595
663
|
@zone = args[:zone] if args.key?(:zone)
|
596
664
|
end
|
597
665
|
end
|
@@ -786,29 +854,48 @@ module Google
|
|
786
854
|
class NetworkConfig
|
787
855
|
include Google::Apis::Core::Hashable
|
788
856
|
|
789
|
-
#
|
790
|
-
#
|
791
|
-
#
|
857
|
+
# Optional. Type of connection for establishing private IP connectivity between
|
858
|
+
# the Data Fusion customer project VPC and the corresponding tenant project from
|
859
|
+
# a predefined list of available connection modes. If this field is unspecified
|
860
|
+
# for a private instance, VPC peering is used.
|
861
|
+
# Corresponds to the JSON property `connectionType`
|
862
|
+
# @return [String]
|
863
|
+
attr_accessor :connection_type
|
864
|
+
|
865
|
+
# Optional. The IP range in CIDR notation to use for the managed Data Fusion
|
866
|
+
# instance nodes. This range must not overlap with any other ranges used in the
|
867
|
+
# Data Fusion instance network. This is required only when using connection type
|
868
|
+
# VPC_PEERING. Format: a.b.c.d/22 Example: 192.168.0.0/22
|
792
869
|
# Corresponds to the JSON property `ipAllocation`
|
793
870
|
# @return [String]
|
794
871
|
attr_accessor :ip_allocation
|
795
872
|
|
796
|
-
# Name of the network in the customer project with which the Tenant
|
797
|
-
# be peered for executing pipelines.
|
873
|
+
# Optional. Name of the network in the customer project with which the Tenant
|
874
|
+
# Project will be peered for executing pipelines. This is required only when
|
875
|
+
# using connection type VPC peering. In case of shared VPC where the network
|
798
876
|
# resides in another host project the network should specified in the form of
|
799
|
-
# projects/`host-project-id`/global/networks/`network
|
877
|
+
# projects/`host-project-id`/global/networks/`network`. This is only required
|
878
|
+
# for connectivity type VPC_PEERING.
|
800
879
|
# Corresponds to the JSON property `network`
|
801
880
|
# @return [String]
|
802
881
|
attr_accessor :network
|
803
882
|
|
883
|
+
# Configuration for using Private Service Connect to establish connectivity
|
884
|
+
# between the Data Fusion consumer project and the corresponding tenant project.
|
885
|
+
# Corresponds to the JSON property `privateServiceConnectConfig`
|
886
|
+
# @return [Google::Apis::DatafusionV1::PrivateServiceConnectConfig]
|
887
|
+
attr_accessor :private_service_connect_config
|
888
|
+
|
804
889
|
def initialize(**args)
|
805
890
|
update!(**args)
|
806
891
|
end
|
807
892
|
|
808
893
|
# Update properties of this object
|
809
894
|
def update!(**args)
|
895
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
810
896
|
@ip_allocation = args[:ip_allocation] if args.key?(:ip_allocation)
|
811
897
|
@network = args[:network] if args.key?(:network)
|
898
|
+
@private_service_connect_config = args[:private_service_connect_config] if args.key?(:private_service_connect_config)
|
812
899
|
end
|
813
900
|
end
|
814
901
|
|
@@ -849,13 +936,13 @@ module Google
|
|
849
936
|
# @return [String]
|
850
937
|
attr_accessor :name
|
851
938
|
|
852
|
-
# The normal response of the operation
|
853
|
-
#
|
854
|
-
#
|
855
|
-
#
|
856
|
-
#
|
857
|
-
#
|
858
|
-
#
|
939
|
+
# The normal, successful response of the operation. If the original method
|
940
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
941
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
942
|
+
# response should be the resource. For other methods, the response should have
|
943
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
944
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
945
|
+
# `TakeSnapshotResponse`.
|
859
946
|
# Corresponds to the JSON property `response`
|
860
947
|
# @return [Hash<String,Object>]
|
861
948
|
attr_accessor :response
|
@@ -940,6 +1027,46 @@ module Google
|
|
940
1027
|
end
|
941
1028
|
end
|
942
1029
|
|
1030
|
+
# Persistent Disk service-specific Data. Contains information that may not be
|
1031
|
+
# appropriate for the generic DRZ Augmented View. This currently includes LSV
|
1032
|
+
# Colossus Roots and GCS Buckets.
|
1033
|
+
class PersistentDiskData
|
1034
|
+
include Google::Apis::Core::Hashable
|
1035
|
+
|
1036
|
+
# Path to Colossus root for an LSV. NOTE: Unlike `cr_ti_guris` and `
|
1037
|
+
# cr_ti_prefixes`, the field `cfs_roots` below does not need to be a GUri or
|
1038
|
+
# GUri prefix. It can simply be any valid CFS or CFS2 Path. The DRZ KR8 SIG has
|
1039
|
+
# more details overall, but generally the `cfs_roots` provided here should be
|
1040
|
+
# scoped to an individual Persistent Disk. An example for a PD Disk with a disk
|
1041
|
+
# ID 3277719120423414466, follows: * `cr_ti_guris` could be ‘/cfs2/pj/pd-cloud-
|
1042
|
+
# prod’ as this is a valid GUri present in the DG KB and contains enough
|
1043
|
+
# information to perform location monitoring and scope ownership of the
|
1044
|
+
# Production Object. * `cfs_roots` would be: ‘/cfs2/pj/pd-cloud-staging/
|
1045
|
+
# lsv000001234@/ lsv/projects~773365403387~zones~2700~disks~3277719120423414466 ~
|
1046
|
+
# bank-blue-careful-3526-lsv00054DB1B7254BA3/’ as this allows us to enumerate
|
1047
|
+
# the files on CFS2 that belong to an individual Disk.
|
1048
|
+
# Corresponds to the JSON property `cfsRoots`
|
1049
|
+
# @return [Array<String>]
|
1050
|
+
attr_accessor :cfs_roots
|
1051
|
+
|
1052
|
+
# The GCS Buckets that back this snapshot or image. This is required as `
|
1053
|
+
# cr_ti_prefixes` and `cr_ti_guris` only accept TI resources. This should be the
|
1054
|
+
# globally unique bucket name.
|
1055
|
+
# Corresponds to the JSON property `gcsBucketNames`
|
1056
|
+
# @return [Array<String>]
|
1057
|
+
attr_accessor :gcs_bucket_names
|
1058
|
+
|
1059
|
+
def initialize(**args)
|
1060
|
+
update!(**args)
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
# Update properties of this object
|
1064
|
+
def update!(**args)
|
1065
|
+
@cfs_roots = args[:cfs_roots] if args.key?(:cfs_roots)
|
1066
|
+
@gcs_bucket_names = args[:gcs_bucket_names] if args.key?(:gcs_bucket_names)
|
1067
|
+
end
|
1068
|
+
end
|
1069
|
+
|
943
1070
|
# An Identity and Access Management (IAM) policy, which specifies access
|
944
1071
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
945
1072
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -951,22 +1078,22 @@ module Google
|
|
951
1078
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
952
1079
|
# the request, the resource, or both. To learn which resources support
|
953
1080
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
954
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1081
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
955
1082
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
956
1083
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
957
1084
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
958
1085
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
959
1086
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
960
1087
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
961
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
962
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
963
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
964
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
965
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
966
|
-
# access description: Does not grant access after Sep 2020
|
967
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
968
|
-
# a description of IAM and its features, see the
|
969
|
-
# cloud.google.com/iam/docs/).
|
1088
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1089
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1090
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1091
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1092
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1093
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1094
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1095
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1096
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
970
1097
|
class Policy
|
971
1098
|
include Google::Apis::Core::Hashable
|
972
1099
|
|
@@ -1035,6 +1162,49 @@ module Google
|
|
1035
1162
|
end
|
1036
1163
|
end
|
1037
1164
|
|
1165
|
+
# Configuration for using Private Service Connect to establish connectivity
|
1166
|
+
# between the Data Fusion consumer project and the corresponding tenant project.
|
1167
|
+
class PrivateServiceConnectConfig
|
1168
|
+
include Google::Apis::Core::Hashable
|
1169
|
+
|
1170
|
+
# Output only. The CIDR block to which the CDF instance can't route traffic to
|
1171
|
+
# in the consumer project VPC. The size of this block is /25. The format of this
|
1172
|
+
# field is governed by RFC 4632. Example: 240.0.0.0/25
|
1173
|
+
# Corresponds to the JSON property `effectiveUnreachableCidrBlock`
|
1174
|
+
# @return [String]
|
1175
|
+
attr_accessor :effective_unreachable_cidr_block
|
1176
|
+
|
1177
|
+
# Required. The reference to the network attachment used to establish private
|
1178
|
+
# connectivity. It will be of the form projects/`project-id`/regions/`region`/
|
1179
|
+
# networkAttachments/`network-attachment-id`.
|
1180
|
+
# Corresponds to the JSON property `networkAttachment`
|
1181
|
+
# @return [String]
|
1182
|
+
attr_accessor :network_attachment
|
1183
|
+
|
1184
|
+
# Optional. Input only. The CIDR block to which the CDF instance can't route
|
1185
|
+
# traffic to in the consumer project VPC. The size of this block should be at
|
1186
|
+
# least /25. This range should not overlap with the primary address range of any
|
1187
|
+
# subnetwork used by the network attachment. This range can be used for other
|
1188
|
+
# purposes in the consumer VPC as long as there is no requirement for CDF to
|
1189
|
+
# reach destinations using these addresses. If this value is not provided, the
|
1190
|
+
# server chooses a non RFC 1918 address range. The format of this field is
|
1191
|
+
# governed by RFC 4632. Example: 192.168.0.0/25
|
1192
|
+
# Corresponds to the JSON property `unreachableCidrBlock`
|
1193
|
+
# @return [String]
|
1194
|
+
attr_accessor :unreachable_cidr_block
|
1195
|
+
|
1196
|
+
def initialize(**args)
|
1197
|
+
update!(**args)
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# Update properties of this object
|
1201
|
+
def update!(**args)
|
1202
|
+
@effective_unreachable_cidr_block = args[:effective_unreachable_cidr_block] if args.key?(:effective_unreachable_cidr_block)
|
1203
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
1204
|
+
@unreachable_cidr_block = args[:unreachable_cidr_block] if args.key?(:unreachable_cidr_block)
|
1205
|
+
end
|
1206
|
+
end
|
1207
|
+
|
1038
1208
|
# Request message for restarting a Data Fusion instance.
|
1039
1209
|
class RestartInstanceRequest
|
1040
1210
|
include Google::Apis::Core::Hashable
|
@@ -1048,6 +1218,29 @@ module Google
|
|
1048
1218
|
end
|
1049
1219
|
end
|
1050
1220
|
|
1221
|
+
# This message defines service-specific data that certain service teams must
|
1222
|
+
# provide as part of the Data Residency Augmented View for a resource. Next ID:
|
1223
|
+
# 2
|
1224
|
+
class ServiceData
|
1225
|
+
include Google::Apis::Core::Hashable
|
1226
|
+
|
1227
|
+
# Persistent Disk service-specific Data. Contains information that may not be
|
1228
|
+
# appropriate for the generic DRZ Augmented View. This currently includes LSV
|
1229
|
+
# Colossus Roots and GCS Buckets.
|
1230
|
+
# Corresponds to the JSON property `pd`
|
1231
|
+
# @return [Google::Apis::DatafusionV1::PersistentDiskData]
|
1232
|
+
attr_accessor :pd
|
1233
|
+
|
1234
|
+
def initialize(**args)
|
1235
|
+
update!(**args)
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# Update properties of this object
|
1239
|
+
def update!(**args)
|
1240
|
+
@pd = args[:pd] if args.key?(:pd)
|
1241
|
+
end
|
1242
|
+
end
|
1243
|
+
|
1051
1244
|
# Request message for `SetIamPolicy` method.
|
1052
1245
|
class SetIamPolicyRequest
|
1053
1246
|
include Google::Apis::Core::Hashable
|
@@ -1063,22 +1256,22 @@ module Google
|
|
1063
1256
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1064
1257
|
# the request, the resource, or both. To learn which resources support
|
1065
1258
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1066
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1259
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1067
1260
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1068
1261
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1069
1262
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1070
1263
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1071
1264
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1072
1265
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1073
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1074
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1075
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1076
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1077
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1078
|
-
# access description: Does not grant access after Sep 2020
|
1079
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1080
|
-
# a description of IAM and its features, see the
|
1081
|
-
# cloud.google.com/iam/docs/).
|
1266
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1267
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1268
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1269
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1270
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1271
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1272
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1273
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1274
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1082
1275
|
# Corresponds to the JSON property `policy`
|
1083
1276
|
# @return [Google::Apis::DatafusionV1::Policy]
|
1084
1277
|
attr_accessor :policy
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.28.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 = "20231130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,12 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class DataResidencyAugmentedView
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
61
67
|
class DnsPeering
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
69
|
|
@@ -142,18 +148,36 @@ module Google
|
|
142
148
|
include Google::Apis::Core::JsonObjectSupport
|
143
149
|
end
|
144
150
|
|
151
|
+
class PersistentDiskData
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
145
157
|
class Policy
|
146
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
159
|
|
148
160
|
include Google::Apis::Core::JsonObjectSupport
|
149
161
|
end
|
150
162
|
|
163
|
+
class PrivateServiceConnectConfig
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
151
169
|
class RestartInstanceRequest
|
152
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
171
|
|
154
172
|
include Google::Apis::Core::JsonObjectSupport
|
155
173
|
end
|
156
174
|
|
175
|
+
class ServiceData
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
157
181
|
class SetIamPolicyRequest
|
158
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
183
|
|
@@ -232,6 +256,17 @@ module Google
|
|
232
256
|
end
|
233
257
|
end
|
234
258
|
|
259
|
+
class DataResidencyAugmentedView
|
260
|
+
# @private
|
261
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
262
|
+
collection :cr_gopo_guris, as: 'crGopoGuris'
|
263
|
+
collection :cr_gopo_prefixes, as: 'crGopoPrefixes'
|
264
|
+
property :service_data, as: 'serviceData', class: Google::Apis::DatafusionV1::ServiceData, decorator: Google::Apis::DatafusionV1::ServiceData::Representation
|
265
|
+
|
266
|
+
collection :tp_ids, as: 'tpIds'
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
235
270
|
class DnsPeering
|
236
271
|
# @private
|
237
272
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -278,6 +313,7 @@ module Google
|
|
278
313
|
property :create_time, as: 'createTime'
|
279
314
|
property :crypto_key_config, as: 'cryptoKeyConfig', class: Google::Apis::DatafusionV1::CryptoKeyConfig, decorator: Google::Apis::DatafusionV1::CryptoKeyConfig::Representation
|
280
315
|
|
316
|
+
property :dataplex_data_lineage_integration_enabled, as: 'dataplexDataLineageIntegrationEnabled'
|
281
317
|
property :dataproc_service_account, as: 'dataprocServiceAccount'
|
282
318
|
property :description, as: 'description'
|
283
319
|
collection :disabled_reason, as: 'disabledReason'
|
@@ -295,6 +331,7 @@ module Google
|
|
295
331
|
|
296
332
|
hash :options, as: 'options'
|
297
333
|
property :p4_service_account, as: 'p4ServiceAccount'
|
334
|
+
property :patch_revision, as: 'patchRevision'
|
298
335
|
property :private_instance, as: 'privateInstance'
|
299
336
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
300
337
|
property :service_account, as: 'serviceAccount'
|
@@ -305,6 +342,7 @@ module Google
|
|
305
342
|
property :type, as: 'type'
|
306
343
|
property :update_time, as: 'updateTime'
|
307
344
|
property :version, as: 'version'
|
345
|
+
property :workforce_identity_service_endpoint, as: 'workforceIdentityServiceEndpoint'
|
308
346
|
property :zone, as: 'zone'
|
309
347
|
end
|
310
348
|
end
|
@@ -369,8 +407,11 @@ module Google
|
|
369
407
|
class NetworkConfig
|
370
408
|
# @private
|
371
409
|
class Representation < Google::Apis::Core::JsonRepresentation
|
410
|
+
property :connection_type, as: 'connectionType'
|
372
411
|
property :ip_allocation, as: 'ipAllocation'
|
373
412
|
property :network, as: 'network'
|
413
|
+
property :private_service_connect_config, as: 'privateServiceConnectConfig', class: Google::Apis::DatafusionV1::PrivateServiceConnectConfig, decorator: Google::Apis::DatafusionV1::PrivateServiceConnectConfig::Representation
|
414
|
+
|
374
415
|
end
|
375
416
|
end
|
376
417
|
|
@@ -400,6 +441,14 @@ module Google
|
|
400
441
|
end
|
401
442
|
end
|
402
443
|
|
444
|
+
class PersistentDiskData
|
445
|
+
# @private
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
447
|
+
collection :cfs_roots, as: 'cfsRoots'
|
448
|
+
collection :gcs_bucket_names, as: 'gcsBucketNames'
|
449
|
+
end
|
450
|
+
end
|
451
|
+
|
403
452
|
class Policy
|
404
453
|
# @private
|
405
454
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -412,12 +461,29 @@ module Google
|
|
412
461
|
end
|
413
462
|
end
|
414
463
|
|
464
|
+
class PrivateServiceConnectConfig
|
465
|
+
# @private
|
466
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
467
|
+
property :effective_unreachable_cidr_block, as: 'effectiveUnreachableCidrBlock'
|
468
|
+
property :network_attachment, as: 'networkAttachment'
|
469
|
+
property :unreachable_cidr_block, as: 'unreachableCidrBlock'
|
470
|
+
end
|
471
|
+
end
|
472
|
+
|
415
473
|
class RestartInstanceRequest
|
416
474
|
# @private
|
417
475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
418
476
|
end
|
419
477
|
end
|
420
478
|
|
479
|
+
class ServiceData
|
480
|
+
# @private
|
481
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
482
|
+
property :pd, as: 'pd', class: Google::Apis::DatafusionV1::PersistentDiskData, decorator: Google::Apis::DatafusionV1::PersistentDiskData::Representation
|
483
|
+
|
484
|
+
end
|
485
|
+
end
|
486
|
+
|
421
487
|
class SetIamPolicyRequest
|
422
488
|
# @private
|
423
489
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.28.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-12-03 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.28.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.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 V1
|