google-apis-datafusion_v1 0.27.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: 30bed5529b592325f7e018542145fb1349c6de95f5c02a986d41fce8f9b131d9
4
- data.tar.gz: 935f1829189c328c2e2f818b8f1d55020678865cfbb170c45f4167216e617ba3
3
+ metadata.gz: 8952b1f910ebcfa492545a9448d1fdf6fa7fa4b18e8c1348dd3758327beddfda
4
+ data.tar.gz: 324cdd3f10697fd6cdcd2d8fcadac0c4cdf1b77df37098100f3ac2827440bd70
5
5
  SHA512:
6
- metadata.gz: e7078471b3c28710ab5fcebd04bb64ec9113691e6208565a2032984cea1429260918210bc7c9c40cfc887cbb5ac4a757122b3dca8144fd7048afa19363d0a093
7
- data.tar.gz: 75804549e24ea802915b6eb37d0ce0453204e64dedfc9b95c9acc8e2dc1bfd1e055e4042f87b534cf74dabac2462c3e263600a2643009beac51b3cb084dd3b6e
6
+ metadata.gz: 4c453cbc73e7e1bbbd957027262c7b7b03eed342f3047472ddbade53974f2563f6b94fb93be68b5d84bd7bd40c9c710140f977345e056f1e367a38d1e8889376
7
+ data.tar.gz: d173f0b51eafbb3b802598595497160ca140744ff24aaddcb64a61a5fdfa88f248ed5ef47091a5431dd427150485537ab81eb74bd680e5870de403c54720ff57
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.27.0 (2023-10-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20231017
@@ -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.
@@ -578,6 +632,7 @@ module Google
578
632
  @available_version = args[:available_version] if args.key?(:available_version)
579
633
  @create_time = args[:create_time] if args.key?(:create_time)
580
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)
581
636
  @dataproc_service_account = args[:dataproc_service_account] if args.key?(:dataproc_service_account)
582
637
  @description = args[:description] if args.key?(:description)
583
638
  @disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
@@ -799,29 +854,48 @@ module Google
799
854
  class NetworkConfig
800
855
  include Google::Apis::Core::Hashable
801
856
 
802
- # The IP range in CIDR notation to use for the managed Data Fusion instance
803
- # nodes. This range must not overlap with any other ranges used in the customer
804
- # network.
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
805
869
  # Corresponds to the JSON property `ipAllocation`
806
870
  # @return [String]
807
871
  attr_accessor :ip_allocation
808
872
 
809
- # Name of the network in the customer project with which the Tenant Project will
810
- # be peered for executing pipelines. In case of shared VPC where the network
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
811
876
  # resides in another host project the network should specified in the form of
812
- # 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.
813
879
  # Corresponds to the JSON property `network`
814
880
  # @return [String]
815
881
  attr_accessor :network
816
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
+
817
889
  def initialize(**args)
818
890
  update!(**args)
819
891
  end
820
892
 
821
893
  # Update properties of this object
822
894
  def update!(**args)
895
+ @connection_type = args[:connection_type] if args.key?(:connection_type)
823
896
  @ip_allocation = args[:ip_allocation] if args.key?(:ip_allocation)
824
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)
825
899
  end
826
900
  end
827
901
 
@@ -953,6 +1027,46 @@ module Google
953
1027
  end
954
1028
  end
955
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
+
956
1070
  # An Identity and Access Management (IAM) policy, which specifies access
957
1071
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
958
1072
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -1048,6 +1162,49 @@ module Google
1048
1162
  end
1049
1163
  end
1050
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
+
1051
1208
  # Request message for restarting a Data Fusion instance.
1052
1209
  class RestartInstanceRequest
1053
1210
  include Google::Apis::Core::Hashable
@@ -1061,6 +1218,29 @@ module Google
1061
1218
  end
1062
1219
  end
1063
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
+
1064
1244
  # Request message for `SetIamPolicy` method.
1065
1245
  class SetIamPolicyRequest
1066
1246
  include Google::Apis::Core::Hashable
@@ -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.27.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 = "20231017"
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'
@@ -371,8 +407,11 @@ module Google
371
407
  class NetworkConfig
372
408
  # @private
373
409
  class Representation < Google::Apis::Core::JsonRepresentation
410
+ property :connection_type, as: 'connectionType'
374
411
  property :ip_allocation, as: 'ipAllocation'
375
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
+
376
415
  end
377
416
  end
378
417
 
@@ -402,6 +441,14 @@ module Google
402
441
  end
403
442
  end
404
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
+
405
452
  class Policy
406
453
  # @private
407
454
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -414,12 +461,29 @@ module Google
414
461
  end
415
462
  end
416
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
+
417
473
  class RestartInstanceRequest
418
474
  # @private
419
475
  class Representation < Google::Apis::Core::JsonRepresentation
420
476
  end
421
477
  end
422
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
+
423
487
  class SetIamPolicyRequest
424
488
  # @private
425
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.27.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-10-22 00:00:00.000000000 Z
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.27.0
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: []