aws-sdk-glue 1.222.0 → 1.223.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: 06ff978a27f19ad72933805d99570e2f2d1bd04bd2fd44497964be6b471566af
4
- data.tar.gz: 388917bf2360aca50ef34a5e7f23b91adc9aa561a1023bf7547bcf5976f97843
3
+ metadata.gz: a37511cce7fcdc5cd240a69298e242d6730c47fe77795e84029b85d4d116709e
4
+ data.tar.gz: cf5a7feacf0c79aa3ad9380151f9b9b90984444cec312c41cf4a399ce3681359
5
5
  SHA512:
6
- metadata.gz: 6dc8b1ca9603603c6ab425215ef410b2b9ad40a38c08e9fbd3fd3f411d449e6b8b576cc4e9c342509683723f40124d253787a51e16a3f70ffa4585acbc63015e
7
- data.tar.gz: 4c42d23f17eafe8d4d1b1a801626152176a3524eef33ab977b0564813358902e1d73cfddbd865a1a1a1a8e9bdc5cad4151c8da60757b82d09b604a46b9d9f1f6
6
+ metadata.gz: 0f10099d0b53319240c5b6a954e476f1764531e278f0f20da05a3d4f8873603777563a03dd6df0f4d47389d40ab35a7e36b219ab6c21b5cda5c3eac6ddb0f00c
7
+ data.tar.gz: ac530af007d704b05e234bb2f1b096e452bf71fd1526291c6e15102cc09f931409e16b6dcf8be414904d2c1faaf8a0ab9eae7063ad4d35660de38a8d31d6d479
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.223.0 (2025-06-27)
5
+ ------------------
6
+
7
+ * Feature - AWS Glue now supports schema, partition and sort management of Apache Iceberg tables using Glue SDK
8
+
4
9
  1.222.0 (2025-06-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.222.0
1
+ 1.223.0
@@ -2976,6 +2976,7 @@ module Aws::Glue
2976
2976
  # federated_catalog: {
2977
2977
  # identifier: "FederationIdentifier",
2978
2978
  # connection_name: "NameString",
2979
+ # connection_type: "NameString",
2979
2980
  # },
2980
2981
  # parameters: {
2981
2982
  # "KeyString" => "ParametersMapValue",
@@ -3587,6 +3588,7 @@ module Aws::Glue
3587
3588
  # federated_database: {
3588
3589
  # identifier: "FederationIdentifier",
3589
3590
  # connection_name: "NameString",
3591
+ # connection_type: "NameString",
3590
3592
  # },
3591
3593
  # },
3592
3594
  # tags: {
@@ -5142,6 +5144,10 @@ module Aws::Glue
5142
5144
  # The catalog database in which to create the new table. For Hive
5143
5145
  # compatibility, this name is entirely lowercase.
5144
5146
  #
5147
+ # @option params [String] :name
5148
+ # The unique identifier for the table within the specified database that
5149
+ # will be created in the Glue Data Catalog.
5150
+ #
5145
5151
  # @option params [required, Types::TableInput] :table_input
5146
5152
  # The `TableInput` object that defines the metadata table to create in
5147
5153
  # the catalog.
@@ -5164,6 +5170,7 @@ module Aws::Glue
5164
5170
  # resp = client.create_table({
5165
5171
  # catalog_id: "CatalogIdString",
5166
5172
  # database_name: "NameString", # required
5173
+ # name: "NameString",
5167
5174
  # table_input: { # required
5168
5175
  # name: "NameString", # required
5169
5176
  # description: "DescriptionString",
@@ -5271,6 +5278,49 @@ module Aws::Glue
5271
5278
  # iceberg_input: {
5272
5279
  # metadata_operation: "CREATE", # required, accepts CREATE
5273
5280
  # version: "VersionString",
5281
+ # create_iceberg_table_input: {
5282
+ # location: "LocationString", # required
5283
+ # schema: { # required
5284
+ # schema_id: 1,
5285
+ # identifier_field_ids: [1],
5286
+ # type: "struct", # accepts struct
5287
+ # fields: [ # required
5288
+ # {
5289
+ # id: 1, # required
5290
+ # name: "ColumnNameString", # required
5291
+ # type: { # required
5292
+ # },
5293
+ # required: false, # required
5294
+ # doc: "CommentString",
5295
+ # },
5296
+ # ],
5297
+ # },
5298
+ # partition_spec: {
5299
+ # fields: [ # required
5300
+ # {
5301
+ # source_id: 1, # required
5302
+ # transform: "IcebergTransformString", # required
5303
+ # name: "ColumnNameString", # required
5304
+ # field_id: 1,
5305
+ # },
5306
+ # ],
5307
+ # spec_id: 1,
5308
+ # },
5309
+ # write_order: {
5310
+ # order_id: 1, # required
5311
+ # fields: [ # required
5312
+ # {
5313
+ # source_id: 1, # required
5314
+ # transform: "IcebergTransformString", # required
5315
+ # direction: "asc", # required, accepts asc, desc
5316
+ # null_order: "nulls-first", # required, accepts nulls-first, nulls-last
5317
+ # },
5318
+ # ],
5319
+ # },
5320
+ # properties: {
5321
+ # "NullableString" => "NullableString",
5322
+ # },
5323
+ # },
5274
5324
  # },
5275
5325
  # },
5276
5326
  # })
@@ -7227,6 +7277,7 @@ module Aws::Glue
7227
7277
  # resp.catalog.target_redshift_catalog.catalog_arn #=> String
7228
7278
  # resp.catalog.federated_catalog.identifier #=> String
7229
7279
  # resp.catalog.federated_catalog.connection_name #=> String
7280
+ # resp.catalog.federated_catalog.connection_type #=> String
7230
7281
  # resp.catalog.catalog_properties.data_lake_access_properties.data_lake_access #=> Boolean
7231
7282
  # resp.catalog.catalog_properties.data_lake_access_properties.data_transfer_role #=> String
7232
7283
  # resp.catalog.catalog_properties.data_lake_access_properties.kms_key #=> String
@@ -7346,6 +7397,7 @@ module Aws::Glue
7346
7397
  # resp.catalog_list[0].target_redshift_catalog.catalog_arn #=> String
7347
7398
  # resp.catalog_list[0].federated_catalog.identifier #=> String
7348
7399
  # resp.catalog_list[0].federated_catalog.connection_name #=> String
7400
+ # resp.catalog_list[0].federated_catalog.connection_type #=> String
7349
7401
  # resp.catalog_list[0].catalog_properties.data_lake_access_properties.data_lake_access #=> Boolean
7350
7402
  # resp.catalog_list[0].catalog_properties.data_lake_access_properties.data_transfer_role #=> String
7351
7403
  # resp.catalog_list[0].catalog_properties.data_lake_access_properties.kms_key #=> String
@@ -8721,6 +8773,7 @@ module Aws::Glue
8721
8773
  # resp.database.catalog_id #=> String
8722
8774
  # resp.database.federated_database.identifier #=> String
8723
8775
  # resp.database.federated_database.connection_name #=> String
8776
+ # resp.database.federated_database.connection_type #=> String
8724
8777
  #
8725
8778
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDatabase AWS API Documentation
8726
8779
  #
@@ -8798,6 +8851,7 @@ module Aws::Glue
8798
8851
  # resp.database_list[0].catalog_id #=> String
8799
8852
  # resp.database_list[0].federated_database.identifier #=> String
8800
8853
  # resp.database_list[0].federated_database.connection_name #=> String
8854
+ # resp.database_list[0].federated_database.connection_type #=> String
8801
8855
  # resp.next_token #=> String
8802
8856
  #
8803
8857
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDatabases AWS API Documentation
@@ -12865,6 +12919,7 @@ module Aws::Glue
12865
12919
  # resp.table.federated_table.identifier #=> String
12866
12920
  # resp.table.federated_table.database_identifier #=> String
12867
12921
  # resp.table.federated_table.connection_name #=> String
12922
+ # resp.table.federated_table.connection_type #=> String
12868
12923
  # resp.table.view_definition.is_protected #=> Boolean
12869
12924
  # resp.table.view_definition.definer #=> String
12870
12925
  # resp.table.view_definition.sub_objects #=> Array
@@ -13084,6 +13139,7 @@ module Aws::Glue
13084
13139
  # resp.table_version.table.federated_table.identifier #=> String
13085
13140
  # resp.table_version.table.federated_table.database_identifier #=> String
13086
13141
  # resp.table_version.table.federated_table.connection_name #=> String
13142
+ # resp.table_version.table.federated_table.connection_type #=> String
13087
13143
  # resp.table_version.table.view_definition.is_protected #=> Boolean
13088
13144
  # resp.table_version.table.view_definition.definer #=> String
13089
13145
  # resp.table_version.table.view_definition.sub_objects #=> Array
@@ -13232,6 +13288,7 @@ module Aws::Glue
13232
13288
  # resp.table_versions[0].table.federated_table.identifier #=> String
13233
13289
  # resp.table_versions[0].table.federated_table.database_identifier #=> String
13234
13290
  # resp.table_versions[0].table.federated_table.connection_name #=> String
13291
+ # resp.table_versions[0].table.federated_table.connection_type #=> String
13235
13292
  # resp.table_versions[0].table.view_definition.is_protected #=> Boolean
13236
13293
  # resp.table_versions[0].table.view_definition.definer #=> String
13237
13294
  # resp.table_versions[0].table.view_definition.sub_objects #=> Array
@@ -13408,6 +13465,7 @@ module Aws::Glue
13408
13465
  # resp.table_list[0].federated_table.identifier #=> String
13409
13466
  # resp.table_list[0].federated_table.database_identifier #=> String
13410
13467
  # resp.table_list[0].federated_table.connection_name #=> String
13468
+ # resp.table_list[0].federated_table.connection_type #=> String
13411
13469
  # resp.table_list[0].view_definition.is_protected #=> Boolean
13412
13470
  # resp.table_list[0].view_definition.definer #=> String
13413
13471
  # resp.table_list[0].view_definition.sub_objects #=> Array
@@ -14144,6 +14202,7 @@ module Aws::Glue
14144
14202
  # resp.table.federated_table.identifier #=> String
14145
14203
  # resp.table.federated_table.database_identifier #=> String
14146
14204
  # resp.table.federated_table.connection_name #=> String
14205
+ # resp.table.federated_table.connection_type #=> String
14147
14206
  # resp.table.view_definition.is_protected #=> Boolean
14148
14207
  # resp.table.view_definition.definer #=> String
14149
14208
  # resp.table.view_definition.sub_objects #=> Array
@@ -17097,6 +17156,7 @@ module Aws::Glue
17097
17156
  # resp.table_list[0].federated_table.identifier #=> String
17098
17157
  # resp.table_list[0].federated_table.database_identifier #=> String
17099
17158
  # resp.table_list[0].federated_table.connection_name #=> String
17159
+ # resp.table_list[0].federated_table.connection_type #=> String
17100
17160
  # resp.table_list[0].view_definition.is_protected #=> Boolean
17101
17161
  # resp.table_list[0].view_definition.definer #=> String
17102
17162
  # resp.table_list[0].view_definition.sub_objects #=> Array
@@ -17845,6 +17905,10 @@ module Aws::Glue
17845
17905
  # learning transform will use the new and improved labels and perform a
17846
17906
  # higher-quality transformation.
17847
17907
  #
17908
+ # Note: The role used to write the generated labeling set to the
17909
+ # `OutputS3Path` is the role associated with the Machine Learning
17910
+ # Transform, specified in the `CreateMLTransform` API.
17911
+ #
17848
17912
  # @option params [required, String] :transform_id
17849
17913
  # The unique identifier of the machine learning transform.
17850
17914
  #
@@ -18334,6 +18398,7 @@ module Aws::Glue
18334
18398
  # federated_catalog: {
18335
18399
  # identifier: "FederationIdentifier",
18336
18400
  # connection_name: "NameString",
18401
+ # connection_type: "NameString",
18337
18402
  # },
18338
18403
  # parameters: {
18339
18404
  # "KeyString" => "ParametersMapValue",
@@ -19141,6 +19206,7 @@ module Aws::Glue
19141
19206
  # federated_database: {
19142
19207
  # identifier: "FederationIdentifier",
19143
19208
  # connection_name: "NameString",
19209
+ # connection_type: "NameString",
19144
19210
  # },
19145
19211
  # },
19146
19212
  # })
@@ -19850,7 +19916,11 @@ module Aws::Glue
19850
19916
  # The name of the catalog database in which the table resides. For Hive
19851
19917
  # compatibility, this name is entirely lowercase.
19852
19918
  #
19853
- # @option params [required, Types::TableInput] :table_input
19919
+ # @option params [String] :name
19920
+ # The unique identifier for the table within the specified database that
19921
+ # will be created in the Glue Data Catalog.
19922
+ #
19923
+ # @option params [Types::TableInput] :table_input
19854
19924
  # An updated `TableInput` object to define the metadata table in the
19855
19925
  # catalog.
19856
19926
  #
@@ -19872,6 +19942,11 @@ module Aws::Glue
19872
19942
  # A flag that can be set to true to ignore matching storage descriptor
19873
19943
  # and subobject matching requirements.
19874
19944
  #
19945
+ # @option params [Types::UpdateOpenTableFormatInput] :update_open_table_format_input
19946
+ # Input parameters for updating open table format tables in GlueData
19947
+ # Catalog, serving as a wrapper for format-specific update operations
19948
+ # such as Apache Iceberg.
19949
+ #
19875
19950
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
19876
19951
  #
19877
19952
  # @example Request syntax with placeholder values
@@ -19879,7 +19954,8 @@ module Aws::Glue
19879
19954
  # resp = client.update_table({
19880
19955
  # catalog_id: "CatalogIdString",
19881
19956
  # database_name: "NameString", # required
19882
- # table_input: { # required
19957
+ # name: "NameString",
19958
+ # table_input: {
19883
19959
  # name: "NameString", # required
19884
19960
  # description: "DescriptionString",
19885
19961
  # owner: "NameString",
@@ -19980,6 +20056,57 @@ module Aws::Glue
19980
20056
  # version_id: "VersionString",
19981
20057
  # view_update_action: "ADD", # accepts ADD, REPLACE, ADD_OR_REPLACE, DROP
19982
20058
  # force: false,
20059
+ # update_open_table_format_input: {
20060
+ # update_iceberg_input: {
20061
+ # update_iceberg_table_input: { # required
20062
+ # updates: [ # required
20063
+ # {
20064
+ # schema: { # required
20065
+ # schema_id: 1,
20066
+ # identifier_field_ids: [1],
20067
+ # type: "struct", # accepts struct
20068
+ # fields: [ # required
20069
+ # {
20070
+ # id: 1, # required
20071
+ # name: "ColumnNameString", # required
20072
+ # type: { # required
20073
+ # },
20074
+ # required: false, # required
20075
+ # doc: "CommentString",
20076
+ # },
20077
+ # ],
20078
+ # },
20079
+ # partition_spec: {
20080
+ # fields: [ # required
20081
+ # {
20082
+ # source_id: 1, # required
20083
+ # transform: "IcebergTransformString", # required
20084
+ # name: "ColumnNameString", # required
20085
+ # field_id: 1,
20086
+ # },
20087
+ # ],
20088
+ # spec_id: 1,
20089
+ # },
20090
+ # sort_order: {
20091
+ # order_id: 1, # required
20092
+ # fields: [ # required
20093
+ # {
20094
+ # source_id: 1, # required
20095
+ # transform: "IcebergTransformString", # required
20096
+ # direction: "asc", # required, accepts asc, desc
20097
+ # null_order: "nulls-first", # required, accepts nulls-first, nulls-last
20098
+ # },
20099
+ # ],
20100
+ # },
20101
+ # location: "LocationString", # required
20102
+ # properties: {
20103
+ # "NullableString" => "NullableString",
20104
+ # },
20105
+ # },
20106
+ # ],
20107
+ # },
20108
+ # },
20109
+ # },
19983
20110
  # })
19984
20111
  #
19985
20112
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTable AWS API Documentation
@@ -20321,7 +20448,7 @@ module Aws::Glue
20321
20448
  tracer: tracer
20322
20449
  )
