google-apis-datafusion_v1 0.32.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 804ba37788d49cd73506d64ce389964b86305c814e286d125c2fd29b8d7dbce4
|
4
|
+
data.tar.gz: 475a4d81cfc540a74576eed0bff6c31376be88c324c4d8f0ebe89c12c36ed1e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 734ac5445351c07d7e06280ade4ad1c08f2f1627aa54aa437e249a1c7e114e71ccedd1c268e3182817693e66dbf7555466c932a63feaea3c899f002d694fce0a
|
7
|
+
data.tar.gz: 1b64a79753ef5271121aa701cca9efd028099c4328d3519e603e1f0391341c74c675d95451e7a025eb7cf7faf4edbf3fa04797dbd6b3863406ead0708784cff3
|
data/CHANGELOG.md
CHANGED
@@ -47,6 +47,46 @@ module Google
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# Provides the mapping of a cloud asset to a direct physical location or to a
|
51
|
+
# proxy that defines the location on its behalf.
|
52
|
+
class AssetLocation
|
53
|
+
include Google::Apis::Core::Hashable
|
54
|
+
|
55
|
+
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
56
|
+
# of the region at the time of asset creation.
|
57
|
+
# Corresponds to the JSON property `expected`
|
58
|
+
# @return [Google::Apis::DatafusionV1::IsolationExpectations]
|
59
|
+
attr_accessor :expected
|
60
|
+
|
61
|
+
# Defines extra parameters required for specific asset types.
|
62
|
+
# Corresponds to the JSON property `extraParameters`
|
63
|
+
# @return [Array<Google::Apis::DatafusionV1::ExtraParameter>]
|
64
|
+
attr_accessor :extra_parameters
|
65
|
+
|
66
|
+
# Contains all kinds of physical location definitions for this asset.
|
67
|
+
# Corresponds to the JSON property `locationData`
|
68
|
+
# @return [Array<Google::Apis::DatafusionV1::LocationData>]
|
69
|
+
attr_accessor :location_data
|
70
|
+
|
71
|
+
# Defines parents assets if any in order to allow later generation of
|
72
|
+
# child_asset_location data via child assets.
|
73
|
+
# Corresponds to the JSON property `parentAsset`
|
74
|
+
# @return [Array<Google::Apis::DatafusionV1::CloudAsset>]
|
75
|
+
attr_accessor :parent_asset
|
76
|
+
|
77
|
+
def initialize(**args)
|
78
|
+
update!(**args)
|
79
|
+
end
|
80
|
+
|
81
|
+
# Update properties of this object
|
82
|
+
def update!(**args)
|
83
|
+
@expected = args[:expected] if args.key?(:expected)
|
84
|
+
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
85
|
+
@location_data = args[:location_data] if args.key?(:location_data)
|
86
|
+
@parent_asset = args[:parent_asset] if args.key?(:parent_asset)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
50
90
|
# Specifies the audit configuration for a service. The configuration determines
|
51
91
|
# which permission types are logged, and what identities, if any, are exempted
|
52
92
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -219,6 +259,26 @@ module Google
|
|
219
259
|
end
|
220
260
|
end
|
221
261
|
|
262
|
+
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
263
|
+
# guide#data-metadata-placement-and-failure-domains
|
264
|
+
class BlobstoreLocation
|
265
|
+
include Google::Apis::Core::Hashable
|
266
|
+
|
267
|
+
#
|
268
|
+
# Corresponds to the JSON property `policyId`
|
269
|
+
# @return [Array<String>]
|
270
|
+
attr_accessor :policy_id
|
271
|
+
|
272
|
+
def initialize(**args)
|
273
|
+
update!(**args)
|
274
|
+
end
|
275
|
+
|
276
|
+
# Update properties of this object
|
277
|
+
def update!(**args)
|
278
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
279
|
+
end
|
280
|
+
end
|
281
|
+
|
222
282
|
# The request message for Operations.CancelOperation.
|
223
283
|
class CancelOperationRequest
|
224
284
|
include Google::Apis::Core::Hashable
|
@@ -232,6 +292,50 @@ module Google
|
|
232
292
|
end
|
233
293
|
end
|
234
294
|
|
295
|
+
#
|
296
|
+
class CloudAsset
|
297
|
+
include Google::Apis::Core::Hashable
|
298
|
+
|
299
|
+
#
|
300
|
+
# Corresponds to the JSON property `assetName`
|
301
|
+
# @return [String]
|
302
|
+
attr_accessor :asset_name
|
303
|
+
|
304
|
+
#
|
305
|
+
# Corresponds to the JSON property `assetType`
|
306
|
+
# @return [String]
|
307
|
+
attr_accessor :asset_type
|
308
|
+
|
309
|
+
def initialize(**args)
|
310
|
+
update!(**args)
|
311
|
+
end
|
312
|
+
|
313
|
+
# Update properties of this object
|
314
|
+
def update!(**args)
|
315
|
+
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
316
|
+
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
#
|
321
|
+
class CloudAssetComposition
|
322
|
+
include Google::Apis::Core::Hashable
|
323
|
+
|
324
|
+
#
|
325
|
+
# Corresponds to the JSON property `childAsset`
|
326
|
+
# @return [Array<Google::Apis::DatafusionV1::CloudAsset>]
|
327
|
+
attr_accessor :child_asset
|
328
|
+
|
329
|
+
def initialize(**args)
|
330
|
+
update!(**args)
|
331
|
+
end
|
332
|
+
|
333
|
+
# Update properties of this object
|
334
|
+
def update!(**args)
|
335
|
+
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
235
339
|
# The crypto key configuration. This field is used by the Customer-managed
|
236
340
|
# encryption keys (CMEK) feature.
|
237
341
|
class CryptoKeyConfig
|
@@ -254,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::DatafusionV1::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::DatafusionV1::RegionalMigDistributionPolicy]
|
530
|
+
attr_accessor :regional_mig_distribution_policy
|
531
|
+
|
532
|
+
def initialize(**args)
|
533
|
+
update!(**args)
|
534
|
+
end
|
535
|
+
|
536
|
+
# Update properties of this object
|
537
|
+
def update!(**args)
|
538
|
+
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
539
|
+
end
|
540
|
+
end
|
541
|
+
|
399
542
|
# Represents a Data Fusion instance.
|
400
543
|
class Instance
|
401
544
|
include Google::Apis::Core::Hashable
|
@@ -647,6 +790,63 @@ module Google
|
|
647
790
|
end
|
648
791
|
end
|
649
792
|
|
793
|
+
#
|
794
|
+
class IsolationExpectations
|
795
|
+
include Google::Apis::Core::Hashable
|
796
|
+
|
797
|
+
#
|
798
|
+
# Corresponds to the JSON property `ziOrgPolicy`
|
799
|
+
# @return [String]
|
800
|
+
attr_accessor :zi_org_policy
|
801
|
+
|
802
|
+
#
|
803
|
+
# Corresponds to the JSON property `ziRegionPolicy`
|
804
|
+
# @return [String]
|
805
|
+
attr_accessor :zi_region_policy
|
806
|
+
|
807
|
+
#
|
808
|
+
# Corresponds to the JSON property `ziRegionState`
|
809
|
+
# @return [String]
|
810
|
+
attr_accessor :zi_region_state
|
811
|
+
|
812
|
+
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
813
|
+
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
814
|
+
# Corresponds to the JSON property `zoneIsolation`
|
815
|
+
# @return [String]
|
816
|
+
attr_accessor :zone_isolation
|
817
|
+
|
818
|
+
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
819
|
+
# expectations as per go/zicy-publish-physical-location.
|
820
|
+
# Corresponds to the JSON property `zoneSeparation`
|
821
|
+
# @return [String]
|
822
|
+
attr_accessor :zone_separation
|
823
|
+
|
824
|
+
#
|
825
|
+
# Corresponds to the JSON property `zsOrgPolicy`
|
826
|
+
# @return [String]
|
827
|
+
attr_accessor :zs_org_policy
|
828
|
+
|
829
|
+
#
|
830
|
+
# Corresponds to the JSON property `zsRegionState`
|
831
|
+
# @return [String]
|
832
|
+
attr_accessor :zs_region_state
|
833
|
+
|
834
|
+
def initialize(**args)
|
835
|
+
update!(**args)
|
836
|
+
end
|
837
|
+
|
838
|
+
# Update properties of this object
|
839
|
+
def update!(**args)
|
840
|
+
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
841
|
+
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
842
|
+
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
843
|
+
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
844
|
+
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
845
|
+
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
846
|
+
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
847
|
+
end
|
848
|
+
end
|
849
|
+
|
650
850
|
# Response message for the list available versions request.
|
651
851
|
class ListAvailableVersionsResponse
|
652
852
|
include Google::Apis::Core::Hashable
|
@@ -828,6 +1028,82 @@ module Google
|
|
828
1028
|
end
|
829
1029
|
end
|
830
1030
|
|
1031
|
+
#
|
1032
|
+
class LocationAssignment
|
1033
|
+
include Google::Apis::Core::Hashable
|
1034
|
+
|
1035
|
+
#
|
1036
|
+
# Corresponds to the JSON property `location`
|
1037
|
+
# @return [String]
|
1038
|
+
attr_accessor :location
|
1039
|
+
|
1040
|
+
#
|
1041
|
+
# Corresponds to the JSON property `locationType`
|
1042
|
+
# @return [String]
|
1043
|
+
attr_accessor :location_type
|
1044
|
+
|
1045
|
+
def initialize(**args)
|
1046
|
+
update!(**args)
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
# Update properties of this object
|
1050
|
+
def update!(**args)
|
1051
|
+
@location = args[:location] if args.key?(:location)
|
1052
|
+
@location_type = args[:location_type] if args.key?(:location_type)
|
1053
|
+
end
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
#
|
1057
|
+
class LocationData
|
1058
|
+
include Google::Apis::Core::Hashable
|
1059
|
+
|
1060
|
+
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
1061
|
+
# guide#data-metadata-placement-and-failure-domains
|
1062
|
+
# Corresponds to the JSON property `blobstoreLocation`
|
1063
|
+
# @return [Google::Apis::DatafusionV1::BlobstoreLocation]
|
1064
|
+
attr_accessor :blobstore_location
|
1065
|
+
|
1066
|
+
#
|
1067
|
+
# Corresponds to the JSON property `childAssetLocation`
|
1068
|
+
# @return [Google::Apis::DatafusionV1::CloudAssetComposition]
|
1069
|
+
attr_accessor :child_asset_location
|
1070
|
+
|
1071
|
+
#
|
1072
|
+
# Corresponds to the JSON property `directLocation`
|
1073
|
+
# @return [Google::Apis::DatafusionV1::DirectLocationAssignment]
|
1074
|
+
attr_accessor :direct_location
|
1075
|
+
|
1076
|
+
#
|
1077
|
+
# Corresponds to the JSON property `gcpProjectProxy`
|
1078
|
+
# @return [Google::Apis::DatafusionV1::TenantProjectProxy]
|
1079
|
+
attr_accessor :gcp_project_proxy
|
1080
|
+
|
1081
|
+
# Message describing that the location of the customer resource is tied to
|
1082
|
+
# placer allocations
|
1083
|
+
# Corresponds to the JSON property `placerLocation`
|
1084
|
+
# @return [Google::Apis::DatafusionV1::PlacerLocation]
|
1085
|
+
attr_accessor :placer_location
|
1086
|
+
|
1087
|
+
#
|
1088
|
+
# Corresponds to the JSON property `spannerLocation`
|
1089
|
+
# @return [Google::Apis::DatafusionV1::SpannerLocation]
|
1090
|
+
attr_accessor :spanner_location
|
1091
|
+
|
1092
|
+
def initialize(**args)
|
1093
|
+
update!(**args)
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
# Update properties of this object
|
1097
|
+
def update!(**args)
|
1098
|
+
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
1099
|
+
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
1100
|
+
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
1101
|
+
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
1102
|
+
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
1103
|
+
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
1104
|
+
end
|
1105
|
+
end
|
1106
|
+
|
831
1107
|
# Maintenance policy of the instance.
|
832
1108
|
class MaintenancePolicy
|
833
1109
|
include Google::Apis::Core::Hashable
|
@@ -1053,6 +1329,27 @@ module Google
|
|
1053
1329
|
end
|
1054
1330
|
end
|
1055
1331
|
|
1332
|
+
# Message describing that the location of the customer resource is tied to
|
1333
|
+
# placer allocations
|
1334
|
+
class PlacerLocation
|
1335
|
+
include Google::Apis::Core::Hashable
|
1336
|
+
|
1337
|
+
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
1338
|
+
# root/my-dir")
|
1339
|
+
# Corresponds to the JSON property `placerConfig`
|
1340
|
+
# @return [String]
|
1341
|
+
attr_accessor :placer_config
|
1342
|
+
|
1343
|
+
def initialize(**args)
|
1344
|
+
update!(**args)
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# Update properties of this object
|
1348
|
+
def update!(**args)
|
1349
|
+
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
1350
|
+
end
|
1351
|
+
end
|
1352
|
+
|
1056
1353
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1057
1354
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1058
1355
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -1223,6 +1520,33 @@ module Google
|
|
1223
1520
|
end
|
1224
1521
|
end
|
1225
1522
|
|
1523
|
+
# To be used for specifying the intended distribution of regional compute.
|
1524
|
+
# googleapis.com/InstanceGroupManager instances
|
1525
|
+
class RegionalMigDistributionPolicy
|
1526
|
+
include Google::Apis::Core::Hashable
|
1527
|
+
|
1528
|
+
# The shape in which the group converges around distribution of resources.
|
1529
|
+
# Instance of proto2 enum
|
1530
|
+
# Corresponds to the JSON property `targetShape`
|
1531
|
+
# @return [Fixnum]
|
1532
|
+
attr_accessor :target_shape
|
1533
|
+
|
1534
|
+
# Cloud zones used by regional MIG to create instances.
|
1535
|
+
# Corresponds to the JSON property `zones`
|
1536
|
+
# @return [Array<Google::Apis::DatafusionV1::ZoneConfiguration>]
|
1537
|
+
attr_accessor :zones
|
1538
|
+
|
1539
|
+
def initialize(**args)
|
1540
|
+
update!(**args)
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# Update properties of this object
|
1544
|
+
def update!(**args)
|
1545
|
+
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
1546
|
+
@zones = args[:zones] if args.key?(:zones)
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
|
1226
1550
|
# Request message for restarting a Data Fusion instance.
|
1227
1551
|
class RestartInstanceRequest
|
1228
1552
|
include Google::Apis::Core::Hashable
|
@@ -1289,6 +1613,32 @@ module Google
|
|
1289
1613
|
end
|
1290
1614
|
end
|
1291
1615
|
|
1616
|
+
#
|
1617
|
+
class SpannerLocation
|
1618
|
+
include Google::Apis::Core::Hashable
|
1619
|
+
|
1620
|
+
# Set of backups used by the resource with name in the same format as what is
|
1621
|
+
# available at http://table/spanner_automon.backup_metadata
|
1622
|
+
# Corresponds to the JSON property `backupName`
|
1623
|
+
# @return [Array<String>]
|
1624
|
+
attr_accessor :backup_name
|
1625
|
+
|
1626
|
+
# Set of databases used by the resource in format /span//
|
1627
|
+
# Corresponds to the JSON property `dbName`
|
1628
|
+
# @return [Array<String>]
|
1629
|
+
attr_accessor :db_name
|
1630
|
+
|
1631
|
+
def initialize(**args)
|
1632
|
+
update!(**args)
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
# Update properties of this object
|
1636
|
+
def update!(**args)
|
1637
|
+
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
1638
|
+
@db_name = args[:db_name] if args.key?(:db_name)
|
1639
|
+
end
|
1640
|
+
end
|
1641
|
+
|
1292
1642
|
# The `Status` type defines a logical error model that is suitable for different
|
1293
1643
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1294
1644
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1328,6 +1678,25 @@ module Google
|
|
1328
1678
|
end
|
1329
1679
|
end
|
1330
1680
|
|
1681
|
+
#
|
1682
|
+
class TenantProjectProxy
|
1683
|
+
include Google::Apis::Core::Hashable
|
1684
|
+
|
1685
|
+
#
|
1686
|
+
# Corresponds to the JSON property `projectNumbers`
|
1687
|
+
# @return [Array<String>]
|
1688
|
+
attr_accessor :project_numbers
|
1689
|
+
|
1690
|
+
def initialize(**args)
|
1691
|
+
update!(**args)
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
# Update properties of this object
|
1695
|
+
def update!(**args)
|
1696
|
+
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
1697
|
+
end
|
1698
|
+
end
|
1699
|
+
|
1331
1700
|
# Request message for `TestIamPermissions` method.
|
1332
1701
|
class TestIamPermissionsRequest
|
1333
1702
|
include Google::Apis::Core::Hashable
|
@@ -1434,6 +1803,25 @@ module Google
|
|
1434
1803
|
@version_number = args[:version_number] if args.key?(:version_number)
|
1435
1804
|
end
|
1436
1805
|
end
|
1806
|
+
|
1807
|
+
#
|
1808
|
+
class ZoneConfiguration
|
1809
|
+
include Google::Apis::Core::Hashable
|
1810
|
+
|
1811
|
+
#
|
1812
|
+
# Corresponds to the JSON property `zone`
|
1813
|
+
# @return [String]
|
1814
|
+
attr_accessor :zone
|
1815
|
+
|
1816
|
+
def initialize(**args)
|
1817
|
+
update!(**args)
|
1818
|
+
end
|
1819
|
+
|
1820
|
+
# Update properties of this object
|
1821
|
+
def update!(**args)
|
1822
|
+
@zone = args[:zone] if args.key?(:zone)
|
1823
|
+
end
|
1824
|
+
end
|
1437
1825
|
end
|
1438
1826
|
end
|
1439
1827
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatafusionV1
|
18
18
|
# Version of the google-apis-datafusion_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
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 = "
|
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,12 +112,24 @@ 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 Instance
|
86
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
123
|
|
88
124
|
include Google::Apis::Core::JsonObjectSupport
|
89
125
|
end
|
90
126
|
|
127
|
+
class IsolationExpectations
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
91
133
|
class ListAvailableVersionsResponse
|
92
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
135
|
|
@@ -124,6 +166,18 @@ module Google
|
|
124
166
|
include Google::Apis::Core::JsonObjectSupport
|
125
167
|
end
|
126
168
|
|
169
|
+
class LocationAssignment
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
175
|
+
class LocationData
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
127
181
|
class MaintenancePolicy
|
128
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
183
|
|
@@ -154,6 +208,12 @@ module Google
|
|
154
208
|
include Google::Apis::Core::JsonObjectSupport
|
155
209
|
end
|
156
210
|
|
211
|
+
class PlacerLocation
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
157
217
|
class Policy
|
158
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
219
|
|
@@ -172,6 +232,12 @@ module Google
|
|
172
232
|
include Google::Apis::Core::JsonObjectSupport
|
173
233
|
end
|
174
234
|
|
235
|
+
class RegionalMigDistributionPolicy
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
175
241
|
class RestartInstanceRequest
|
176
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
243
|
|
@@ -184,12 +250,24 @@ module Google
|
|
184
250
|
include Google::Apis::Core::JsonObjectSupport
|
185
251
|
end
|
186
252
|
|
253
|
+
class SpannerLocation
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
187
259
|
class Status
|
188
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
261
|
|
190
262
|
include Google::Apis::Core::JsonObjectSupport
|
191
263
|
end
|
192
264
|
|
265
|
+
class TenantProjectProxy
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
193
271
|
class TestIamPermissionsRequest
|
194
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
273
|
|
@@ -214,6 +292,12 @@ module Google
|
|
214
292
|
include Google::Apis::Core::JsonObjectSupport
|
215
293
|
end
|
216
294
|
|
295
|
+
class ZoneConfiguration
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
217
301
|
class Accelerator
|
218
302
|
# @private
|
219
303
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -222,6 +306,20 @@ module Google
|
|
222
306
|
end
|
223
307
|
end
|
224
308
|
|
309
|
+
class AssetLocation
|
310
|
+
# @private
|
311
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
312
|
+
property :expected, as: 'expected', class: Google::Apis::DatafusionV1::IsolationExpectations, decorator: Google::Apis::DatafusionV1::IsolationExpectations::Representation
|
313
|
+
|
314
|
+
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::DatafusionV1::ExtraParameter, decorator: Google::Apis::DatafusionV1::ExtraParameter::Representation
|
315
|
+
|
316
|
+
collection :location_data, as: 'locationData', class: Google::Apis::DatafusionV1::LocationData, decorator: Google::Apis::DatafusionV1::LocationData::Representation
|
317
|
+
|
318
|
+
collection :parent_asset, as: 'parentAsset', class: Google::Apis::DatafusionV1::CloudAsset, decorator: Google::Apis::DatafusionV1::CloudAsset::Representation
|
319
|
+
|
320
|
+
end
|
321
|
+
end
|
322
|
+
|
225
323
|
class AuditConfig
|
226
324
|
# @private
|
227
325
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -249,12 +347,35 @@ module Google
|
|
249
347
|
end
|
250
348
|
end
|
251
349
|
|
350
|
+
class BlobstoreLocation
|
351
|
+
# @private
|
352
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
353
|
+
collection :policy_id, as: 'policyId'
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
252
357
|
class CancelOperationRequest
|
253
358
|
# @private
|
254
359
|
class Representation < Google::Apis::Core::JsonRepresentation
|
255
360
|
end
|
256
361
|
end
|
257
362
|
|
363
|
+
class CloudAsset
|
364
|
+
# @private
|
365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
366
|
+
property :asset_name, as: 'assetName'
|
367
|
+
property :asset_type, as: 'assetType'
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
class CloudAssetComposition
|
372
|
+
# @private
|
373
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
374
|
+
collection :child_asset, as: 'childAsset', class: Google::Apis::DatafusionV1::CloudAsset, decorator: Google::Apis::DatafusionV1::CloudAsset::Representation
|
375
|
+
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
258
379
|
class CryptoKeyConfig
|
259
380
|
# @private
|
260
381
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -262,6 +383,14 @@ module Google
|
|
262
383
|
end
|
263
384
|
end
|
264
385
|
|
386
|
+
class DirectLocationAssignment
|
387
|
+
# @private
|
388
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
389
|
+
collection :location, as: 'location', class: Google::Apis::DatafusionV1::LocationAssignment, decorator: Google::Apis::DatafusionV1::LocationAssignment::Representation
|
390
|
+
|
391
|
+
end
|
392
|
+
end
|
393
|
+
|
265
394
|
class DnsPeering
|
266
395
|
# @private
|
267
396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -297,6 +426,14 @@ module Google
|
|
297
426
|
end
|
298
427
|
end
|
299
428
|
|
429
|
+
class ExtraParameter
|
430
|
+
# @private
|
431
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
432
|
+
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::DatafusionV1::RegionalMigDistributionPolicy, decorator: Google::Apis::DatafusionV1::RegionalMigDistributionPolicy::Representation
|
433
|
+
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
300
437
|
class Instance
|
301
438
|
# @private
|
302
439
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -344,6 +481,19 @@ module Google
|
|
344
481
|
end
|
345
482
|
end
|
346
483
|
|
484
|
+
class IsolationExpectations
|
485
|
+
# @private
|
486
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
487
|
+
property :zi_org_policy, as: 'ziOrgPolicy'
|
488
|
+
property :zi_region_policy, as: 'ziRegionPolicy'
|
489
|
+
property :zi_region_state, as: 'ziRegionState'
|
490
|
+
property :zone_isolation, as: 'zoneIsolation'
|
491
|
+
property :zone_separation, as: 'zoneSeparation'
|
492
|
+
property :zs_org_policy, as: 'zsOrgPolicy'
|
493
|
+
property :zs_region_state, as: 'zsRegionState'
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
347
497
|
class ListAvailableVersionsResponse
|
348
498
|
# @private
|
349
499
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -401,6 +551,32 @@ module Google
|
|
401
551
|
end
|
402
552
|
end
|
403
553
|
|
554
|
+
class LocationAssignment
|
555
|
+
# @private
|
556
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
557
|
+
property :location, as: 'location'
|
558
|
+
property :location_type, as: 'locationType'
|
559
|
+
end
|
560
|
+
end
|
561
|
+
|
562
|
+
class LocationData
|
563
|
+
# @private
|
564
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
565
|
+
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::DatafusionV1::BlobstoreLocation, decorator: Google::Apis::DatafusionV1::BlobstoreLocation::Representation
|
566
|
+
|
567
|
+
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::DatafusionV1::CloudAssetComposition, decorator: Google::Apis::DatafusionV1::CloudAssetComposition::Representation
|
568
|
+
|
569
|
+
property :direct_location, as: 'directLocation', class: Google::Apis::DatafusionV1::DirectLocationAssignment, decorator: Google::Apis::DatafusionV1::DirectLocationAssignment::Representation
|
570
|
+
|
571
|
+
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::DatafusionV1::TenantProjectProxy, decorator: Google::Apis::DatafusionV1::TenantProjectProxy::Representation
|
572
|
+
|
573
|
+
property :placer_location, as: 'placerLocation', class: Google::Apis::DatafusionV1::PlacerLocation, decorator: Google::Apis::DatafusionV1::PlacerLocation::Representation
|
574
|
+
|
575
|
+
property :spanner_location, as: 'spannerLocation', class: Google::Apis::DatafusionV1::SpannerLocation, decorator: Google::Apis::DatafusionV1::SpannerLocation::Representation
|
576
|
+
|
577
|
+
end
|
578
|
+
end
|
579
|
+
|
404
580
|
class MaintenancePolicy
|
405
581
|
# @private
|
406
582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -456,6 +632,13 @@ module Google
|
|
456
632
|
end
|
457
633
|
end
|
458
634
|
|
635
|
+
class PlacerLocation
|
636
|
+
# @private
|
637
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
638
|
+
property :placer_config, as: 'placerConfig'
|
639
|
+
end
|
640
|
+
end
|
641
|
+
|
459
642
|
class Policy
|
460
643
|
# @private
|
461
644
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -486,6 +669,15 @@ module Google
|
|
486
669
|
end
|
487
670
|
end
|
488
671
|
|
672
|
+
class RegionalMigDistributionPolicy
|
673
|
+
# @private
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
675
|
+
property :target_shape, as: 'targetShape'
|
676
|
+
collection :zones, as: 'zones', class: Google::Apis::DatafusionV1::ZoneConfiguration, decorator: Google::Apis::DatafusionV1::ZoneConfiguration::Representation
|
677
|
+
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
489
681
|
class RestartInstanceRequest
|
490
682
|
# @private
|
491
683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -501,6 +693,14 @@ module Google
|
|
501
693
|
end
|
502
694
|
end
|
503
695
|
|
696
|
+
class SpannerLocation
|
697
|
+
# @private
|
698
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
699
|
+
collection :backup_name, as: 'backupName'
|
700
|
+
collection :db_name, as: 'dbName'
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
504
704
|
class Status
|
505
705
|
# @private
|
506
706
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -510,6 +710,13 @@ module Google
|
|
510
710
|
end
|
511
711
|
end
|
512
712
|
|
713
|
+
class TenantProjectProxy
|
714
|
+
# @private
|
715
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
716
|
+
collection :project_numbers, as: 'projectNumbers'
|
717
|
+
end
|
718
|
+
end
|
719
|
+
|
513
720
|
class TestIamPermissionsRequest
|
514
721
|
# @private
|
515
722
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -541,6 +748,13 @@ module Google
|
|
541
748
|
property :version_number, as: 'versionNumber'
|
542
749
|
end
|
543
750
|
end
|
751
|
+
|
752
|
+
class ZoneConfiguration
|
753
|
+
# @private
|
754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
755
|
+
property :zone, as: 'zone'
|
756
|
+
end
|
757
|
+
end
|
544
758
|
end
|
545
759
|
end
|
546
760
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
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-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|