google-apis-datafusion_v1 0.31.0 → 0.33.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: fea10f4348478388dc22548978a442a8d57d7e8dc4898910235f5bb526a7fd88
4
- data.tar.gz: 717450040bd054a492e386e39b6e4cd23112662935af2fa455f0f943aae6ddb7
3
+ metadata.gz: 804ba37788d49cd73506d64ce389964b86305c814e286d125c2fd29b8d7dbce4
4
+ data.tar.gz: 475a4d81cfc540a74576eed0bff6c31376be88c324c4d8f0ebe89c12c36ed1e0
5
5
  SHA512:
6
- metadata.gz: 713929a11f1030779515cb10a0eff626fee21501bfdd047756d3bcc1ec47ff108e982a91c2ee0fb873287819d06f2358e92c334048b7468c7336285fc04b4a4f
7
- data.tar.gz: 33f6a922135547db885bfe76b0597c5384fceea3668fb0834b7512e233a43a9eb652f6c565040e3973b85124ddcba52ba88dd6622bf209f2b21dcd6b5a22f60c
6
+ metadata.gz: 734ac5445351c07d7e06280ade4ad1c08f2f1627aa54aa437e249a1c7e114e71ccedd1c268e3182817693e66dbf7555466c932a63feaea3c899f002d694fce0a
7
+ data.tar.gz: 1b64a79753ef5271121aa701cca9efd028099c4328d3519e603e1f0391341c74c675d95451e7a025eb7cf7faf4edbf3fa04797dbd6b3863406ead0708784cff3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datafusion_v1
2
2
 
3
+ ### v0.33.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240703
6
+
7
+ ### v0.32.0 (2024-06-23)
8
+
9
+ * Regenerated from discovery document revision 20240618
10
+
3
11
  ### v0.31.0 (2024-05-19)
4
12
 
5
13
  * Regenerated using generator version 0.15.0
@@ -26,12 +26,12 @@ module Google
26
26
  class Accelerator
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
- # The type of an accelator for a CDF instance.
29
+ # Optional. The type of an accelator for a Cloud Data Fusion instance.
30
30
  # Corresponds to the JSON property `acceleratorType`
31
31
  # @return [String]
32
32
  attr_accessor :accelerator_type
33
33
 
34
- # The state of the accelerator.
34
+ # Output only. The state of the accelerator.
35
35
  # Corresponds to the JSON property `state`
36
36
  # @return [String]
37
37
  attr_accessor :state
@@ -47,6 +47,46 @@ module Google
47
47
  end
48
48
  end
49
49
 
50
+ # Provides the mapping of a cloud asset to a direct physical location or to a
51
+ # proxy that defines the location on its behalf.
52
+ class AssetLocation
53
+ include Google::Apis::Core::Hashable
54
+
55
+ # Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
56
+ # of the region at the time of asset creation.
57
+ # Corresponds to the JSON property `expected`
58
+ # @return [Google::Apis::DatafusionV1::IsolationExpectations]
59
+ attr_accessor :expected
60
+
61
+ # Defines extra parameters required for specific asset types.
62
+ # Corresponds to the JSON property `extraParameters`
63
+ # @return [Array<Google::Apis::DatafusionV1::ExtraParameter>]
64
+ attr_accessor :extra_parameters
65
+
66
+ # Contains all kinds of physical location definitions for this asset.
67
+ # Corresponds to the JSON property `locationData`
68
+ # @return [Array<Google::Apis::DatafusionV1::LocationData>]
69
+ attr_accessor :location_data
70
+
71
+ # Defines parents assets if any in order to allow later generation of
72
+ # child_asset_location data via child assets.
73
+ # Corresponds to the JSON property `parentAsset`
74
+ # @return [Array<Google::Apis::DatafusionV1::CloudAsset>]
75
+ attr_accessor :parent_asset
76
+
77
+ def initialize(**args)
78
+ update!(**args)
79
+ end
80
+
81
+ # Update properties of this object
82
+ def update!(**args)
83
+ @expected = args[:expected] if args.key?(:expected)
84
+ @extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
85
+ @location_data = args[:location_data] if args.key?(:location_data)
86
+ @parent_asset = args[:parent_asset] if args.key?(:parent_asset)
87
+ end
88
+ end
89
+
50
90
  # Specifies the audit configuration for a service. The configuration determines
51
91
  # which permission types are logged, and what identities, if any, are exempted
52
92
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -219,6 +259,26 @@ module Google
219
259
  end
220
260
  end
221
261
 
262
+ # Policy ID that identified data placement in Blobstore as per go/blobstore-user-
263
+ # guide#data-metadata-placement-and-failure-domains
264
+ class BlobstoreLocation
265
+ include Google::Apis::Core::Hashable
266
+
267
+ #
268
+ # Corresponds to the JSON property `policyId`
269
+ # @return [Array<String>]
270
+ attr_accessor :policy_id
271
+
272
+ def initialize(**args)
273
+ update!(**args)
274
+ end
275
+
276
+ # Update properties of this object
277
+ def update!(**args)
278
+ @policy_id = args[:policy_id] if args.key?(:policy_id)
279
+ end
280
+ end
281
+
222
282
  # The request message for Operations.CancelOperation.
223
283
  class CancelOperationRequest
224
284
  include Google::Apis::Core::Hashable
@@ -232,6 +292,50 @@ module Google
232
292
  end
233
293
  end
234
294
 
