google-apis-metastore_v1alpha 0.84.0 → 0.85.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ae0264f16649bcb5592704abf2ec40657482c8e9e2f0709a9c9c42b95d731b5
|
|
4
|
+
data.tar.gz: 217f9ca37cefe14d1795596fc089e8c0eea7b0aa06d979312ed5e7f9f590369c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0cd6a4c3073cbce1ef7bfb961c3561d5a40a9747c5b19fb5ed4345673f0dab590fcd4f4f481dbaadf1ae004cd56d25b3a2c47e719d2a3fd7b0850e994394822
|
|
7
|
+
data.tar.gz: 3fbc61e3f8043cdafd26b80f74079a9a80a74a643b3f346d5442f4a4a7a8eebff8cbb5c6683c7837a09f5c2194bb3f181ede5d436eee7e3e6b29e60677eb68f2
|
data/CHANGELOG.md
CHANGED
|
@@ -567,6 +567,37 @@ module Google
|
|
|
567
567
|
end
|
|
568
568
|
end
|
|
569
569
|
|
|
570
|
+
# Aggregated report at the catalog level.
|
|
571
|
+
class CatalogReport
|
|
572
|
+
include Google::Apis::Core::Hashable
|
|
573
|
+
|
|
574
|
+
# The name of the catalog (format: projects/*/catalogs/*).
|
|
575
|
+
# Corresponds to the JSON property `catalog`
|
|
576
|
+
# @return [String]
|
|
577
|
+
attr_accessor :catalog
|
|
578
|
+
|
|
579
|
+
# The type of catalog.
|
|
580
|
+
# Corresponds to the JSON property `catalogType`
|
|
581
|
+
# @return [String]
|
|
582
|
+
attr_accessor :catalog_type
|
|
583
|
+
|
|
584
|
+
# A map of database names to their respective reports.
|
|
585
|
+
# Corresponds to the JSON property `databaseReports`
|
|
586
|
+
# @return [Hash<String,Google::Apis::MetastoreV1alpha::DatabaseReport>]
|
|
587
|
+
attr_accessor :database_reports
|
|
588
|
+
|
|
589
|
+
def initialize(**args)
|
|
590
|
+
update!(**args)
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
# Update properties of this object
|
|
594
|
+
def update!(**args)
|
|
595
|
+
@catalog = args[:catalog] if args.key?(:catalog)
|
|
596
|
+
@catalog_type = args[:catalog_type] if args.key?(:catalog_type)
|
|
597
|
+
@database_reports = args[:database_reports] if args.key?(:database_reports)
|
|
598
|
+
end
|
|
599
|
+
end
|
|
600
|
+
|
|
570
601
|
# Summary of results for a specific destination catalog.
|
|
571
602
|
class CatalogSummary
|
|
572
603
|
include Google::Apis::Core::Hashable
|
|
@@ -968,6 +999,44 @@ module Google
|
|
|
968
999
|
end
|
|
969
1000
|
end
|
|
970
1001
|
|
|
1002
|
+
# Aggregated report at the database level.
|
|
1003
|
+
class DatabaseReport
|
|
1004
|
+
include Google::Apis::Core::Hashable
|
|
1005
|
+
|
|
1006
|
+
# The name of the database.
|
|
1007
|
+
# Corresponds to the JSON property `database`
|
|
1008
|
+
# @return [String]
|
|
1009
|
+
attr_accessor :database
|
|
1010
|
+
|
|
1011
|
+
# Represents the migration plan for a specific resource (e.g. Database, Table).
|
|
1012
|
+
# Corresponds to the JSON property `executionPlan`
|
|
1013
|
+
# @return [Google::Apis::MetastoreV1alpha::ExecutionPlan]
|
|
1014
|
+
attr_accessor :execution_plan
|
|
1015
|
+
|
|
1016
|
+
# Represents the actual migration result for a specific resource (e.g. Database,
|
|
1017
|
+
# Table).
|
|
1018
|
+
# Corresponds to the JSON property `executionResult`
|
|
1019
|
+
# @return [Google::Apis::MetastoreV1alpha::ExecutionResult]
|
|
1020
|
+
attr_accessor :execution_result
|
|
1021
|
+
|
|
1022
|
+
# A map of table names to their respective reports.
|
|
1023
|
+
# Corresponds to the JSON property `tableReports`
|
|
1024
|
+
# @return [Hash<String,Google::Apis::MetastoreV1alpha::TableReport>]
|
|
1025
|
+
attr_accessor :table_reports
|
|
1026
|
+
|
|
1027
|
+
def initialize(**args)
|
|
1028
|
+
update!(**args)
|
|
1029
|
+
end
|
|
1030
|
+
|
|
1031
|
+
# Update properties of this object
|
|
1032
|
+
def update!(**args)
|
|
1033
|
+
@database = args[:database] if args.key?(:database)
|
|
1034
|
+
@execution_plan = args[:execution_plan] if args.key?(:execution_plan)
|
|
1035
|
+
@execution_result = args[:execution_result] if args.key?(:execution_result)
|
|
1036
|
+
@table_reports = args[:table_reports] if args.key?(:table_reports)
|
|
1037
|
+
end
|
|
1038
|
+
end
|
|
1039
|
+
|
|
971
1040
|
# Summary of results for a specific database in a catalog.
|
|
972
1041
|
class DatabaseSummary
|
|
973
1042
|
include Google::Apis::Core::Hashable
|
|
@@ -1094,6 +1163,69 @@ module Google
|
|
|
1094
1163
|
end
|
|
1095
1164
|
end
|
|
1096
1165
|
|
|
1166
|
+
# Represents the migration plan for a specific resource (e.g. Database, Table).
|
|
1167
|
+
class ExecutionPlan
|
|
1168
|
+
include Google::Apis::Core::Hashable
|
|
1169
|
+
|
|
1170
|
+
# The action that will be taken for a resource during migration.
|
|
1171
|
+
# Corresponds to the JSON property `action`
|
|
1172
|
+
# @return [String]
|
|
1173
|
+
attr_accessor :action
|
|
1174
|
+
|
|
1175
|
+
# A map of field names to their respective value diff.
|
|
1176
|
+
# Corresponds to the JSON property `diffs`
|
|
1177
|
+
# @return [Hash<String,Google::Apis::MetastoreV1alpha::ValueDiff>]
|
|
1178
|
+
attr_accessor :diffs
|
|
1179
|
+
|
|
1180
|
+
# A human-readable string explaining why the action was chosen.
|
|
1181
|
+
# Corresponds to the JSON property `reason`
|
|
1182
|
+
# @return [String]
|
|
1183
|
+
attr_accessor :reason
|
|
1184
|
+
|
|
1185
|
+
def initialize(**args)
|
|
1186
|
+
update!(**args)
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
# Update properties of this object
|
|
1190
|
+
def update!(**args)
|
|
1191
|
+
@action = args[:action] if args.key?(:action)
|
|
1192
|
+
@diffs = args[:diffs] if args.key?(:diffs)
|
|
1193
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1194
|
+
end
|
|
1195
|
+
end
|
|
1196
|
+
|
|
1197
|
+
# Represents the actual migration result for a specific resource (e.g. Database,
|
|
1198
|
+
# Table).
|
|
1199
|
+
class ExecutionResult
|
|
1200
|
+
include Google::Apis::Core::Hashable
|
|
1201
|
+
|
|
1202
|
+
# Description of the error if the state is FAILED.
|
|
1203
|
+
# Corresponds to the JSON property `errorMessage`
|
|
1204
|
+
# @return [String]
|
|
1205
|
+
attr_accessor :error_message
|
|
1206
|
+
|
|
1207
|
+
# Remediation steps for the error if the state is FAILED.
|
|
1208
|
+
# Corresponds to the JSON property `remediation`
|
|
1209
|
+
# @return [String]
|
|
1210
|
+
attr_accessor :remediation
|
|
1211
|
+
|
|
1212
|
+
# Output only. The state of the migration for a resource.
|
|
1213
|
+
# Corresponds to the JSON property `state`
|
|
1214
|
+
# @return [String]
|
|
1215
|
+
attr_accessor :state
|
|
1216
|
+
|
|
1217
|
+
def initialize(**args)
|
|
1218
|
+
update!(**args)
|
|
1219
|
+
end
|
|
1220
|
+
|
|
1221
|
+
# Update properties of this object
|
|
1222
|
+
def update!(**args)
|
|
1223
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
|
1224
|
+
@remediation = args[:remediation] if args.key?(:remediation)
|
|
1225
|
+
@state = args[:state] if args.key?(:state)
|
|
1226
|
+
end
|
|
1227
|
+
end
|
|
1228
|
+
|
|
1097
1229
|
# Request message for DataprocMetastore.ExportMetadata.
|
|
1098
1230
|
class ExportMetadataRequest
|
|
1099
1231
|
include Google::Apis::Core::Hashable
|
|
@@ -2107,6 +2239,33 @@ module Google
|
|
|
2107
2239
|
end
|
|
2108
2240
|
end
|
|
2109
2241
|
|
|
2242
|
+
# Report containing the results of a migration run. This report is generated at
|
|
2243
|
+
# the specified path in the BigLakeMetastoreMigrationConfig after the backfill
|
|
2244
|
+
# is complete, or when a dry run is executed.
|
|
2245
|
+
class MigrationReport
|
|
2246
|
+
include Google::Apis::Core::Hashable
|
|
2247
|
+
|
|
2248
|
+
# Output only. Detailed results for each catalog involved in the migration.
|
|
2249
|
+
# Corresponds to the JSON property `catalogReports`
|
|
2250
|
+
# @return [Array<Google::Apis::MetastoreV1alpha::CatalogReport>]
|
|
2251
|
+
attr_accessor :catalog_reports
|
|
2252
|
+
|
|
2253
|
+
# Summary of the migration results.
|
|
2254
|
+
# Corresponds to the JSON property `summary`
|
|
2255
|
+
# @return [Google::Apis::MetastoreV1alpha::MigrationSummary]
|
|
2256
|
+
attr_accessor :summary
|
|
2257
|
+
|
|
2258
|
+
def initialize(**args)
|
|
2259
|
+
update!(**args)
|
|
2260
|
+
end
|
|
2261
|
+
|
|
2262
|
+
# Update properties of this object
|
|
2263
|
+
def update!(**args)
|
|
2264
|
+
@catalog_reports = args[:catalog_reports] if args.key?(:catalog_reports)
|
|
2265
|
+
@summary = args[:summary] if args.key?(:summary)
|
|
2266
|
+
end
|
|
2267
|
+
end
|
|
2268
|
+
|
|
2110
2269
|
# Summary of the migration results.
|
|
2111
2270
|
class MigrationSummary
|
|
2112
2271
|
include Google::Apis::Core::Hashable
|
|
@@ -2403,6 +2562,37 @@ module Google
|
|
|
2403
2562
|
end
|
|
2404
2563
|
end
|
|
2405
2564
|
|
|
2565
|
+
# Partition migration report for a Hive table.
|
|
2566
|
+
class PartitionReport
|
|
2567
|
+
include Google::Apis::Core::Hashable
|
|
2568
|
+
|
|
2569
|
+
# The number of partitions that failed to migrate at the target.
|
|
2570
|
+
# Corresponds to the JSON property `partitionFailedCount`
|
|
2571
|
+
# @return [Fixnum]
|
|
2572
|
+
attr_accessor :partition_failed_count
|
|
2573
|
+
|
|
2574
|
+
# The number of partitions successfully migrated at the target.
|
|
2575
|
+
# Corresponds to the JSON property `partitionSuccessCount`
|
|
2576
|
+
# @return [Fixnum]
|
|
2577
|
+
attr_accessor :partition_success_count
|
|
2578
|
+
|
|
2579
|
+
# Output only. The state of the partition migration.
|
|
2580
|
+
# Corresponds to the JSON property `state`
|
|
2581
|
+
# @return [String]
|
|
2582
|
+
attr_accessor :state
|
|
2583
|
+
|
|
2584
|
+
def initialize(**args)
|
|
2585
|
+
update!(**args)
|
|
2586
|
+
end
|
|
2587
|
+
|
|
2588
|
+
# Update properties of this object
|
|
2589
|
+
def update!(**args)
|
|
2590
|
+
@partition_failed_count = args[:partition_failed_count] if args.key?(:partition_failed_count)
|
|
2591
|
+
@partition_success_count = args[:partition_success_count] if args.key?(:partition_success_count)
|
|
2592
|
+
@state = args[:state] if args.key?(:state)
|
|
2593
|
+
end
|
|
2594
|
+
end
|
|
2595
|
+
|
|
2406
2596
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
2407
2597
|
# controls for Google Cloud resources.A Policy is a collection of bindings. A
|
|
2408
2598
|
# binding binds one or more members, or principals, to a single role. Principals
|
|
@@ -3194,6 +3384,51 @@ module Google
|
|
|
3194
3384
|
end
|
|
3195
3385
|
end
|
|
3196
3386
|
|
|
3387
|
+
# Aggregated report at the table level.
|
|
3388
|
+
class TableReport
|
|
3389
|
+
include Google::Apis::Core::Hashable
|
|
3390
|
+
|
|
3391
|
+
# Represents the migration plan for a specific resource (e.g. Database, Table).
|
|
3392
|
+
# Corresponds to the JSON property `executionPlan`
|
|
3393
|
+
# @return [Google::Apis::MetastoreV1alpha::ExecutionPlan]
|
|
3394
|
+
attr_accessor :execution_plan
|
|
3395
|
+
|
|
3396
|
+
# Represents the actual migration result for a specific resource (e.g. Database,
|
|
3397
|
+
# Table).
|
|
3398
|
+
# Corresponds to the JSON property `executionResult`
|
|
3399
|
+
# @return [Google::Apis::MetastoreV1alpha::ExecutionResult]
|
|
3400
|
+
attr_accessor :execution_result
|
|
3401
|
+
|
|
3402
|
+
# The total number of partitions identified at the source during discovery. This
|
|
3403
|
+
# is only relevant for Hive Partitioned tables.
|
|
3404
|
+
# Corresponds to the JSON property `partitionDiscoveredCount`
|
|
3405
|
+
# @return [Fixnum]
|
|
3406
|
+
attr_accessor :partition_discovered_count
|
|
3407
|
+
|
|
3408
|
+
# Partition migration report for a Hive table.
|
|
3409
|
+
# Corresponds to the JSON property `partitionReport`
|
|
3410
|
+
# @return [Google::Apis::MetastoreV1alpha::PartitionReport]
|
|
3411
|
+
attr_accessor :partition_report
|
|
3412
|
+
|
|
3413
|
+
# The name of the table.
|
|
3414
|
+
# Corresponds to the JSON property `table`
|
|
3415
|
+
# @return [String]
|
|
3416
|
+
attr_accessor :table
|
|
3417
|
+
|
|
3418
|
+
def initialize(**args)
|
|
3419
|
+
update!(**args)
|
|
3420
|
+
end
|
|
3421
|
+
|
|
3422
|
+
# Update properties of this object
|
|
3423
|
+
def update!(**args)
|
|
3424
|
+
@execution_plan = args[:execution_plan] if args.key?(:execution_plan)
|
|
3425
|
+
@execution_result = args[:execution_result] if args.key?(:execution_result)
|
|
3426
|
+
@partition_discovered_count = args[:partition_discovered_count] if args.key?(:partition_discovered_count)
|
|
3427
|
+
@partition_report = args[:partition_report] if args.key?(:partition_report)
|
|
3428
|
+
@table = args[:table] if args.key?(:table)
|
|
3429
|
+
end
|
|
3430
|
+
end
|
|
3431
|
+
|
|
3197
3432
|
# Aggregated summary of results for all tables in a database.
|
|
3198
3433
|
class TableSummary
|
|
3199
3434
|
include Google::Apis::Core::Hashable
|
|
@@ -3301,6 +3536,31 @@ module Google
|
|
|
3301
3536
|
@permissions = args[:permissions] if args.key?(:permissions)
|
|
3302
3537
|
end
|
|
3303
3538
|
end
|
|
3539
|
+
|
|
3540
|
+
# A field-level metadata mismatch for a resource between the source and target.
|
|
3541
|
+
class ValueDiff
|
|
3542
|
+
include Google::Apis::Core::Hashable
|
|
3543
|
+
|
|
3544
|
+
# The value of the field at the source.
|
|
3545
|
+
# Corresponds to the JSON property `sourceValue`
|
|
3546
|
+
# @return [String]
|
|
3547
|
+
attr_accessor :source_value
|
|
3548
|
+
|
|
3549
|
+
# The value of the field at the target.
|
|
3550
|
+
# Corresponds to the JSON property `targetValue`
|
|
3551
|
+
# @return [String]
|
|
3552
|
+
attr_accessor :target_value
|
|
3553
|
+
|
|
3554
|
+
def initialize(**args)
|
|
3555
|
+
update!(**args)
|
|
3556
|
+
end
|
|
3557
|
+
|
|
3558
|
+
# Update properties of this object
|
|
3559
|
+
def update!(**args)
|
|
3560
|
+
@source_value = args[:source_value] if args.key?(:source_value)
|
|
3561
|
+
@target_value = args[:target_value] if args.key?(:target_value)
|
|
3562
|
+
end
|
|
3563
|
+
end
|
|
3304
3564
|
end
|
|
3305
3565
|
end
|
|
3306
3566
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MetastoreV1alpha
|
|
18
18
|
# Version of the google-apis-metastore_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.85.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260811"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -112,6 +112,12 @@ module Google
|
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
|
113
113
|
end
|
|
114
114
|
|
|
115
|
+
class CatalogReport
|
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
|
+
|
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
119
|
+
end
|
|
120
|
+
|
|
115
121
|
class CatalogSummary
|
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
123
|
|
|
@@ -178,6 +184,12 @@ module Google
|
|
|
178
184
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
185
|
end
|
|
180
186
|
|
|
187
|
+
class DatabaseReport
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
181
193
|
class DatabaseSummary
|
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
195
|
|
|
@@ -208,6 +220,18 @@ module Google
|
|
|
208
220
|
include Google::Apis::Core::JsonObjectSupport
|
|
209
221
|
end
|
|
210
222
|
|
|
223
|
+
class ExecutionPlan
|
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
|
+
|
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
class ExecutionResult
|
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
|
+
|
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
233
|
+
end
|
|
234
|
+
|
|
211
235
|
class ExportMetadataRequest
|
|
212
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
237
|
|
|
@@ -370,6 +394,12 @@ module Google
|
|
|
370
394
|
include Google::Apis::Core::JsonObjectSupport
|
|
371
395
|
end
|
|
372
396
|
|
|
397
|
+
class MigrationReport
|
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
|
+
|
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
401
|
+
end
|
|
402
|
+
|
|
373
403
|
class MigrationSummary
|
|
374
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
375
405
|
|
|
@@ -418,6 +448,12 @@ module Google
|
|
|
418
448
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
449
|
end
|
|
420
450
|
|
|
451
|
+
class PartitionReport
|
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
+
|
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
+
end
|
|
456
|
+
|
|
421
457
|
class Policy
|
|
422
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
459
|
|
|
@@ -514,6 +550,12 @@ module Google
|
|
|
514
550
|
include Google::Apis::Core::JsonObjectSupport
|
|
515
551
|
end
|
|
516
552
|
|
|
553
|
+
class TableReport
|
|
554
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
555
|
+
|
|
556
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
557
|
+
end
|
|
558
|
+
|
|
517
559
|
class TableSummary
|
|
518
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
561
|
|
|
@@ -538,6 +580,12 @@ module Google
|
|
|
538
580
|
include Google::Apis::Core::JsonObjectSupport
|
|
539
581
|
end
|
|
540
582
|
|
|
583
|
+
class ValueDiff
|
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
|
+
|
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
587
|
+
end
|
|
588
|
+
|
|
541
589
|
class AlterMetadataResourceLocationRequest
|
|
542
590
|
# @private
|
|
543
591
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -675,6 +723,16 @@ module Google
|
|
|
675
723
|
end
|
|
676
724
|
end
|
|
677
725
|
|
|
726
|
+
class CatalogReport
|
|
727
|
+
# @private
|
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
729
|
+
property :catalog, as: 'catalog'
|
|
730
|
+
property :catalog_type, as: 'catalogType'
|
|
731
|
+
hash :database_reports, as: 'databaseReports', class: Google::Apis::MetastoreV1alpha::DatabaseReport, decorator: Google::Apis::MetastoreV1alpha::DatabaseReport::Representation
|
|
732
|
+
|
|
733
|
+
end
|
|
734
|
+
end
|
|
735
|
+
|
|
678
736
|
class CatalogSummary
|
|
679
737
|
# @private
|
|
680
738
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -778,6 +836,19 @@ module Google
|
|
|
778
836
|
end
|
|
779
837
|
end
|
|
780
838
|
|
|
839
|
+
class DatabaseReport
|
|
840
|
+
# @private
|
|
841
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
842
|
+
property :database, as: 'database'
|
|
843
|
+
property :execution_plan, as: 'executionPlan', class: Google::Apis::MetastoreV1alpha::ExecutionPlan, decorator: Google::Apis::MetastoreV1alpha::ExecutionPlan::Representation
|
|
844
|
+
|
|
845
|
+
property :execution_result, as: 'executionResult', class: Google::Apis::MetastoreV1alpha::ExecutionResult, decorator: Google::Apis::MetastoreV1alpha::ExecutionResult::Representation
|
|
846
|
+
|
|
847
|
+
hash :table_reports, as: 'tableReports', class: Google::Apis::MetastoreV1alpha::TableReport, decorator: Google::Apis::MetastoreV1alpha::TableReport::Representation
|
|
848
|
+
|
|
849
|
+
end
|
|
850
|
+
end
|
|
851
|
+
|
|
781
852
|
class DatabaseSummary
|
|
782
853
|
# @private
|
|
783
854
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -818,6 +889,25 @@ module Google
|
|
|
818
889
|
end
|
|
819
890
|
end
|
|
820
891
|
|
|
892
|
+
class ExecutionPlan
|
|
893
|
+
# @private
|
|
894
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
895
|
+
property :action, as: 'action'
|
|
896
|
+
hash :diffs, as: 'diffs', class: Google::Apis::MetastoreV1alpha::ValueDiff, decorator: Google::Apis::MetastoreV1alpha::ValueDiff::Representation
|
|
897
|
+
|
|
898
|
+
property :reason, as: 'reason'
|
|
899
|
+
end
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
class ExecutionResult
|
|
903
|
+
# @private
|
|
904
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
905
|
+
property :error_message, as: 'errorMessage'
|
|
906
|
+
property :remediation, as: 'remediation'
|
|
907
|
+
property :state, as: 'state'
|
|
908
|
+
end
|
|
909
|
+
end
|
|
910
|
+
|
|
821
911
|
class ExportMetadataRequest
|
|
822
912
|
# @private
|
|
823
913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1094,6 +1184,16 @@ module Google
|
|
|
1094
1184
|
end
|
|
1095
1185
|
end
|
|
1096
1186
|
|
|
1187
|
+
class MigrationReport
|
|
1188
|
+
# @private
|
|
1189
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1190
|
+
collection :catalog_reports, as: 'catalogReports', class: Google::Apis::MetastoreV1alpha::CatalogReport, decorator: Google::Apis::MetastoreV1alpha::CatalogReport::Representation
|
|
1191
|
+
|
|
1192
|
+
property :summary, as: 'summary', class: Google::Apis::MetastoreV1alpha::MigrationSummary, decorator: Google::Apis::MetastoreV1alpha::MigrationSummary::Representation
|
|
1193
|
+
|
|
1194
|
+
end
|
|
1195
|
+
end
|
|
1196
|
+
|
|
1097
1197
|
class MigrationSummary
|
|
1098
1198
|
# @private
|
|
1099
1199
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1173,6 +1273,15 @@ module Google
|
|
|
1173
1273
|
end
|
|
1174
1274
|
end
|
|
1175
1275
|
|
|
1276
|
+
class PartitionReport
|
|
1277
|
+
# @private
|
|
1278
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1279
|
+
property :partition_failed_count, :numeric_string => true, as: 'partitionFailedCount'
|
|
1280
|
+
property :partition_success_count, :numeric_string => true, as: 'partitionSuccessCount'
|
|
1281
|
+
property :state, as: 'state'
|
|
1282
|
+
end
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1176
1285
|
class Policy
|
|
1177
1286
|
# @private
|
|
1178
1287
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1355,6 +1464,20 @@ module Google
|
|
|
1355
1464
|
end
|
|
1356
1465
|
end
|
|
1357
1466
|
|
|
1467
|
+
class TableReport
|
|
1468
|
+
# @private
|
|
1469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1470
|
+
property :execution_plan, as: 'executionPlan', class: Google::Apis::MetastoreV1alpha::ExecutionPlan, decorator: Google::Apis::MetastoreV1alpha::ExecutionPlan::Representation
|
|
1471
|
+
|
|
1472
|
+
property :execution_result, as: 'executionResult', class: Google::Apis::MetastoreV1alpha::ExecutionResult, decorator: Google::Apis::MetastoreV1alpha::ExecutionResult::Representation
|
|
1473
|
+
|
|
1474
|
+
property :partition_discovered_count, :numeric_string => true, as: 'partitionDiscoveredCount'
|
|
1475
|
+
property :partition_report, as: 'partitionReport', class: Google::Apis::MetastoreV1alpha::PartitionReport, decorator: Google::Apis::MetastoreV1alpha::PartitionReport::Representation
|
|
1476
|
+
|
|
1477
|
+
property :table, as: 'table'
|
|
1478
|
+
end
|
|
1479
|
+
end
|
|
1480
|
+
|
|
1358
1481
|
class TableSummary
|
|
1359
1482
|
# @private
|
|
1360
1483
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1386,6 +1509,14 @@ module Google
|
|
|
1386
1509
|
collection :permissions, as: 'permissions'
|
|
1387
1510
|
end
|
|
1388
1511
|
end
|
|
1512
|
+
|
|
1513
|
+
class ValueDiff
|
|
1514
|
+
# @private
|
|
1515
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1516
|
+
property :source_value, as: 'sourceValue'
|
|
1517
|
+
property :target_value, as: 'targetValue'
|
|
1518
|
+
end
|
|
1519
|
+
end
|
|
1389
1520
|
end
|
|
1390
1521
|
end
|
|
1391
1522
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-metastore_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.85.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.85.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|