google-apis-datafusion_v1beta1 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: 88cb30edaa3c20e89e160fa00312f42e8a56a55694a89a7addb53a0b78086076
4
- data.tar.gz: 0fc5ee0f8a562dd2603f688db57852aadd3e5157956d1faa71fbf5669e917146
3
+ metadata.gz: 541093fffe1493eb5864237874284772ad82a967e4d95178b06581e89e7c8a51
4
+ data.tar.gz: e2c2931e35e455d70809df909e5c48aacdcf35f32dedbb05a31d19fcbf67f972
5
5
  SHA512:
6
- metadata.gz: 626253730ef8580fb99b7fc26fdcc610e0bc38aedd9f29c1e662d3347e83de2d1dfed311f4c78a6238be4fd484338e24ddd7b48efc956f8fc31e48b3c635fc5b
7
- data.tar.gz: 87e56f46d975064803e8b711862da97cb1936bff4b23bd83d5e1dfb8725e97e1db7850a1d8727575abf0ebc448fbba25eed7e57a509ed6c2b4069b66a002b24a
6
+ metadata.gz: 902fcd951874221056867bacd48440195a2d70f05cb99c1e27f7092252f7e4cd8439c7dd64a00984dc0ef15565e2f139ccc5abbe3346e5ca4a5513af1f137f69
7
+ data.tar.gz: 054bc0413fccbc6ad0d123a3fc20d4ac57bb73dac20b1e0e998a51d7e7ad13cf36144c683e8f7b70cef2243e2380e4b71f477c5cbcfda314e7eff2dee3ae9d75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datafusion_v1beta1
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
@@ -22,16 +22,16 @@ module Google
22
22
  module Apis
23
23
  module DatafusionV1beta1
24
24
 
25
- # Identifies Data Fusion accelerators for an instance.
25
+ # Identifies Cloud Data Fusion accelerators for an instance.
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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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::DatafusionV1beta1::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
  # IAMPolicy encapsulates the IAM policy name, definition and status of policy
448
543
  # fetching.
449
544
  class IamPolicy
@@ -603,6 +698,11 @@ module Google
603
698
  # @return [Hash<String,String>]
604
699
  attr_accessor :labels
605
700
 
701
+ # Maintenance policy of the instance.
702
+ # Corresponds to the JSON property `maintenancePolicy`
703
+ # @return [Google::Apis::DatafusionV1beta1::MaintenancePolicy]
704
+ attr_accessor :maintenance_policy
705
+
606
706
  # Output only. The name of this instance is in the form of projects/`project`/
607
707
  # locations/`location`/instances/`instance`.
608
708
  # Corresponds to the JSON property `name`
@@ -625,7 +725,7 @@ module Google
625
725
  # @return [Hash<String,String>]
626
726
  attr_accessor :options
627
727
 
628
- # Output only. P4 service account for the customer project.
728
+ # Output only. Service agent for the customer project.
629
729
  # Corresponds to the JSON property `p4ServiceAccount`
630
730
  # @return [String]
631
731
  attr_accessor :p4_service_account
@@ -726,6 +826,7 @@ module Google
726
826
  @event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
727
827
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
728
828
  @labels = args[:labels] if args.key?(:labels)
829
+ @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
729
830
  @name = args[:name] if args.key?(:name)
730
831
  @network_config = args[:network_config] if args.key?(:network_config)
731
832
  @options = args[:options] if args.key?(:options)
@@ -746,6 +847,63 @@ module Google
746
847
  end
747
848
  end
748
849
 
850
+ #
851
+ class IsolationExpectations
852
+ include Google::Apis::Core::Hashable
853
+
854
+ #
855
+ # Corresponds to the JSON property `ziOrgPolicy`
856
+ # @return [String]
857
+ attr_accessor :zi_org_policy
858
+
859
+ #
860
+ # Corresponds to the JSON property `ziRegionPolicy`
861
+ # @return [String]
862
+ attr_accessor :zi_region_policy
863
+
864
+ #
865
+ # Corresponds to the JSON property `ziRegionState`
866
+ # @return [String]
867
+ attr_accessor :zi_region_state
868
+
869
+ # Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
870
+ # for setting ZI expectations as per go/zicy-publish-physical-location.
871
+ # Corresponds to the JSON property `zoneIsolation`
872
+ # @return [String]
873
+ attr_accessor :zone_isolation
874
+
875
+ # Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
876
+ # expectations as per go/zicy-publish-physical-location.
877
+ # Corresponds to the JSON property `zoneSeparation`
878
+ # @return [String]
879
+ attr_accessor :zone_separation
880
+
881
+ #
882
+ # Corresponds to the JSON property `zsOrgPolicy`
883
+ # @return [String]
884
+ attr_accessor :zs_org_policy
885
+
886
+ #
887
+ # Corresponds to the JSON property `zsRegionState`
888
+ # @return [String]
889
+ attr_accessor :zs_region_state
890
+
891
+ def initialize(**args)
892
+ update!(**args)
893
+ end
894
+
895
+ # Update properties of this object
896
+ def update!(**args)
897
+ @zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
898
+ @zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
899
+ @zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
900
+ @zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
901
+ @zone_separation = args[:zone_separation] if args.key?(:zone_separation)
902
+ @zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
903
+ @zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
904
+ end
905
+ end
906
+
749
907
  # Response message for the list available versions request.
