google-apis-metastore_v1alpha 0.83.0 → 0.84.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: 6bf07e6c7ed90c48ee9fd51612b8feebea396588e3b9bc04ea0b63c8d887f545
4
- data.tar.gz: ddb59cf0851feb92e9d6d21b3a46f45ad373e076cc05dec4e118fb6b17531890
3
+ metadata.gz: 760c34c43dcd6b6161090c4369e9b34b4ab681266f0296e6a5d44bc1dfe76668
4
+ data.tar.gz: 1d20c12700af21b75c0714977891dbbbaeb6770d63774e342a1c6751c2aace51
5
5
  SHA512:
6
- metadata.gz: 8b6b5b83c7018b6f10b22bbfdf3375d4fa5e23c2722de5749f1f057a8f3ed2f92f6272ab34b277bbe05b0c243680960e212a57fa27bafaf714da58e7e0e19dcb
7
- data.tar.gz: 73e4c032328020edba812b37e1ad236fce8ab1b46a28f0ec8f5bd92514e5a591a97974138e6021986c222fbb307d3677aeba0fc98656b13cf6c6b7b864e3cdf5
6
+ metadata.gz: 7be2085447d26fb5182d18b9629eabc65beccf9bbb4d8f5997fe83b56252d56e52cece9b9e5a32810b5556be5a5459eeba9e6daacbe97e3d5da6f3e8c84556f2
7
+ data.tar.gz: e1b2c3ad1082289b8c80456bbf46ee59e2c50b7a2bdc80cfb97525c24a5d8f6df1a291f66bc8925374c45e69de47659f0bb2ba31d6291fbace819ac1293b37ce
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1alpha
2
2
 
3
+ ### v0.84.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260723
6
+
3
7
  ### v0.83.0 (2026-06-14)
4
8
 
5
9
  * Regenerated using generator version 0.19.0
@@ -269,6 +269,38 @@ module Google
269
269
  end
270
270
  end
271
271
 
272
+ # Backfill status for the migration execution.
273
+ class BackfillStatus
274
+ include Google::Apis::Core::Hashable
275
+
276
+ # Summary of the migration results.
277
+ # Corresponds to the JSON property `migrationSummary`
278
+ # @return [Google::Apis::MetastoreV1alpha::MigrationSummary]
279
+ attr_accessor :migration_summary
280
+
281
+ # Output only. The Cloud Storage path where the backfill or dry run report is
282
+ # written. Format: "gs://path-to-report".
283
+ # Corresponds to the JSON property `reportPath`
284
+ # @return [String]
285
+ attr_accessor :report_path
286
+
287
+ # Output only. The current state of the backfill (or dry run).
288
+ # Corresponds to the JSON property `state`
289
+ # @return [String]
290
+ attr_accessor :state
291
+
292
+ def initialize(**args)
293
+ update!(**args)
294
+ end
295
+
296
+ # Update properties of this object
297
+ def update!(**args)
298
+ @migration_summary = args[:migration_summary] if args.key?(:migration_summary)
299
+ @report_path = args[:report_path] if args.key?(:report_path)
300
+ @state = args[:state] if args.key?(:state)
301
+ end
302
+ end
303
+
272
304
  # The details of a backup resource.
273
305
  class Backup
274
306
  include Google::Apis::Core::Hashable
@@ -326,6 +358,68 @@ module Google
326
358
  end
327
359
  end
328
360
 