20323
20450
  context[:gem_name] = 'aws-sdk-glue'
20324
- context[:gem_version] = '1.222.0'
20451
+ context[:gem_version] = '1.223.0'
20325
20452
  Seahorse::Client::Request.new(handlers, context)
20326
20453
  end
20327
20454
 
@@ -320,6 +320,7 @@ module Aws::Glue
320
320
  CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
321
321
  CreateDevEndpointResponse = Shapes::StructureShape.new(name: 'CreateDevEndpointResponse')
322
322
  CreateGrokClassifierRequest = Shapes::StructureShape.new(name: 'CreateGrokClassifierRequest')
323
+ CreateIcebergTableInput = Shapes::StructureShape.new(name: 'CreateIcebergTableInput')
323
324
  CreateIntegrationRequest = Shapes::StructureShape.new(name: 'CreateIntegrationRequest')
324
325
  CreateIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'CreateIntegrationResourcePropertyRequest')
325
326
  CreateIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'CreateIntegrationResourcePropertyResponse')
@@ -800,14 +801,30 @@ module Aws::Glue
800
801
  IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
801
802
  IcebergCompactionConfiguration = Shapes::StructureShape.new(name: 'IcebergCompactionConfiguration')
802
803
  IcebergCompactionMetrics = Shapes::StructureShape.new(name: 'IcebergCompactionMetrics')