750
908
  class ListAvailableVersionsResponse
751
909
  include Google::Apis::Core::Hashable
@@ -953,6 +1111,126 @@ module Google
953
1111
  end
954
1112
  end
955
1113
 
1114
+ #
1115
+ class LocationAssignment
1116
+ include Google::Apis::Core::Hashable
1117
+
1118
+ #
1119
+ # Corresponds to the JSON property `location`
1120
+ # @return [String]
1121
+ attr_accessor :location
1122
+
1123
+ #
1124
+ # Corresponds to the JSON property `locationType`
1125
+ # @return [String]
1126
+ attr_accessor :location_type
1127
+
1128
+ def initialize(**args)
1129
+ update!(**args)
1130
+ end
1131
+
1132
+ # Update properties of this object
1133
+ def update!(**args)
1134
+ @location = args[:location] if args.key?(:location)
1135
+ @location_type = args[:location_type] if args.key?(:location_type)
1136
+ end
1137
+ end
1138
+
1139
+ #
1140
+ class LocationData
1141
+ include Google::Apis::Core::Hashable
1142
+
1143
+ # Policy ID that identified data placement in Blobstore as per go/blobstore-user-
1144
+ # guide#data-metadata-placement-and-failure-domains
1145
+ # Corresponds to the JSON property `blobstoreLocation`
1146
+ # @return [Google::Apis::DatafusionV1beta1::BlobstoreLocation]
1147
+ attr_accessor :blobstore_location
1148
+
1149
+ #
1150
+ # Corresponds to the JSON property `childAssetLocation`
1151
+ # @return [Google::Apis::DatafusionV1beta1::CloudAssetComposition]
1152
+ attr_accessor :child_asset_location
1153
+
1154
+ #
1155
+ # Corresponds to the JSON property `directLocation`
1156
+ # @return [Google::Apis::DatafusionV1beta1::DirectLocationAssignment]
1157
+ attr_accessor :direct_location
1158
+
1159
+ #
1160
+ # Corresponds to the JSON property `gcpProjectProxy`
1161
+ # @return [Google::Apis::DatafusionV1beta1::TenantProjectProxy]
1162
+ attr_accessor :gcp_project_proxy
1163
+
1164
+ # Message describing that the location of the customer resource is tied to
1165
+ # placer allocations
1166
+ # Corresponds to the JSON property `placerLocation`
1167
+ # @return [Google::Apis::DatafusionV1beta1::PlacerLocation]
1168
+ attr_accessor :placer_location
1169
+
1170
+ #
1171
+ # Corresponds to the JSON property `spannerLocation`
1172
+ # @return [Google::Apis::DatafusionV1beta1::SpannerLocation]
1173
+ attr_accessor :spanner_location
1174
+
1175
+ def initialize(**args)
1176
+ update!(**args)
1177
+ end
1178
+
1179
+ # Update properties of this object
1180
+ def update!(**args)
1181
+ @blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
1182
+ @child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
1183
+ @direct_location = args[:direct_location] if args.key?(:direct_location)
1184
+ @gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
1185
+ @placer_location = args[:placer_location] if args.key?(:placer_location)
1186
+ @spanner_location = args[:spanner_location] if args.key?(:spanner_location)
1187
+ end
1188
+ end
1189
+
1190
+ # Maintenance policy of the instance.
1191
+ class MaintenancePolicy
1192
+ include Google::Apis::Core::Hashable
1193
+
1194
+ # Represents an arbitrary window of time.
1195
+ # Corresponds to the JSON property `maintenanceExclusionWindow`
1196
+ # @return [Google::Apis::DatafusionV1beta1::TimeWindow]
1197
+ attr_accessor :maintenance_exclusion_window
1198
+
1199
+ # Maintenance window of the instance.
1200
+ # Corresponds to the JSON property `maintenanceWindow`
1201
+ # @return [Google::Apis::DatafusionV1beta1::MaintenanceWindow]
1202
+ attr_accessor :maintenance_window
1203
+
1204
+ def initialize(**args)
1205
+ update!(**args)
1206
+ end
1207
+
1208
+ # Update properties of this object
1209
+ def update!(**args)
1210
+ @maintenance_exclusion_window = args[:maintenance_exclusion_window] if args.key?(:maintenance_exclusion_window)
1211
+ @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
1212
+ end
1213
+ end
1214
+
1215
+ # Maintenance window of the instance.
1216
+ class MaintenanceWindow
1217
+ include Google::Apis::Core::Hashable
1218
+
1219
+ # Represents an arbitrary window of time that recurs.
1220
+ # Corresponds to the JSON property `recurringTimeWindow`
1221
+ # @return [Google::Apis::DatafusionV1beta1::RecurringTimeWindow]
1222
+ attr_accessor :recurring_time_window
1223
+
1224
+ def initialize(**args)
1225
+ update!(**args)
1226
+ end
1227
+
1228
+ # Update properties of this object
1229
+ def update!(**args)
1230
+ @recurring_time_window = args[:recurring_time_window] if args.key?(:recurring_time_window)
1231
+ end
1232
+ end
1233
+
956
1234
  # Represents the information of a namespace
