aws-sdk-glue 1.260.0 → 1.261.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +221 -2
- data/lib/aws-sdk-glue/client_api.rb +27 -0
- data/lib/aws-sdk-glue/types.rb +111 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +3 -2
- data/sig/types.rbs +19 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40d63bd821e41843d86f355432c5109867eb5bc180219c327a8e26cd0a897a4f
|
|
4
|
+
data.tar.gz: fa68ba562a3c445e1a452c6aa46bcc6b855196514c87670c1ff851a6bc237c4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95e91866e8d0818327257a6267f8d33c43f6c2fa55fb2cba31873aeb0d952d791c8c854cc72c85d5c5d42cd160744a4447cecfc37bd8eb4c1d0a4e586521ba3b
|
|
7
|
+
data.tar.gz: 92796fb3af5f4d002ea22500fbfa9ad7e59c5024278c576fea037460992da5cacadcc6053d242f924604694bf4a03f4872c82b241ac679b89646fdd3ada924bc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.261.0 (2026-06-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for retrieving Apache Iceberg table metadata via GetTable. Use the new AttributesToGet parameter with LATEST ICEBERG METADATA to receive schema, partition specs, sort orders, and table properties in the response.
|
|
8
|
+
|
|
4
9
|
1.260.0 (2026-06-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.261.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -10553,6 +10553,20 @@ module Aws::Glue
|
|
|
10553
10553
|
# Specifies whether to include status details related to a request to
|
|
10554
10554
|
# create or update an Glue Data Catalog view.
|
|
10555
10555
|
#
|
|
10556
|
+
# @option params [Array<String>] :attributes_to_get
|
|
10557
|
+
# Specifies the table fields returned by the `GetTable` call. This
|
|
10558
|
+
# parameter doesn't accept an empty list.
|
|
10559
|
+
#
|
|
10560
|
+
# The following are the valid combinations of values:
|
|
10561
|
+
#
|
|
10562
|
+
# * `DEFAULT` - Returns the Hive-style table definition only.
|
|
10563
|
+
#
|
|
10564
|
+
# * `LATEST_ICEBERG_METADATA` - Returns only the latest Apache Iceberg
|
|
10565
|
+
# table metadata.
|
|
10566
|
+
#
|
|
10567
|
+
# * `DEFAULT`, `LATEST_ICEBERG_METADATA` - Returns both the Hive-style
|
|
10568
|
+
# table definition and the latest Apache Iceberg table metadata.
|
|
10569
|
+
#
|
|
10556
10570
|
# @return [Types::GetTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10557
10571
|
#
|
|
10558
10572
|
# * {Types::GetTableResponse#table #table} => Types::Table
|
|
@@ -10571,6 +10585,7 @@ module Aws::Glue
|
|
|
10571
10585
|
# all_columns_requested: false,
|
|
10572
10586
|
# },
|
|
10573
10587
|
# include_status_details: false,
|
|
10588
|
+
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE, DEFAULT, LATEST_ICEBERG_METADATA
|
|
10574
10589
|
# })
|
|
10575
10590
|
#
|
|
10576
10591
|
# @example Response structure
|
|
@@ -10662,6 +10677,40 @@ module Aws::Glue
|
|
|
10662
10677
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10663
10678
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
10664
10679
|
# resp.table.is_materialized_view #=> Boolean
|
|
10680
|
+
# resp.table.iceberg_table_metadata.format_version #=> String
|
|
10681
|
+
# resp.table.iceberg_table_metadata.table_uuid #=> String
|
|
10682
|
+
# resp.table.iceberg_table_metadata.location #=> String
|
|
10683
|
+
# resp.table.iceberg_table_metadata.properties #=> Hash
|
|
10684
|
+
# resp.table.iceberg_table_metadata.properties["NullableString"] #=> String
|
|
10685
|
+
# resp.table.iceberg_table_metadata.schemas #=> Array
|
|
10686
|
+
# resp.table.iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
10687
|
+
# resp.table.iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
10688
|
+
# resp.table.iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
10689
|
+
# resp.table.iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
10690
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields #=> Array
|
|
10691
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
10692
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
10693
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
10694
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
10695
|
+
# resp.table.iceberg_table_metadata.current_schema_id #=> Integer
|
|
10696
|
+
# resp.table.iceberg_table_metadata.last_column_id #=> Integer
|
|
10697
|
+
# resp.table.iceberg_table_metadata.partition_specs #=> Array
|
|
10698
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
10699
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
10700
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
10701
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
10702
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
10703
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
10704
|
+
# resp.table.iceberg_table_metadata.default_spec_id #=> Integer
|
|
10705
|
+
# resp.table.iceberg_table_metadata.last_partition_id #=> Integer
|
|
10706
|
+
# resp.table.iceberg_table_metadata.sort_orders #=> Array
|
|
10707
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
10708
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
10709
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
10710
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
10711
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
10712
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
10713
|
+
# resp.table.iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
10665
10714
|
# resp.table.status.requested_by #=> String
|
|
10666
10715
|
# resp.table.status.updated_by #=> String
|
|
10667
10716
|
# resp.table.status.request_time #=> Time
|
|
@@ -10902,6 +10951,40 @@ module Aws::Glue
|
|
|
10902
10951
|
# resp.table_version.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10903
10952
|
# resp.table_version.table.is_multi_dialect_view #=> Boolean
|
|
10904
10953
|
# resp.table_version.table.is_materialized_view #=> Boolean
|
|
10954
|
+
# resp.table_version.table.iceberg_table_metadata.format_version #=> String
|
|
10955
|
+
# resp.table_version.table.iceberg_table_metadata.table_uuid #=> String
|
|
10956
|
+
# resp.table_version.table.iceberg_table_metadata.location #=> String
|
|
10957
|
+
# resp.table_version.table.iceberg_table_metadata.properties #=> Hash
|
|
10958
|
+
# resp.table_version.table.iceberg_table_metadata.properties["NullableString"] #=> String
|
|
10959
|
+
# resp.table_version.table.iceberg_table_metadata.schemas #=> Array
|
|
10960
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
10961
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
10962
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
10963
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
10964
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].fields #=> Array
|
|
10965
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
10966
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
10967
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
10968
|
+
# resp.table_version.table.iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
10969
|
+
# resp.table_version.table.iceberg_table_metadata.current_schema_id #=> Integer
|
|
10970
|
+
# resp.table_version.table.iceberg_table_metadata.last_column_id #=> Integer
|
|
10971
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs #=> Array
|
|
10972
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
10973
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
10974
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
10975
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
10976
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
10977
|
+
# resp.table_version.table.iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
10978
|
+
# resp.table_version.table.iceberg_table_metadata.default_spec_id #=> Integer
|
|
10979
|
+
# resp.table_version.table.iceberg_table_metadata.last_partition_id #=> Integer
|
|
10980
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders #=> Array
|
|
10981
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
10982
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
10983
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
10984
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
10985
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
10986
|
+
# resp.table_version.table.iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
10987
|
+
# resp.table_version.table.iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
10905
10988
|
# resp.table_version.table.status.requested_by #=> String
|
|
10906
10989
|
# resp.table_version.table.status.updated_by #=> String
|
|
10907
10990
|
# resp.table_version.table.status.request_time #=> Time
|
|
@@ -11066,6 +11149,40 @@ module Aws::Glue
|
|
|
11066
11149
|
# resp.table_versions[0].table.view_definition.representations[0].is_stale #=> Boolean
|
|
11067
11150
|
# resp.table_versions[0].table.is_multi_dialect_view #=> Boolean
|
|
11068
11151
|
# resp.table_versions[0].table.is_materialized_view #=> Boolean
|
|
11152
|
+
# resp.table_versions[0].table.iceberg_table_metadata.format_version #=> String
|
|
11153
|
+
# resp.table_versions[0].table.iceberg_table_metadata.table_uuid #=> String
|
|
11154
|
+
# resp.table_versions[0].table.iceberg_table_metadata.location #=> String
|
|
11155
|
+
# resp.table_versions[0].table.iceberg_table_metadata.properties #=> Hash
|
|
11156
|
+
# resp.table_versions[0].table.iceberg_table_metadata.properties["NullableString"] #=> String
|
|
11157
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas #=> Array
|
|
11158
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
11159
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
11160
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
11161
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
11162
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].fields #=> Array
|
|
11163
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
11164
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
11165
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
11166
|
+
# resp.table_versions[0].table.iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
11167
|
+
# resp.table_versions[0].table.iceberg_table_metadata.current_schema_id #=> Integer
|
|
11168
|
+
# resp.table_versions[0].table.iceberg_table_metadata.last_column_id #=> Integer
|
|
11169
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs #=> Array
|
|
11170
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
11171
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
11172
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
11173
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
11174
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
11175
|
+
# resp.table_versions[0].table.iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
11176
|
+
# resp.table_versions[0].table.iceberg_table_metadata.default_spec_id #=> Integer
|
|
11177
|
+
# resp.table_versions[0].table.iceberg_table_metadata.last_partition_id #=> Integer
|
|
11178
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders #=> Array
|
|
11179
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
11180
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
11181
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
11182
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
11183
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
11184
|
+
# resp.table_versions[0].table.iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
11185
|
+
# resp.table_versions[0].table.iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
11069
11186
|
# resp.table_versions[0].table.status.requested_by #=> String
|
|
11070
11187
|
# resp.table_versions[0].table.status.updated_by #=> String
|
|
11071
11188
|
# resp.table_versions[0].table.status.request_time #=> Time
|
|
@@ -11169,7 +11286,7 @@ module Aws::Glue
|
|
|
11169
11286
|
# all_columns_requested: false,
|
|
11170
11287
|
# },
|
|
11171
11288
|
# include_status_details: false,
|
|
11172
|
-
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE
|
|
11289
|
+
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE, DEFAULT, LATEST_ICEBERG_METADATA
|
|
11173
11290
|
# })
|
|
11174
11291
|
#
|
|
11175
11292
|
# @example Response structure
|
|
@@ -11262,6 +11379,40 @@ module Aws::Glue
|
|
|
11262
11379
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
11263
11380
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
11264
11381
|
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
11382
|
+
# resp.table_list[0].iceberg_table_metadata.format_version #=> String
|
|
11383
|
+
# resp.table_list[0].iceberg_table_metadata.table_uuid #=> String
|
|
11384
|
+
# resp.table_list[0].iceberg_table_metadata.location #=> String
|
|
11385
|
+
# resp.table_list[0].iceberg_table_metadata.properties #=> Hash
|
|
11386
|
+
# resp.table_list[0].iceberg_table_metadata.properties["NullableString"] #=> String
|
|
11387
|
+
# resp.table_list[0].iceberg_table_metadata.schemas #=> Array
|
|
11388
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
11389
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
11390
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
11391
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
11392
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields #=> Array
|
|
11393
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
11394
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
11395
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
11396
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
11397
|
+
# resp.table_list[0].iceberg_table_metadata.current_schema_id #=> Integer
|
|
11398
|
+
# resp.table_list[0].iceberg_table_metadata.last_column_id #=> Integer
|
|
11399
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs #=> Array
|
|
11400
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
11401
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
11402
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
11403
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
11404
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
11405
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
11406
|
+
# resp.table_list[0].iceberg_table_metadata.default_spec_id #=> Integer
|
|
11407
|
+
# resp.table_list[0].iceberg_table_metadata.last_partition_id #=> Integer
|
|
11408
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders #=> Array
|
|
11409
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
11410
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
11411
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
11412
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
11413
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
11414
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
11415
|
+
# resp.table_list[0].iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
11265
11416
|
# resp.table_list[0].status.requested_by #=> String
|
|
11266
11417
|
# resp.table_list[0].status.updated_by #=> String
|
|
11267
11418
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -12007,6 +12158,40 @@ module Aws::Glue
|
|
|
12007
12158
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
12008
12159
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
12009
12160
|
# resp.table.is_materialized_view #=> Boolean
|
|
12161
|
+
# resp.table.iceberg_table_metadata.format_version #=> String
|
|
12162
|
+
# resp.table.iceberg_table_metadata.table_uuid #=> String
|
|
12163
|
+
# resp.table.iceberg_table_metadata.location #=> String
|
|
12164
|
+
# resp.table.iceberg_table_metadata.properties #=> Hash
|
|
12165
|
+
# resp.table.iceberg_table_metadata.properties["NullableString"] #=> String
|
|
12166
|
+
# resp.table.iceberg_table_metadata.schemas #=> Array
|
|
12167
|
+
# resp.table.iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
12168
|
+
# resp.table.iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
12169
|
+
# resp.table.iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
12170
|
+
# resp.table.iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
12171
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields #=> Array
|
|
12172
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
12173
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
12174
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
12175
|
+
# resp.table.iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
12176
|
+
# resp.table.iceberg_table_metadata.current_schema_id #=> Integer
|
|
12177
|
+
# resp.table.iceberg_table_metadata.last_column_id #=> Integer
|
|
12178
|
+
# resp.table.iceberg_table_metadata.partition_specs #=> Array
|
|
12179
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
12180
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
12181
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
12182
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
12183
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
12184
|
+
# resp.table.iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
12185
|
+
# resp.table.iceberg_table_metadata.default_spec_id #=> Integer
|
|
12186
|
+
# resp.table.iceberg_table_metadata.last_partition_id #=> Integer
|
|
12187
|
+
# resp.table.iceberg_table_metadata.sort_orders #=> Array
|
|
12188
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
12189
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
12190
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
12191
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
12192
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
12193
|
+
# resp.table.iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
12194
|
+
# resp.table.iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
12010
12195
|
# resp.table.status.requested_by #=> String
|
|
12011
12196
|
# resp.table.status.updated_by #=> String
|
|
12012
12197
|
# resp.table.status.request_time #=> Time
|
|
@@ -15676,6 +15861,40 @@ module Aws::Glue
|
|
|
15676
15861
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
15677
15862
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
15678
15863
|
# resp.table_list[0].is_materialized_view #=> Boolean
|
|
15864
|
+
# resp.table_list[0].iceberg_table_metadata.format_version #=> String
|
|
15865
|
+
# resp.table_list[0].iceberg_table_metadata.table_uuid #=> String
|
|
15866
|
+
# resp.table_list[0].iceberg_table_metadata.location #=> String
|
|
15867
|
+
# resp.table_list[0].iceberg_table_metadata.properties #=> Hash
|
|
15868
|
+
# resp.table_list[0].iceberg_table_metadata.properties["NullableString"] #=> String
|
|
15869
|
+
# resp.table_list[0].iceberg_table_metadata.schemas #=> Array
|
|
15870
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].schema_id #=> Integer
|
|
15871
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].identifier_field_ids #=> Array
|
|
15872
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].identifier_field_ids[0] #=> Integer
|
|
15873
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].type #=> String, one of "struct"
|
|
15874
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields #=> Array
|
|
15875
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].id #=> Integer
|
|
15876
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].name #=> String
|
|
15877
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].required #=> Boolean
|
|
15878
|
+
# resp.table_list[0].iceberg_table_metadata.schemas[0].fields[0].doc #=> String
|
|
15879
|
+
# resp.table_list[0].iceberg_table_metadata.current_schema_id #=> Integer
|
|
15880
|
+
# resp.table_list[0].iceberg_table_metadata.last_column_id #=> Integer
|
|
15881
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs #=> Array
|
|
15882
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields #=> Array
|
|
15883
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].source_id #=> Integer
|
|
15884
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].transform #=> String
|
|
15885
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].name #=> String
|
|
15886
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].fields[0].field_id #=> Integer
|
|
15887
|
+
# resp.table_list[0].iceberg_table_metadata.partition_specs[0].spec_id #=> Integer
|
|
15888
|
+
# resp.table_list[0].iceberg_table_metadata.default_spec_id #=> Integer
|
|
15889
|
+
# resp.table_list[0].iceberg_table_metadata.last_partition_id #=> Integer
|
|
15890
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders #=> Array
|
|
15891
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].order_id #=> Integer
|
|
15892
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields #=> Array
|
|
15893
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].source_id #=> Integer
|
|
15894
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].transform #=> String
|
|
15895
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].direction #=> String, one of "asc", "desc"
|
|
15896
|
+
# resp.table_list[0].iceberg_table_metadata.sort_orders[0].fields[0].null_order #=> String, one of "nulls-first", "nulls-last"
|
|
15897
|
+
# resp.table_list[0].iceberg_table_metadata.default_sort_order_id #=> Integer
|
|
15679
15898
|
# resp.table_list[0].status.requested_by #=> String
|
|
15680
15899
|
# resp.table_list[0].status.updated_by #=> String
|
|
15681
15900
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -19137,7 +19356,7 @@ module Aws::Glue
|
|
|
19137
19356
|
tracer: tracer
|
|
19138
19357
|
)
|
|
19139
19358
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19140
|
-
context[:gem_version] = '1.
|
|
19359
|
+
context[:gem_version] = '1.261.0'
|
|
19141
19360
|
Seahorse::Client::Request.new(handlers, context)
|
|
19142
19361
|
end
|
|
19143
19362
|
|
|
@@ -867,16 +867,20 @@ module Aws::Glue
|
|
|
867
867
|
IcebergPartitionField = Shapes::StructureShape.new(name: 'IcebergPartitionField')
|
|
868
868
|
IcebergPartitionSpec = Shapes::StructureShape.new(name: 'IcebergPartitionSpec')
|
|
869
869
|
IcebergPartitionSpecFieldList = Shapes::ListShape.new(name: 'IcebergPartitionSpecFieldList')
|
|
870
|
+
IcebergPartitionSpecList = Shapes::ListShape.new(name: 'IcebergPartitionSpecList')
|
|
870
871
|
IcebergRetentionConfiguration = Shapes::StructureShape.new(name: 'IcebergRetentionConfiguration')
|
|
871
872
|
IcebergRetentionMetrics = Shapes::StructureShape.new(name: 'IcebergRetentionMetrics')
|
|
872
873
|
IcebergSchema = Shapes::StructureShape.new(name: 'IcebergSchema')
|
|
874
|
+
IcebergSchemaList = Shapes::ListShape.new(name: 'IcebergSchemaList')
|
|
873
875
|
IcebergSortDirection = Shapes::StringShape.new(name: 'IcebergSortDirection')
|
|
874
876
|
IcebergSortField = Shapes::StructureShape.new(name: 'IcebergSortField')
|
|
875
877
|
IcebergSortOrder = Shapes::StructureShape.new(name: 'IcebergSortOrder')
|
|
876
878
|
IcebergSortOrderFieldList = Shapes::ListShape.new(name: 'IcebergSortOrderFieldList')
|
|
879
|
+
IcebergSortOrderList = Shapes::ListShape.new(name: 'IcebergSortOrderList')
|
|
877
880
|
IcebergStructField = Shapes::StructureShape.new(name: 'IcebergStructField')
|
|
878
881
|
IcebergStructFieldList = Shapes::ListShape.new(name: 'IcebergStructFieldList')
|
|
879
882
|
IcebergStructTypeEnum = Shapes::StringShape.new(name: 'IcebergStructTypeEnum')
|
|
883
|
+
IcebergTableMetadata = Shapes::StructureShape.new(name: 'IcebergTableMetadata')
|
|
880
884
|
IcebergTableUpdate = Shapes::StructureShape.new(name: 'IcebergTableUpdate')
|
|
881
885
|
IcebergTableUpdateList = Shapes::ListShape.new(name: 'IcebergTableUpdateList')
|
|
882
886
|
IcebergTarget = Shapes::StructureShape.new(name: 'IcebergTarget')
|
|
@@ -1497,6 +1501,7 @@ module Aws::Glue
|
|
|
1497
1501
|
TableAttributesList = Shapes::ListShape.new(name: 'TableAttributesList')
|
|
1498
1502
|
TableError = Shapes::StructureShape.new(name: 'TableError')
|
|
1499
1503
|
TableErrors = Shapes::ListShape.new(name: 'TableErrors')
|
|
1504
|
+
TableIdString = Shapes::StringShape.new(name: 'TableIdString')
|
|
1500
1505
|
TableIdentifier = Shapes::StructureShape.new(name: 'TableIdentifier')
|
|
1501
1506
|
TableInput = Shapes::StructureShape.new(name: 'TableInput')
|
|
1502
1507
|
TableList = Shapes::ListShape.new(name: 'TableList')
|
|
@@ -4781,6 +4786,7 @@ module Aws::Glue
|
|
|
4781
4786
|
GetTableRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
|
4782
4787
|
GetTableRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4783
4788
|
GetTableRequest.add_member(:include_status_details, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "IncludeStatusDetails"))
|
|
4789
|
+
GetTableRequest.add_member(:attributes_to_get, Shapes::ShapeRef.new(shape: TableAttributesList, location_name: "AttributesToGet"))
|
|
4784
4790
|
GetTableRequest.struct_class = Types::GetTableRequest
|
|
4785
4791
|
|
|
4786
4792
|
GetTableResponse.add_member(:table, Shapes::ShapeRef.new(shape: Table, location_name: "Table"))
|
|
@@ -5100,6 +5106,8 @@ module Aws::Glue
|
|
|
5100
5106
|
|
|
5101
5107
|
IcebergPartitionSpecFieldList.member = Shapes::ShapeRef.new(shape: IcebergPartitionField)
|
|
5102
5108
|
|
|
5109
|
+
IcebergPartitionSpecList.member = Shapes::ShapeRef.new(shape: IcebergPartitionSpec)
|
|
5110
|
+
|
|
5103
5111
|
IcebergRetentionConfiguration.add_member(:snapshot_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "snapshotRetentionPeriodInDays"))
|
|
5104
5112
|
IcebergRetentionConfiguration.add_member(:number_of_snapshots_to_retain, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "numberOfSnapshotsToRetain"))
|
|
5105
5113
|
IcebergRetentionConfiguration.add_member(:clean_expired_files, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "cleanExpiredFiles"))
|
|
@@ -5120,6 +5128,8 @@ module Aws::Glue
|
|
|
5120
5128
|
IcebergSchema.add_member(:fields, Shapes::ShapeRef.new(shape: IcebergStructFieldList, required: true, location_name: "Fields"))
|
|
5121
5129
|
IcebergSchema.struct_class = Types::IcebergSchema
|
|
5122
5130
|
|
|
5131
|
+
IcebergSchemaList.member = Shapes::ShapeRef.new(shape: IcebergSchema)
|
|
5132
|
+
|
|
5123
5133
|
IcebergSortField.add_member(:source_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SourceId"))
|
|
5124
5134
|
IcebergSortField.add_member(:transform, Shapes::ShapeRef.new(shape: IcebergTransformString, required: true, location_name: "Transform"))
|
|
5125
5135
|
IcebergSortField.add_member(:direction, Shapes::ShapeRef.new(shape: IcebergSortDirection, required: true, location_name: "Direction"))
|
|
@@ -5132,6 +5142,8 @@ module Aws::Glue
|
|
|
5132
5142
|
|
|
5133
5143
|
IcebergSortOrderFieldList.member = Shapes::ShapeRef.new(shape: IcebergSortField)
|
|
5134
5144
|
|
|
5145
|
+
IcebergSortOrderList.member = Shapes::ShapeRef.new(shape: IcebergSortOrder)
|
|
5146
|
+
|
|
5135
5147
|
IcebergStructField.add_member(:id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "Id"))
|
|
5136
5148
|
IcebergStructField.add_member(:name, Shapes::ShapeRef.new(shape: ColumnNameString, required: true, location_name: "Name"))
|
|
5137
5149
|
IcebergStructField.add_member(:type, Shapes::ShapeRef.new(shape: IcebergDocument, required: true, location_name: "Type"))
|
|
@@ -5143,6 +5155,20 @@ module Aws::Glue
|
|
|
5143
5155
|
|
|
5144
5156
|
IcebergStructFieldList.member = Shapes::ShapeRef.new(shape: IcebergStructField)
|
|
5145
5157
|
|
|
5158
|
+
IcebergTableMetadata.add_member(:format_version, Shapes::ShapeRef.new(shape: VersionString, location_name: "FormatVersion"))
|
|
5159
|
+
IcebergTableMetadata.add_member(:table_uuid, Shapes::ShapeRef.new(shape: TableIdString, location_name: "TableUuid"))
|
|
5160
|
+
IcebergTableMetadata.add_member(:location, Shapes::ShapeRef.new(shape: LocationString, location_name: "Location"))
|
|
5161
|
+
IcebergTableMetadata.add_member(:properties, Shapes::ShapeRef.new(shape: StringToStringMap, location_name: "Properties"))
|
|
5162
|
+
IcebergTableMetadata.add_member(:schemas, Shapes::ShapeRef.new(shape: IcebergSchemaList, location_name: "Schemas"))
|
|
5163
|
+
IcebergTableMetadata.add_member(:current_schema_id, Shapes::ShapeRef.new(shape: Integer, location_name: "CurrentSchemaId"))
|
|
5164
|
+
IcebergTableMetadata.add_member(:last_column_id, Shapes::ShapeRef.new(shape: Integer, location_name: "LastColumnId"))
|
|
5165
|
+
IcebergTableMetadata.add_member(:partition_specs, Shapes::ShapeRef.new(shape: IcebergPartitionSpecList, location_name: "PartitionSpecs"))
|
|
5166
|
+
IcebergTableMetadata.add_member(:default_spec_id, Shapes::ShapeRef.new(shape: Integer, location_name: "DefaultSpecId"))
|
|
5167
|
+
IcebergTableMetadata.add_member(:last_partition_id, Shapes::ShapeRef.new(shape: Integer, location_name: "LastPartitionId"))
|
|
5168
|
+
IcebergTableMetadata.add_member(:sort_orders, Shapes::ShapeRef.new(shape: IcebergSortOrderList, location_name: "SortOrders"))
|
|
5169
|
+
IcebergTableMetadata.add_member(:default_sort_order_id, Shapes::ShapeRef.new(shape: Integer, location_name: "DefaultSortOrderId"))
|
|
5170
|
+
IcebergTableMetadata.struct_class = Types::IcebergTableMetadata
|
|
5171
|
+
|
|
5146
5172
|
IcebergTableUpdate.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "Schema"))
|
|
5147
5173
|
IcebergTableUpdate.add_member(:partition_spec, Shapes::ShapeRef.new(shape: IcebergPartitionSpec, location_name: "PartitionSpec"))
|
|
5148
5174
|
IcebergTableUpdate.add_member(:sort_order, Shapes::ShapeRef.new(shape: IcebergSortOrder, location_name: "SortOrder"))
|
|
@@ -7311,6 +7337,7 @@ module Aws::Glue
|
|
|
7311
7337
|
Table.add_member(:view_definition, Shapes::ShapeRef.new(shape: ViewDefinition, location_name: "ViewDefinition"))
|
|
7312
7338
|
Table.add_member(:is_multi_dialect_view, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsMultiDialectView"))
|
|
7313
7339
|
Table.add_member(:is_materialized_view, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsMaterializedView"))
|
|
7340
|
+
Table.add_member(:iceberg_table_metadata, Shapes::ShapeRef.new(shape: IcebergTableMetadata, location_name: "IcebergTableMetadata"))
|
|
7314
7341
|
Table.add_member(:status, Shapes::ShapeRef.new(shape: TableStatus, location_name: "Status"))
|
|
7315
7342
|
Table.struct_class = Types::Table
|
|
7316
7343
|
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -15235,6 +15235,21 @@ module Aws::Glue
|
|
|
15235
15235
|
# create or update an Glue Data Catalog view.
|
|
15236
15236
|
# @return [Boolean]
|
|
15237
15237
|
#
|
|
15238
|
+
# @!attribute [rw] attributes_to_get
|
|
15239
|
+
# Specifies the table fields returned by the `GetTable` call. This
|
|
15240
|
+
# parameter doesn't accept an empty list.
|
|
15241
|
+
#
|
|
15242
|
+
# The following are the valid combinations of values:
|
|
15243
|
+
#
|
|
15244
|
+
# * `DEFAULT` - Returns the Hive-style table definition only.
|
|
15245
|
+
#
|
|
15246
|
+
# * `LATEST_ICEBERG_METADATA` - Returns only the latest Apache Iceberg
|
|
15247
|
+
# table metadata.
|
|
15248
|
+
#
|
|
15249
|
+
# * `DEFAULT`, `LATEST_ICEBERG_METADATA` - Returns both the Hive-style
|
|
15250
|
+
# table definition and the latest Apache Iceberg table metadata.
|
|
15251
|
+
# @return [Array<String>]
|
|
15252
|
+
#
|
|
15238
15253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableRequest AWS API Documentation
|
|
15239
15254
|
#
|
|
15240
15255
|
class GetTableRequest < Struct.new(
|
|
@@ -15244,7 +15259,8 @@ module Aws::Glue
|
|
|
15244
15259
|
:transaction_id,
|
|
15245
15260
|
:query_as_of_time,
|
|
15246
15261
|
:audit_context,
|
|
15247
|
-
:include_status_details
|
|
15262
|
+
:include_status_details,
|
|
15263
|
+
:attributes_to_get)
|
|
15248
15264
|
SENSITIVE = []
|
|
15249
15265
|
include Aws::Structure
|
|
15250
15266
|
end
|
|
@@ -17179,6 +17195,92 @@ module Aws::Glue
|
|
|
17179
17195
|
include Aws::Structure
|
|
17180
17196
|
end
|
|
17181
17197
|
|
|
17198
|
+
# The Apache Iceberg table metadata, including format version, table
|
|
17199
|
+
# identifier, schemas, partition specifications, sort orders, and table
|
|
17200
|
+
# properties. This structure captures the current state of an Iceberg
|
|
17201
|
+
# table's metadata as managed by the Glue Data Catalog.
|
|
17202
|
+
#
|
|
17203
|
+
# @!attribute [rw] format_version
|
|
17204
|
+
# The Apache Iceberg table format version, such as `1` or `2`.
|
|
17205
|
+
# Determines the set of features and on-disk layout supported by the
|
|
17206
|
+
# table.
|
|
17207
|
+
# @return [String]
|
|
17208
|
+
#
|
|
17209
|
+
# @!attribute [rw] table_uuid
|
|
17210
|
+
# The unique identifier (UUID) for the Iceberg table, assigned when
|
|
17211
|
+
# the table is created and used to track the table across metadata
|
|
17212
|
+
# updates.
|
|
17213
|
+
# @return [String]
|
|
17214
|
+
#
|
|
17215
|
+
# @!attribute [rw] location
|
|
17216
|
+
# The base S3 location where the Iceberg table's data and metadata
|
|
17217
|
+
# files are stored.
|
|
17218
|
+
# @return [String]
|
|
17219
|
+
#
|
|
17220
|
+
# @!attribute [rw] properties
|
|
17221
|
+
# A map of key-value pairs that define table-level properties and
|
|
17222
|
+
# configuration settings for the Iceberg table.
|
|
17223
|
+
# @return [Hash<String,String>]
|
|
17224
|
+
#
|
|
17225
|
+
# @!attribute [rw] schemas
|
|
17226
|
+
# The list of schemas that have been associated with the Iceberg table
|
|
17227
|
+
# over its history, supporting schema evolution.
|
|
17228
|
+
# @return [Array<Types::IcebergSchema>]
|
|
17229
|
+
#
|
|
17230
|
+
# @!attribute [rw] current_schema_id
|
|
17231
|
+
# The identifier of the schema that is currently active for the
|
|
17232
|
+
# Iceberg table. Matches an entry in `Schemas`.
|
|
17233
|
+
# @return [Integer]
|
|
17234
|
+
#
|
|
17235
|
+
# @!attribute [rw] last_column_id
|
|
17236
|
+
# The highest column identifier that has been assigned in the Iceberg
|
|
17237
|
+
# table's schema, used to ensure unique IDs as new columns are added.
|
|
17238
|
+
# @return [Integer]
|
|
17239
|
+
#
|
|
17240
|
+
# @!attribute [rw] partition_specs
|
|
17241
|
+
# The list of partition specifications that have been associated with
|
|
17242
|
+
# the Iceberg table over its history, supporting partition evolution.
|
|
17243
|
+
# @return [Array<Types::IcebergPartitionSpec>]
|
|
17244
|
+
#
|
|
17245
|
+
# @!attribute [rw] default_spec_id
|
|
17246
|
+
# The identifier of the partition specification that is currently used
|
|
17247
|
+
# by default when writing new data to the Iceberg table.
|
|
17248
|
+
# @return [Integer]
|
|
17249
|
+
#
|
|
17250
|
+
# @!attribute [rw] last_partition_id
|
|
17251
|
+
# The highest partition field identifier that has been assigned across
|
|
17252
|
+
# the table's partition specifications.
|
|
17253
|
+
# @return [Integer]
|
|
17254
|
+
#
|
|
17255
|
+
# @!attribute [rw] sort_orders
|
|
17256
|
+
# The list of sort order specifications that have been associated with
|
|
17257
|
+
# the Iceberg table over its history.
|
|
17258
|
+
# @return [Array<Types::IcebergSortOrder>]
|
|
17259
|
+
#
|
|
17260
|
+
# @!attribute [rw] default_sort_order_id
|
|
17261
|
+
# The identifier of the sort order that is currently used by default
|
|
17262
|
+
# when writing new data to the Iceberg table.
|
|
17263
|
+
# @return [Integer]
|
|
17264
|
+
#
|
|
17265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergTableMetadata AWS API Documentation
|
|
17266
|
+
#
|
|
17267
|
+
class IcebergTableMetadata < Struct.new(
|
|
17268
|
+
:format_version,
|
|
17269
|
+
:table_uuid,
|
|
17270
|
+
:location,
|
|
17271
|
+
:properties,
|
|
17272
|
+
:schemas,
|
|
17273
|
+
:current_schema_id,
|
|
17274
|
+
:last_column_id,
|
|
17275
|
+
:partition_specs,
|
|
17276
|
+
:default_spec_id,
|
|
17277
|
+
:last_partition_id,
|
|
17278
|
+
:sort_orders,
|
|
17279
|
+
:default_sort_order_id)
|
|
17280
|
+
SENSITIVE = []
|
|
17281
|
+
include Aws::Structure
|
|
17282
|
+
end
|
|
17283
|
+
|
|
17182
17284
|
# Defines a complete set of updates to be applied to an Iceberg table,
|
|
17183
17285
|
# including schema changes, partitioning modifications, sort order
|
|
17184
17286
|
# adjustments, location updates, and property changes.
|
|
@@ -28042,6 +28144,13 @@ module Aws::Glue
|
|
|
28042
28144
|
# Indicates a table is a `MaterializedView`.
|
|
28043
28145
|
# @return [Boolean]
|
|
28044
28146
|
#
|
|
28147
|
+
# @!attribute [rw] iceberg_table_metadata
|
|
28148
|
+
# The latest Apache Iceberg table metadata for the table, including
|
|
28149
|
+
# format version, schemas, partition specifications, and sort orders.
|
|
28150
|
+
# This field is populated for Iceberg tables and reflects the current
|
|
28151
|
+
# state of the table's Iceberg metadata.
|
|
28152
|
+
# @return [Types::IcebergTableMetadata]
|
|
28153
|
+
#
|
|
28045
28154
|
# @!attribute [rw] status
|
|
28046
28155
|
# Indicates the the state of an asynchronous change to a table.
|
|
28047
28156
|
# @return [Types::TableStatus]
|
|
@@ -28073,6 +28182,7 @@ module Aws::Glue
|
|
|
28073
28182
|
:view_definition,
|
|
28074
28183
|
:is_multi_dialect_view,
|
|
28075
28184
|
:is_materialized_view,
|
|
28185
|
+
:iceberg_table_metadata,
|
|
28076
28186
|
:status)
|
|
28077
28187
|
SENSITIVE = []
|
|
28078
28188
|
include Aws::Structure
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2456,7 +2456,8 @@ module Aws
|
|
|
2456
2456
|
requested_columns: Array[::String]?,
|
|
2457
2457
|
all_columns_requested: bool?
|
|
2458
2458
|
},
|
|
2459
|
-
?include_status_details: bool
|
|
2459
|
+
?include_status_details: bool,
|
|
2460
|
+
?attributes_to_get: Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
2460
2461
|
) -> _GetTableResponseSuccess
|
|
2461
2462
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
|
|
2462
2463
|
|
|
@@ -2534,7 +2535,7 @@ module Aws
|
|
|
2534
2535
|
all_columns_requested: bool?
|
|
2535
2536
|
},
|
|
2536
2537
|
?include_status_details: bool,
|
|
2537
|
-
?attributes_to_get: Array[("NAME" | "TABLE_TYPE")]
|
|
2538
|
+
?attributes_to_get: Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
2538
2539
|
) -> _GetTablesResponseSuccess
|
|
2539
2540
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTablesResponseSuccess
|
|
2540
2541
|
|
data/sig/types.rbs
CHANGED
|
@@ -3800,6 +3800,7 @@ module Aws::Glue
|
|
|
3800
3800
|
attr_accessor query_as_of_time: ::Time
|
|
3801
3801
|
attr_accessor audit_context: Types::AuditContext
|
|
3802
3802
|
attr_accessor include_status_details: bool
|
|
3803
|
+
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
3803
3804
|
SENSITIVE: []
|
|
3804
3805
|
end
|
|
3805
3806
|
|
|
@@ -3848,7 +3849,7 @@ module Aws::Glue
|
|
|
3848
3849
|
attr_accessor query_as_of_time: ::Time
|
|
3849
3850
|
attr_accessor audit_context: Types::AuditContext
|
|
3850
3851
|
attr_accessor include_status_details: bool
|
|
3851
|
-
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE")]
|
|
3852
|
+
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
3852
3853
|
SENSITIVE: []
|
|
3853
3854
|
end
|
|
3854
3855
|
|
|
@@ -4258,6 +4259,22 @@ module Aws::Glue
|
|
|
4258
4259
|
SENSITIVE: []
|
|
4259
4260
|
end
|
|
4260
4261
|
|
|
4262
|
+
class IcebergTableMetadata
|
|
4263
|
+
attr_accessor format_version: ::String
|
|
4264
|
+
attr_accessor table_uuid: ::String
|
|
4265
|
+
attr_accessor location: ::String
|
|
4266
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
|
4267
|
+
attr_accessor schemas: ::Array[Types::IcebergSchema]
|
|
4268
|
+
attr_accessor current_schema_id: ::Integer
|
|
4269
|
+
attr_accessor last_column_id: ::Integer
|
|
4270
|
+
attr_accessor partition_specs: ::Array[Types::IcebergPartitionSpec]
|
|
4271
|
+
attr_accessor default_spec_id: ::Integer
|
|
4272
|
+
attr_accessor last_partition_id: ::Integer
|
|
4273
|
+
attr_accessor sort_orders: ::Array[Types::IcebergSortOrder]
|
|
4274
|
+
attr_accessor default_sort_order_id: ::Integer
|
|
4275
|
+
SENSITIVE: []
|
|
4276
|
+
end
|
|
4277
|
+
|
|
4261
4278
|
class IcebergTableUpdate
|
|
4262
4279
|
attr_accessor schema: Types::IcebergSchema
|
|
4263
4280
|
attr_accessor partition_spec: Types::IcebergPartitionSpec
|
|
@@ -6868,6 +6885,7 @@ module Aws::Glue
|
|
|
6868
6885
|
attr_accessor view_definition: Types::ViewDefinition
|
|
6869
6886
|
attr_accessor is_multi_dialect_view: bool
|
|
6870
6887
|
attr_accessor is_materialized_view: bool
|
|
6888
|
+
attr_accessor iceberg_table_metadata: Types::IcebergTableMetadata
|
|
6871
6889
|
attr_accessor status: Types::TableStatus
|
|
6872
6890
|
SENSITIVE: []
|
|
6873
6891
|
end
|