804
+ IcebergDocument = Shapes::DocumentShape.new(name: 'IcebergDocument', document: true)
803
805
  IcebergInput = Shapes::StructureShape.new(name: 'IcebergInput')
806
+ IcebergNullOrder = Shapes::StringShape.new(name: 'IcebergNullOrder')
804
807
  IcebergOrphanFileDeletionConfiguration = Shapes::StructureShape.new(name: 'IcebergOrphanFileDeletionConfiguration')
805
808
  IcebergOrphanFileDeletionMetrics = Shapes::StructureShape.new(name: 'IcebergOrphanFileDeletionMetrics')
809
+ IcebergPartitionField = Shapes::StructureShape.new(name: 'IcebergPartitionField')
810
+ IcebergPartitionSpec = Shapes::StructureShape.new(name: 'IcebergPartitionSpec')
811
+ IcebergPartitionSpecFieldList = Shapes::ListShape.new(name: 'IcebergPartitionSpecFieldList')
806
812
  IcebergRetentionConfiguration = Shapes::StructureShape.new(name: 'IcebergRetentionConfiguration')
807
813
  IcebergRetentionMetrics = Shapes::StructureShape.new(name: 'IcebergRetentionMetrics')
814
+ IcebergSchema = Shapes::StructureShape.new(name: 'IcebergSchema')
815
+ IcebergSortDirection = Shapes::StringShape.new(name: 'IcebergSortDirection')
816
+ IcebergSortField = Shapes::StructureShape.new(name: 'IcebergSortField')
817
+ IcebergSortOrder = Shapes::StructureShape.new(name: 'IcebergSortOrder')
818
+ IcebergSortOrderFieldList = Shapes::ListShape.new(name: 'IcebergSortOrderFieldList')
819
+ IcebergStructField = Shapes::StructureShape.new(name: 'IcebergStructField')
820
+ IcebergStructFieldList = Shapes::ListShape.new(name: 'IcebergStructFieldList')
821
+ IcebergStructTypeEnum = Shapes::StringShape.new(name: 'IcebergStructTypeEnum')
822
+ IcebergTableUpdate = Shapes::StructureShape.new(name: 'IcebergTableUpdate')
823
+ IcebergTableUpdateList = Shapes::ListShape.new(name: 'IcebergTableUpdateList')
808
824
  IcebergTarget = Shapes::StructureShape.new(name: 'IcebergTarget')
