google-apis-datafusion_v1beta1 0.33.0 → 0.34.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: 541093fffe1493eb5864237874284772ad82a967e4d95178b06581e89e7c8a51
4
- data.tar.gz: e2c2931e35e455d70809df909e5c48aacdcf35f32dedbb05a31d19fcbf67f972
3
+ metadata.gz: 12a5599a68df99c8d0f8b35b9975c295e915b2677c90de1738cc1cf9c5e0564e
4
+ data.tar.gz: ffb1834ed3b9aed10347a6a67645e60bb3b7f1bd6c2963e52acdcd61693234ef
5
5
  SHA512:
6
- metadata.gz: 902fcd951874221056867bacd48440195a2d70f05cb99c1e27f7092252f7e4cd8439c7dd64a00984dc0ef15565e2f139ccc5abbe3346e5ca4a5513af1f137f69
7
- data.tar.gz: 054bc0413fccbc6ad0d123a3fc20d4ac57bb73dac20b1e0e998a51d7e7ad13cf36144c683e8f7b70cef2243e2380e4b71f477c5cbcfda314e7eff2dee3ae9d75
6
+ metadata.gz: 2e6b0a8e2cc7126958ada21dbd6c862acb6593a84c28e88c4d6a0d796c2141ca2f8233f5e7dfea83615bc3c3b604f73f677958c1ec69e80fcf845d7504f38c25
7
+ data.tar.gz: b57436717c9bbd40e0cb57617d322857d9decae22803bcb5c42073f62dbaf515bde21a3499da7d9a45fda2390a7e1e3a99c77a32d8d11bf40372c1d561a6b3b5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datafusion_v1beta1
2
2
 
3
+ ### v0.34.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241204
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.33.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240703
@@ -47,46 +47,6 @@ 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
-
90
50
  # Specifies the audit configuration for a service. The configuration determines
91
51
  # which permission types are logged, and what identities, if any, are exempted
92
52
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -259,26 +219,6 @@ module Google
259
219
  end
260
220
  end
261
221
 
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
-
282
222
  # The request message for Operations.CancelOperation.
283
223
  class CancelOperationRequest
284
224
  include Google::Apis::Core::Hashable
@@ -292,50 +232,6 @@ module Google
292
232
  end
293
233
  end
294
234
 
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
-
339
235
  # The crypto key configuration. This field is used by the Customer-managed
340
236
  # encryption keys (CMEK) feature.
341
237
  class CryptoKeyConfig
@@ -358,25 +254,6 @@ module Google
358
254
  end
359
255
  end
360
256
 
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
-
380
257
  # DNS peering configuration. These configurations are used to create DNS peering
381
258
  # with the customer Cloud DNS.
382
259
  class DnsPeering
@@ -519,26 +396,6 @@ module Google
519
396
  end
520
397
  end
521
398
 
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
-
542
399
  # IAMPolicy encapsulates the IAM policy name, definition and status of policy
543
400
  # fetching.
544
401
  class IamPolicy
@@ -847,68 +704,12 @@ module Google
847
704
  end
848
705
  end
849
706
 
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
-
907
707
  # Response message for the list available versions request.
908
708
  class ListAvailableVersionsResponse
909
709
  include Google::Apis::Core::Hashable
910
710
 
911
- # Represents a list of versions that are supported.
711
+ # Represents a list of versions that are supported. Deprecated: Use versions
712
+ # field instead.
912
713
  # Corresponds to the JSON property `availableVersions`
913
714
  # @return [Array<Google::Apis::DatafusionV1beta1::Version>]
914
715
  attr_accessor :available_versions
@@ -919,6 +720,11 @@ module Google
919
720
  # @return [String]
920
721
  attr_accessor :next_page_token
921
722
 
723
+ # Represents a list of all versions.
724
+ # Corresponds to the JSON property `versions`
725
+ # @return [Array<Google::Apis::DatafusionV1beta1::Version>]
726
+ attr_accessor :versions
727
+
922
728
  def initialize(**args)
923
729
  update!(**args)
924
730
  end
@@ -927,6 +733,7 @@ module Google
927
733
  def update!(**args)
928
734
  @available_versions = args[:available_versions] if args.key?(:available_versions)
929
735
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
736
+ @versions = args[:versions] if args.key?(:versions)
930
737
  end
931
738
  end
932
739
 
@@ -1111,82 +918,6 @@ module Google
1111
918
  end
1112
919
  end
1113
920
 
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
921
  # Maintenance policy of the instance.
1191
922
  class MaintenancePolicy
1192
923
  include Google::Apis::Core::Hashable
@@ -1438,27 +1169,6 @@ module Google
1438
1169
  end