957
1235
  class Namespace
958
1236
  include Google::Apis::Core::Hashable
@@ -1160,34 +1438,16 @@ module Google
1160
1438
  end
1161
1439
  end
1162
1440
 
1163
- # Persistent Disk service-specific Data. Contains information that may not be
1164
- # appropriate for the generic DRZ Augmented View. This currently includes LSV
1165
- # Colossus Roots and GCS Buckets.
1166
- class PersistentDiskData
1441
+ # Message describing that the location of the customer resource is tied to
1442
+ # placer allocations
1443
+ class PlacerLocation
1167
1444
  include Google::Apis::Core::Hashable
1168
1445
 
1169
- # Path to Colossus root for an LSV. NOTE: Unlike `cr_ti_guris` and `
1170
- # cr_ti_prefixes`, the field `cfs_roots` below does not need to be a GUri or
1171
- # GUri prefix. It can simply be any valid CFS or CFS2 Path. The DRZ KR8 SIG has
1172
- # more details overall, but generally the `cfs_roots` provided here should be
1173
- # scoped to an individual Persistent Disk. An example for a PD Disk with a disk
1174
- # ID 3277719120423414466, follows: * `cr_ti_guris` could be ‘/cfs2/pj/pd-cloud-
1175
- # prod’ as this is a valid GUri present in the DG KB and contains enough
1176
- # information to perform location monitoring and scope ownership of the
1177
- # Production Object. * `cfs_roots` would be: ‘/cfs2/pj/pd-cloud-staging/
1178
- # lsv000001234@/ lsv/projects~773365403387~zones~2700~disks~3277719120423414466 ~
1179
- # bank-blue-careful-3526-lsv00054DB1B7254BA3/’ as this allows us to enumerate
1180
- # the files on CFS2 that belong to an individual Disk.
1181
- # Corresponds to the JSON property `cfsRoots`
1182
- # @return [Array<String>]
1183
- attr_accessor :cfs_roots
1184
-
1185
- # The GCS Buckets that back this snapshot or image. This is required as `
1186
- # cr_ti_prefixes` and `cr_ti_guris` only accept TI resources. This should be the
1187
- # globally unique bucket name.
1188
- # Corresponds to the JSON property `gcsBucketNames`
1189
- # @return [Array<String>]
1190
- attr_accessor :gcs_bucket_names
1446
+ # Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
1447
+ # root/my-dir")
1448
+ # Corresponds to the JSON property `placerConfig`
1449
+ # @return [String]
1450
+ attr_accessor :placer_config
1191
1451
 
1192
1452
  def initialize(**args)
1193
1453
  update!(**args)
@@ -1195,8 +1455,7 @@ module Google
1195
1455
 
1196
1456
  # Update properties of this object
1197
1457
  def update!(**args)
1198
- @cfs_roots = args[:cfs_roots] if args.key?(:cfs_roots)
1199
- @gcs_bucket_names = args[:gcs_bucket_names] if args.key?(:gcs_bucket_names)
1458
+ @placer_config = args[:placer_config] if args.key?(:placer_config)
1200
1459
  end
1201
1460
  end
1202
1461
 
@@ -1338,34 +1597,67 @@ module Google
1338
1597
  end
1339
1598
  end
1340
1599
 
1341
- # Request message for RemoveIamPolicy method.
1342
- class RemoveIamPolicyRequest
1600
+ # Represents an arbitrary window of time that recurs.
1601
+ class RecurringTimeWindow
1343
1602
  include Google::Apis::Core::Hashable
1344
1603
 