809
825
  IcebergTargetCompressionType = Shapes::StringShape.new(name: 'IcebergTargetCompressionType')
810
826
  IcebergTargetList = Shapes::ListShape.new(name: 'IcebergTargetList')
827
+ IcebergTransformString = Shapes::StringShape.new(name: 'IcebergTransformString')
811
828
  IdString = Shapes::StringShape.new(name: 'IdString')
812
829
  IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
813
830
  IdleTimeout = Shapes::IntegerShape.new(name: 'IdleTimeout')
@@ -823,6 +840,7 @@ module Aws::Glue
823
840
  InclusionAnnotationValue = Shapes::StringShape.new(name: 'InclusionAnnotationValue')
824
841
  Integer = Shapes::IntegerShape.new(name: 'Integer')
825
842
  IntegerFlag = Shapes::IntegerShape.new(name: 'IntegerFlag')
843
+ IntegerList = Shapes::ListShape.new(name: 'IntegerList')
826
844
  IntegerValue = Shapes::IntegerShape.new(name: 'IntegerValue')
827
845
  Integration = Shapes::StructureShape.new(name: 'Integration')
828
846
  IntegrationAdditionalEncryptionContextMap = Shapes::MapShape.new(name: 'IntegrationAdditionalEncryptionContextMap')