295
+ #
296
+ class CloudAsset
297
+ include Google::Apis::Core::Hashable
298
+
299
+ #
300
+ # Corresponds to the JSON property `assetName`
301
+ # @return [String]
302
+ attr_accessor :asset_name
303
+
304
+ #
305
+ # Corresponds to the JSON property `assetType`
306
+ # @return [String]
307
+ attr_accessor :asset_type
308
+
309
+ def initialize(**args)
310
+ update!(**args)
311
+ end
312
+
313
+ # Update properties of this object
314
+ def update!(**args)
315
+ @asset_name = args[:asset_name] if args.key?(:asset_name)
316
+ @asset_type = args[:asset_type] if args.key?(:asset_type)
317
+ end
318
+ end
319
+
320
+ #
321
+ class CloudAssetComposition
322
+ include Google::Apis::Core::Hashable
323
+
324
+ #
325
+ # Corresponds to the JSON property `childAsset`
326
+ # @return [Array<Google::Apis::DatafusionV1::CloudAsset>]
327
+ attr_accessor :child_asset
328
+
329
+ def initialize(**args)
330
+ update!(**args)
331
+ end
332
+
333
+ # Update properties of this object
334
+ def update!(**args)
335
+ @child_asset = args[:child_asset] if args.key?(:child_asset)
336
+ end
337
+ end
338
+
235
339
  # The crypto key configuration. This field is used by the Customer-managed
236
340
  # encryption keys (CMEK) feature.
237
341
  class CryptoKeyConfig
@@ -254,40 +358,14 @@ module Google
254
358
  end
255
359
  end
256
360
 
257
- # Next tag: 7
258
- class DataResidencyAugmentedView
361
+ #
362
+ class DirectLocationAssignment
259
363
  include Google::Apis::Core::Hashable
260
364
 
261
- # Cloud resource to Google owned production object mapping in the form of GURIs.
262
- # The GURIs should be available in DG KB storage/cns tables. This is the
263
- # preferred way of providing cloud resource mappings. For further details please
264
- # read go/cloud-resource-monitoring_sig
265
- # Corresponds to the JSON property `crGopoGuris`
266
- # @return [Array<String>]
267
- attr_accessor :cr_gopo_guris
268
-
269
- # Cloud resource to Google owned production object mapping in the form of
270
- # prefixes. These should be available in DG KB storage/cns tables. The entity
271
- # type, which is the part of the string before the first colon in the GURI, must
272
- # be completely specified in prefix. For details about GURI please read go/guri.
273
- # For further details about the field please read go/cloud-resource-
274
- # monitoring_sig.
275
- # Corresponds to the JSON property `crGopoPrefixes`
276
- # @return [Array<String>]
277
- attr_accessor :cr_gopo_prefixes
278
-
279
- # This message defines service-specific data that certain service teams must
280
- # provide as part of the Data Residency Augmented View for a resource. Next ID:
281
- # 2
282
- # Corresponds to the JSON property `serviceData`
283
- # @return [Google::Apis::DatafusionV1::ServiceData]
284
- attr_accessor :service_data
285
-
286
- # The list of project_id's of the tenant projects in the 'google.com' org which
287
- # serve the Cloud Resource. See go/drz-mst-sig for more details.
288
- # Corresponds to the JSON property `tpIds`
289
- # @return [Array<String>]
290
- attr_accessor :tp_ids
365
+ #
366
+ # Corresponds to the JSON property `location`
367
+ # @return [Array<Google::Apis::DatafusionV1::LocationAssignment>]
368
+ attr_accessor :location
291
369
 
292
370
  def initialize(**args)
293
371
  update!(**args)
@@ -295,10 +373,7 @@ module Google
295
373
 
296
374
  # Update properties of this object
297
375
  def update!(**args)
298
- @cr_gopo_guris = args[:cr_gopo_guris] if args.key?(:cr_gopo_guris)
299
- @cr_gopo_prefixes = args[:cr_gopo_prefixes] if args.key?(:cr_gopo_prefixes)
300
- @service_data = args[:service_data] if args.key?(:service_data)
301
- @tp_ids = args[:tp_ids] if args.key?(:tp_ids)
376
+ @location = args[:location] if args.key?(:location)
302
377
  end
303
378
  end
304
379
 
@@ -444,6 +519,26 @@ module Google
444
519
  end
445
520
  end
446
521
 
522
+ # Defines parameters that should only be used for specific asset types.
523
+ class ExtraParameter
524
+ include Google::Apis::Core::Hashable
525
+
526
+ # To be used for specifying the intended distribution of regional compute.
527
+ # googleapis.com/InstanceGroupManager instances
528
+ # Corresponds to the JSON property `regionalMigDistributionPolicy`
529
+ # @return [Google::Apis::DatafusionV1::RegionalMigDistributionPolicy]
530
+ attr_accessor :regional_mig_distribution_policy
531
+
532
+ def initialize(**args)
533
+ update!(**args)
534
+ end
535
+
536
+ # Update properties of this object
537
+ def update!(**args)
538
+ @regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
539
+ end
540
+ end
541
+
447
542
  # Represents a Data Fusion instance.
448
543
  class Instance
449
544
  include Google::Apis::Core::Hashable
@@ -546,6 +641,11 @@ module Google
546
641
  # @return [Hash<String,String>]
547
642
  attr_accessor :labels
548
643
 
644
+ # Maintenance policy of the instance.
645
+ # Corresponds to the JSON property `maintenancePolicy`
646
+ # @return [Google::Apis::DatafusionV1::MaintenancePolicy]
647
+ attr_accessor :maintenance_policy
648
+
549
649
  # Output only. The name of this instance is in the form of projects/`project`/
550
650
  # locations/`location`/instances/`instance`.
551
651
  # Corresponds to the JSON property `name`
@@ -568,7 +668,7 @@ module Google
568
668
  # @return [Hash<String,String>]
569
669
  attr_accessor :options
570
670
 
571
- # Output only. P4 service account for the customer project.
671
+ # Output only. Service agent for the customer project.
572
672
  # Corresponds to the JSON property `p4ServiceAccount`
573
673
  # @return [String]