361
+ # Defines the configuration required to migrate metadata from a Dataproc
362
+ # Metastore service to BigLake Metastore.
363
+ class BigLakeMetastoreMigrationConfig
364
+ include Google::Apis::Core::Hashable
365
+
366
+ # Backfill status for the migration execution.
367
+ # Corresponds to the JSON property `backfillStatus`
368
+ # @return [Google::Apis::MetastoreV1alpha::BackfillStatus]
369
+ attr_accessor :backfill_status
370
+
371
+ # Optional. The policy to handle conflicts when migrating resources, defaults to
372
+ # SKIP if not specified.
373
+ # Corresponds to the JSON property `conflictPolicy`
374
+ # @return [String]
375
+ attr_accessor :conflict_policy
376
+
377
+ # Optional. If true, performs discovery of requested resources and analysis
378
+ # against the target catalog to come up with a plan for each resource (e.g.
379
+ # Create, Update, Skip, etc.). No metadata is actually migrated.
380
+ # Corresponds to the JSON property `dryRun`
381
+ # @return [Boolean]
382
+ attr_accessor :dry_run
383
+ alias_method :dry_run?, :dry_run
384
+
385
+ # Configuration for migrating Hive metadata.
386
+ # Corresponds to the JSON property `hiveConfig`
387
+ # @return [Google::Apis::MetastoreV1alpha::HiveConfig]
388
+ attr_accessor :hive_config
389
+
390
+ # Configuration for migrating Iceberg metadata.
391
+ # Corresponds to the JSON property `icebergConfig`
392
+ # @return [Google::Apis::MetastoreV1alpha::IcebergConfig]
393
+ attr_accessor :iceberg_config
394
+
395
+ # Required. Defines the behavior of the migration execution.
396
+ # Corresponds to the JSON property `mode`
397
+ # @return [String]
398
+ attr_accessor :mode
399
+
400
+ # Optional. The Cloud Storage path where the backfill / dry run report should be
401
+ # written. If not provided, the report will be generated in the service's
402
+ # artifacts bucket. Format: "gs://path/to/folder"
403
+ # Corresponds to the JSON property `reportPath`
404
+ # @return [String]
405
+ attr_accessor :report_path
406
+
407
+ def initialize(**args)
408
+ update!(**args)
409
+ end
410
+
411
+ # Update properties of this object
412
+ def update!(**args)
413
+ @backfill_status = args[:backfill_status] if args.key?(:backfill_status)
414
+ @conflict_policy = args[:conflict_policy] if args.key?(:conflict_policy)
415
+ @dry_run = args[:dry_run] if args.key?(:dry_run)
416
+ @hive_config = args[:hive_config] if args.key?(:hive_config)
417
+ @iceberg_config = args[:iceberg_config] if args.key?(:iceberg_config)
418
+ @mode = args[:mode] if args.key?(:mode)
419
+ @report_path = args[:report_path] if args.key?(:report_path)
420
+ end
421
+ end
422
+
329
423
  # Associates members, or principals, with a role.
330
424
  class Binding
331
425
  include Google::Apis::Core::Hashable
@@ -473,6 +567,37 @@ module Google
473
567
  end
474
568
  end
475
569
 
570
+ # Summary of results for a specific destination catalog.
571
+ class CatalogSummary
572
+ include Google::Apis::Core::Hashable
573
+
574
+ # Output only. The catalog resource name (format: projects/*/catalogs/*).
575
+ # Corresponds to the JSON property `catalog`
576
+ # @return [String]
577
+ attr_accessor :catalog
578
+
579
+ # Output only. The type of the catalog.
580
+ # Corresponds to the JSON property `catalogType`
581
+ # @return [String]
582
+ attr_accessor :catalog_type
583
+
584
+ # Output only. Summary of results for each database in the catalog.
585
+ # Corresponds to the JSON property `databaseSummaries`
586
+ # @return [Array<Google::Apis::MetastoreV1alpha::DatabaseSummary>]
587
+ attr_accessor :database_summaries
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_summaries = args[:database_summaries] if args.key?(:database_summaries)
598
+ end
599
+ end
600
+
476
601
  # Configuration information to start the Change Data Capture (CDC) streams from
477
602
  # customer database to backend database of Dataproc Metastore.
478
603
  class CdcConfig
@@ -843,6 +968,44 @@ module Google
843
968
  end
844
969
  end
845
970
 
971
+ # Summary of results for a specific database in a catalog.
972
+ class DatabaseSummary
973
+ include Google::Apis::Core::Hashable
974
+
975
+ # Output only. The name of the database.
976
+ # Corresponds to the JSON property `database`
977
+ # @return [String]
978
+ attr_accessor :database
979
+
980
+ # Output only. The migration plan action for the database.
981
+ # Corresponds to the JSON property `planAction`
982
+ # @return [String]
983
+ attr_accessor :plan_action
984
+
985
+ # Output only. The migration result status for the database. This is only set if
986
+ # the migration is not a dry run.
987
+ # Corresponds to the JSON property `resultStatus`
988
+ # @return [String]
989
+ attr_accessor :result_status
990
+
991
+ # Aggregated summary of results for all tables in a database.
992
+ # Corresponds to the JSON property `tableSummary`
993
+ # @return [Google::Apis::MetastoreV1alpha::TableSummary]
994
+ attr_accessor :table_summary
995
+
996
+ def initialize(**args)
997
+ update!(**args)
998
+ end
999
+
1000
+ # Update properties of this object
1001
+ def update!(**args)
1002
+ @database = args[:database] if args.key?(:database)
1003
+ @plan_action = args[:plan_action] if args.key?(:plan_action)
1004
+ @result_status = args[:result_status] if args.key?(:result_status)
1005
+ @table_summary = args[:table_summary] if args.key?(:table_summary)
1006
+ end
1007
+ end
1008
+
846
1009
  # Specifies how metastore metadata should be integrated with the Dataplex