@@ -1359,6 +1377,7 @@ module Aws::Glue
1359
1377
  String2048 = Shapes::StringShape.new(name: 'String2048')
1360
1378
  StringColumnStatisticsData = Shapes::StructureShape.new(name: 'StringColumnStatisticsData')
1361
1379
  StringList = Shapes::ListShape.new(name: 'StringList')
1380
+ StringToStringMap = Shapes::MapShape.new(name: 'StringToStringMap')
1362
1381
  SupportedDialect = Shapes::StructureShape.new(name: 'SupportedDialect')
1363
1382
  Table = Shapes::StructureShape.new(name: 'Table')
1364
1383
  TableAttributes = Shapes::StringShape.new(name: 'TableAttributes')
@@ -1479,6 +1498,8 @@ module Aws::Glue
1479
1498
  UpdateDevEndpointRequest = Shapes::StructureShape.new(name: 'UpdateDevEndpointRequest')
1480
1499
  UpdateDevEndpointResponse = Shapes::StructureShape.new(name: 'UpdateDevEndpointResponse')
1481
1500
  UpdateGrokClassifierRequest = Shapes::StructureShape.new(name: 'UpdateGrokClassifierRequest')
1501
+ UpdateIcebergInput = Shapes::StructureShape.new(name: 'UpdateIcebergInput')
1502
+ UpdateIcebergTableInput = Shapes::StructureShape.new(name: 'UpdateIcebergTableInput')
1482
1503
  UpdateIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'UpdateIntegrationResourcePropertyRequest')
1483
1504
  UpdateIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'UpdateIntegrationResourcePropertyResponse')
1484
1505
  UpdateIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'UpdateIntegrationTablePropertiesRequest')
@@ -1490,6 +1511,7 @@ module Aws::Glue
1490
1511
  UpdateJsonClassifierRequest = Shapes::StructureShape.new(name: 'UpdateJsonClassifierRequest')
1491
1512
  UpdateMLTransformRequest = Shapes::StructureShape.new(name: 'UpdateMLTransformRequest')
1492
1513
  UpdateMLTransformResponse = Shapes::StructureShape.new(name: 'UpdateMLTransformResponse')
1514
+ UpdateOpenTableFormatInput = Shapes::StructureShape.new(name: 'UpdateOpenTableFormatInput')
1493
1515
  UpdatePartitionRequest = Shapes::StructureShape.new(name: 'UpdatePartitionRequest')
1494
1516
  UpdatePartitionResponse = Shapes::StructureShape.new(name: 'UpdatePartitionResponse')
1495
1517
  UpdateRegistryInput = Shapes::StructureShape.new(name: 'UpdateRegistryInput')
@@ -2724,6 +2746,13 @@ module Aws::Glue
2724
2746
  CreateGrokClassifierRequest.add_member(:custom_patterns, Shapes::ShapeRef.new(shape: CustomPatterns, location_name: "CustomPatterns"))
2725
2747
  CreateGrokClassifierRequest.struct_class = Types::CreateGrokClassifierRequest
2726
2748
 