1439
1170
  end
1440
1171
 
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
-
1462
1172
  # An Identity and Access Management (IAM) policy, which specifies access
1463
1173
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1464
1174
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -1629,33 +1339,6 @@ module Google
1629
1339
  end
1630
1340
  end
1631
1341
 
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
-
1659
1342
  # Request message for RemoveIamPolicy method.
1660
1343
  class RemoveIamPolicyRequest
1661
1344
  include Google::Apis::Core::Hashable
@@ -1748,32 +1431,6 @@ module Google
1748
1431
  end
1749
1432
  end
1750
1433
 
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
-
1777
1434
  # The `Status` type defines a logical error model that is suitable for different
1778
1435
  # programming environments, including REST APIs and RPC APIs. It is used by [
1779
1436
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -1813,25 +1470,6 @@ module Google
1813
1470
  end
1814
1471
  end
1815
1472
 
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
-
1835
1473
  # Request message for `TestIamPermissions` method.
1836
1474
  class TestIamPermissionsRequest
1837
1475
  include Google::Apis::Core::Hashable
@@ -1951,25 +1589,6 @@ module Google
1951
1589
  @version_number = args[:version_number] if args.key?(:version_number)
1952
1590
  end
1953
1591
  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
1973
1592
  end
1974
1593
  end
1975
1594
  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.33.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240703"
25
+ REVISION = "20241204"
26
26
  end
27
27
  end
28
28
  end
@@ -28,12 +28,6 @@ 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
-
37
31
  class AuditConfig
38
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
33
 
@@ -52,42 +46,18 @@ module Google
52
46
  include Google::Apis::Core::JsonObjectSupport
53
47
  end
54
48
 
55
- class BlobstoreLocation
56
- class Representation < Google::Apis::Core::JsonRepresentation; end
57
-
58
- include Google::Apis::Core::JsonObjectSupport
59
- end
60
-
61
49
  class CancelOperationRequest
62
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
51
 
64
52
  include Google::Apis::Core::JsonObjectSupport
65
53
  end
66
54
 
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
-
79
55
  class CryptoKeyConfig
80
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
57
 
82
58
  include Google::Apis::Core::JsonObjectSupport
83
59
  end
84
60
 
85
- class DirectLocationAssignment
86
- class Representation < Google::Apis::Core::JsonRepresentation; end
87
-
88
- include Google::Apis::Core::JsonObjectSupport
89
- end
90
-
91
61
  class DnsPeering
92
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
63
 
@@ -112,12 +82,6 @@ module Google
112
82
  include Google::Apis::Core::JsonObjectSupport
113
83
  end
114
84
 
115
- class ExtraParameter
116
- class Representation < Google::Apis::Core::JsonRepresentation; end
117
-
118
- include Google::Apis::Core::JsonObjectSupport
119
- end
120
-
121
85
  class IamPolicy
122
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
87
 
@@ -130,12 +94,6 @@ module Google
130
94
  include Google::Apis::Core::JsonObjectSupport
131
95
  end
132
96
 
133
- class IsolationExpectations
134
- class Representation < Google::Apis::Core::JsonRepresentation; end
135
-
136
- include Google::Apis::Core::JsonObjectSupport
137
- end
138
-
139
97
  class ListAvailableVersionsResponse
140
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
99
 
@@ -178,18 +136,6 @@ module Google
178
136
  include Google::Apis::Core::JsonObjectSupport
179
137
  end
180
138
 
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
139
  class MaintenancePolicy
194
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
141
 
@@ -226,12 +172,6 @@ module Google
226
172
  include Google::Apis::Core::JsonObjectSupport
227
173
  end
228
174
 
229
- class PlacerLocation
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
175
  class Policy
236
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
177
 
@@ -250,12 +190,6 @@ module Google
250
190
  include Google::Apis::Core::JsonObjectSupport
251
191
  end
252
192
 
253
- class RegionalMigDistributionPolicy
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
193
  class RemoveIamPolicyRequest
260
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
195
 
@@ -280,24 +214,12 @@ module Google
280
214
  include Google::Apis::Core::JsonObjectSupport
281
215
  end
282
216
 
283
- class SpannerLocation
284
- class Representation < Google::Apis::Core::JsonRepresentation; end
285
-
286
- include Google::Apis::Core::JsonObjectSupport
287
- end
288
-
289
217
  class Status
290
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
219
 
292
220
  include Google::Apis::Core::JsonObjectSupport
293
221
  end
294
222
 
295
- class TenantProjectProxy
296
- class Representation < Google::Apis::Core::JsonRepresentation; end
297
-
298
- include Google::Apis::Core::JsonObjectSupport
299
- end
300
-
301
223
  class TestIamPermissionsRequest