1604
+ # Required. An RRULE with format [RFC-5545](https://tools.ietf.org/html/rfc5545#
1605
+ # section-3.8.5.3) for how this window reccurs. They go on for the span of time
1606
+ # between the start and end time. The only supported FREQ value is "WEEKLY". To
1607
+ # have something repeat every weekday, use: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR".
1608
+ # This specifies how frequently the window starts. To have a 9 am - 5 pm UTC-4
1609
+ # window every weekday, use something like: ``` start time = 2019-01-01T09:00:00-
1610
+ # 0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,
1611
+ # WE,TH,FR ```
1612
+ # Corresponds to the JSON property `recurrence`
1613
+ # @return [String]
1614
+ attr_accessor :recurrence
1615
+
1616
+ # Represents an arbitrary window of time.
1617
+ # Corresponds to the JSON property `window`
1618
+ # @return [Google::Apis::DatafusionV1beta1::TimeWindow]
1619
+ attr_accessor :window
1620
+
1345
1621
  def initialize(**args)
1346
1622
  update!(**args)
1347
1623
  end
1348
1624
 
1349
1625
  # Update properties of this object
1350
1626
  def update!(**args)
1627
+ @recurrence = args[:recurrence] if args.key?(:recurrence)
1628
+ @window = args[:window] if args.key?(:window)
1351
1629
  end
1352
1630
  end
1353
1631
 
1354
- # Response message for RemoveIamPolicy method.
1355
- class RemoveIamPolicyResponse
1632
+ # To be used for specifying the intended distribution of regional compute.
1633
+ # googleapis.com/InstanceGroupManager instances
1634
+ class RegionalMigDistributionPolicy
1356
1635
  include Google::Apis::Core::Hashable
1357
1636
 
1637
+ # The shape in which the group converges around distribution of resources.
1638
+ # Instance of proto2 enum
1639
+ # Corresponds to the JSON property `targetShape`
1640
+ # @return [Fixnum]
1641
+ attr_accessor :target_shape
1642
+
1643
+ # Cloud zones used by regional MIG to create instances.
1644
+ # Corresponds to the JSON property `zones`
1645
+ # @return [Array<Google::Apis::DatafusionV1beta1::ZoneConfiguration>]
1646
+ attr_accessor :zones
1647
+
1358
1648
  def initialize(**args)
1359
1649
  update!(**args)
1360
1650
  end
1361
1651
 
1362
1652
  # Update properties of this object
1363
1653
  def update!(**args)
1654
+ @target_shape = args[:target_shape] if args.key?(:target_shape)
1655
+ @zones = args[:zones] if args.key?(:zones)
1364
1656
  end
1365
1657
  end
1366
1658
 
1367
- # Request message for restarting a Data Fusion instance.
1368
- class RestartInstanceRequest
1659
+ # Request message for RemoveIamPolicy method.
1660
+ class RemoveIamPolicyRequest
1369
1661
  include Google::Apis::Core::Hashable
1370
1662
 
1371
1663
  def initialize(**args)
@@ -1377,18 +1669,22 @@ module Google
1377
1669
  end
1378
1670
  end
1379
1671
 
1380
- # This message defines service-specific data that certain service teams must
1381
- # provide as part of the Data Residency Augmented View for a resource. Next ID:
1382
- # 2
1383
- class ServiceData
1672
+ # Response message for RemoveIamPolicy method.
1673
+ class RemoveIamPolicyResponse
1384
1674
  include Google::Apis::Core::Hashable
1385
1675
 
1386
- # Persistent Disk service-specific Data. Contains information that may not be
1387
- # appropriate for the generic DRZ Augmented View. This currently includes LSV
1388
- # Colossus Roots and GCS Buckets.
1389
- # Corresponds to the JSON property `pd`
1390
- # @return [Google::Apis::DatafusionV1beta1::PersistentDiskData]
1391
- attr_accessor :pd
1676
+ def initialize(**args)
1677
+ update!(**args)
1678
+ end
1679
+
1680
+ # Update properties of this object
1681
+ def update!(**args)
1682
+ end
1683
+ end
1684
+
1685
+ # Request message for restarting a Data Fusion instance.
1686
+ class RestartInstanceRequest
1687
+ include Google::Apis::Core::Hashable
1392
1688
 
1393
1689
  def initialize(**args)
1394
1690
  update!(**args)
@@ -1396,7 +1692,6 @@ module Google
1396
1692
 
1397
1693
  # Update properties of this object
1398
1694
  def update!(**args)
1399
- @pd = args[:pd] if args.key?(:pd)
1400
1695
  end
1401
1696
  end
1402
1697
 
@@ -1453,6 +1748,32 @@ module Google
1453
1748
  end
1454
1749
  end
1455
1750
 