2749
+ CreateIcebergTableInput.add_member(:location, Shapes::ShapeRef.new(shape: LocationString, required: true, location_name: "Location"))
2750
+ CreateIcebergTableInput.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "Schema"))
2751
+ CreateIcebergTableInput.add_member(:partition_spec, Shapes::ShapeRef.new(shape: IcebergPartitionSpec, location_name: "PartitionSpec"))
2752
+ CreateIcebergTableInput.add_member(:write_order, Shapes::ShapeRef.new(shape: IcebergSortOrder, location_name: "WriteOrder"))
2753
+ CreateIcebergTableInput.add_member(:properties, Shapes::ShapeRef.new(shape: StringToStringMap, location_name: "Properties"))
2754
+ CreateIcebergTableInput.struct_class = Types::CreateIcebergTableInput
2755
+
2727
2756
  CreateIntegrationRequest.add_member(:integration_name, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationName"))
2728
2757
  CreateIntegrationRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "SourceArn"))
2729
2758
  CreateIntegrationRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TargetArn"))
@@ -2920,6 +2949,7 @@ module Aws::Glue
2920
2949
 
2921
2950
  CreateTableRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
2922
2951
  CreateTableRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2952
+ CreateTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
2923
2953
  CreateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
2924
2954
  CreateTableRequest.add_member(:partition_indexes, Shapes::ShapeRef.new(shape: PartitionIndexList, location_name: "PartitionIndexes"))
2925
2955
  CreateTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
@@ -3725,10 +3755,12 @@ module Aws::Glue
3725
3755
 
3726
3756
  FederatedCatalog.add_member(:identifier, Shapes::ShapeRef.new(shape: FederationIdentifier, location_name: "Identifier"))