847
1010
  # service.
848
1011
  class DataplexConfig
@@ -1114,6 +1277,34 @@ module Google
1114
1277
  end
1115
1278
  end
1116
1279
 
1280
+ # Configuration for migrating Hive metadata.
1281
+ class HiveConfig
1282
+ include Google::Apis::Core::Hashable
1283
+
1284
+ # Required. The target catalog for migrated databases and tables. Format: "
1285
+ # projects/`project_id_or_number`/catalogs/`catalog_id`"
1286
+ # Corresponds to the JSON property `catalog`
1287
+ # @return [String]
1288
+ attr_accessor :catalog
1289
+
1290
+ # Required. The list of databases to migrate to the Hive catalog. Use "*" to
1291
+ # migrate all databases. Note: If Iceberg tables exist in these databases, they
1292
+ # will only be migrated if iceberg_config is also specified.
1293
+ # Corresponds to the JSON property `databases`
1294
+ # @return [Array<String>]
1295
+ attr_accessor :databases
1296
+
1297
+ def initialize(**args)
1298
+ update!(**args)
1299
+ end
1300
+
1301
+ # Update properties of this object
1302
+ def update!(**args)
1303
+ @catalog = args[:catalog] if args.key?(:catalog)
1304
+ @databases = args[:databases] if args.key?(:databases)
1305
+ end
1306
+ end
1307
+
1117
1308
  # Specifies configuration information specific to running Hive metastore
1118
1309
  # software as the metastore service.
1119
1310
  class HiveMetastoreConfig
@@ -1197,6 +1388,34 @@ module Google
1197
1388
  end
1198
1389
  end
1199
1390
 
1391
+ # Configuration for migrating Iceberg metadata.
1392
+ class IcebergConfig
1393
+ include Google::Apis::Core::Hashable
1394
+
1395
+ # Required. The target catalog for migrated Iceberg metadata. Format: "projects/`
1396
+ # project_id_or_number`/catalogs/`catalog_id`"
1397
+ # Corresponds to the JSON property `catalog`
1398
+ # @return [String]
1399
+ attr_accessor :catalog
1400
+
1401
+ # Required. The list of namespaces to migrate to the Iceberg REST catalog. Use "*
1402
+ # " to migrate all namespaces. Note: If Hive tables exist in these namespaces,
1403
+ # they will only be migrated if hive_config is also specified.
1404
+ # Corresponds to the JSON property `namespaces`
1405
+ # @return [Array<String>]
1406
+ attr_accessor :namespaces
1407
+
1408
+ def initialize(**args)
1409
+ update!(**args)
1410
+ end
1411
+
1412
+ # Update properties of this object
1413
+ def update!(**args)
1414
+ @catalog = args[:catalog] if args.key?(:catalog)
1415
+ @namespaces = args[:namespaces] if args.key?(:namespaces)
1416
+ end
1417
+ end
1418
+
1200
1419
  # Configuration information for a Kerberos principal.
1201
1420
  class KerberosConfig
1202
1421
  include Google::Apis::Core::Hashable
@@ -1822,6 +2041,12 @@ module Google
1822
2041
  class MigrationExecution
1823
2042
  include Google::Apis::Core::Hashable
1824
2043
 
2044
+ # Defines the configuration required to migrate metadata from a Dataproc
2045
+ # Metastore service to BigLake Metastore.
2046
+ # Corresponds to the JSON property `biglakeMetastoreMigrationConfig`
2047
+ # @return [Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig]
2048
+ attr_accessor :biglake_metastore_migration_config
2049
+
1825
2050
  # Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
1826
2051
  # BigLake Metastore migration instead. Configuration information for migrating
1827
2052
  # from self-managed hive metastore on Google Cloud using Cloud SQL as the
@@ -1871,6 +2096,7 @@ module Google
1871
2096
 
1872
2097
  # Update properties of this object
1873
2098
  def update!(**args)
2099
+ @biglake_metastore_migration_config = args[:biglake_metastore_migration_config] if args.key?(:biglake_metastore_migration_config)
1874
2100
  @cloud_sql_migration_config = args[:cloud_sql_migration_config] if args.key?(:cloud_sql_migration_config)