1751
+ #
1752
+ class SpannerLocation
1753
+ include Google::Apis::Core::Hashable
1754
+
1755
+ # Set of backups used by the resource with name in the same format as what is
1756
+ # available at http://table/spanner_automon.backup_metadata
1757
+ # Corresponds to the JSON property `backupName`
1758
+ # @return [Array<String>]
1759
+ attr_accessor :backup_name
1760
+
1761
+ # Set of databases used by the resource in format /span//
1762
+ # Corresponds to the JSON property `dbName`
1763
+ # @return [Array<String>]
1764
+ attr_accessor :db_name
1765
+
1766
+ def initialize(**args)
1767
+ update!(**args)
1768
+ end
1769
+
1770
+ # Update properties of this object
1771
+ def update!(**args)
1772
+ @backup_name = args[:backup_name] if args.key?(:backup_name)
1773
+ @db_name = args[:db_name] if args.key?(:db_name)
1774
+ end
1775
+ end
1776
+
1456
1777
  # The `Status` type defines a logical error model that is suitable for different
1457
1778
  # programming environments, including REST APIs and RPC APIs. It is used by [
1458
1779
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -1492,6 +1813,25 @@ module Google
1492
1813
  end
1493
1814
  end
1494
1815
 
1816
+ #
1817
+ class TenantProjectProxy
1818
+ include Google::Apis::Core::Hashable
1819
+
1820
+ #
1821
+ # Corresponds to the JSON property `projectNumbers`
1822
+ # @return [Array<String>]
1823
+ attr_accessor :project_numbers
1824
+
1825
+ def initialize(**args)
1826
+ update!(**args)
1827
+ end
1828
+
1829
+ # Update properties of this object
1830
+ def update!(**args)
1831
+ @project_numbers = args[:project_numbers] if args.key?(:project_numbers)
1832
+ end
1833
+ end
1834
+
1495
1835
  # Request message for `TestIamPermissions` method.
1496
1836
  class TestIamPermissionsRequest
1497
1837
  include Google::Apis::Core::Hashable
@@ -1532,6 +1872,34 @@ module Google
1532
1872
  end
1533
1873
  end
1534
1874
 
1875
+ # Represents an arbitrary window of time.
1876
+ class TimeWindow
1877
+ include Google::Apis::Core::Hashable
1878
+
1879
+ # Required. The end time of the time window provided in [RFC 3339](https://www.
1880
+ # ietf.org/rfc/rfc3339.txt) format. The end time should take place after the
1881
+ # start time. Example: "2024-01-02T12:04:06-06:00"
1882
+ # Corresponds to the JSON property `endTime`
1883
+ # @return [String]
1884
+ attr_accessor :end_time
1885
+
1886
+ # Required. The start time of the time window provided in [RFC 3339](https://www.
1887
+ # ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:00"
1888
+ # Corresponds to the JSON property `startTime`
1889
+ # @return [String]
1890
+ attr_accessor :start_time
1891
+
1892
+ def initialize(**args)
1893
+ update!(**args)
1894
+ end
1895
+
1896
+ # Update properties of this object
1897
+ def update!(**args)
1898
+ @end_time = args[:end_time] if args.key?(:end_time)
1899
+ @start_time = args[:start_time] if args.key?(:start_time)
1900
+ end
1901
+ end
1902
+
1535
1903
  # Request message for upgrading a Data Fusion instance. To change the instance
1536
1904
  # properties, instance update should be used.
1537
1905
  class UpgradeInstanceRequest
@@ -1583,6 +1951,25 @@ module Google
1583
1951
  @version_number = args[:version_number] if args.key?(:version_number)
1584
1952
  end
1585
1953
  end
1954
+
1955
+ #
1956
+ class ZoneConfiguration
1957
+ include Google::Apis::Core::Hashable
1958
+
1959
+ #
1960
+ # Corresponds to the JSON property `zone`
1961
+ # @return [String]
1962
+ attr_accessor :zone
1963
+
1964
+ def initialize(**args)
1965
+ update!(**args)
1966
+ end
1967
+
1968
+ # Update properties of this object
1969
+ def update!(**args)
1970
+ @zone = args[:zone] if args.key?(:zone)
1971
+ end
1972
+ end
1586
1973
  end
1587
1974
  end
1588
1975
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatafusionV1beta1
18
18
  # Version of the google-apis-datafusion_v1beta1 gem
19
- GEM_VERSION = "0.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,6 +112,12 @@ 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 IamPolicy
92
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
123
 
@@ -100,6 +130,12 @@ module Google
100
130
  include Google::Apis::Core::JsonObjectSupport
101
131
  end
102
132
 
133
+ class IsolationExpectations
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
103
139
  class ListAvailableVersionsResponse
104
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
141
 
@@ -142,6 +178,30 @@ module Google
142
178
  include Google::Apis::Core::JsonObjectSupport
143
179
  end
144
180
 
181
+ class LocationAssignment
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class LocationData
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
193
+ class MaintenancePolicy
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class MaintenanceWindow
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
145
205
  class Namespace