302
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
225
 
@@ -328,12 +250,6 @@ module Google
328
250
  include Google::Apis::Core::JsonObjectSupport
329
251
  end
330
252
 
331
- class ZoneConfiguration
332
- class Representation < Google::Apis::Core::JsonRepresentation; end
333
-
334
- include Google::Apis::Core::JsonObjectSupport
335
- end
336
-
337
253
  class Accelerator
338
254
  # @private
339
255
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -342,20 +258,6 @@ module Google
342
258
  end
343
259
  end
344
260
 
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
-
359
261
  class AuditConfig
360
262
  # @private
361
263
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -383,35 +285,12 @@ module Google
383
285
  end
384
286
  end
385
287
 
386
- class BlobstoreLocation
387
- # @private
388
- class Representation < Google::Apis::Core::JsonRepresentation
389
- collection :policy_id, as: 'policyId'
390
- end
391
- end
392
-
393
288
  class CancelOperationRequest
394
289
  # @private
395
290
  class Representation < Google::Apis::Core::JsonRepresentation
396
291
  end
397
292
  end
398
293
 
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
-
415
294
  class CryptoKeyConfig
416
295
  # @private
417
296
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -419,14 +298,6 @@ module Google
419
298
  end
420
299
  end
421
300
 
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
-
430
301
  class DnsPeering
431
302
  # @private
432
303
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -462,14 +333,6 @@ module Google
462
333
  end
463
334
  end
464
335
 
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
-
473
336
  class IamPolicy
474
337
  # @private
475
338
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -527,25 +390,14 @@ module Google
527
390
  end
528
391
  end
529
392
 
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
-
543
393
  class ListAvailableVersionsResponse
544
394
  # @private
545
395
  class Representation < Google::Apis::Core::JsonRepresentation
546
396
  collection :available_versions, as: 'availableVersions', class: Google::Apis::DatafusionV1beta1::Version, decorator: Google::Apis::DatafusionV1beta1::Version::Representation
547
397
 
548
398
  property :next_page_token, as: 'nextPageToken'
399
+ collection :versions, as: 'versions', class: Google::Apis::DatafusionV1beta1::Version, decorator: Google::Apis::DatafusionV1beta1::Version::Representation
400
+
549
401
  end
550
402
  end
551
403
 
@@ -606,32 +458,6 @@ module Google
606
458
  end
607
459
  end
608
460
 
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
461
  class MaintenancePolicy
636
462
  # @private
637
463
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -696,13 +522,6 @@ module Google
696
522
  end
697
523
  end
698
524
 
699
- class PlacerLocation
700
- # @private
701
- class Representation < Google::Apis::Core::JsonRepresentation
702
- property :placer_config, as: 'placerConfig'
703
- end
704
- end
705
-
706
525
  class Policy
707
526
  # @private
708
527
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -733,15 +552,6 @@ module Google
733
552
  end
734
553
  end
735
554
 
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
-
745
555
  class RemoveIamPolicyRequest
746
556
  # @private
747
557
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -769,14 +579,6 @@ module Google
769
579
  end
770
580
  end
771
581
 
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
-
780
582
  class Status
781
583
  # @private
782
584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -786,13 +588,6 @@ module Google
786
588
  end
787
589
  end
788
590
 
789
- class TenantProjectProxy
790
- # @private
791
- class Representation < Google::Apis::Core::JsonRepresentation
792
- collection :project_numbers, as: 'projectNumbers'
793
- end
794
- end
795
-
796
591
  class TestIamPermissionsRequest
797
592
  # @private
798
593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -830,13 +625,6 @@ module Google
830
625
  property :version_number, as: 'versionNumber'
831
626
  end
832
627
  end
833
-
834
- class ZoneConfiguration
835
- # @private
836
- class Representation < Google::Apis::Core::JsonRepresentation
837
- property :zone, as: 'zone'
838
- end
839
- end
840
628
  end
841
629
  end
842
630
  end
@@ -820,8 +820,8 @@ module Google
820
820
  # Clients can use Operations.GetOperation or other methods to check whether the
821
821
  # cancellation succeeded or whether the operation completed despite cancellation.
822
822
  # On successful cancellation, the operation is not deleted; instead, it becomes
823
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
824
- # corresponding to `Code.CANCELLED`.
823
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
824
+ # , corresponding to `Code.CANCELLED`.
825
825
  # @param [String] name
826
826
  # The name of the operation resource to be cancelled.
827
827
  # @param [Google::Apis::DatafusionV1beta1::CancelOperationRequest] cancel_operation_request_object
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.33.0
4
+ version: 0.34.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.34.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Data Fusion API V1beta1