1875
2101
  @create_time = args[:create_time] if args.key?(:create_time)
1876
2102
  @end_time = args[:end_time] if args.key?(:end_time)
@@ -1881,6 +2107,45 @@ module Google
1881
2107
  end
1882
2108
  end
1883
2109
 
2110
+ # Summary of the migration results.
2111
+ class MigrationSummary
2112
+ include Google::Apis::Core::Hashable
2113
+
2114
+ # Output only. Summary of results for each catalog involved in the migration.
2115
+ # Corresponds to the JSON property `catalogSummaries`
2116
+ # @return [Array<Google::Apis::MetastoreV1alpha::CatalogSummary>]
2117
+ attr_accessor :catalog_summaries
2118
+
2119
+ # Output only. The UTC time when this report was finalized.
2120
+ # Corresponds to the JSON property `createTime`
2121
+ # @return [String]
2122
+ attr_accessor :create_time
2123
+
2124
+ # Output only. Whether the migration was a dry run.
2125
+ # Corresponds to the JSON property `dryRun`
2126
+ # @return [Boolean]
2127
+ attr_accessor :dry_run
2128
+ alias_method :dry_run?, :dry_run
2129
+
2130
+ # Output only. The Dataproc Metastore service name (format: projects/*/locations/
2131
+ # */services/*) on which the migration was executed.
2132
+ # Corresponds to the JSON property `service`
2133
+ # @return [String]
2134
+ attr_accessor :service
2135
+
2136
+ def initialize(**args)
2137
+ update!(**args)
2138
+ end
2139
+
2140
+ # Update properties of this object
2141
+ def update!(**args)
2142
+ @catalog_summaries = args[:catalog_summaries] if args.key?(:catalog_summaries)
2143
+ @create_time = args[:create_time] if args.key?(:create_time)
2144
+ @dry_run = args[:dry_run] if args.key?(:dry_run)
2145
+ @service = args[:service] if args.key?(:service)
2146
+ end
2147
+ end
2148
+
1884
2149
  # Request message for DataprocMetastore.MoveTableToDatabase.
1885
2150
  class MoveTableToDatabaseRequest
1886
2151
  include Google::Apis::Core::Hashable
@@ -2929,6 +3194,55 @@ module Google
2929
3194
  end
2930
3195
  end
2931
3196
 
3197
+ # Aggregated summary of results for all tables in a database.
3198
+ class TableSummary
3199
+ include Google::Apis::Core::Hashable
3200
+
3201
+ # Output only. Partition migration summary across all Hive tables in the
3202
+ # database.The total number of partitions discovered at the source.
3203
+ # Corresponds to the JSON property `partitionDiscoveredCount`
3204
+ # @return [Fixnum]
3205
+ attr_accessor :partition_discovered_count
3206
+
3207
+ # Output only. The total number of partitions that failed to migrate at the
3208
+ # target.
3209
+ # Corresponds to the JSON property `partitionFailedCount`
3210
+ # @return [Fixnum]
3211
+ attr_accessor :partition_failed_count
3212
+
3213
+ # Output only. The total number of partitions successfully migrated at the
3214
+ # target.
3215
+ # Corresponds to the JSON property `partitionSuccessCount`
3216
+ # @return [Fixnum]
3217
+ attr_accessor :partition_success_count
3218
+
3219
+ # Output only. Number of tables with a specific migration plan action. The key
3220
+ # is the action name (e.g. CREATE, UPDATE, SKIP, etc.).
3221
+ # Corresponds to the JSON property `planCounts`
3222
+ # @return [Hash<String,Fixnum>]
3223
+ attr_accessor :plan_counts
3224
+
3225
+ # Output only. Number of tables with a specific migration result status. The key
3226
+ # is the status name (e.g. SUCCEEDED, FAILED, SKIPPED, etc.). This is only set
3227
+ # if the migration is not a dry run.
3228
+ # Corresponds to the JSON property `resultCounts`
3229
+ # @return [Hash<String,Fixnum>]
3230
+ attr_accessor :result_counts
3231
+
3232
+ def initialize(**args)
3233
+ update!(**args)
3234
+ end
3235
+
3236
+ # Update properties of this object
3237
+ def update!(**args)
3238
+ @partition_discovered_count = args[:partition_discovered_count] if args.key?(:partition_discovered_count)
3239
+ @partition_failed_count = args[:partition_failed_count] if args.key?(:partition_failed_count)
3240
+ @partition_success_count = args[:partition_success_count] if args.key?(:partition_success_count)
3241
+ @plan_counts = args[:plan_counts] if args.key?(:plan_counts)
3242
+ @result_counts = args[:result_counts] if args.key?(:result_counts)
3243
+ end
3244
+ end
3245
+
2932
3246
  # Telemetry Configuration for the Dataproc Metastore service.