146
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
207
 
@@ -166,7 +226,7 @@ module Google
166
226
  include Google::Apis::Core::JsonObjectSupport
167
227
  end
168
228
 
169
- class PersistentDiskData
229
+ class PlacerLocation
170
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
231
 
172
232
  include Google::Apis::Core::JsonObjectSupport
@@ -184,6 +244,18 @@ module Google
184
244
  include Google::Apis::Core::JsonObjectSupport
185
245
  end
186
246
 
247
+ class RecurringTimeWindow
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
253
+ class RegionalMigDistributionPolicy
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
187
259
  class RemoveIamPolicyRequest
188
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
261
 
@@ -202,13 +274,13 @@ module Google
202
274
  include Google::Apis::Core::JsonObjectSupport
203
275
  end
204
276
 
205
- class ServiceData
277
+ class SetIamPolicyRequest
206
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
279
 
208
280
  include Google::Apis::Core::JsonObjectSupport
209
281
  end
210
282
 
211
- class SetIamPolicyRequest
283
+ class SpannerLocation
212
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
285
 
214
286
  include Google::Apis::Core::JsonObjectSupport
@@ -220,6 +292,12 @@ module Google
220
292
  include Google::Apis::Core::JsonObjectSupport
221
293
  end
222
294
 
295
+ class TenantProjectProxy
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
223
301
  class TestIamPermissionsRequest
224
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
303
 
@@ -232,6 +310,12 @@ module Google
232
310
  include Google::Apis::Core::JsonObjectSupport
233
311
  end
234
312
 
313
+ class TimeWindow
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
235
319
  class UpgradeInstanceRequest
236
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
321
 
@@ -244,6 +328,12 @@ module Google
244
328
  include Google::Apis::Core::JsonObjectSupport
245
329
  end
246
330
 
331
+ class ZoneConfiguration
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
247
337
  class Accelerator
248
338
  # @private
249
339
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -252,6 +342,20 @@ module Google
252
342
  end
253
343
  end
254
344
 
345
+ class AssetLocation
346
+ # @private
347
+ class Representation < Google::Apis::Core::JsonRepresentation
348
+ property :expected, as: 'expected', class: Google::Apis::DatafusionV1beta1::IsolationExpectations, decorator: Google::Apis::DatafusionV1beta1::IsolationExpectations::Representation
349
+
350
+ collection :extra_parameters, as: 'extraParameters', class: Google::Apis::DatafusionV1beta1::ExtraParameter, decorator: Google::Apis::DatafusionV1beta1::ExtraParameter::Representation
351
+
352
+ collection :location_data, as: 'locationData', class: Google::Apis::DatafusionV1beta1::LocationData, decorator: Google::Apis::DatafusionV1beta1::LocationData::Representation
353
+
354
+ collection :parent_asset, as: 'parentAsset', class: Google::Apis::DatafusionV1beta1::CloudAsset, decorator: Google::Apis::DatafusionV1beta1::CloudAsset::Representation
355
+
356
+ end
357
+ end
358
+
255
359
  class AuditConfig
256
360
  # @private
257
361
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -279,12 +383,35 @@ module Google
279
383
  end
280
384
  end
281
385
 
386
+ class BlobstoreLocation
387
+ # @private
388
+ class Representation < Google::Apis::Core::JsonRepresentation
389
+ collection :policy_id, as: 'policyId'
390
+ end
391
+ end
392
+
282
393
  class CancelOperationRequest
283
394
  # @private
284
395
  class Representation < Google::Apis::Core::JsonRepresentation
285
396
  end
286
397
  end
287
398
 
399
+ class CloudAsset
400
+ # @private
401
+ class Representation < Google::Apis::Core::JsonRepresentation
402
+ property :asset_name, as: 'assetName'
403
+ property :asset_type, as: 'assetType'
404
+ end
405
+ end
406
+
407
+ class CloudAssetComposition
408
+ # @private
409
+ class Representation < Google::Apis::Core::JsonRepresentation
410
+ collection :child_asset, as: 'childAsset', class: Google::Apis::DatafusionV1beta1::CloudAsset, decorator: Google::Apis::DatafusionV1beta1::CloudAsset::Representation
411
+
412
+ end
413
+ end
414
+
288
415
  class CryptoKeyConfig
289
416
  # @private
290
417
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -292,14 +419,11 @@ module Google
292
419
  end
293
420
  end
294
421
 
295
- class DataResidencyAugmentedView
422
+ class DirectLocationAssignment
296
423
  # @private
297
424
  class Representation < Google::Apis::Core::JsonRepresentation
298
- collection :cr_gopo_guris, as: 'crGopoGuris'
299
- collection :cr_gopo_prefixes, as: 'crGopoPrefixes'
300
- property :service_data, as: 'serviceData', class: Google::Apis::DatafusionV1beta1::ServiceData, decorator: Google::Apis::DatafusionV1beta1::ServiceData::Representation
425
+ collection :location, as: 'location', class: Google::Apis::DatafusionV1beta1::LocationAssignment, decorator: Google::Apis::DatafusionV1beta1::LocationAssignment::Representation
301
426
 
302
- collection :tp_ids, as: 'tpIds'
303
427
  end
304
428
  end
305
429
 
@@ -338,6 +462,14 @@ module Google
338
462
  end
339
463
  end
340
464
 
465
+ class ExtraParameter
466
+ # @private
467
+ class Representation < Google::Apis::Core::JsonRepresentation
468
+ property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::DatafusionV1beta1::RegionalMigDistributionPolicy, decorator: Google::Apis::DatafusionV1beta1::RegionalMigDistributionPolicy::Representation
469
+
470
+ end
471
+ end
472
+
341
473
  class IamPolicy
342
474
  # @private
343
475
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -372,6 +504,8 @@ module Google
372
504
 
373
505
  property :gcs_bucket, as: 'gcsBucket'
374
506
  hash :labels, as: 'labels'
507
+ property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1beta1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1beta1::MaintenancePolicy::Representation
508
+
375
509
  property :name, as: 'name'
376
510
  property :network_config, as: 'networkConfig', class: Google::Apis::DatafusionV1beta1::NetworkConfig, decorator: Google::Apis::DatafusionV1beta1::NetworkConfig::Representation
377
511
 
@@ -393,6 +527,19 @@ module Google
393
527
  end
394
528
  end
395
529
 
530
+ class IsolationExpectations
531
+ # @private
532
+ class Representation < Google::Apis::Core::JsonRepresentation
533
+ property :zi_org_policy, as: 'ziOrgPolicy'
534
+ property :zi_region_policy, as: 'ziRegionPolicy'
535
+ property :zi_region_state, as: 'ziRegionState'
536
+ property :zone_isolation, as: 'zoneIsolation'
537
+ property :zone_separation, as: 'zoneSeparation'
538
+ property :zs_org_policy, as: 'zsOrgPolicy'
539
+ property :zs_region_state, as: 'zsRegionState'
540
+ end
541
+ end
542
+
396
543
  class ListAvailableVersionsResponse
397
544
  # @private
398
545
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -459,6 +606,50 @@ module Google
459
606
  end
460
607
  end
461
608
 
609
+ class LocationAssignment
610
+ # @private
611
+ class Representation < Google::Apis::Core::JsonRepresentation
612
+ property :location, as: 'location'
613
+ property :location_type, as: 'locationType'
614
+ end
615
+ end
616
+
617
+ class LocationData
618
+ # @private
619
+ class Representation < Google::Apis::Core::JsonRepresentation
620
+ property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::DatafusionV1beta1::BlobstoreLocation, decorator: Google::Apis::DatafusionV1beta1::BlobstoreLocation::Representation
621
+
622
+ property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::DatafusionV1beta1::CloudAssetComposition, decorator: Google::Apis::DatafusionV1beta1::CloudAssetComposition::Representation
623
+
624
+ property :direct_location, as: 'directLocation', class: Google::Apis::DatafusionV1beta1::DirectLocationAssignment, decorator: Google::Apis::DatafusionV1beta1::DirectLocationAssignment::Representation
625
+
626
+ property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::DatafusionV1beta1::TenantProjectProxy, decorator: Google::Apis::DatafusionV1beta1::TenantProjectProxy::Representation
627
+
628
+ property :placer_location, as: 'placerLocation', class: Google::Apis::DatafusionV1beta1::PlacerLocation, decorator: Google::Apis::DatafusionV1beta1::PlacerLocation::Representation
629
+
630
+ property :spanner_location, as: 'spannerLocation', class: Google::Apis::DatafusionV1beta1::SpannerLocation, decorator: Google::Apis::DatafusionV1beta1::SpannerLocation::Representation
631
+
632
+ end
633
+ end
634
+
635
+ class MaintenancePolicy
636
+ # @private
637
+ class Representation < Google::Apis::Core::JsonRepresentation
638
+ property :maintenance_exclusion_window, as: 'maintenanceExclusionWindow', class: Google::Apis::DatafusionV1beta1::TimeWindow, decorator: Google::Apis::DatafusionV1beta1::TimeWindow::Representation
639
+
640
+ property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::DatafusionV1beta1::MaintenanceWindow, decorator: Google::Apis::DatafusionV1beta1::MaintenanceWindow::Representation
641
+
642
+ end
643
+ end
644
+
645
+ class MaintenanceWindow
646
+ # @private
647
+ class Representation < Google::Apis::Core::JsonRepresentation
648
+ property :recurring_time_window, as: 'recurringTimeWindow', class: Google::Apis::DatafusionV1beta1::RecurringTimeWindow, decorator: Google::Apis::DatafusionV1beta1::RecurringTimeWindow::Representation
649
+
650
+ end
651
+ end
652
+
462
653
  class Namespace