574
674
  attr_accessor :p4_service_account
@@ -669,6 +769,7 @@ module Google
669
769
  @event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
670
770
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
671
771
  @labels = args[:labels] if args.key?(:labels)
772
+ @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
672
773
  @name = args[:name] if args.key?(:name)
673
774
  @network_config = args[:network_config] if args.key?(:network_config)
674
775
  @options = args[:options] if args.key?(:options)
@@ -689,6 +790,63 @@ module Google
689
790
  end
690
791
  end
691
792
 
793
+ #
794
+ class IsolationExpectations
795
+ include Google::Apis::Core::Hashable
796
+
797
+ #
798
+ # Corresponds to the JSON property `ziOrgPolicy`
799
+ # @return [String]
800
+ attr_accessor :zi_org_policy
801
+
802
+ #
803
+ # Corresponds to the JSON property `ziRegionPolicy`
804
+ # @return [String]
805
+ attr_accessor :zi_region_policy
806
+
807
+ #
808
+ # Corresponds to the JSON property `ziRegionState`
809
+ # @return [String]
810
+ attr_accessor :zi_region_state
811
+
812
+ # Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
813
+ # for setting ZI expectations as per go/zicy-publish-physical-location.
814
+ # Corresponds to the JSON property `zoneIsolation`
815
+ # @return [String]
816
+ attr_accessor :zone_isolation
817
+
818
+ # Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
819
+ # expectations as per go/zicy-publish-physical-location.
820
+ # Corresponds to the JSON property `zoneSeparation`
821
+ # @return [String]
822
+ attr_accessor :zone_separation
823
+
824
+ #
825
+ # Corresponds to the JSON property `zsOrgPolicy`
826
+ # @return [String]
827
+ attr_accessor :zs_org_policy
828
+
829
+ #
830
+ # Corresponds to the JSON property `zsRegionState`
831
+ # @return [String]
832
+ attr_accessor :zs_region_state
833
+
834
+ def initialize(**args)
835
+ update!(**args)
836
+ end
837
+
838
+ # Update properties of this object
839
+ def update!(**args)
840
+ @zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
841
+ @zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
842
+ @zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
843
+ @zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
844
+ @zone_separation = args[:zone_separation] if args.key?(:zone_separation)
845
+ @zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
846
+ @zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
847
+ end
848
+ end
849
+
692
850
  # Response message for the list available versions request.
693
851
  class ListAvailableVersionsResponse
694
852
  include Google::Apis::Core::Hashable
@@ -870,6 +1028,126 @@ module Google
870
1028
  end
871
1029
  end
872
1030
 
1031
+ #
1032
+ class LocationAssignment
1033
+ include Google::Apis::Core::Hashable
1034
+
1035
+ #
1036
+ # Corresponds to the JSON property `location`
1037
+ # @return [String]
1038
+ attr_accessor :location
1039
+
1040
+ #
1041
+ # Corresponds to the JSON property `locationType`
1042
+ # @return [String]
1043
+ attr_accessor :location_type
1044
+
1045
+ def initialize(**args)
1046
+ update!(**args)
1047
+ end
1048
+
1049
+ # Update properties of this object
1050
+ def update!(**args)
1051
+ @location = args[:location] if args.key?(:location)
1052
+ @location_type = args[:location_type] if args.key?(:location_type)
1053
+ end
1054
+ end
1055
+
1056
+ #
1057
+ class LocationData
1058
+ include Google::Apis::Core::Hashable
1059
+
1060
+ # Policy ID that identified data placement in Blobstore as per go/blobstore-user-
1061
+ # guide#data-metadata-placement-and-failure-domains
1062
+ # Corresponds to the JSON property `blobstoreLocation`
1063
+ # @return [Google::Apis::DatafusionV1::BlobstoreLocation]
1064
+ attr_accessor :blobstore_location
1065
+
1066
+ #
1067
+ # Corresponds to the JSON property `childAssetLocation`
1068
+ # @return [Google::Apis::DatafusionV1::CloudAssetComposition]
1069
+ attr_accessor :child_asset_location
1070
+
1071
+ #
1072
+ # Corresponds to the JSON property `directLocation`
1073
+ # @return [Google::Apis::DatafusionV1::DirectLocationAssignment]
1074
+ attr_accessor :direct_location
1075
+
1076
+ #
1077
+ # Corresponds to the JSON property `gcpProjectProxy`
1078
+ # @return [Google::Apis::DatafusionV1::TenantProjectProxy]
1079
+ attr_accessor :gcp_project_proxy
1080
+
1081
+ # Message describing that the location of the customer resource is tied to
1082
+ # placer allocations
1083
+ # Corresponds to the JSON property `placerLocation`
1084
+ # @return [Google::Apis::DatafusionV1::PlacerLocation]
1085
+ attr_accessor :placer_location
1086
+
1087
+ #
1088
+ # Corresponds to the JSON property `spannerLocation`
1089
+ # @return [Google::Apis::DatafusionV1::SpannerLocation]
1090
+ attr_accessor :spanner_location
1091
+
1092
+ def initialize(**args)
1093
+ update!(**args)
1094
+ end
1095
+
1096
+ # Update properties of this object
1097
+ def update!(**args)
1098
+ @blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
1099
+ @child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
1100
+ @direct_location = args[:direct_location] if args.key?(:direct_location)
1101
+ @gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
1102
+ @placer_location = args[:placer_location] if args.key?(:placer_location)
1103
+ @spanner_location = args[:spanner_location] if args.key?(:spanner_location)
1104
+ end
1105
+ end
1106
+
1107
+ # Maintenance policy of the instance.
1108
+ class MaintenancePolicy
1109
+ include Google::Apis::Core::Hashable
1110
+
1111
+ # Represents an arbitrary window of time.
1112
+ # Corresponds to the JSON property `maintenanceExclusionWindow`
1113
+ # @return [Google::Apis::DatafusionV1::TimeWindow]
1114
+ attr_accessor :maintenance_exclusion_window
1115
+
1116
+ # Maintenance window of the instance.
1117
+ # Corresponds to the JSON property `maintenanceWindow`
1118
+ # @return [Google::Apis::DatafusionV1::MaintenanceWindow]
1119
+ attr_accessor :maintenance_window
1120
+
1121
+ def initialize(**args)
1122
+ update!(**args)
1123
+ end
1124
+
1125
+ # Update properties of this object
1126
+ def update!(**args)
1127
+ @maintenance_exclusion_window = args[:maintenance_exclusion_window] if args.key?(:maintenance_exclusion_window)
1128
+ @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
1129
+ end
1130
+ end
1131
+
1132
+ # Maintenance window of the instance.
1133
+ class MaintenanceWindow
1134
+ include Google::Apis::Core::Hashable
1135
+
1136
+ # Represents an arbitrary window of time that recurs.
1137
+ # Corresponds to the JSON property `recurringTimeWindow`
1138
+ # @return [Google::Apis::DatafusionV1::RecurringTimeWindow]
1139
+ attr_accessor :recurring_time_window
1140
+
1141
+ def initialize(**args)
1142
+ update!(**args)
1143
+ end
1144
+
1145
+ # Update properties of this object
1146
+ def update!(**args)
1147
+ @recurring_time_window = args[:recurring_time_window] if args.key?(:recurring_time_window)
1148
+ end
1149
+ end
1150
+
873
1151
  # Network configuration for a Data Fusion instance. These configurations are