2933
3247
  class TelemetryConfig
2934
3248
  include Google::Apis::Core::Hashable
@@ -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.83.0"
19
+ GEM_VERSION = "0.84.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 = "20260427"
25
+ REVISION = "20260723"
26
26
  end
27
27
  end
28
28
  end
@@ -70,12 +70,24 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class BackfillStatus
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class Backup
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
85
+ class BigLakeMetastoreMigrationConfig
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class Binding
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -100,6 +112,12 @@ module Google
100
112
  include Google::Apis::Core::JsonObjectSupport
101
113
  end
102
114
 
115
+ class CatalogSummary
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
103
121
  class CdcConfig
104
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
123
 
@@ -160,6 +178,12 @@ module Google
160
178
  include Google::Apis::Core::JsonObjectSupport
161
179
  end
162
180
 
181
+ class DatabaseSummary
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
163
187
  class DataplexConfig
164
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
189
 
@@ -202,6 +226,12 @@ module Google
202
226
  include Google::Apis::Core::JsonObjectSupport
203
227
  end
204
228
 
229
+ class HiveConfig
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
205
235
  class HiveMetastoreConfig
206
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
237
 
@@ -214,6 +244,12 @@ module Google
214
244
  include Google::Apis::Core::JsonObjectSupport
215
245
  end
216
246
 
247
+ class IcebergConfig
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
217
253
  class KerberosConfig
218
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
255
 
@@ -334,6 +370,12 @@ module Google
334
370
  include Google::Apis::Core::JsonObjectSupport
335
371
  end
336
372
 
373
+ class MigrationSummary
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
337
379
  class MoveTableToDatabaseRequest
338
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
381
 
@@ -472,6 +514,12 @@ module Google
472
514
  include Google::Apis::Core::JsonObjectSupport
473
515
  end
474
516
 
517
+ class TableSummary
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
475
523
  class TelemetryConfig
476
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
525
 
@@ -558,6 +606,16 @@ module Google
558
606
  end
559
607
  end
560
608
 
609
+ class BackfillStatus
610
+ # @private
611
+ class Representation < Google::Apis::Core::JsonRepresentation
612
+ property :migration_summary, as: 'migrationSummary', class: Google::Apis::MetastoreV1alpha::MigrationSummary, decorator: Google::Apis::MetastoreV1alpha::MigrationSummary::Representation
613
+
614
+ property :report_path, as: 'reportPath'
615
+ property :state, as: 'state'
616
+ end
617
+ end
618
+
561
619
  class Backup
562
620
  # @private
563
621
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -572,6 +630,22 @@ module Google
572
630
  end
573
631
  end
574
632
 
633
+ class BigLakeMetastoreMigrationConfig
634
+ # @private
635
+ class Representation < Google::Apis::Core::JsonRepresentation
636
+ property :backfill_status, as: 'backfillStatus', class: Google::Apis::MetastoreV1alpha::BackfillStatus, decorator: Google::Apis::MetastoreV1alpha::BackfillStatus::Representation
637
+
638
+ property :conflict_policy, as: 'conflictPolicy'
639
+ property :dry_run, as: 'dryRun'
640
+ property :hive_config, as: 'hiveConfig', class: Google::Apis::MetastoreV1alpha::HiveConfig, decorator: Google::Apis::MetastoreV1alpha::HiveConfig::Representation
641
+
642
+ property :iceberg_config, as: 'icebergConfig', class: Google::Apis::MetastoreV1alpha::IcebergConfig, decorator: Google::Apis::MetastoreV1alpha::IcebergConfig::Representation
643
+
644
+ property :mode, as: 'mode'
645
+ property :report_path, as: 'reportPath'
646
+ end
647
+ end
648
+
575
649
  class Binding
576
650
  # @private
577
651
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -601,6 +675,16 @@ module Google
601
675
  end
602
676
  end
603
677
 
678
+ class CatalogSummary
679
+ # @private
680
+ class Representation < Google::Apis::Core::JsonRepresentation
681
+ property :catalog, as: 'catalog'
682
+ property :catalog_type, as: 'catalogType'
683
+ collection :database_summaries, as: 'databaseSummaries', class: Google::Apis::MetastoreV1alpha::DatabaseSummary, decorator: Google::Apis::MetastoreV1alpha::DatabaseSummary::Representation
684
+
685
+ end
686
+ end
687
+
604
688
  class CdcConfig
605
689
  # @private
606
690
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -694,6 +778,17 @@ module Google
694
778
  end
695
779
  end
696
780
 
781
+ class DatabaseSummary
782
+ # @private
783
+ class Representation < Google::Apis::Core::JsonRepresentation
784
+ property :database, as: 'database'
785
+ property :plan_action, as: 'planAction'
786
+ property :result_status, as: 'resultStatus'
787
+ property :table_summary, as: 'tableSummary', class: Google::Apis::MetastoreV1alpha::TableSummary, decorator: Google::Apis::MetastoreV1alpha::TableSummary::Representation
788
+
789
+ end
790
+ end
791
+
697
792
  class DataplexConfig
698
793
  # @private
699
794
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -760,6 +855,14 @@ module Google
760
855
  end
761
856
  end
762
857
 
858
+ class HiveConfig
859
+ # @private
860
+ class Representation < Google::Apis::Core::JsonRepresentation
861
+ property :catalog, as: 'catalog'
862
+ collection :databases, as: 'databases'
863
+ end
864
+ end
865
+
763
866
  class HiveMetastoreConfig
764
867
  # @private
765
868
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -781,6 +884,14 @@ module Google
781
884
  end
782
885
  end
783
886
 
887
+ class IcebergConfig
888
+ # @private
889
+ class Representation < Google::Apis::Core::JsonRepresentation
890
+ property :catalog, as: 'catalog'
891
+ collection :namespaces, as: 'namespaces'
892
+ end
893
+ end
894
+
784
895
  class KerberosConfig
785
896
  # @private
786
897
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -970,6 +1081,8 @@ module Google
970
1081
  class MigrationExecution
971
1082
  # @private
972
1083
  class Representation < Google::Apis::Core::JsonRepresentation
1084
+ property :biglake_metastore_migration_config, as: 'biglakeMetastoreMigrationConfig', class: Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig, decorator: Google::Apis::MetastoreV1alpha::BigLakeMetastoreMigrationConfig::Representation
1085
+
973
1086
  property :cloud_sql_migration_config, as: 'cloudSqlMigrationConfig', class: Google::Apis::MetastoreV1alpha::CloudSqlMigrationConfig, decorator: Google::Apis::MetastoreV1alpha::CloudSqlMigrationConfig::Representation
974
1087
 
975
1088
  property :create_time, as: 'createTime'
@@ -981,6 +1094,17 @@ module Google
981
1094
  end
982
1095
  end
983
1096
 
1097
+ class MigrationSummary
1098
+ # @private
1099
+ class Representation < Google::Apis::Core::JsonRepresentation
1100
+ collection :catalog_summaries, as: 'catalogSummaries', class: Google::Apis::MetastoreV1alpha::CatalogSummary, decorator: Google::Apis::MetastoreV1alpha::CatalogSummary::Representation
1101
+
1102
+ property :create_time, as: 'createTime'
1103
+ property :dry_run, as: 'dryRun'
1104
+ property :service, as: 'service'
1105
+ end
1106
+ end
1107
+
984
1108
  class MoveTableToDatabaseRequest
985
1109
  # @private
986
1110
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1231,6 +1355,17 @@ module Google
1231
1355
  end
1232
1356
  end
1233
1357
 
1358
+ class TableSummary
1359
+ # @private
1360
+ class Representation < Google::Apis::Core::JsonRepresentation
1361
+ property :partition_discovered_count, :numeric_string => true, as: 'partitionDiscoveredCount'
1362
+ property :partition_failed_count, :numeric_string => true, as: 'partitionFailedCount'
1363
+ property :partition_success_count, :numeric_string => true, as: 'partitionSuccessCount'
1364
+ hash :plan_counts, as: 'planCounts'
1365
+ hash :result_counts, as: 'resultCounts'
1366
+ end
1367
+ end
1368
+
1234
1369
  class TelemetryConfig
1235
1370
  # @private
1236
1371
  class Representation < Google::Apis::Core::JsonRepresentation
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.83.0
4
+ version: 0.84.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.83.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.84.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: