google-apis-datafusion_v1beta1 0.32.0 → 0.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0c6e3a11e9c74e2f978309834212a90c4119f0a3aa5e98400403409595fc0ab
4
- data.tar.gz: 184e6b863349e860ebb33401585a6570d481e65f17c54ef5a9ab305fe146607d
3
+ metadata.gz: 541093fffe1493eb5864237874284772ad82a967e4d95178b06581e89e7c8a51
4
+ data.tar.gz: e2c2931e35e455d70809df909e5c48aacdcf35f32dedbb05a31d19fcbf67f972
5
5
  SHA512:
6
- metadata.gz: 5697d698cfc460e2bc760e7548aa02d609fd1c6d563471a10973491aa97fc5b28eff7e3bbbee0bc506650955270bd51ae47e9e4c091b9d3c9c0099c5a57c9b0e
7
- data.tar.gz: d6ef779ba8b97bc6d3f415845a58ed40de9a9fe1ac5ce6ff6238fc51c20e6f8c5678baa23fe25a8303aa9b0df095c4a65f4eca5a252a514fd42128597b866a33
6
+ metadata.gz: 902fcd951874221056867bacd48440195a2d70f05cb99c1e27f7092252f7e4cd8439c7dd64a00984dc0ef15565e2f139ccc5abbe3346e5ca4a5513af1f137f69
7
+ data.tar.gz: 054bc0413fccbc6ad0d123a3fc20d4ac57bb73dac20b1e0e998a51d7e7ad13cf36144c683e8f7b70cef2243e2380e4b71f477c5cbcfda314e7eff2dee3ae9d75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.32.0 (2024-06-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20240618
@@ -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,6 +358,25 @@ module Google
254
358
  end
255
359
  end
256
360
 
361
+ #
362
+ class DirectLocationAssignment
363
+ include Google::Apis::Core::Hashable
364
+
365
+ #
366
+ # Corresponds to the JSON property `location`
367
+ # @return [Array<Google::Apis::DatafusionV1beta1::LocationAssignment>]
368
+ attr_accessor :location
369
+
370
+ def initialize(**args)
371
+ update!(**args)
372
+ end
373
+
374
+ # Update properties of this object
375
+ def update!(**args)
376
+ @location = args[:location] if args.key?(:location)
377
+ end
378
+ end
379
+
257
380
  # DNS peering configuration. These configurations are used to create DNS peering
258
381
  # with the customer Cloud DNS.
259
382
  class DnsPeering
@@ -396,6 +519,26 @@ module Google
396
519
  end
397
520
  end
398
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
+
399
542
  # IAMPolicy encapsulates the IAM policy name, definition and status of policy
400
543
  # fetching.
401
544
  class IamPolicy
@@ -704,6 +847,63 @@ module Google
704
847
  end
705
848
  end
706
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
+
707
907
  # Response message for the list available versions request.
708
908
  class ListAvailableVersionsResponse
709
909
  include Google::Apis::Core::Hashable
@@ -911,6 +1111,82 @@ module Google
911
1111
  end
912
1112
  end
913
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
+
914
1190
  # Maintenance policy of the instance.
915
1191
  class MaintenancePolicy
916
1192
  include Google::Apis::Core::Hashable
@@ -1162,6 +1438,27 @@ module Google
1162
1438
  end
1163
1439
  end
1164
1440
 
1441
+ # Message describing that the location of the customer resource is tied to
1442
+ # placer allocations
1443
+ class PlacerLocation
1444
+ include Google::Apis::Core::Hashable
1445
+
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
1451
+
1452
+ def initialize(**args)
1453
+ update!(**args)
1454
+ end
1455
+
1456
+ # Update properties of this object
1457
+ def update!(**args)
1458
+ @placer_config = args[:placer_config] if args.key?(:placer_config)
1459
+ end
1460
+ end
1461
+
1165
1462
  # An Identity and Access Management (IAM) policy, which specifies access
1166
1463
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1167
1464
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -1332,6 +1629,33 @@ module Google
1332
1629
  end
1333
1630
  end
1334
1631
 
1632
+ # To be used for specifying the intended distribution of regional compute.
1633
+ # googleapis.com/InstanceGroupManager instances
1634
+ class RegionalMigDistributionPolicy
1635
+ include Google::Apis::Core::Hashable
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
+
1648
+ def initialize(**args)
1649
+ update!(**args)
1650
+ end
1651
+
1652
+ # Update properties of this object
1653
+ def update!(**args)
1654
+ @target_shape = args[:target_shape] if args.key?(:target_shape)
1655
+ @zones = args[:zones] if args.key?(:zones)
1656
+ end
1657
+ end
1658
+
1335
1659
  # Request message for RemoveIamPolicy method.
1336
1660
  class RemoveIamPolicyRequest
1337
1661
  include Google::Apis::Core::Hashable
@@ -1424,6 +1748,32 @@ module Google
1424
1748
  end
1425
1749
  end
1426
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
+
1427
1777
  # The `Status` type defines a logical error model that is suitable for different
1428
1778
  # programming environments, including REST APIs and RPC APIs. It is used by [
1429
1779
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -1463,6 +1813,25 @@ module Google
1463
1813
  end
1464
1814
  end
1465
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
+
1466
1835
  # Request message for `TestIamPermissions` method.
1467
1836
  class TestIamPermissionsRequest
1468
1837
  include Google::Apis::Core::Hashable
@@ -1582,6 +1951,25 @@ module Google
1582
1951
  @version_number = args[:version_number] if args.key?(:version_number)
1583
1952
  end
1584
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
1585
1973
  end
1586
1974
  end
1587
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.32.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 = "20240618"
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,18 +52,42 @@ 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
 
85
+ class DirectLocationAssignment
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
61
91
  class DnsPeering
62
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
93
 
@@ -82,6 +112,12 @@ module Google
82
112
  include Google::Apis::Core::JsonObjectSupport
83
113
  end
84
114
 
115
+ class ExtraParameter
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
85
121
  class IamPolicy
86
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
123
 
@@ -94,6 +130,12 @@ module Google
94
130
  include Google::Apis::Core::JsonObjectSupport
95
131
  end
96
132
 
133
+ class IsolationExpectations
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
97
139
  class ListAvailableVersionsResponse
98
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
141
 
@@ -136,6 +178,18 @@ module Google
136
178
  include Google::Apis::Core::JsonObjectSupport
137
179
  end
138
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
+
139
193
  class MaintenancePolicy
140
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
195
 
@@ -172,6 +226,12 @@ module Google
172
226
  include Google::Apis::Core::JsonObjectSupport
173
227
  end
174
228
 
229
+ class PlacerLocation
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
175
235
  class Policy
176
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
237
 
@@ -190,6 +250,12 @@ module Google
190
250
  include Google::Apis::Core::JsonObjectSupport
191
251
  end
192
252
 
253
+ class RegionalMigDistributionPolicy
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
193
259
  class RemoveIamPolicyRequest
194
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
261
 
@@ -214,12 +280,24 @@ module Google
214
280
  include Google::Apis::Core::JsonObjectSupport
215
281
  end
216
282
 
283
+ class SpannerLocation
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
217
289
  class Status
218
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
291
 
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
 
@@ -250,6 +328,12 @@ module Google
250
328
  include Google::Apis::Core::JsonObjectSupport
251
329
  end
252
330
 
331
+ class ZoneConfiguration
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
253
337
  class Accelerator
254
338
  # @private
255
339
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -258,6 +342,20 @@ module Google
258
342
  end
259
343
  end
260
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
+
261
359
  class AuditConfig
262
360
  # @private
263
361
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -285,12 +383,35 @@ module Google
285
383
  end
286
384
  end
287
385
 
386
+ class BlobstoreLocation
387
+ # @private
388
+ class Representation < Google::Apis::Core::JsonRepresentation
389
+ collection :policy_id, as: 'policyId'
390
+ end
391
+ end
392
+
288
393
  class CancelOperationRequest
289
394
  # @private
290
395
  class Representation < Google::Apis::Core::JsonRepresentation
291
396
  end
292
397
  end
293
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
+
294
415
  class CryptoKeyConfig
295
416
  # @private
296
417
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -298,6 +419,14 @@ module Google
298
419
  end
299
420
  end
300
421
 
422
+ class DirectLocationAssignment
423
+ # @private
424
+ class Representation < Google::Apis::Core::JsonRepresentation
425
+ collection :location, as: 'location', class: Google::Apis::DatafusionV1beta1::LocationAssignment, decorator: Google::Apis::DatafusionV1beta1::LocationAssignment::Representation
426
+
427
+ end
428
+ end
429
+
301
430
  class DnsPeering
302
431
  # @private
303
432
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -333,6 +462,14 @@ module Google
333
462
  end
334
463
  end
335
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
+
336
473
  class IamPolicy
337
474
  # @private
338
475
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -390,6 +527,19 @@ module Google
390
527
  end
391
528
  end
392
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
+
393
543
  class ListAvailableVersionsResponse
394
544
  # @private
395
545
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -456,6 +606,32 @@ module Google
456
606
  end
457
607
  end
458
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
+
459
635
  class MaintenancePolicy
460
636
  # @private
461
637
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -520,6 +696,13 @@ module Google
520
696
  end
521
697
  end
522
698
 
699
+ class PlacerLocation
700
+ # @private
701
+ class Representation < Google::Apis::Core::JsonRepresentation
702
+ property :placer_config, as: 'placerConfig'
703
+ end
704
+ end
705
+
523
706
  class Policy
524
707
  # @private
525
708
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -550,6 +733,15 @@ module Google
550
733
  end
551
734
  end
552
735
 
736
+ class RegionalMigDistributionPolicy
737
+ # @private
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
+
742
+ end
743
+ end
744
+
553
745
  class RemoveIamPolicyRequest
554
746
  # @private
555
747
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -577,6 +769,14 @@ module Google
577
769
  end
578
770
  end
579
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
+
580
780
  class Status
581
781
  # @private
582
782
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -586,6 +786,13 @@ module Google
586
786
  end
587
787
  end
588
788
 
789
+ class TenantProjectProxy
790
+ # @private
791
+ class Representation < Google::Apis::Core::JsonRepresentation
792
+ collection :project_numbers, as: 'projectNumbers'
793
+ end
794
+ end
795
+
589
796
  class TestIamPermissionsRequest
590
797
  # @private
591
798
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -623,6 +830,13 @@ module Google
623
830
  property :version_number, as: 'versionNumber'
624
831
  end
625
832
  end
833
+
834
+ class ZoneConfiguration
835
+ # @private
836
+ class Representation < Google::Apis::Core::JsonRepresentation
837
+ property :zone, as: 'zone'
838
+ end
839
+ end
626
840
  end
627
841
  end
628
842
  end
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.32.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-06-23 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.32.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: []