874
1152
  # used for peering with the customer network. Configurations are optional when a
875
1153
  # public Data Fusion instance is to be created. However, providing these
@@ -1051,34 +1329,16 @@ module Google
1051
1329
  end
1052
1330
  end
1053
1331
 
1054
- # Persistent Disk service-specific Data. Contains information that may not be
1055
- # appropriate for the generic DRZ Augmented View. This currently includes LSV
1056
- # Colossus Roots and GCS Buckets.
1057
- class PersistentDiskData
1332
+ # Message describing that the location of the customer resource is tied to
1333
+ # placer allocations
1334
+ class PlacerLocation
1058
1335
  include Google::Apis::Core::Hashable
1059
1336
 
1060
- # Path to Colossus root for an LSV. NOTE: Unlike `cr_ti_guris` and `
1061
- # cr_ti_prefixes`, the field `cfs_roots` below does not need to be a GUri or
1062
- # GUri prefix. It can simply be any valid CFS or CFS2 Path. The DRZ KR8 SIG has
1063
- # more details overall, but generally the `cfs_roots` provided here should be
1064
- # scoped to an individual Persistent Disk. An example for a PD Disk with a disk
1065
- # ID 3277719120423414466, follows: * `cr_ti_guris` could be ‘/cfs2/pj/pd-cloud-
1066
- # prod’ as this is a valid GUri present in the DG KB and contains enough
1067
- # information to perform location monitoring and scope ownership of the
1068
- # Production Object. * `cfs_roots` would be: ‘/cfs2/pj/pd-cloud-staging/
1069
- # lsv000001234@/ lsv/projects~773365403387~zones~2700~disks~3277719120423414466 ~
1070
- # bank-blue-careful-3526-lsv00054DB1B7254BA3/’ as this allows us to enumerate
1071
- # the files on CFS2 that belong to an individual Disk.
1072
- # Corresponds to the JSON property `cfsRoots`
1073
- # @return [Array<String>]
1074
- attr_accessor :cfs_roots
1075
-
1076
- # The GCS Buckets that back this snapshot or image. This is required as `
1077
- # cr_ti_prefixes` and `cr_ti_guris` only accept TI resources. This should be the
1078
- # globally unique bucket name.
1079
- # Corresponds to the JSON property `gcsBucketNames`
1080
- # @return [Array<String>]
1081
- attr_accessor :gcs_bucket_names
1337
+ # Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
1338
+ # root/my-dir")
1339
+ # Corresponds to the JSON property `placerConfig`
1340
+ # @return [String]
1341
+ attr_accessor :placer_config
1082
1342
 
1083
1343
  def initialize(**args)
1084
1344
  update!(**args)
@@ -1086,8 +1346,7 @@ module Google
1086
1346
 
1087
1347
  # Update properties of this object
1088
1348
  def update!(**args)
1089
- @cfs_roots = args[:cfs_roots] if args.key?(:cfs_roots)
1090
- @gcs_bucket_names = args[:gcs_bucket_names] if args.key?(:gcs_bucket_names)
1349
+ @placer_config = args[:placer_config] if args.key?(:placer_config)
1091
1350
  end
1092
1351
  end
1093
1352
 
@@ -1229,31 +1488,68 @@ module Google
1229
1488
  end
1230
1489
  end
1231
1490
 
1232
- # Request message for restarting a Data Fusion instance.
1233
- class RestartInstanceRequest
1491
+ # Represents an arbitrary window of time that recurs.
1492
+ class RecurringTimeWindow
1234
1493
  include Google::Apis::Core::Hashable
1235
1494
 
1495
+ # Required. An RRULE with format [RFC-5545](https://tools.ietf.org/html/rfc5545#
1496
+ # section-3.8.5.3) for how this window reccurs. They go on for the span of time
1497
+ # between the start and end time. The only supported FREQ value is "WEEKLY". To
1498
+ # have something repeat every weekday, use: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR".
1499
+ # This specifies how frequently the window starts. To have a 9 am - 5 pm UTC-4
1500
+ # window every weekday, use something like: ``` start time = 2019-01-01T09:00:00-
1501
+ # 0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,
1502
+ # WE,TH,FR ```
1503
+ # Corresponds to the JSON property `recurrence`
1504
+ # @return [String]
1505
+ attr_accessor :recurrence
1506
+
1507
+ # Represents an arbitrary window of time.
1508
+ # Corresponds to the JSON property `window`
1509
+ # @return [Google::Apis::DatafusionV1::TimeWindow]
1510
+ attr_accessor :window
1511
+
1236
1512
  def initialize(**args)