463
654
  # @private
464
655
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -505,11 +696,10 @@ module Google
505
696
  end
506
697
  end
507
698
 
508
- class PersistentDiskData
699
+ class PlacerLocation
509
700
  # @private
510
701
  class Representation < Google::Apis::Core::JsonRepresentation
511
- collection :cfs_roots, as: 'cfsRoots'
512
- collection :gcs_bucket_names, as: 'gcsBucketNames'
702
+ property :placer_config, as: 'placerConfig'
513
703
  end
514
704
  end
515
705
 
@@ -534,29 +724,39 @@ module Google
534
724
  end
535
725
  end
536
726
 
537
- class RemoveIamPolicyRequest
727
+ class RecurringTimeWindow
538
728
  # @private
539
729
  class Representation < Google::Apis::Core::JsonRepresentation
730
+ property :recurrence, as: 'recurrence'
731
+ property :window, as: 'window', class: Google::Apis::DatafusionV1beta1::TimeWindow, decorator: Google::Apis::DatafusionV1beta1::TimeWindow::Representation
732
+
540
733
  end
541
734
  end
542
735
 
543
- class RemoveIamPolicyResponse
736
+ class RegionalMigDistributionPolicy
544
737
  # @private
545
738
  class Representation < Google::Apis::Core::JsonRepresentation
739
+ property :target_shape, as: 'targetShape'
740
+ collection :zones, as: 'zones', class: Google::Apis::DatafusionV1beta1::ZoneConfiguration, decorator: Google::Apis::DatafusionV1beta1::ZoneConfiguration::Representation
741
+
546
742
  end
547
743
  end
548
744
 
549
- class RestartInstanceRequest
745
+ class RemoveIamPolicyRequest
550
746
  # @private
551
747
  class Representation < Google::Apis::Core::JsonRepresentation
552
748
  end
553
749
  end
554
750
 
555
- class ServiceData
751
+ class RemoveIamPolicyResponse
556
752
  # @private
557
753
  class Representation < Google::Apis::Core::JsonRepresentation
558
- property :pd, as: 'pd', class: Google::Apis::DatafusionV1beta1::PersistentDiskData, decorator: Google::Apis::DatafusionV1beta1::PersistentDiskData::Representation
754
+ end
755
+ end
559
756
 
757
+ class RestartInstanceRequest
758
+ # @private
759
+ class Representation < Google::Apis::Core::JsonRepresentation
560
760
  end
561
761
  end
562
762
 
@@ -569,6 +769,14 @@ module Google
569
769
  end
570
770
  end
571
771
 
772
+ class SpannerLocation
773
+ # @private
774
+ class Representation < Google::Apis::Core::JsonRepresentation
775
+ collection :backup_name, as: 'backupName'
776
+ collection :db_name, as: 'dbName'
777
+ end
778
+ end
779
+
572
780
  class Status
573
781
  # @private
574
782
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -578,6 +786,13 @@ module Google
578
786
  end
579
787
  end
580
788
 
789
+ class TenantProjectProxy
790
+ # @private
791
+ class Representation < Google::Apis::Core::JsonRepresentation
792
+ collection :project_numbers, as: 'projectNumbers'
793
+ end
794
+ end
795
+
581
796
  class TestIamPermissionsRequest
582
797
  # @private
583
798
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -592,6 +807,14 @@ module Google
592
807
  end
593
808
  end
594
809
 
810
+ class TimeWindow
811
+ # @private
812
+ class Representation < Google::Apis::Core::JsonRepresentation
813
+ property :end_time, as: 'endTime'
814
+ property :start_time, as: 'startTime'
815
+ end
816
+ end
817
+
595
818
  class UpgradeInstanceRequest
596
819
  # @private
597
820
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -607,6 +830,13 @@ module Google
607
830
  property :version_number, as: 'versionNumber'
608
831
  end
609
832
  end
833
+
834
+ class ZoneConfiguration
835
+ # @private
836
+ class Representation < Google::Apis::Core::JsonRepresentation
837
+ property :zone, as: 'zone'
838
+ end
839
+ end
610
840
  end
611
841
  end
612
842
  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, 'v1beta1/{+name}/locations', options)
124
122
  command.response_representation = Google::Apis::DatafusionV1beta1::ListLocationsResponse::Representation
125
123
  command.response_class = Google::Apis::DatafusionV1beta1::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_v1beta1
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-19 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []