google-apis-datafusion_v1beta1 0.33.0 → 0.35.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/google/apis/datafusion_v1beta1/classes.rb +60 -366
- data/lib/google/apis/datafusion_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/datafusion_v1beta1/representations.rb +15 -194
- data/lib/google/apis/datafusion_v1beta1/service.rb +2 -2
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 655a99831fa7518c27126b016dbd6ab5bd6c01741609d59fb155b2ea35230115
|
4
|
+
data.tar.gz: 2cce6d00a152a7f89809a5487c528df465604158473c3d29e156fad5ea1ec974
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bdea2b0234b69557b5d45489737b949df46e6dce9a1e89976c42417cea8249e0fe4ead4e489e9d63ffc09764738347240eebe7fab4c6c786e252d2a39259d8e
|
7
|
+
data.tar.gz: 32794f8a15694ffde5ee74fce6abdd0856860a26c938bc75d98d461fe4c0f99f73ed83e67863953a5cd6116dcb89af17053155740b2e15e86ff10c7f92578705
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-datafusion_v1beta1
|
2
2
|
|
3
|
+
### v0.35.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250224
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.34.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241204
|
11
|
+
* Regenerated using generator version 0.15.1
|
12
|
+
|
3
13
|
### v0.33.0 (2024-07-25)
|
4
14
|
|
5
15
|
* 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
|
@@ -662,7 +519,7 @@ module Google
|
|
662
519
|
attr_accessor :enable_rbac
|
663
520
|
alias_method :enable_rbac?, :enable_rbac
|
664
521
|
|
665
|
-
# Option to enable Stackdriver Logging.
|
522
|
+
# Option to enable Dataproc Stackdriver Logging.
|
666
523
|
# Corresponds to the JSON property `enableStackdriverLogging`
|
667
524
|
# @return [Boolean]
|
668
525
|
attr_accessor :enable_stackdriver_logging
|
@@ -698,6 +555,16 @@ module Google
|
|
698
555
|
# @return [Hash<String,String>]
|
699
556
|
attr_accessor :labels
|
700
557
|
|
558
|
+
# Logging configuration for a Data Fusion instance.
|
559
|
+
# Corresponds to the JSON property `loggingConfig`
|
560
|
+
# @return [Google::Apis::DatafusionV1beta1::LoggingConfig]
|
561
|
+
attr_accessor :logging_config
|
562
|
+
|
563
|
+
# Output only. The maintenance events for this instance.
|
564
|
+
# Corresponds to the JSON property `maintenanceEvents`
|
565
|
+
# @return [Array<Google::Apis::DatafusionV1beta1::MaintenanceEvent>]
|
566
|
+
attr_accessor :maintenance_events
|
567
|
+
|
701
568
|
# Maintenance policy of the instance.
|
702
569
|
# Corresponds to the JSON property `maintenancePolicy`
|
703
570
|
# @return [Google::Apis::DatafusionV1beta1::MaintenancePolicy]
|
@@ -743,6 +610,12 @@ module Google
|
|
743
610
|
attr_accessor :private_instance
|
744
611
|
alias_method :private_instance?, :private_instance
|
745
612
|
|
613
|
+
# Output only. Reserved for future use.
|
614
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
615
|
+
# @return [Boolean]
|
616
|
+
attr_accessor :satisfies_pzi
|
617
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
618
|
+
|
746
619
|
# Output only. Reserved for future use.
|
747
620
|
# Corresponds to the JSON property `satisfiesPzs`
|
748
621
|
# @return [Boolean]
|
@@ -826,6 +699,8 @@ module Google
|
|
826
699
|
@event_publish_config = args[:event_publish_config] if args.key?(:event_publish_config)
|
827
700
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
828
701
|
@labels = args[:labels] if args.key?(:labels)
|
702
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
703
|
+
@maintenance_events = args[:maintenance_events] if args.key?(:maintenance_events)
|
829
704
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
830
705
|
@name = args[:name] if args.key?(:name)
|
831
706
|
@network_config = args[:network_config] if args.key?(:network_config)
|
@@ -833,6 +708,7 @@ module Google
|
|
833
708
|
@p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
|
834
709
|
@patch_revision = args[:patch_revision] if args.key?(:patch_revision)
|
835
710
|
@private_instance = args[:private_instance] if args.key?(:private_instance)
|
711
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
836
712
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
837
713
|
@service_account = args[:service_account] if args.key?(:service_account)
|
838
714
|
@service_endpoint = args[:service_endpoint] if args.key?(:service_endpoint)
|
@@ -847,68 +723,12 @@ module Google
|
|
847
723
|
end
|
848
724
|
end
|
849
725
|
|
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
726
|
# Response message for the list available versions request.
|
908
727
|
class ListAvailableVersionsResponse
|
909
728
|
include Google::Apis::Core::Hashable
|
910
729
|
|
911
|
-
# Represents a list of versions that are supported.
|
730
|
+
# Represents a list of versions that are supported. Deprecated: Use versions
|
731
|
+
# field instead.
|
912
732
|
# Corresponds to the JSON property `availableVersions`
|
913
733
|
# @return [Array<Google::Apis::DatafusionV1beta1::Version>]
|
914
734
|
attr_accessor :available_versions
|
@@ -919,6 +739,11 @@ module Google
|
|
919
739
|
# @return [String]
|
920
740
|
attr_accessor :next_page_token
|
921
741
|
|
742
|
+
# Represents a list of all versions.
|
743
|
+
# Corresponds to the JSON property `versions`
|
744
|
+
# @return [Array<Google::Apis::DatafusionV1beta1::Version>]
|
745
|
+
attr_accessor :versions
|
746
|
+
|
922
747
|
def initialize(**args)
|
923
748
|
update!(**args)
|
924
749
|
end
|
@@ -927,6 +752,7 @@ module Google
|
|
927
752
|
def update!(**args)
|
928
753
|
@available_versions = args[:available_versions] if args.key?(:available_versions)
|
929
754
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
755
|
+
@versions = args[:versions] if args.key?(:versions)
|
930
756
|
end
|
931
757
|
end
|
932
758
|
|
@@ -1111,19 +937,16 @@ module Google
|
|
1111
937
|
end
|
1112
938
|
end
|
1113
939
|
|
1114
|
-
#
|
1115
|
-
class
|
940
|
+
# Logging configuration for a Data Fusion instance.
|
941
|
+
class LoggingConfig
|
1116
942
|
include Google::Apis::Core::Hashable
|
1117
943
|
|
1118
|
-
#
|
1119
|
-
#
|
1120
|
-
#
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
# Corresponds to the JSON property `locationType`
|
1125
|
-
# @return [String]
|
1126
|
-
attr_accessor :location_type
|
944
|
+
# Optional. Option to determine whether instance logs should be written to Cloud
|
945
|
+
# Logging. By default, instance logs are written to Cloud Logging.
|
946
|
+
# Corresponds to the JSON property `instanceCloudLoggingDisabled`
|
947
|
+
# @return [Boolean]
|
948
|
+
attr_accessor :instance_cloud_logging_disabled
|
949
|
+
alias_method :instance_cloud_logging_disabled?, :instance_cloud_logging_disabled
|
1127
950
|
|
1128
951
|
def initialize(**args)
|
1129
952
|
update!(**args)
|
@@ -1131,46 +954,32 @@ module Google
|
|
1131
954
|
|
1132
955
|
# Update properties of this object
|
1133
956
|
def update!(**args)
|
1134
|
-
@
|
1135
|
-
@location_type = args[:location_type] if args.key?(:location_type)
|
957
|
+
@instance_cloud_logging_disabled = args[:instance_cloud_logging_disabled] if args.key?(:instance_cloud_logging_disabled)
|
1136
958
|
end
|
1137
959
|
end
|
1138
960
|
|
1139
|
-
#
|
1140
|
-
class
|
961
|
+
# Represents a maintenance event.
|
962
|
+
class MaintenanceEvent
|
1141
963
|
include Google::Apis::Core::Hashable
|
1142
964
|
|
1143
|
-
#
|
1144
|
-
#
|
1145
|
-
#
|
1146
|
-
#
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
#
|
1151
|
-
#
|
1152
|
-
|
1153
|
-
|
1154
|
-
#
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
#
|
1160
|
-
|
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
|
965
|
+
# Output only. The end time of the maintenance event provided in [RFC 3339](
|
966
|
+
# https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-02T12:04:06-06:
|
967
|
+
# 00" This field will be empty if the maintenance event is not yet complete.
|
968
|
+
# Corresponds to the JSON property `endTime`
|
969
|
+
# @return [String]
|
970
|
+
attr_accessor :end_time
|
971
|
+
|
972
|
+
# Output only. The start time of the maintenance event provided in [RFC 3339](
|
973
|
+
# https://www.ietf.org/rfc/rfc3339.txt) format. Example: "2024-01-01T12:04:06-04:
|
974
|
+
# 00"
|
975
|
+
# Corresponds to the JSON property `startTime`
|
976
|
+
# @return [String]
|
977
|
+
attr_accessor :start_time
|
978
|
+
|
979
|
+
# Output only. The state of the maintenance event.
|
980
|
+
# Corresponds to the JSON property `state`
|
981
|
+
# @return [String]
|
982
|
+
attr_accessor :state
|
1174
983
|
|
1175
984
|
def initialize(**args)
|
1176
985
|
update!(**args)
|
@@ -1178,12 +987,9 @@ module Google
|
|
1178
987
|
|
1179
988
|
# Update properties of this object
|
1180
989
|
def update!(**args)
|
1181
|
-
@
|
1182
|
-
@
|
1183
|
-
@
|
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)
|
990
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
991
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
992
|
+
@state = args[:state] if args.key?(:state)
|
1187
993
|
end
|
1188
994
|
end
|
1189
995
|
|
@@ -1438,27 +1244,6 @@ module Google
|
|
1438
1244
|
end
|
1439
1245
|
end
|
1440
1246
|
|
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
1247
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1463
1248
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1464
1249
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -1629,33 +1414,6 @@ module Google
|
|
1629
1414
|
end
|
1630
1415
|
end
|
1631
1416
|
|
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
1417
|
# Request message for RemoveIamPolicy method.
|
1660
1418
|
class RemoveIamPolicyRequest
|
1661
1419
|
include Google::Apis::Core::Hashable
|
@@ -1748,32 +1506,6 @@ module Google
|
|
1748
1506
|
end
|
1749
1507
|
end
|
1750
1508
|
|
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
1509
|
# The `Status` type defines a logical error model that is suitable for different
|
1778
1510
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1779
1511
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1813,25 +1545,6 @@ module Google
|
|
1813
1545
|
end
|
1814
1546
|
end
|
1815
1547
|
|
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
1548
|
# Request message for `TestIamPermissions` method.
|
1836
1549
|
class TestIamPermissionsRequest
|
1837
1550
|
include Google::Apis::Core::Hashable
|
@@ -1951,25 +1664,6 @@ module Google
|
|
1951
1664
|
@version_number = args[:version_number] if args.key?(:version_number)
|
1952
1665
|
end
|
1953
1666
|
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
1667
|
end
|
1974
1668
|
end
|
1975
1669
|
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.
|
19
|
+
GEM_VERSION = "0.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250224"
|
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,13 +136,13 @@ module Google
|
|
178
136
|
include Google::Apis::Core::JsonObjectSupport
|
179
137
|
end
|
180
138
|
|
181
|
-
class
|
139
|
+
class LoggingConfig
|
182
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
141
|
|
184
142
|
include Google::Apis::Core::JsonObjectSupport
|
185
143
|
end
|
186
144
|
|
187
|
-
class
|
145
|
+
class MaintenanceEvent
|
188
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
147
|
|
190
148
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -226,12 +184,6 @@ module Google
|
|
226
184
|
include Google::Apis::Core::JsonObjectSupport
|
227
185
|
end
|
228
186
|
|
229
|
-
class PlacerLocation
|
230
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
-
|
232
|
-
include Google::Apis::Core::JsonObjectSupport
|
233
|
-
end
|
234
|
-
|
235
187
|
class Policy
|
236
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
189
|
|
@@ -250,12 +202,6 @@ module Google
|
|
250
202
|
include Google::Apis::Core::JsonObjectSupport
|
251
203
|
end
|
252
204
|
|
253
|
-
class RegionalMigDistributionPolicy
|
254
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
-
|
256
|
-
include Google::Apis::Core::JsonObjectSupport
|
257
|
-
end
|
258
|
-
|
259
205
|
class RemoveIamPolicyRequest
|
260
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
207
|
|
@@ -280,24 +226,12 @@ module Google
|
|
280
226
|
include Google::Apis::Core::JsonObjectSupport
|
281
227
|
end
|
282
228
|
|
283
|
-
class SpannerLocation
|
284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
-
|
286
|
-
include Google::Apis::Core::JsonObjectSupport
|
287
|
-
end
|
288
|
-
|
289
229
|
class Status
|
290
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
231
|
|
292
232
|
include Google::Apis::Core::JsonObjectSupport
|
293
233
|
end
|
294
234
|
|
295
|
-
class TenantProjectProxy
|
296
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
-
|
298
|
-
include Google::Apis::Core::JsonObjectSupport
|
299
|
-
end
|
300
|
-
|
301
235
|
class TestIamPermissionsRequest
|
302
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
237
|
|
@@ -328,12 +262,6 @@ module Google
|
|
328
262
|
include Google::Apis::Core::JsonObjectSupport
|
329
263
|
end
|
330
264
|
|
331
|
-
class ZoneConfiguration
|
332
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
-
|
334
|
-
include Google::Apis::Core::JsonObjectSupport
|
335
|
-
end
|
336
|
-
|
337
265
|
class Accelerator
|
338
266
|
# @private
|
339
267
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -342,20 +270,6 @@ module Google
|
|
342
270
|
end
|
343
271
|
end
|
344
272
|
|
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
273
|
class AuditConfig
|
360
274
|
# @private
|
361
275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -383,35 +297,12 @@ module Google
|
|
383
297
|
end
|
384
298
|
end
|
385
299
|
|
386
|
-
class BlobstoreLocation
|
387
|
-
# @private
|
388
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
389
|
-
collection :policy_id, as: 'policyId'
|
390
|
-
end
|
391
|
-
end
|
392
|
-
|
393
300
|
class CancelOperationRequest
|
394
301
|
# @private
|
395
302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
396
303
|
end
|
397
304
|
end
|
398
305
|
|
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
306
|
class CryptoKeyConfig
|
416
307
|
# @private
|
417
308
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -419,14 +310,6 @@ module Google
|
|
419
310
|
end
|
420
311
|
end
|
421
312
|
|
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
313
|
class DnsPeering
|
431
314
|
# @private
|
432
315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -462,14 +345,6 @@ module Google
|
|
462
345
|
end
|
463
346
|
end
|
464
347
|
|
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
348
|
class IamPolicy
|
474
349
|
# @private
|
475
350
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -504,6 +379,10 @@ module Google
|
|
504
379
|
|
505
380
|
property :gcs_bucket, as: 'gcsBucket'
|
506
381
|
hash :labels, as: 'labels'
|
382
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::DatafusionV1beta1::LoggingConfig, decorator: Google::Apis::DatafusionV1beta1::LoggingConfig::Representation
|
383
|
+
|
384
|
+
collection :maintenance_events, as: 'maintenanceEvents', class: Google::Apis::DatafusionV1beta1::MaintenanceEvent, decorator: Google::Apis::DatafusionV1beta1::MaintenanceEvent::Representation
|
385
|
+
|
507
386
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::DatafusionV1beta1::MaintenancePolicy, decorator: Google::Apis::DatafusionV1beta1::MaintenancePolicy::Representation
|
508
387
|
|
509
388
|
property :name, as: 'name'
|
@@ -513,6 +392,7 @@ module Google
|
|
513
392
|
property :p4_service_account, as: 'p4ServiceAccount'
|
514
393
|
property :patch_revision, as: 'patchRevision'
|
515
394
|
property :private_instance, as: 'privateInstance'
|
395
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
516
396
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
517
397
|
property :service_account, as: 'serviceAccount'
|
518
398
|
property :service_endpoint, as: 'serviceEndpoint'
|
@@ -527,25 +407,14 @@ module Google
|
|
527
407
|
end
|
528
408
|
end
|
529
409
|
|
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
410
|
class ListAvailableVersionsResponse
|
544
411
|
# @private
|
545
412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
546
413
|
collection :available_versions, as: 'availableVersions', class: Google::Apis::DatafusionV1beta1::Version, decorator: Google::Apis::DatafusionV1beta1::Version::Representation
|
547
414
|
|
548
415
|
property :next_page_token, as: 'nextPageToken'
|
416
|
+
collection :versions, as: 'versions', class: Google::Apis::DatafusionV1beta1::Version, decorator: Google::Apis::DatafusionV1beta1::Version::Representation
|
417
|
+
|
549
418
|
end
|
550
419
|
end
|
551
420
|
|
@@ -606,29 +475,19 @@ module Google
|
|
606
475
|
end
|
607
476
|
end
|
608
477
|
|
609
|
-
class
|
478
|
+
class LoggingConfig
|
610
479
|
# @private
|
611
480
|
class Representation < Google::Apis::Core::JsonRepresentation
|
612
|
-
property :
|
613
|
-
property :location_type, as: 'locationType'
|
481
|
+
property :instance_cloud_logging_disabled, as: 'instanceCloudLoggingDisabled'
|
614
482
|
end
|
615
483
|
end
|
616
484
|
|
617
|
-
class
|
485
|
+
class MaintenanceEvent
|
618
486
|
# @private
|
619
487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
620
|
-
property :
|
621
|
-
|
622
|
-
property :
|
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
|
-
|
488
|
+
property :end_time, as: 'endTime'
|
489
|
+
property :start_time, as: 'startTime'
|
490
|
+
property :state, as: 'state'
|
632
491
|
end
|
633
492
|
end
|
634
493
|
|
@@ -696,13 +555,6 @@ module Google
|
|
696
555
|
end
|
697
556
|
end
|
698
557
|
|
699
|
-
class PlacerLocation
|
700
|
-
# @private
|
701
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
702
|
-
property :placer_config, as: 'placerConfig'
|
703
|
-
end
|
704
|
-
end
|
705
|
-
|
706
558
|
class Policy
|
707
559
|
# @private
|
708
560
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -733,15 +585,6 @@ module Google
|
|
733
585
|
end
|
734
586
|
end
|
735
587
|
|
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
588
|
class RemoveIamPolicyRequest
|
746
589
|
# @private
|
747
590
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -769,14 +612,6 @@ module Google
|
|
769
612
|
end
|
770
613
|
end
|
771
614
|
|
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
615
|
class Status
|
781
616
|
# @private
|
782
617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -786,13 +621,6 @@ module Google
|
|
786
621
|
end
|
787
622
|
end
|
788
623
|
|
789
|
-
class TenantProjectProxy
|
790
|
-
# @private
|
791
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
792
|
-
collection :project_numbers, as: 'projectNumbers'
|
793
|
-
end
|
794
|
-
end
|
795
|
-
|
796
624
|
class TestIamPermissionsRequest
|
797
625
|
# @private
|
798
626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -830,13 +658,6 @@ module Google
|
|
830
658
|
property :version_number, as: 'versionNumber'
|
831
659
|
end
|
832
660
|
end
|
833
|
-
|
834
|
-
class ZoneConfiguration
|
835
|
-
# @private
|
836
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
837
|
-
property :zone, as: 'zone'
|
838
|
-
end
|
839
|
-
end
|
840
661
|
end
|
841
662
|
end
|
842
663
|
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,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datafusion_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datafusion_v1beta1/v0.35.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datafusion_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Data Fusion API V1beta1
|
82
79
|
test_files: []
|