1237
1513
  update!(**args)
1238
1514
  end
1239
1515
 
1240
1516
  # Update properties of this object
1241
1517
  def update!(**args)
1518
+ @recurrence = args[:recurrence] if args.key?(:recurrence)
1519
+ @window = args[:window] if args.key?(:window)
1242
1520
  end
1243
1521
  end
1244
1522
 
1245
- # This message defines service-specific data that certain service teams must
1246
- # provide as part of the Data Residency Augmented View for a resource. Next ID:
1247
- # 2
1248
- class ServiceData
1523
+ # To be used for specifying the intended distribution of regional compute.
1524
+ # googleapis.com/InstanceGroupManager instances
1525
+ class RegionalMigDistributionPolicy
1249
1526
  include Google::Apis::Core::Hashable
1250
1527
 
1251
- # Persistent Disk service-specific Data. Contains information that may not be
1252
- # appropriate for the generic DRZ Augmented View. This currently includes LSV
1253
- # Colossus Roots and GCS Buckets.
1254
- # Corresponds to the JSON property `pd`
1255
- # @return [Google::Apis::DatafusionV1::PersistentDiskData]
1256
- attr_accessor :pd
1528
+ # The shape in which the group converges around distribution of resources.
1529
+ # Instance of proto2 enum
1530
+ # Corresponds to the JSON property `targetShape`
1531
+ # @return [Fixnum]
1532
+ attr_accessor :target_shape
1533
+
1534
+ # Cloud zones used by regional MIG to create instances.
1535
+ # Corresponds to the JSON property `zones`
1536
+ # @return [Array<Google::Apis::DatafusionV1::ZoneConfiguration>]
1537
+ attr_accessor :zones
1538
+
1539
+ def initialize(**args)
1540
+ update!(**args)
1541
+ end
1542
+
1543
+ # Update properties of this object
1544
+ def update!(**args)
1545
+ @target_shape = args[:target_shape] if args.key?(:target_shape)
1546
+ @zones = args[:zones] if args.key?(:zones)
1547
+ end
1548
+ end
1549
+
1550
+ # Request message for restarting a Data Fusion instance.
1551
+ class RestartInstanceRequest
1552
+ include Google::Apis::Core::Hashable
1257
1553
 
1258
1554
  def initialize(**args)
1259
1555
  update!(**args)
@@ -1261,7 +1557,6 @@ module Google
1261
1557
 
1262
1558
  # Update properties of this object
1263
1559
  def update!(**args)
1264
- @pd = args[:pd] if args.key?(:pd)
1265
1560
  end
1266
1561
  end
1267
1562
 
@@ -1318,6 +1613,32 @@ module Google
1318
1613
  end
1319
1614
  end
1320
1615
 
1616
+ #
1617
+ class SpannerLocation
1618
+ include Google::Apis::Core::Hashable
1619
+
1620
+ # Set of backups used by the resource with name in the same format as what is
1621
+ # available at http://table/spanner_automon.backup_metadata
1622
+ # Corresponds to the JSON property `backupName`
1623
+ # @return [Array<String>]
1624
+ attr_accessor :backup_name
1625
+
1626
+ # Set of databases used by the resource in format /span//
1627
+ # Corresponds to the JSON property `dbName`
1628
+ # @return [Array<String>]
1629
+ attr_accessor :db_name
1630
+
1631
+ def initialize(**args)
1632
+ update!(**args)
1633
+ end
1634
+
1635
+ # Update properties of this object
1636
+ def update!(**args)
1637
+ @backup_name = args[:backup_name] if args.key?(:backup_name)
1638
+ @db_name = args[:db_name] if args.key?(:db_name)
1639
+ end
1640
+ end
1641
+
1321
1642
  # The `Status` type defines a logical error model that is suitable for different
1322
1643
  # programming environments, including REST APIs and RPC APIs. It is used by [
1323
1644
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -1357,6 +1678,25 @@ module Google
1357
1678
  end
1358
1679
  end
1359
1680
 
1681
+ #
1682
+ class TenantProjectProxy
1683
+ include Google::Apis::Core::Hashable
1684
+
1685
+ #
1686
+ # Corresponds to the JSON property `projectNumbers`
1687
+ # @return [Array<String>]
1688
+ attr_accessor :project_numbers
1689
+
1690
+ def initialize(**args)
1691
+ update!(**args)
1692
+ end
1693
+
1694
+ # Update properties of this object
1695
+ def update!(**args)
1696
+ @project_numbers = args[:project_numbers] if args.key?(:project_numbers)
1697
+ end
1698
+ end
1699
+
1360
1700
  # Request message for `TestIamPermissions` method.
1361
1701
  class TestIamPermissionsRequest
1362
1702
  include Google::Apis::Core::Hashable
@@ -1397,6 +1737,34 @@ module Google
1397
1737
  end
1398
1738
  end
1399
1739
 