3727
3757
  FederatedCatalog.add_member(:connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionName"))
3758
+ FederatedCatalog.add_member(:connection_type, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionType"))
3728
3759
  FederatedCatalog.struct_class = Types::FederatedCatalog
3729
3760
 
3730
3761
  FederatedDatabase.add_member(:identifier, Shapes::ShapeRef.new(shape: FederationIdentifier, location_name: "Identifier"))
3731
3762
  FederatedDatabase.add_member(:connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionName"))
3763
+ FederatedDatabase.add_member(:connection_type, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionType"))
3732
3764
  FederatedDatabase.struct_class = Types::FederatedDatabase
3733
3765
 
3734
3766
  FederatedResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
@@ -3738,6 +3770,7 @@ module Aws::Glue
3738
3770
  FederatedTable.add_member(:identifier, Shapes::ShapeRef.new(shape: FederationIdentifier, location_name: "Identifier"))
3739
3771
  FederatedTable.add_member(:database_identifier, Shapes::ShapeRef.new(shape: FederationIdentifier, location_name: "DatabaseIdentifier"))
3740
3772
  FederatedTable.add_member(:connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionName"))
3773
+ FederatedTable.add_member(:connection_type, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionType"))
3741
3774
  FederatedTable.struct_class = Types::FederatedTable
3742
3775
 
3743
3776
  FederationSourceException.add_member(:federation_source_error_code, Shapes::ShapeRef.new(shape: FederationSourceErrorCode, location_name: "FederationSourceErrorCode"))
@@ -4692,6 +4725,7 @@ module Aws::Glue
4692
4725
 
4693
4726
  IcebergInput.add_member(:metadata_operation, Shapes::ShapeRef.new(shape: MetadataOperation, required: true, location_name: "MetadataOperation"))
4694
4727
  IcebergInput.add_member(:version, Shapes::ShapeRef.new(shape: VersionString, location_name: "Version"))
4728
+ IcebergInput.add_member(:create_iceberg_table_input, Shapes::ShapeRef.new(shape: CreateIcebergTableInput, location_name: "CreateIcebergTableInput"))
4695
4729
  IcebergInput.struct_class = Types::IcebergInput
4696
4730
 
4697
4731
  IcebergOrphanFileDeletionConfiguration.add_member(:orphan_file_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "orphanFileRetentionPeriodInDays"))
@@ -4704,6 +4738,18 @@ module Aws::Glue
4704
4738
  IcebergOrphanFileDeletionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
4705
4739
  IcebergOrphanFileDeletionMetrics.struct_class = Types::IcebergOrphanFileDeletionMetrics
4706
4740
 
4741
+ IcebergPartitionField.add_member(:source_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SourceId"))
4742
+ IcebergPartitionField.add_member(:transform, Shapes::ShapeRef.new(shape: IcebergTransformString, required: true, location_name: "Transform"))
4743
+ IcebergPartitionField.add_member(:name, Shapes::ShapeRef.new(shape: ColumnNameString, required: true, location_name: "Name"))
4744
+ IcebergPartitionField.add_member(:field_id, Shapes::ShapeRef.new(shape: Integer, location_name: "FieldId"))
4745
+ IcebergPartitionField.struct_class = Types::IcebergPartitionField
4746
+
4747
+ IcebergPartitionSpec.add_member(:fields, Shapes::ShapeRef.new(shape: IcebergPartitionSpecFieldList, required: true, location_name: "Fields"))
4748
+ IcebergPartitionSpec.add_member(:spec_id, Shapes::ShapeRef.new(shape: Integer, location_name: "SpecId"))
4749
+ IcebergPartitionSpec.struct_class = Types::IcebergPartitionSpec
4750
+
4751
+ IcebergPartitionSpecFieldList.member = Shapes::ShapeRef.new(shape: IcebergPartitionField)
4752
+
4707
4753
  IcebergRetentionConfiguration.add_member(:snapshot_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "snapshotRetentionPeriodInDays"))
4708
4754
  IcebergRetentionConfiguration.add_member(:number_of_snapshots_to_retain, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "numberOfSnapshotsToRetain"))
4709
4755
  IcebergRetentionConfiguration.add_member(:clean_expired_files, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "cleanExpiredFiles"))
@@ -4717,6 +4763,42 @@ module Aws::Glue
4717
4763
  IcebergRetentionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
4718
4764
  IcebergRetentionMetrics.struct_class = Types::IcebergRetentionMetrics
4719
4765
 
4766
+ IcebergSchema.add_member(:schema_id, Shapes::ShapeRef.new(shape: Integer, location_name: "SchemaId"))
4767
+ IcebergSchema.add_member(:identifier_field_ids, Shapes::ShapeRef.new(shape: IntegerList, location_name: "IdentifierFieldIds"))
4768
+ IcebergSchema.add_member(:type, Shapes::ShapeRef.new(shape: IcebergStructTypeEnum, location_name: "Type"))
4769
+ IcebergSchema.add_member(:fields, Shapes::ShapeRef.new(shape: IcebergStructFieldList, required: true, location_name: "Fields"))
4770
+ IcebergSchema.struct_class = Types::IcebergSchema
4771
+
4772
+ IcebergSortField.add_member(:source_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SourceId"))
4773
+ IcebergSortField.add_member(:transform, Shapes::ShapeRef.new(shape: IcebergTransformString, required: true, location_name: "Transform"))
4774
+ IcebergSortField.add_member(:direction, Shapes::ShapeRef.new(shape: IcebergSortDirection, required: true, location_name: "Direction"))
4775
+ IcebergSortField.add_member(:null_order, Shapes::ShapeRef.new(shape: IcebergNullOrder, required: true, location_name: "NullOrder"))
4776
+ IcebergSortField.struct_class = Types::IcebergSortField
4777
+
4778
+ IcebergSortOrder.add_member(:order_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "OrderId"))
4779
+ IcebergSortOrder.add_member(:fields, Shapes::ShapeRef.new(shape: IcebergSortOrderFieldList, required: true, location_name: "Fields"))
4780
+ IcebergSortOrder.struct_class = Types::IcebergSortOrder
4781
+
4782
+ IcebergSortOrderFieldList.member = Shapes::ShapeRef.new(shape: IcebergSortField)
4783
+
4784
+ IcebergStructField.add_member(:id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "Id"))
4785
+ IcebergStructField.add_member(:name, Shapes::ShapeRef.new(shape: ColumnNameString, required: true, location_name: "Name"))
4786
+ IcebergStructField.add_member(:type, Shapes::ShapeRef.new(shape: IcebergDocument, required: true, location_name: "Type"))
4787
+ IcebergStructField.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Required"))
4788
+ IcebergStructField.add_member(:doc, Shapes::ShapeRef.new(shape: CommentString, location_name: "Doc"))
4789
+ IcebergStructField.struct_class = Types::IcebergStructField
4790
+
4791
+ IcebergStructFieldList.member = Shapes::ShapeRef.new(shape: IcebergStructField)
4792
+
4793
+ IcebergTableUpdate.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "Schema"))
4794
+ IcebergTableUpdate.add_member(:partition_spec, Shapes::ShapeRef.new(shape: IcebergPartitionSpec, location_name: "PartitionSpec"))
4795
+ IcebergTableUpdate.add_member(:sort_order, Shapes::ShapeRef.new(shape: IcebergSortOrder, location_name: "SortOrder"))
4796
+ IcebergTableUpdate.add_member(:location, Shapes::ShapeRef.new(shape: LocationString, required: true, location_name: "Location"))
4797
+ IcebergTableUpdate.add_member(:properties, Shapes::ShapeRef.new(shape: StringToStringMap, location_name: "Properties"))
4798
+ IcebergTableUpdate.struct_class = Types::IcebergTableUpdate
4799
+
4800
+ IcebergTableUpdateList.member = Shapes::ShapeRef.new(shape: IcebergTableUpdate)
4801
+
4720
4802
  IcebergTarget.add_member(:paths, Shapes::ShapeRef.new(shape: PathList, location_name: "Paths"))