1740
+ # Represents an arbitrary window of time.
1741
+ class TimeWindow
1742
+ include Google::Apis::Core::Hashable
1743
+
1744
+ # Required. The end time of the time window provided in [RFC 3339](https://www.
1745
+ # ietf.org/rfc/rfc3339.txt) format. The end time should take place after the
1746
+ # start time. Example: "2024-01-02T12:04:06-06:00"
1747
+ # Corresponds to the JSON property `endTime`
1748
+ # @return [String]
1749
+ attr_accessor :end_time
1750
+
1751
+ # Required. The start time of the time window provided in [RFC 3339](https://www.
1752
+ # ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
1753
+ # Corresponds to the JSON property `startTime`
1754
+ # @return [String]
1755
+ attr_accessor :start_time
1756
+
1757
+ def initialize(**args)
1758
+ update!(**args)
1759
+ end
1760
+
1761
+ # Update properties of this object
1762
+ def update!(**args)
1763
+ @end_time = args[:end_time] if args.key?(:end_time)
1764
+ @start_time = args[:start_time] if args.key?(:start_time)
1765
+ end
1766
+ end
1767
+
1400
1768
  # The Data Fusion version. This proto message stores information about certain
1401
1769
  # Data Fusion version, which is used for Data Fusion version upgrade.
1402
1770
  class Version
@@ -1435,6 +1803,25 @@ module Google
1435
1803
  @version_number = args[:version_number] if args.key?(:version_number)
1436
1804
  end
1437
1805
  end
1806
+
1807
+ #
1808
+ class ZoneConfiguration
1809
+ include Google::Apis::Core::Hashable
1810
+
1811
+ #
1812
+ # Corresponds to the JSON property `zone`
1813
+ # @return [String]
1814
+ attr_accessor :zone
1815
+
1816
+ def initialize(**args)
1817
+ update!(**args)
1818
+ end
1819
+
1820
+ # Update properties of this object
1821
+ def update!(**args)
1822
+ @zone = args[:zone] if args.key?(:zone)
1823
+ end
1824
+ end
1438
1825
  end
1439
1826
  end
1440
1827
  end
@@ -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.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240219"
25
+ REVISION = "20240703"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AssetLocation
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AuditConfig
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -46,19 +52,37 @@ module Google
46
52
  include Google::Apis::Core::JsonObjectSupport
47
53
  end
48
54
 
55
+ class BlobstoreLocation
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
49
61
  class CancelOperationRequest
50
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
63
 
52
64
  include Google::Apis::Core::JsonObjectSupport
53
65
  end
54
66
 
67
+ class CloudAsset
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class CloudAssetComposition
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
55
79
  class CryptoKeyConfig
56
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
81
 
58
82
  include Google::Apis::Core::JsonObjectSupport
59
83
  end
60
84
 
61
- class DataResidencyAugmentedView
85
+ class DirectLocationAssignment
62
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
87
 
64
88
  include Google::Apis::Core::JsonObjectSupport
@@ -88,12 +112,24 @@ module Google
88
112
  include Google::Apis::Core::JsonObjectSupport
89
113
  end
90
114
 
115
+ class ExtraParameter
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
91
121
  class Instance
92
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
123
 
94
124
  include Google::Apis::Core::JsonObjectSupport
95
125
  end
96
126
 
127
+ class IsolationExpectations
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
97
133
  class ListAvailableVersionsResponse
98
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
135
 
@@ -130,6 +166,30 @@ module Google
130
166
  include Google::Apis::Core::JsonObjectSupport
131
167
  end
132
168
 
169
+ class LocationAssignment
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class LocationData
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class MaintenancePolicy
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class MaintenanceWindow
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
133
193
  class NetworkConfig
134
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
195
 
@@ -148,7 +208,7 @@ module Google
148
208
  include Google::Apis::Core::JsonObjectSupport
149
209
  end
150
210
 
151
- class PersistentDiskData
211
+ class PlacerLocation
152
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
213
 
154
214
  include Google::Apis::Core::JsonObjectSupport
@@ -166,13 +226,19 @@ module Google
166
226
  include Google::Apis::Core::JsonObjectSupport
167
227
  end
168
228
 
169
- class RestartInstanceRequest
229
+ class RecurringTimeWindow
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
235
+ class RegionalMigDistributionPolicy
170
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
237
 
172
238
  include Google::Apis::Core::JsonObjectSupport
173
239
  end
174
240
 
175
- class ServiceData
241
+ class RestartInstanceRequest
176
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
243
 
178
244
  include Google::Apis::Core::JsonObjectSupport
@@ -184,12 +250,24 @@ module Google
184
250
  include Google::Apis::Core::JsonObjectSupport
185
251
  end
186
252
 
253
+ class SpannerLocation
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
187
259
  class Status
188
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
261
 
190
262
  include Google::Apis::Core::JsonObjectSupport
191
263
  end
192
264
 
265
+ class TenantProjectProxy
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
193
271
  class TestIamPermissionsRequest
194
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
273
 
@@ -202,12 +280,24 @@ module Google
202
280
  include Google::Apis::Core::JsonObjectSupport
203
281
  end
204
282
 
283
+ class TimeWindow
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
205
289
  class Version
206
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
291
 
208
292
  include Google::Apis::Core::JsonObjectSupport
209
293
  end
210
294
 
295
+ class ZoneConfiguration
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
211
301
  class Accelerator
212
302
  # @private
213
303
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -216,6 +306,20 @@ module Google
216
306
  end
217
307
  end
218
308
 
309
+ class AssetLocation
310
+ # @private
311
+ class Representation < Google::Apis::Core::JsonRepresentation
312
+ property :expected, as: 'expected', class: Google::Apis::DatafusionV1::IsolationExpectations, decorator: Google::Apis::DatafusionV1::IsolationExpectations::Representation
313
+
314
+ collection :extra_parameters, as: 'extraParameters', class: Google::Apis::DatafusionV1::ExtraParameter, decorator: Google::Apis::DatafusionV1::ExtraParameter::Representation
315
+
316
+ collection :location_data, as: 'locationData', class: Google::Apis::DatafusionV1::LocationData, decorator: Google::Apis::DatafusionV1::LocationData::Representation
317
+
318
+ collection :parent_asset, as: 'parentAsset', class: Google::Apis::DatafusionV1::CloudAsset, decorator: Google::Apis::DatafusionV1::CloudAsset::Representation
319
+
320
+ end
321
+ end
322
+
219
323
  class AuditConfig
220
324
  # @private
221
325
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -243,12 +347,35 @@ module Google
243
347
  end
244
348
  end
245
349
 
350
+ class BlobstoreLocation
351
+ # @private
352
+ class Representation < Google::Apis::Core::JsonRepresentation
353
+ collection :policy_id, as: 'policyId'
354
+ end
355
+ end
356
+
246
357
  class CancelOperationRequest
247
358
  # @private
248
359
  class Representation < Google::Apis::Core::JsonRepresentation
249
360
  end
250
361
  end
251
362
 
363
+ class CloudAsset
364
+ # @private
365
+ class Representation < Google::Apis::Core::JsonRepresentation
366
+ property :asset_name, as: 'assetName'
367
+ property :asset_type, as: 'assetType'
368
+ end
369
+ end
370
+
371
+ class CloudAssetComposition
372
+ # @private
373
+ class Representation < Google::Apis::Core::JsonRepresentation
374
+ collection :child_asset, as: 'childAsset', class: Google::Apis::DatafusionV1::CloudAsset, decorator: Google::Apis::DatafusionV1::CloudAsset::Representation
375
+
376
+ end
377
+ end
378
+
252
379
  class CryptoKeyConfig
253
380
  # @private
254
381
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -256,14 +383,11 @@ module Google
256
383
  end
257
384
  end
258
385
 
259
- class DataResidencyAugmentedView
386
+ class DirectLocationAssignment
260
387
  # @private
261
388
  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
389
+ collection :location, as: 'location', class: Google::Apis::DatafusionV1::LocationAssignment, decorator: Google::Apis::DatafusionV1::LocationAssignment::Representation
265
390
 
266
- collection :tp_ids, as: 'tpIds'
267
391
  end
268
392
  end
269
393
 
@@ -302,6 +426,14 @@ module Google
302
426
  end
303
427
  end
304
428
 
429
+ class ExtraParameter
430
+ # @private
431
+ class Representation < Google::Apis::Core::JsonRepresentation
432
+ property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::DatafusionV1::RegionalMigDistributionPolicy, decorator: Google::Apis::DatafusionV1::RegionalMigDistributionPolicy::Representation
433
+
434
+ end
435
+ end
436
+
305
437
  class Instance
306
438
  # @private
307
439
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -326,6 +458,8 @@ module Google
326
458
 
327
459
  property :gcs_bucket, as: 'gcsBucket'
328
460
  hash :labels, as: 'labels'
461
+ property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1::MaintenancePolicy::Representation
462
+
329
463
  property :name, as: 'name'
330
464
  property :network_config, as: 'networkConfig', class: Google::Apis::DatafusionV1::NetworkConfig, decorator: Google::Apis::DatafusionV1::NetworkConfig::Representation
331
465
 
@@ -347,6 +481,19 @@ module Google
347
481
  end
348
482
  end
349
483
 
484
+ class IsolationExpectations
485
+ # @private
486
+ class Representation < Google::Apis::Core::JsonRepresentation
487
+ property :zi_org_policy, as: 'ziOrgPolicy'
488
+ property :zi_region_policy, as: 'ziRegionPolicy'
489
+ property :zi_region_state, as: 'ziRegionState'
490
+ property :zone_isolation, as: 'zoneIsolation'
491
+ property :zone_separation, as: 'zoneSeparation'
492
+ property :zs_org_policy, as: 'zsOrgPolicy'
493
+ property :zs_region_state, as: 'zsRegionState'
494
+ end
495
+ end
496
+
350
497
  class ListAvailableVersionsResponse
351
498
  # @private
352
499
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -404,6 +551,50 @@ module Google
404
551
  end
405
552
  end
406
553
 
554
+ class LocationAssignment
555
+ # @private
556
+ class Representation < Google::Apis::Core::JsonRepresentation
557
+ property :location, as: 'location'
558
+ property :location_type, as: 'locationType'
559
+ end
560
+ end
561
+
562
+ class LocationData
563
+ # @private
564
+ class Representation < Google::Apis::Core::JsonRepresentation
565
+ property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::DatafusionV1::BlobstoreLocation, decorator: Google::Apis::DatafusionV1::BlobstoreLocation::Representation
566
+
567
+ property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::DatafusionV1::CloudAssetComposition, decorator: Google::Apis::DatafusionV1::CloudAssetComposition::Representation
568
+
569
+ property :direct_location, as: 'directLocation', class: Google::Apis::DatafusionV1::DirectLocationAssignment, decorator: Google::Apis::DatafusionV1::DirectLocationAssignment::Representation
570
+
571
+ property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::DatafusionV1::TenantProjectProxy, decorator: Google::Apis::DatafusionV1::TenantProjectProxy::Representation
572
+
573
+ property :placer_location, as: 'placerLocation', class: Google::Apis::DatafusionV1::PlacerLocation, decorator: Google::Apis::DatafusionV1::PlacerLocation::Representation
574
+
575
+ property :spanner_location, as: 'spannerLocation', class: Google::Apis::DatafusionV1::SpannerLocation, decorator: Google::Apis::DatafusionV1::SpannerLocation::Representation
576
+
577
+ end
578
+ end
579
+
580
+ class MaintenancePolicy
581
+ # @private
582
+ class Representation < Google::Apis::Core::JsonRepresentation
583
+ property :maintenance_exclusion_window, as: 'maintenanceExclusionWindow', class: Google::Apis::DatafusionV1::TimeWindow, decorator: Google::Apis::DatafusionV1::TimeWindow::Representation
584
+
585
+ property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::DatafusionV1::MaintenanceWindow, decorator: Google::Apis::DatafusionV1::MaintenanceWindow::Representation
586
+
587
+ end
588
+ end
589
+
590
+ class MaintenanceWindow
591
+ # @private
592
+ class Representation < Google::Apis::Core::JsonRepresentation
593
+ property :recurring_time_window, as: 'recurringTimeWindow', class: Google::Apis::DatafusionV1::RecurringTimeWindow, decorator: Google::Apis::DatafusionV1::RecurringTimeWindow::Representation
594
+
595
+ end
596
+ end
597
+
407
598
  class NetworkConfig
408
599
  # @private
409
600
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -441,11 +632,10 @@ module Google
441
632
  end
442
633
  end
443
634
 
444
- class PersistentDiskData
635
+ class PlacerLocation
445
636
  # @private
446
637
  class Representation < Google::Apis::Core::JsonRepresentation
447
- collection :cfs_roots, as: 'cfsRoots'
448
- collection :gcs_bucket_names, as: 'gcsBucketNames'
638
+ property :placer_config, as: 'placerConfig'
449
639
  end
450
640
  end
451
641
 
@@ -470,20 +660,30 @@ module Google
470
660
  end
471
661
  end
472
662
 
473
- class RestartInstanceRequest
663
+ class RecurringTimeWindow
474
664
  # @private
475
665
  class Representation < Google::Apis::Core::JsonRepresentation
666
+ property :recurrence, as: 'recurrence'
667
+ property :window, as: 'window', class: Google::Apis::DatafusionV1::TimeWindow, decorator: Google::Apis::DatafusionV1::TimeWindow::Representation
668
+
476
669
  end
477
670
  end
478
671
 
479
- class ServiceData
672
+ class RegionalMigDistributionPolicy
480
673
  # @private
481
674
  class Representation < Google::Apis::Core::JsonRepresentation
482
- property :pd, as: 'pd', class: Google::Apis::DatafusionV1::PersistentDiskData, decorator: Google::Apis::DatafusionV1::PersistentDiskData::Representation
675
+ property :target_shape, as: 'targetShape'
676
+ collection :zones, as: 'zones', class: Google::Apis::DatafusionV1::ZoneConfiguration, decorator: Google::Apis::DatafusionV1::ZoneConfiguration::Representation
483
677
 
484
678
  end
485
679
  end
486
680
 
681
+ class RestartInstanceRequest
682
+ # @private
683
+ class Representation < Google::Apis::Core::JsonRepresentation
684
+ end
685
+ end
686
+
487
687
  class SetIamPolicyRequest
488
688
  # @private
489
689
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -493,6 +693,14 @@ module Google
493
693
  end
494
694
  end
495
695
 
696
+ class SpannerLocation
697
+ # @private
698
+ class Representation < Google::Apis::Core::JsonRepresentation
699
+ collection :backup_name, as: 'backupName'
700
+ collection :db_name, as: 'dbName'
701
+ end
702
+ end
703
+
496
704
  class Status
497
705
  # @private
498
706
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -502,6 +710,13 @@ module Google
502
710
  end
503
711
  end
504
712
 
713
+ class TenantProjectProxy
714
+ # @private
715
+ class Representation < Google::Apis::Core::JsonRepresentation
716
+ collection :project_numbers, as: 'projectNumbers'
717
+ end
718
+ end
719
+
505
720
  class TestIamPermissionsRequest
506
721
  # @private
507
722
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -516,6 +731,14 @@ module Google
516
731
  end
517
732
  end
518
733
 
734
+ class TimeWindow
735
+ # @private
736
+ class Representation < Google::Apis::Core::JsonRepresentation
737
+ property :end_time, as: 'endTime'
738
+ property :start_time, as: 'startTime'
739
+ end
740
+ end
741
+
519
742
  class Version
520
743
  # @private
521
744
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -525,6 +748,13 @@ module Google
525
748
  property :version_number, as: 'versionNumber'
526
749
  end
527
750
  end
751
+
752
+ class ZoneConfiguration
753
+ # @private
754
+ class Representation < Google::Apis::Core::JsonRepresentation
755
+ property :zone, as: 'zone'
756
+ end
757
+ end
528
758
  end
529
759
  end
530
760
  end
@@ -94,8 +94,6 @@ module Google
94
94
  # A filter to narrow down results to a preferred subset. The filtering language
95
95
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
96
96
  # in [AIP-160](https://google.aip.dev/160).
97
- # @param [Boolean] include_unrevealed_locations
98
- # If true, the returned list will include locations which are not yet revealed.
99
97
  # @param [Fixnum] page_size
100
98
  # The maximum number of results to return. If not set, the service selects a
101
99
  # default.
@@ -119,13 +117,12 @@ module Google
119
117
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
120
118
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
121
119
  # @raise [Google::Apis::AuthorizationError] Authorization is required
122
- def list_project_locations(name, filter: nil, include_unrevealed_locations: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
120
+ def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
123
121
  command = make_simple_command(:get, 'v1/{+name}/locations', options)
124
122
  command.response_representation = Google::Apis::DatafusionV1::ListLocationsResponse::Representation
125
123
  command.response_class = Google::Apis::DatafusionV1::ListLocationsResponse
126
124
  command.params['name'] = name unless name.nil?
127
125
  command.query['filter'] = filter unless filter.nil?
128
- command.query['includeUnrevealedLocations'] = include_unrevealed_locations unless include_unrevealed_locations.nil?
129
126
  command.query['pageSize'] = page_size unless page_size.nil?
130
127
  command.query['pageToken'] = page_token unless page_token.nil?
131
128
  command.query['fields'] = fields unless fields.nil?
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.31.0
4
+ version: 0.33.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.33.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: []