4721
4803
  IcebergTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
4722
4804
  IcebergTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
@@ -4759,6 +4841,8 @@ module Aws::Glue
4759
4841
 
4760
4842
  InclusionAnnotationList.member = Shapes::ShapeRef.new(shape: DatapointInclusionAnnotation)
4761
4843
 
4844
+ IntegerList.member = Shapes::ShapeRef.new(shape: Integer)
4845
+
4762
4846
  Integration.add_member(:source_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "SourceArn"))
4763
4847
  Integration.add_member(:target_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "TargetArn"))
4764
4848
  Integration.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
@@ -6643,6 +6727,9 @@ module Aws::Glue
6643
6727
 
6644
6728
  StringList.member = Shapes::ShapeRef.new(shape: GenericString)
6645
6729
 
6730
+ StringToStringMap.key = Shapes::ShapeRef.new(shape: NullableString)
6731
+ StringToStringMap.value = Shapes::ShapeRef.new(shape: NullableString)
6732
+
6646
6733
  SupportedDialect.add_member(:dialect, Shapes::ShapeRef.new(shape: ViewDialect, location_name: "Dialect"))
6647
6734
  SupportedDialect.add_member(:dialect_version, Shapes::ShapeRef.new(shape: ViewDialectVersionString, location_name: "DialectVersion"))
6648
6735
  SupportedDialect.struct_class = Types::SupportedDialect
@@ -7067,6 +7154,12 @@ module Aws::Glue
7067
7154
  UpdateGrokClassifierRequest.add_member(:custom_patterns, Shapes::ShapeRef.new(shape: CustomPatterns, location_name: "CustomPatterns"))
7068
7155
  UpdateGrokClassifierRequest.struct_class = Types::UpdateGrokClassifierRequest
7069
7156
 
7157
+ UpdateIcebergInput.add_member(:update_iceberg_table_input, Shapes::ShapeRef.new(shape: UpdateIcebergTableInput, required: true, location_name: "UpdateIcebergTableInput"))
7158
+ UpdateIcebergInput.struct_class = Types::UpdateIcebergInput
7159
+
7160
+ UpdateIcebergTableInput.add_member(:updates, Shapes::ShapeRef.new(shape: IcebergTableUpdateList, required: true, location_name: "Updates"))
7161
+ UpdateIcebergTableInput.struct_class = Types::UpdateIcebergTableInput
7162
+
7070
7163
  UpdateIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "ResourceArn"))
7071
7164
  UpdateIntegrationResourcePropertyRequest.add_member(:source_processing_properties, Shapes::ShapeRef.new(shape: SourceProcessingProperties, location_name: "SourceProcessingProperties"))
7072
7165
  UpdateIntegrationResourcePropertyRequest.add_member(:target_processing_properties, Shapes::ShapeRef.new(shape: TargetProcessingProperties, location_name: "TargetProcessingProperties"))
@@ -7126,6 +7219,9 @@ module Aws::Glue
7126
7219
  UpdateMLTransformResponse.add_member(:transform_id, Shapes::ShapeRef.new(shape: HashString, location_name: "TransformId"))
7127
7220
  UpdateMLTransformResponse.struct_class = Types::UpdateMLTransformResponse
7128
7221
 
7222
+ UpdateOpenTableFormatInput.add_member(:update_iceberg_input, Shapes::ShapeRef.new(shape: UpdateIcebergInput, location_name: "UpdateIcebergInput"))
7223
+ UpdateOpenTableFormatInput.struct_class = Types::UpdateOpenTableFormatInput
7224
+
7129
7225
  UpdatePartitionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
7130
7226
  UpdatePartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
7131
7227
  UpdatePartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
@@ -7179,12 +7275,14 @@ module Aws::Glue
7179
7275
 
7180
7276
  UpdateTableRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
7181
7277
  UpdateTableRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
7182
- UpdateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
7278
+ UpdateTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
7279
+ UpdateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, location_name: "TableInput"))
7183
7280
  UpdateTableRequest.add_member(:skip_archive, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "SkipArchive"))
7184
7281
  UpdateTableRequest.add_member(:transaction_id, Shapes::ShapeRef.new(shape: TransactionIdString, location_name: "TransactionId"))
7185
7282
  UpdateTableRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: VersionString, location_name: "VersionId"))
7186
7283
  UpdateTableRequest.add_member(:view_update_action, Shapes::ShapeRef.new(shape: ViewUpdateAction, location_name: "ViewUpdateAction"))
7187
7284
  UpdateTableRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "Force"))
7285
+ UpdateTableRequest.add_member(:update_open_table_format_input, Shapes::ShapeRef.new(shape: UpdateOpenTableFormatInput, location_name: "UpdateOpenTableFormatInput"))
7188
7286
  UpdateTableRequest.struct_class = Types::UpdateTableRequest
7189
7287
 
7190
7288
  UpdateTableResponse.struct_class = Types::UpdateTableResponse