aws-sdk-glue 1.259.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +297 -2
- data/lib/aws-sdk-glue/client_api.rb +93 -0
- data/lib/aws-sdk-glue/errors.rb +16 -0
- data/lib/aws-sdk-glue/types.rb +223 -3
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +27 -3
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +55 -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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.260.0 (2026-06-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS Glue Interactive Sessions now supports Apache Spark Connect, enabling remote Spark execution over gRPC with minimal client-side dependencies. Adds GetSessionEndpoint and GetDashboardUrl APIs. Modifies CreateSession now accepts SPARK CONNECT session type.
|
|
13
|
+
|
|
4
14
|
1.259.0 (2026-05-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.261.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -4236,6 +4236,9 @@ module Aws::Glue
|
|
|
4236
4236
|
# @option params [String] :request_origin
|
|
4237
4237
|
# The origin of the request.
|
|
4238
4238
|
#
|
|
4239
|
+
# @option params [String] :session_type
|
|
4240
|
+
# The type of session to create.
|
|
4241
|
+
#
|
|
4239
4242
|
# @return [Types::CreateSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4240
4243
|
#
|
|
4241
4244
|
# * {Types::CreateSessionResponse#session #session} => Types::Session
|
|
@@ -4267,6 +4270,7 @@ module Aws::Glue
|
|
|
4267
4270
|
# "TagKey" => "TagValue",
|
|
4268
4271
|
# },
|
|
4269
4272
|
# request_origin: "OrchestrationNameString",
|
|
4273
|
+
# session_type: "LIVY", # accepts LIVY, SPARK_CONNECT
|
|
4270
4274
|
# })
|
|
4271
4275
|
#
|
|
4272
4276
|
# @example Response structure
|
|
@@ -4294,6 +4298,7 @@ module Aws::Glue
|
|
|
4294
4298
|
# resp.session.dpu_seconds #=> Float
|
|
4295
4299
|
# resp.session.idle_timeout #=> Integer
|
|
4296
4300
|
# resp.session.profile_name #=> String
|
|
4301
|
+
# resp.session.session_type #=> String, one of "LIVY", "SPARK_CONNECT"
|
|
4297
4302
|
#
|
|
4298
4303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateSession AWS API Documentation
|
|
4299
4304
|
#
|
|
@@ -7772,6 +7777,44 @@ module Aws::Glue
|
|
|
7772
7777
|
req.send_request(options)
|
|
7773
7778
|
end
|
|
7774
7779
|
|
|
7780
|
+
# Retrieves the URL for the Spark monitoring dashboard for a Glue
|
|
7781
|
+
# resource.
|
|
7782
|
+
#
|
|
7783
|
+
# @option params [required, String] :resource_id
|
|
7784
|
+
# The unique identifier of the resource for which to retrieve the
|
|
7785
|
+
# dashboard URL.
|
|
7786
|
+
#
|
|
7787
|
+
# @option params [required, String] :resource_type
|
|
7788
|
+
# The type of the resource. Valid values are `SESSION` and `JOB`.
|
|
7789
|
+
#
|
|
7790
|
+
# @option params [String] :request_origin
|
|
7791
|
+
# The origin of the request.
|
|
7792
|
+
#
|
|
7793
|
+
# @return [Types::GetDashboardUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7794
|
+
#
|
|
7795
|
+
# * {Types::GetDashboardUrlResponse#url #url} => String
|
|
7796
|
+
#
|
|
7797
|
+
# @example Request syntax with placeholder values
|
|
7798
|
+
#
|
|
7799
|
+
# resp = client.get_dashboard_url({
|
|
7800
|
+
# resource_id: "NameString", # required
|
|
7801
|
+
# resource_type: "JOB", # required, accepts JOB, SESSION
|
|
7802
|
+
# request_origin: "OrchestrationNameString",
|
|
7803
|
+
# })
|
|
7804
|
+
#
|
|
7805
|
+
# @example Response structure
|
|
7806
|
+
#
|
|
7807
|
+
# resp.url #=> String
|
|
7808
|
+
#
|
|
7809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDashboardUrl AWS API Documentation
|
|
7810
|
+
#
|
|
7811
|
+
# @overload get_dashboard_url(params = {})
|
|
7812
|
+
# @param [Hash] params ({})
|
|
7813
|
+
def get_dashboard_url(params = {}, options = {})
|
|
7814
|
+
req = build_request(:get_dashboard_url, params)
|
|
7815
|
+
req.send_request(options)
|
|
7816
|
+
end
|
|
7817
|
+
|
|
7775
7818
|
# Retrieves the security configuration for a specified catalog.
|
|
7776
7819
|
#
|
|
7777
7820
|
# @option params [String] :catalog_id
|
|
@@ -10386,6 +10429,7 @@ module Aws::Glue
|
|
|
10386
10429
|
# resp.session.dpu_seconds #=> Float
|
|
10387
10430
|
# resp.session.idle_timeout #=> Integer
|
|
10388
10431
|
# resp.session.profile_name #=> String
|
|
10432
|
+
# resp.session.session_type #=> String, one of "LIVY", "SPARK_CONNECT"
|
|
10389
10433
|
#
|
|
10390
10434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSession AWS API Documentation
|
|
10391
10435
|
#
|
|
@@ -10396,6 +10440,37 @@ module Aws::Glue
|
|
|
10396
10440
|
req.send_request(options)
|
|
10397
10441
|
end
|
|
10398
10442
|
|
|
10443
|
+
# Returns the Spark Connect endpoint URL and authentication token for an
|
|
10444
|
+
# interactive session.
|
|
10445
|
+
#
|
|
10446
|
+
# @option params [required, String] :session_id
|
|
10447
|
+
# The unique identifier of the interactive session.
|
|
10448
|
+
#
|
|
10449
|
+
# @return [Types::GetSessionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10450
|
+
#
|
|
10451
|
+
# * {Types::GetSessionEndpointResponse#spark_connect #spark_connect} => Types::SessionEndpoint
|
|
10452
|
+
#
|
|
10453
|
+
# @example Request syntax with placeholder values
|
|
10454
|
+
#
|
|
10455
|
+
# resp = client.get_session_endpoint({
|
|
10456
|
+
# session_id: "NameString", # required
|
|
10457
|
+
# })
|
|
10458
|
+
#
|
|
10459
|
+
# @example Response structure
|
|
10460
|
+
#
|
|
10461
|
+
# resp.spark_connect.url #=> String
|
|
10462
|
+
# resp.spark_connect.auth_token #=> String
|
|
10463
|
+
# resp.spark_connect.auth_token_expiration_time #=> Time
|
|
10464
|
+
#
|
|
10465
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSessionEndpoint AWS API Documentation
|
|
10466
|
+
#
|
|
10467
|
+
# @overload get_session_endpoint(params = {})
|
|
10468
|
+
# @param [Hash] params ({})
|
|
10469
|
+
def get_session_endpoint(params = {}, options = {})
|
|
10470
|
+
req = build_request(:get_session_endpoint, params)
|
|
10471
|
+
req.send_request(options)
|
|
10472
|
+
end
|
|
10473
|
+
|
|
10399
10474
|
# Retrieves the statement.
|
|
10400
10475
|
#
|
|
10401
10476
|
# @option params [required, String] :session_id
|
|
@@ -10478,6 +10553,20 @@ module Aws::Glue
|
|
|
10478
10553
|
# Specifies whether to include status details related to a request to
|
|
10479
10554
|
# create or update an Glue Data Catalog view.
|
|
10480
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
|
+
#
|
|
10481
10570
|
# @return [Types::GetTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10482
10571
|
#
|
|
10483
10572
|
# * {Types::GetTableResponse#table #table} => Types::Table
|
|
@@ -10496,6 +10585,7 @@ module Aws::Glue
|
|
|
10496
10585
|
# all_columns_requested: false,
|
|
10497
10586
|
# },
|
|
10498
10587
|
# include_status_details: false,
|
|
10588
|
+
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE, DEFAULT, LATEST_ICEBERG_METADATA
|
|
10499
10589
|
# })
|
|
10500
10590
|
#
|
|
10501
10591
|
# @example Response structure
|
|
@@ -10587,6 +10677,40 @@ module Aws::Glue
|
|
|
10587
10677
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10588
10678
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
10589
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
|
|
10590
10714
|
# resp.table.status.requested_by #=> String
|
|
10591
10715
|
# resp.table.status.updated_by #=> String
|
|
10592
10716
|
# resp.table.status.request_time #=> Time
|
|
@@ -10827,6 +10951,40 @@ module Aws::Glue
|
|
|
10827
10951
|
# resp.table_version.table.view_definition.representations[0].is_stale #=> Boolean
|
|
10828
10952
|
# resp.table_version.table.is_multi_dialect_view #=> Boolean
|
|
10829
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
|
|
10830
10988
|
# resp.table_version.table.status.requested_by #=> String
|
|
10831
10989
|
# resp.table_version.table.status.updated_by #=> String
|
|
10832
10990
|
# resp.table_version.table.status.request_time #=> Time
|
|
@@ -10991,6 +11149,40 @@ module Aws::Glue
|
|
|
10991
11149
|
# resp.table_versions[0].table.view_definition.representations[0].is_stale #=> Boolean
|
|
10992
11150
|
# resp.table_versions[0].table.is_multi_dialect_view #=> Boolean
|
|
10993
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
|
|
10994
11186
|
# resp.table_versions[0].table.status.requested_by #=> String
|
|
10995
11187
|
# resp.table_versions[0].table.status.updated_by #=> String
|
|
10996
11188
|
# resp.table_versions[0].table.status.request_time #=> Time
|
|
@@ -11094,7 +11286,7 @@ module Aws::Glue
|
|
|
11094
11286
|
# all_columns_requested: false,
|
|
11095
11287
|
# },
|
|
11096
11288
|
# include_status_details: false,
|
|
11097
|
-
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE
|
|
11289
|
+
# attributes_to_get: ["NAME"], # accepts NAME, TABLE_TYPE, DEFAULT, LATEST_ICEBERG_METADATA
|
|
11098
11290
|
# })
|
|
11099
11291
|
#
|
|
11100
11292
|
# @example Response structure
|
|
@@ -11187,6 +11379,40 @@ module Aws::Glue
|
|
|
11187
11379
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
11188
11380
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
11189
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
|
|
11190
11416
|
# resp.table_list[0].status.requested_by #=> String
|
|
11191
11417
|
# resp.table_list[0].status.updated_by #=> String
|
|
11192
11418
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -11932,6 +12158,40 @@ module Aws::Glue
|
|
|
11932
12158
|
# resp.table.view_definition.representations[0].is_stale #=> Boolean
|
|
11933
12159
|
# resp.table.is_multi_dialect_view #=> Boolean
|
|
11934
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
|
|
11935
12195
|
# resp.table.status.requested_by #=> String
|
|
11936
12196
|
# resp.table.status.updated_by #=> String
|
|
11937
12197
|
# resp.table.status.request_time #=> Time
|
|
@@ -13992,6 +14252,7 @@ module Aws::Glue
|
|
|
13992
14252
|
# resp.sessions[0].dpu_seconds #=> Float
|
|
13993
14253
|
# resp.sessions[0].idle_timeout #=> Integer
|
|
13994
14254
|
# resp.sessions[0].profile_name #=> String
|
|
14255
|
+
# resp.sessions[0].session_type #=> String, one of "LIVY", "SPARK_CONNECT"
|
|
13995
14256
|
# resp.next_token #=> String
|
|
13996
14257
|
#
|
|
13997
14258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListSessions AWS API Documentation
|
|
@@ -15600,6 +15861,40 @@ module Aws::Glue
|
|
|
15600
15861
|
# resp.table_list[0].view_definition.representations[0].is_stale #=> Boolean
|
|
15601
15862
|
# resp.table_list[0].is_multi_dialect_view #=> Boolean
|
|
15602
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
|
|
15603
15898
|
# resp.table_list[0].status.requested_by #=> String
|
|
15604
15899
|
# resp.table_list[0].status.updated_by #=> String
|
|
15605
15900
|
# resp.table_list[0].status.request_time #=> Time
|
|
@@ -19061,7 +19356,7 @@ module Aws::Glue
|
|
|
19061
19356
|
tracer: tracer
|
|
19062
19357
|
)
|
|
19063
19358
|
context[:gem_name] = 'aws-sdk-glue'
|
|
19064
|
-
context[:gem_version] = '1.
|
|
19359
|
+
context[:gem_version] = '1.261.0'
|
|
19065
19360
|
Seahorse::Client::Request.new(handlers, context)
|
|
19066
19361
|
end
|
|
19067
19362
|
|
|
@@ -700,6 +700,8 @@ module Aws::Glue
|
|
|
700
700
|
GetCrawlersResponse = Shapes::StructureShape.new(name: 'GetCrawlersResponse')
|
|
701
701
|
GetCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'GetCustomEntityTypeRequest')
|
|
702
702
|
GetCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'GetCustomEntityTypeResponse')
|
|
703
|
+
GetDashboardUrlRequest = Shapes::StructureShape.new(name: 'GetDashboardUrlRequest')
|
|
704
|
+
GetDashboardUrlResponse = Shapes::StructureShape.new(name: 'GetDashboardUrlResponse')
|
|
703
705
|
GetDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsRequest')
|
|
704
706
|
GetDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsResponse')
|
|
705
707
|
GetDataQualityModelRequest = Shapes::StructureShape.new(name: 'GetDataQualityModelRequest')
|
|
@@ -781,6 +783,8 @@ module Aws::Glue
|
|
|
781
783
|
GetSecurityConfigurationResponse = Shapes::StructureShape.new(name: 'GetSecurityConfigurationResponse')
|
|
782
784
|
GetSecurityConfigurationsRequest = Shapes::StructureShape.new(name: 'GetSecurityConfigurationsRequest')
|
|
783
785
|
GetSecurityConfigurationsResponse = Shapes::StructureShape.new(name: 'GetSecurityConfigurationsResponse')
|
|
786
|
+
GetSessionEndpointRequest = Shapes::StructureShape.new(name: 'GetSessionEndpointRequest')
|
|
787
|
+
GetSessionEndpointResponse = Shapes::StructureShape.new(name: 'GetSessionEndpointResponse')
|
|
784
788
|
GetSessionRequest = Shapes::StructureShape.new(name: 'GetSessionRequest')
|
|
785
789
|
GetSessionResponse = Shapes::StructureShape.new(name: 'GetSessionResponse')
|
|
786
790
|
GetStatementRequest = Shapes::StructureShape.new(name: 'GetStatementRequest')
|
|
@@ -826,6 +830,7 @@ module Aws::Glue
|
|
|
826
830
|
GluePolicy = Shapes::StructureShape.new(name: 'GluePolicy')
|
|
827
831
|
GlueRecordType = Shapes::StringShape.new(name: 'GlueRecordType')
|
|
828
832
|
GlueResourceArn = Shapes::StringShape.new(name: 'GlueResourceArn')
|
|
833
|
+
GlueResourceType = Shapes::StringShape.new(name: 'GlueResourceType')
|
|
829
834
|
GlueSchema = Shapes::StructureShape.new(name: 'GlueSchema')
|
|
830
835
|
GlueSchemas = Shapes::ListShape.new(name: 'GlueSchemas')
|
|
831
836
|
GlueStudioColumnNameString = Shapes::StringShape.new(name: 'GlueStudioColumnNameString')
|
|
@@ -862,16 +867,20 @@ module Aws::Glue
|
|
|
862
867
|
IcebergPartitionField = Shapes::StructureShape.new(name: 'IcebergPartitionField')
|
|
863
868
|
IcebergPartitionSpec = Shapes::StructureShape.new(name: 'IcebergPartitionSpec')
|
|
864
869
|
IcebergPartitionSpecFieldList = Shapes::ListShape.new(name: 'IcebergPartitionSpecFieldList')
|
|
870
|
+
IcebergPartitionSpecList = Shapes::ListShape.new(name: 'IcebergPartitionSpecList')
|
|
865
871
|
IcebergRetentionConfiguration = Shapes::StructureShape.new(name: 'IcebergRetentionConfiguration')
|
|
866
872
|
IcebergRetentionMetrics = Shapes::StructureShape.new(name: 'IcebergRetentionMetrics')
|
|
867
873
|
IcebergSchema = Shapes::StructureShape.new(name: 'IcebergSchema')
|
|
874
|
+
IcebergSchemaList = Shapes::ListShape.new(name: 'IcebergSchemaList')
|
|
868
875
|
IcebergSortDirection = Shapes::StringShape.new(name: 'IcebergSortDirection')
|
|
869
876
|
IcebergSortField = Shapes::StructureShape.new(name: 'IcebergSortField')
|
|
870
877
|
IcebergSortOrder = Shapes::StructureShape.new(name: 'IcebergSortOrder')
|
|
871
878
|
IcebergSortOrderFieldList = Shapes::ListShape.new(name: 'IcebergSortOrderFieldList')
|
|
879
|
+
IcebergSortOrderList = Shapes::ListShape.new(name: 'IcebergSortOrderList')
|
|
872
880
|
IcebergStructField = Shapes::StructureShape.new(name: 'IcebergStructField')
|
|
873
881
|
IcebergStructFieldList = Shapes::ListShape.new(name: 'IcebergStructFieldList')
|
|
874
882
|
IcebergStructTypeEnum = Shapes::StringShape.new(name: 'IcebergStructTypeEnum')
|
|
883
|
+
IcebergTableMetadata = Shapes::StructureShape.new(name: 'IcebergTableMetadata')
|
|
875
884
|
IcebergTableUpdate = Shapes::StructureShape.new(name: 'IcebergTableUpdate')
|
|
876
885
|
IcebergTableUpdateList = Shapes::ListShape.new(name: 'IcebergTableUpdateList')
|
|
877
886
|
IcebergTarget = Shapes::StructureShape.new(name: 'IcebergTarget')
|
|
@@ -1377,13 +1386,18 @@ module Aws::Glue
|
|
|
1377
1386
|
SelectFields = Shapes::StructureShape.new(name: 'SelectFields')
|
|
1378
1387
|
SelectFromCollection = Shapes::StructureShape.new(name: 'SelectFromCollection')
|
|
1379
1388
|
SelectedFields = Shapes::ListShape.new(name: 'SelectedFields')
|
|
1389
|
+
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
|
1390
|
+
SensitiveUrl = Shapes::StringShape.new(name: 'SensitiveUrl')
|
|
1380
1391
|
Separator = Shapes::StringShape.new(name: 'Separator')
|
|
1381
1392
|
SerDeInfo = Shapes::StructureShape.new(name: 'SerDeInfo')
|
|
1382
1393
|
Session = Shapes::StructureShape.new(name: 'Session')
|
|
1394
|
+
SessionBusyException = Shapes::StructureShape.new(name: 'SessionBusyException')
|
|
1383
1395
|
SessionCommand = Shapes::StructureShape.new(name: 'SessionCommand')
|
|
1396
|
+
SessionEndpoint = Shapes::StructureShape.new(name: 'SessionEndpoint')
|
|
1384
1397
|
SessionIdList = Shapes::ListShape.new(name: 'SessionIdList')
|
|
1385
1398
|
SessionList = Shapes::ListShape.new(name: 'SessionList')
|
|
1386
1399
|
SessionStatus = Shapes::StringShape.new(name: 'SessionStatus')
|
|
1400
|
+
SessionType = Shapes::StringShape.new(name: 'SessionType')
|
|
1387
1401
|
SettingSource = Shapes::StringShape.new(name: 'SettingSource')
|
|
1388
1402
|
SkewedInfo = Shapes::StructureShape.new(name: 'SkewedInfo')
|
|
1389
1403
|
SnowflakeNodeData = Shapes::StructureShape.new(name: 'SnowflakeNodeData')
|
|
@@ -1400,6 +1414,7 @@ module Aws::Glue
|
|
|
1400
1414
|
SourceProcessingProperties = Shapes::StructureShape.new(name: 'SourceProcessingProperties')
|
|
1401
1415
|
SourceTableConfig = Shapes::StructureShape.new(name: 'SourceTableConfig')
|
|
1402
1416
|
SourceTableFieldsList = Shapes::ListShape.new(name: 'SourceTableFieldsList')
|
|
1417
|
+
SparkConnectEndpointUrl = Shapes::StringShape.new(name: 'SparkConnectEndpointUrl')
|
|
1403
1418
|
SparkConnectorSource = Shapes::StructureShape.new(name: 'SparkConnectorSource')
|
|
1404
1419
|
SparkConnectorTarget = Shapes::StructureShape.new(name: 'SparkConnectorTarget')
|
|
1405
1420
|
SparkSQL = Shapes::StructureShape.new(name: 'SparkSQL')
|
|
@@ -1486,6 +1501,7 @@ module Aws::Glue
|
|
|
1486
1501
|
TableAttributesList = Shapes::ListShape.new(name: 'TableAttributesList')
|
|
1487
1502
|
TableError = Shapes::StructureShape.new(name: 'TableError')
|
|
1488
1503
|
TableErrors = Shapes::ListShape.new(name: 'TableErrors')
|
|
1504
|
+
TableIdString = Shapes::StringShape.new(name: 'TableIdString')
|
|
1489
1505
|
TableIdentifier = Shapes::StructureShape.new(name: 'TableIdentifier')
|
|
1490
1506
|
TableInput = Shapes::StructureShape.new(name: 'TableInput')
|
|
1491
1507
|
TableList = Shapes::ListShape.new(name: 'TableList')
|
|
@@ -3127,6 +3143,7 @@ module Aws::Glue
|
|
|
3127
3143
|
CreateSessionRequest.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
|
|
3128
3144
|
CreateSessionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
|
3129
3145
|
CreateSessionRequest.add_member(:request_origin, Shapes::ShapeRef.new(shape: OrchestrationNameString, location_name: "RequestOrigin"))
|
|
3146
|
+
CreateSessionRequest.add_member(:session_type, Shapes::ShapeRef.new(shape: SessionType, location_name: "SessionType"))
|
|
3130
3147
|
CreateSessionRequest.struct_class = Types::CreateSessionRequest
|
|
3131
3148
|
|
|
3132
3149
|
CreateSessionResponse.add_member(:session, Shapes::ShapeRef.new(shape: Session, location_name: "Session"))
|
|
@@ -4284,6 +4301,14 @@ module Aws::Glue
|
|
|
4284
4301
|
GetCustomEntityTypeResponse.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
|
4285
4302
|
GetCustomEntityTypeResponse.struct_class = Types::GetCustomEntityTypeResponse
|
|
4286
4303
|
|
|
4304
|
+
GetDashboardUrlRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "ResourceId"))
|
|
4305
|
+
GetDashboardUrlRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: GlueResourceType, required: true, location_name: "ResourceType"))
|
|
4306
|
+
GetDashboardUrlRequest.add_member(:request_origin, Shapes::ShapeRef.new(shape: OrchestrationNameString, location_name: "RequestOrigin"))
|
|
4307
|
+
GetDashboardUrlRequest.struct_class = Types::GetDashboardUrlRequest
|
|
4308
|
+
|
|
4309
|
+
GetDashboardUrlResponse.add_member(:url, Shapes::ShapeRef.new(shape: SensitiveUrl, required: true, location_name: "Url"))
|
|
4310
|
+
GetDashboardUrlResponse.struct_class = Types::GetDashboardUrlResponse
|
|
4311
|
+
|
|
4287
4312
|
GetDataCatalogEncryptionSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
|
4288
4313
|
GetDataCatalogEncryptionSettingsRequest.struct_class = Types::GetDataCatalogEncryptionSettingsRequest
|
|
4289
4314
|
|
|
@@ -4721,6 +4746,12 @@ module Aws::Glue
|
|
|
4721
4746
|
GetSecurityConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: GenericString, location_name: "NextToken"))
|
|
4722
4747
|
GetSecurityConfigurationsResponse.struct_class = Types::GetSecurityConfigurationsResponse
|
|
4723
4748
|
|
|
4749
|
+
GetSessionEndpointRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "SessionId"))
|
|
4750
|
+
GetSessionEndpointRequest.struct_class = Types::GetSessionEndpointRequest
|
|
4751
|
+
|
|
4752
|
+
GetSessionEndpointResponse.add_member(:spark_connect, Shapes::ShapeRef.new(shape: SessionEndpoint, required: true, location_name: "SparkConnect"))
|
|
4753
|
+
GetSessionEndpointResponse.struct_class = Types::GetSessionEndpointResponse
|
|
4754
|
+
|
|
4724
4755
|
GetSessionRequest.add_member(:id, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Id"))
|
|
4725
4756
|
GetSessionRequest.add_member(:request_origin, Shapes::ShapeRef.new(shape: OrchestrationNameString, location_name: "RequestOrigin"))
|
|
4726
4757
|
GetSessionRequest.struct_class = Types::GetSessionRequest
|
|
@@ -4755,6 +4786,7 @@ module Aws::Glue
|
|
|
4755
4786
|
GetTableRequest.add_member(:query_as_of_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "QueryAsOfTime"))
|
|
4756
4787
|
GetTableRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location_name: "AuditContext"))
|
|
4757
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"))
|
|
4758
4790
|
GetTableRequest.struct_class = Types::GetTableRequest
|
|
4759
4791
|
|
|
4760
4792
|
GetTableResponse.add_member(:table, Shapes::ShapeRef.new(shape: Table, location_name: "Table"))
|
|
@@ -5074,6 +5106,8 @@ module Aws::Glue
|
|
|
5074
5106
|
|
|
5075
5107
|
IcebergPartitionSpecFieldList.member = Shapes::ShapeRef.new(shape: IcebergPartitionField)
|
|
5076
5108
|
|
|
5109
|
+
IcebergPartitionSpecList.member = Shapes::ShapeRef.new(shape: IcebergPartitionSpec)
|
|
5110
|
+
|
|
5077
5111
|
IcebergRetentionConfiguration.add_member(:snapshot_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "snapshotRetentionPeriodInDays"))
|
|
5078
5112
|
IcebergRetentionConfiguration.add_member(:number_of_snapshots_to_retain, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "numberOfSnapshotsToRetain"))
|
|
5079
5113
|
IcebergRetentionConfiguration.add_member(:clean_expired_files, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "cleanExpiredFiles"))
|
|
@@ -5094,6 +5128,8 @@ module Aws::Glue
|
|
|
5094
5128
|
IcebergSchema.add_member(:fields, Shapes::ShapeRef.new(shape: IcebergStructFieldList, required: true, location_name: "Fields"))
|
|
5095
5129
|
IcebergSchema.struct_class = Types::IcebergSchema
|
|
5096
5130
|
|
|
5131
|
+
IcebergSchemaList.member = Shapes::ShapeRef.new(shape: IcebergSchema)
|
|
5132
|
+
|
|
5097
5133
|
IcebergSortField.add_member(:source_id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "SourceId"))
|
|
5098
5134
|
IcebergSortField.add_member(:transform, Shapes::ShapeRef.new(shape: IcebergTransformString, required: true, location_name: "Transform"))
|
|
5099
5135
|
IcebergSortField.add_member(:direction, Shapes::ShapeRef.new(shape: IcebergSortDirection, required: true, location_name: "Direction"))
|
|
@@ -5106,6 +5142,8 @@ module Aws::Glue
|
|
|
5106
5142
|
|
|
5107
5143
|
IcebergSortOrderFieldList.member = Shapes::ShapeRef.new(shape: IcebergSortField)
|
|
5108
5144
|
|
|
5145
|
+
IcebergSortOrderList.member = Shapes::ShapeRef.new(shape: IcebergSortOrder)
|
|
5146
|
+
|
|
5109
5147
|
IcebergStructField.add_member(:id, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "Id"))
|
|
5110
5148
|
IcebergStructField.add_member(:name, Shapes::ShapeRef.new(shape: ColumnNameString, required: true, location_name: "Name"))
|
|
5111
5149
|
IcebergStructField.add_member(:type, Shapes::ShapeRef.new(shape: IcebergDocument, required: true, location_name: "Type"))
|
|
@@ -5117,6 +5155,20 @@ module Aws::Glue
|
|
|
5117
5155
|
|
|
5118
5156
|
IcebergStructFieldList.member = Shapes::ShapeRef.new(shape: IcebergStructField)
|
|
5119
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
|
+
|
|
5120
5172
|
IcebergTableUpdate.add_member(:schema, Shapes::ShapeRef.new(shape: IcebergSchema, required: true, location_name: "Schema"))
|
|
5121
5173
|
IcebergTableUpdate.add_member(:partition_spec, Shapes::ShapeRef.new(shape: IcebergPartitionSpec, location_name: "PartitionSpec"))
|
|
5122
5174
|
IcebergTableUpdate.add_member(:sort_order, Shapes::ShapeRef.new(shape: IcebergSortOrder, location_name: "SortOrder"))
|
|
@@ -6852,12 +6904,21 @@ module Aws::Glue
|
|
|
6852
6904
|
Session.add_member(:dpu_seconds, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "DPUSeconds"))
|
|
6853
6905
|
Session.add_member(:idle_timeout, Shapes::ShapeRef.new(shape: IdleTimeout, location_name: "IdleTimeout"))
|
|
6854
6906
|
Session.add_member(:profile_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ProfileName"))
|
|
6907
|
+
Session.add_member(:session_type, Shapes::ShapeRef.new(shape: SessionType, location_name: "SessionType"))
|
|
6855
6908
|
Session.struct_class = Types::Session
|
|
6856
6909
|
|
|
6910
|
+
SessionBusyException.add_member(:message, Shapes::ShapeRef.new(shape: OrchestrationMessageString, location_name: "Message"))
|
|
6911
|
+
SessionBusyException.struct_class = Types::SessionBusyException
|
|
6912
|
+
|
|
6857
6913
|
SessionCommand.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
|
6858
6914
|
SessionCommand.add_member(:python_version, Shapes::ShapeRef.new(shape: PythonVersionString, location_name: "PythonVersion"))
|
|
6859
6915
|
SessionCommand.struct_class = Types::SessionCommand
|
|
6860
6916
|
|
|
6917
|
+
SessionEndpoint.add_member(:url, Shapes::ShapeRef.new(shape: SparkConnectEndpointUrl, required: true, location_name: "Url"))
|
|
6918
|
+
SessionEndpoint.add_member(:auth_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "AuthToken"))
|
|
6919
|
+
SessionEndpoint.add_member(:auth_token_expiration_time, Shapes::ShapeRef.new(shape: TimestampValue, required: true, location_name: "AuthTokenExpirationTime"))
|
|
6920
|
+
SessionEndpoint.struct_class = Types::SessionEndpoint
|
|
6921
|
+
|
|
6861
6922
|
SessionIdList.member = Shapes::ShapeRef.new(shape: NameString)
|
|
6862
6923
|
|
|
6863
6924
|
SessionList.member = Shapes::ShapeRef.new(shape: Session)
|
|
@@ -7276,6 +7337,7 @@ module Aws::Glue
|
|
|
7276
7337
|
Table.add_member(:view_definition, Shapes::ShapeRef.new(shape: ViewDefinition, location_name: "ViewDefinition"))
|
|
7277
7338
|
Table.add_member(:is_multi_dialect_view, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "IsMultiDialectView"))
|
|
7278
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"))
|
|
7279
7341
|
Table.add_member(:status, Shapes::ShapeRef.new(shape: TableStatus, location_name: "Status"))
|
|
7280
7342
|
Table.struct_class = Types::Table
|
|
7281
7343
|
|
|
@@ -8637,6 +8699,7 @@ module Aws::Glue
|
|
|
8637
8699
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
8638
8700
|
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
|
8639
8701
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
|
8702
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
|
8640
8703
|
end)
|
|
8641
8704
|
|
|
8642
8705
|
api.add_operation(:create_table, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -9489,6 +9552,19 @@ module Aws::Glue
|
|
|
9489
9552
|
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
|
9490
9553
|
end)
|
|
9491
9554
|
|
|
9555
|
+
api.add_operation(:get_dashboard_url, Seahorse::Model::Operation.new.tap do |o|
|
|
9556
|
+
o.name = "GetDashboardUrl"
|
|
9557
|
+
o.http_method = "POST"
|
|
9558
|
+
o.http_request_uri = "/"
|
|
9559
|
+
o.input = Shapes::ShapeRef.new(shape: GetDashboardUrlRequest)
|
|
9560
|
+
o.output = Shapes::ShapeRef.new(shape: GetDashboardUrlResponse)
|
|
9561
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
9562
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
9563
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
9564
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
|
9565
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
9566
|
+
end)
|
|
9567
|
+
|
|
9492
9568
|
api.add_operation(:get_data_catalog_encryption_settings, Seahorse::Model::Operation.new.tap do |o|
|
|
9493
9569
|
o.name = "GetDataCatalogEncryptionSettings"
|
|
9494
9570
|
o.http_method = "POST"
|
|
@@ -10065,6 +10141,21 @@ module Aws::Glue
|
|
|
10065
10141
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
10066
10142
|
end)
|
|
10067
10143
|
|
|
10144
|
+
api.add_operation(:get_session_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
|
10145
|
+
o.name = "GetSessionEndpoint"
|
|
10146
|
+
o.http_method = "POST"
|
|
10147
|
+
o.http_request_uri = "/"
|
|
10148
|
+
o.input = Shapes::ShapeRef.new(shape: GetSessionEndpointRequest)
|
|
10149
|
+
o.output = Shapes::ShapeRef.new(shape: GetSessionEndpointResponse)
|
|
10150
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
10151
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
10152
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10153
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
|
10154
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
10155
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
|
10156
|
+
o.errors << Shapes::ShapeRef.new(shape: IllegalSessionStateException)
|
|
10157
|
+
end)
|
|
10158
|
+
|
|
10068
10159
|
api.add_operation(:get_statement, Seahorse::Model::Operation.new.tap do |o|
|
|
10069
10160
|
o.name = "GetStatement"
|
|
10070
10161
|
o.http_method = "POST"
|
|
@@ -10982,6 +11073,8 @@ module Aws::Glue
|
|
|
10982
11073
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
10983
11074
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
10984
11075
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
|
11076
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotSupportedException)
|
|
11077
|
+
o.errors << Shapes::ShapeRef.new(shape: SessionBusyException)
|
|
10985
11078
|
o.errors << Shapes::ShapeRef.new(shape: IllegalSessionStateException)
|
|
10986
11079
|
end)
|
|
10987
11080
|
|
data/lib/aws-sdk-glue/errors.rb
CHANGED
|
@@ -71,6 +71,7 @@ module Aws::Glue
|
|
|
71
71
|
# * {SchedulerNotRunningException}
|
|
72
72
|
# * {SchedulerRunningException}
|
|
73
73
|
# * {SchedulerTransitioningException}
|
|
74
|
+
# * {SessionBusyException}
|
|
74
75
|
# * {TargetResourceNotFound}
|
|
75
76
|
# * {ThrottlingException}
|
|
76
77
|
# * {ValidationException}
|
|
@@ -762,6 +763,21 @@ module Aws::Glue
|
|
|
762
763
|
end
|
|
763
764
|
end
|
|
764
765
|
|
|
766
|
+
class SessionBusyException < ServiceError
|
|
767
|
+
|
|
768
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
769
|
+
# @param [String] message
|
|
770
|
+
# @param [Aws::Glue::Types::SessionBusyException] data
|
|
771
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
772
|
+
super(context, message, data)
|
|
773
|
+
end
|
|
774
|
+
|
|
775
|
+
# @return [String]
|
|
776
|
+
def message
|
|
777
|
+
@message || @data[:message]
|
|
778
|
+
end
|
|
779
|
+
end
|
|
780
|
+
|
|
765
781
|
class TargetResourceNotFound < ServiceError
|
|
766
782
|
|
|
767
783
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -7448,6 +7448,10 @@ module Aws::Glue
|
|
|
7448
7448
|
# The origin of the request.
|
|
7449
7449
|
# @return [String]
|
|
7450
7450
|
#
|
|
7451
|
+
# @!attribute [rw] session_type
|
|
7452
|
+
# The type of session to create.
|
|
7453
|
+
# @return [String]
|
|
7454
|
+
#
|
|
7451
7455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateSessionRequest AWS API Documentation
|
|
7452
7456
|
#
|
|
7453
7457
|
class CreateSessionRequest < Struct.new(
|
|
@@ -7465,7 +7469,8 @@ module Aws::Glue
|
|
|
7465
7469
|
:security_configuration,
|
|
7466
7470
|
:glue_version,
|
|
7467
7471
|
:tags,
|
|
7468
|
-
:request_origin
|
|
7472
|
+
:request_origin,
|
|
7473
|
+
:session_type)
|
|
7469
7474
|
SENSITIVE = []
|
|
7470
7475
|
include Aws::Structure
|
|
7471
7476
|
end
|
|
@@ -12784,6 +12789,41 @@ module Aws::Glue
|
|
|
12784
12789
|
include Aws::Structure
|
|
12785
12790
|
end
|
|
12786
12791
|
|
|
12792
|
+
# @!attribute [rw] resource_id
|
|
12793
|
+
# The unique identifier of the resource for which to retrieve the
|
|
12794
|
+
# dashboard URL.
|
|
12795
|
+
# @return [String]
|
|
12796
|
+
#
|
|
12797
|
+
# @!attribute [rw] resource_type
|
|
12798
|
+
# The type of the resource. Valid values are `SESSION` and `JOB`.
|
|
12799
|
+
# @return [String]
|
|
12800
|
+
#
|
|
12801
|
+
# @!attribute [rw] request_origin
|
|
12802
|
+
# The origin of the request.
|
|
12803
|
+
# @return [String]
|
|
12804
|
+
#
|
|
12805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDashboardUrlRequest AWS API Documentation
|
|
12806
|
+
#
|
|
12807
|
+
class GetDashboardUrlRequest < Struct.new(
|
|
12808
|
+
:resource_id,
|
|
12809
|
+
:resource_type,
|
|
12810
|
+
:request_origin)
|
|
12811
|
+
SENSITIVE = []
|
|
12812
|
+
include Aws::Structure
|
|
12813
|
+
end
|
|
12814
|
+
|
|
12815
|
+
# @!attribute [rw] url
|
|
12816
|
+
# The URL for the Spark monitoring dashboard.
|
|
12817
|
+
# @return [String]
|
|
12818
|
+
#
|
|
12819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDashboardUrlResponse AWS API Documentation
|
|
12820
|
+
#
|
|
12821
|
+
class GetDashboardUrlResponse < Struct.new(
|
|
12822
|
+
:url)
|
|
12823
|
+
SENSITIVE = [:url]
|
|
12824
|
+
include Aws::Structure
|
|
12825
|
+
end
|
|
12826
|
+
|
|
12787
12827
|
# @!attribute [rw] catalog_id
|
|
12788
12828
|
# The ID of the Data Catalog to retrieve the security configuration
|
|
12789
12829
|
# for. If none is provided, the Amazon Web Services account ID is used
|
|
@@ -15016,6 +15056,30 @@ module Aws::Glue
|
|
|
15016
15056
|
include Aws::Structure
|
|
15017
15057
|
end
|
|
15018
15058
|
|
|
15059
|
+
# @!attribute [rw] session_id
|
|
15060
|
+
# The unique identifier of the interactive session.
|
|
15061
|
+
# @return [String]
|
|
15062
|
+
#
|
|
15063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSessionEndpointRequest AWS API Documentation
|
|
15064
|
+
#
|
|
15065
|
+
class GetSessionEndpointRequest < Struct.new(
|
|
15066
|
+
:session_id)
|
|
15067
|
+
SENSITIVE = []
|
|
15068
|
+
include Aws::Structure
|
|
15069
|
+
end
|
|
15070
|
+
|
|
15071
|
+
# @!attribute [rw] spark_connect
|
|
15072
|
+
# The Spark Connect endpoint details for the session.
|
|
15073
|
+
# @return [Types::SessionEndpoint]
|
|
15074
|
+
#
|
|
15075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSessionEndpointResponse AWS API Documentation
|
|
15076
|
+
#
|
|
15077
|
+
class GetSessionEndpointResponse < Struct.new(
|
|
15078
|
+
:spark_connect)
|
|
15079
|
+
SENSITIVE = []
|
|
15080
|
+
include Aws::Structure
|
|
15081
|
+
end
|
|
15082
|
+
|
|
15019
15083
|
# @!attribute [rw] id
|
|
15020
15084
|
# The ID of the session.
|
|
15021
15085
|
# @return [String]
|
|
@@ -15171,6 +15235,21 @@ module Aws::Glue
|
|
|
15171
15235
|
# create or update an Glue Data Catalog view.
|
|
15172
15236
|
# @return [Boolean]
|
|
15173
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
|
+
#
|
|
15174
15253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableRequest AWS API Documentation
|
|
15175
15254
|
#
|
|
15176
15255
|
class GetTableRequest < Struct.new(
|
|
@@ -15180,7 +15259,8 @@ module Aws::Glue
|
|
|
15180
15259
|
:transaction_id,
|
|
15181
15260
|
:query_as_of_time,
|
|
15182
15261
|
:audit_context,
|
|
15183
|
-
:include_status_details
|
|
15262
|
+
:include_status_details,
|
|
15263
|
+
:attributes_to_get)
|
|
15184
15264
|
SENSITIVE = []
|
|
15185
15265
|
include Aws::Structure
|
|
15186
15266
|
end
|
|
@@ -17115,6 +17195,92 @@ module Aws::Glue
|
|
|
17115
17195
|
include Aws::Structure
|
|
17116
17196
|
end
|
|
17117
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
|
+
|
|
17118
17284
|
# Defines a complete set of updates to be applied to an Iceberg table,
|
|
17119
17285
|
# including schema changes, partitioning modifications, sort order
|
|
17120
17286
|
# adjustments, location updates, and property changes.
|
|
@@ -25838,6 +26004,10 @@ module Aws::Glue
|
|
|
25838
26004
|
# The name of an Glue usage profile associated with the session.
|
|
25839
26005
|
# @return [String]
|
|
25840
26006
|
#
|
|
26007
|
+
# @!attribute [rw] session_type
|
|
26008
|
+
# The type of the session.
|
|
26009
|
+
# @return [String]
|
|
26010
|
+
#
|
|
25841
26011
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Session AWS API Documentation
|
|
25842
26012
|
#
|
|
25843
26013
|
class Session < Struct.new(
|
|
@@ -25860,7 +26030,23 @@ module Aws::Glue
|
|
|
25860
26030
|
:execution_time,
|
|
25861
26031
|
:dpu_seconds,
|
|
25862
26032
|
:idle_timeout,
|
|
25863
|
-
:profile_name
|
|
26033
|
+
:profile_name,
|
|
26034
|
+
:session_type)
|
|
26035
|
+
SENSITIVE = []
|
|
26036
|
+
include Aws::Structure
|
|
26037
|
+
end
|
|
26038
|
+
|
|
26039
|
+
# The session is currently busy processing another request and cannot
|
|
26040
|
+
# accept new operations.
|
|
26041
|
+
#
|
|
26042
|
+
# @!attribute [rw] message
|
|
26043
|
+
# A message describing the problem.
|
|
26044
|
+
# @return [String]
|
|
26045
|
+
#
|
|
26046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SessionBusyException AWS API Documentation
|
|
26047
|
+
#
|
|
26048
|
+
class SessionBusyException < Struct.new(
|
|
26049
|
+
:message)
|
|
25864
26050
|
SENSITIVE = []
|
|
25865
26051
|
include Aws::Structure
|
|
25866
26052
|
end
|
|
@@ -25886,6 +26072,32 @@ module Aws::Glue
|
|
|
25886
26072
|
include Aws::Structure
|
|
25887
26073
|
end
|
|
25888
26074
|
|
|
26075
|
+
# Contains the Spark Connect endpoint details for an interactive
|
|
26076
|
+
# session, including the URL and authentication credentials.
|
|
26077
|
+
#
|
|
26078
|
+
# @!attribute [rw] url
|
|
26079
|
+
# The Spark Connect endpoint URL for the session.
|
|
26080
|
+
# @return [String]
|
|
26081
|
+
#
|
|
26082
|
+
# @!attribute [rw] auth_token
|
|
26083
|
+
# The authentication token to include in requests to the Spark Connect
|
|
26084
|
+
# endpoint.
|
|
26085
|
+
# @return [String]
|
|
26086
|
+
#
|
|
26087
|
+
# @!attribute [rw] auth_token_expiration_time
|
|
26088
|
+
# The time at which the authentication token expires.
|
|
26089
|
+
# @return [Time]
|
|
26090
|
+
#
|
|
26091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SessionEndpoint AWS API Documentation
|
|
26092
|
+
#
|
|
26093
|
+
class SessionEndpoint < Struct.new(
|
|
26094
|
+
:url,
|
|
26095
|
+
:auth_token,
|
|
26096
|
+
:auth_token_expiration_time)
|
|
26097
|
+
SENSITIVE = [:auth_token]
|
|
26098
|
+
include Aws::Structure
|
|
26099
|
+
end
|
|
26100
|
+
|
|
25889
26101
|
# Specifies skewed values in a table. Skewed values are those that occur
|
|
25890
26102
|
# with very high frequency.
|
|
25891
26103
|
#
|
|
@@ -27932,6 +28144,13 @@ module Aws::Glue
|
|
|
27932
28144
|
# Indicates a table is a `MaterializedView`.
|
|
27933
28145
|
# @return [Boolean]
|
|
27934
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
|
+
#
|
|
27935
28154
|
# @!attribute [rw] status
|
|
27936
28155
|
# Indicates the the state of an asynchronous change to a table.
|
|
27937
28156
|
# @return [Types::TableStatus]
|
|
@@ -27963,6 +28182,7 @@ module Aws::Glue
|
|
|
27963
28182
|
:view_definition,
|
|
27964
28183
|
:is_multi_dialect_view,
|
|
27965
28184
|
:is_materialized_view,
|
|
28185
|
+
:iceberg_table_metadata,
|
|
27966
28186
|
:status)
|
|
27967
28187
|
SENSITIVE = []
|
|
27968
28188
|
include Aws::Structure
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -934,7 +934,8 @@ module Aws
|
|
|
934
934
|
?security_configuration: ::String,
|
|
935
935
|
?glue_version: ::String,
|
|
936
936
|
?tags: Hash[::String, ::String],
|
|
937
|
-
?request_origin: ::String
|
|
937
|
+
?request_origin: ::String,
|
|
938
|
+
?session_type: ("LIVY" | "SPARK_CONNECT")
|
|
938
939
|
) -> _CreateSessionResponseSuccess
|
|
939
940
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
|
940
941
|
|
|
@@ -1724,6 +1725,18 @@ module Aws
|
|
|
1724
1725
|
) -> _GetCustomEntityTypeResponseSuccess
|
|
1725
1726
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCustomEntityTypeResponseSuccess
|
|
1726
1727
|
|
|
1728
|
+
interface _GetDashboardUrlResponseSuccess
|
|
1729
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDashboardUrlResponse]
|
|
1730
|
+
def url: () -> ::String
|
|
1731
|
+
end
|
|
1732
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_dashboard_url-instance_method
|
|
1733
|
+
def get_dashboard_url: (
|
|
1734
|
+
resource_id: ::String,
|
|
1735
|
+
resource_type: ("JOB" | "SESSION"),
|
|
1736
|
+
?request_origin: ::String
|
|
1737
|
+
) -> _GetDashboardUrlResponseSuccess
|
|
1738
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDashboardUrlResponseSuccess
|
|
1739
|
+
|
|
1727
1740
|
interface _GetDataCatalogEncryptionSettingsResponseSuccess
|
|
1728
1741
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataCatalogEncryptionSettingsResponse]
|
|
1729
1742
|
def data_catalog_encryption_settings: () -> Types::DataCatalogEncryptionSettings
|
|
@@ -2405,6 +2418,16 @@ module Aws
|
|
|
2405
2418
|
) -> _GetSessionResponseSuccess
|
|
2406
2419
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSessionResponseSuccess
|
|
2407
2420
|
|
|
2421
|
+
interface _GetSessionEndpointResponseSuccess
|
|
2422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSessionEndpointResponse]
|
|
2423
|
+
def spark_connect: () -> Types::SessionEndpoint
|
|
2424
|
+
end
|
|
2425
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_session_endpoint-instance_method
|
|
2426
|
+
def get_session_endpoint: (
|
|
2427
|
+
session_id: ::String
|
|
2428
|
+
) -> _GetSessionEndpointResponseSuccess
|
|
2429
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSessionEndpointResponseSuccess
|
|
2430
|
+
|
|
2408
2431
|
interface _GetStatementResponseSuccess
|
|
2409
2432
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStatementResponse]
|
|
2410
2433
|
def statement: () -> Types::Statement
|
|
@@ -2433,7 +2456,8 @@ module Aws
|
|
|
2433
2456
|
requested_columns: Array[::String]?,
|
|
2434
2457
|
all_columns_requested: bool?
|
|
2435
2458
|
},
|
|
2436
|
-
?include_status_details: bool
|
|
2459
|
+
?include_status_details: bool,
|
|
2460
|
+
?attributes_to_get: Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
2437
2461
|
) -> _GetTableResponseSuccess
|
|
2438
2462
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableResponseSuccess
|
|
2439
2463
|
|
|
@@ -2511,7 +2535,7 @@ module Aws
|
|
|
2511
2535
|
all_columns_requested: bool?
|
|
2512
2536
|
},
|
|
2513
2537
|
?include_status_details: bool,
|
|
2514
|
-
?attributes_to_get: Array[("NAME" | "TABLE_TYPE")]
|
|
2538
|
+
?attributes_to_get: Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
2515
2539
|
) -> _GetTablesResponseSuccess
|
|
2516
2540
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTablesResponseSuccess
|
|
2517
2541
|
|
data/sig/errors.rbs
CHANGED
|
@@ -147,6 +147,9 @@ module Aws
|
|
|
147
147
|
class SchedulerTransitioningException < ::Aws::Errors::ServiceError
|
|
148
148
|
def message: () -> ::String
|
|
149
149
|
end
|
|
150
|
+
class SessionBusyException < ::Aws::Errors::ServiceError
|
|
151
|
+
def message: () -> ::String
|
|
152
|
+
end
|
|
150
153
|
class TargetResourceNotFound < ::Aws::Errors::ServiceError
|
|
151
154
|
def message: () -> ::String
|
|
152
155
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -1675,6 +1675,7 @@ module Aws::Glue
|
|
|
1675
1675
|
attr_accessor glue_version: ::String
|
|
1676
1676
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1677
1677
|
attr_accessor request_origin: ::String
|
|
1678
|
+
attr_accessor session_type: ("LIVY" | "SPARK_CONNECT")
|
|
1678
1679
|
SENSITIVE: []
|
|
1679
1680
|
end
|
|
1680
1681
|
|
|
@@ -3136,6 +3137,18 @@ module Aws::Glue
|
|
|
3136
3137
|
SENSITIVE: []
|
|
3137
3138
|
end
|
|
3138
3139
|
|
|
3140
|
+
class GetDashboardUrlRequest
|
|
3141
|
+
attr_accessor resource_id: ::String
|
|
3142
|
+
attr_accessor resource_type: ("JOB" | "SESSION")
|
|
3143
|
+
attr_accessor request_origin: ::String
|
|
3144
|
+
SENSITIVE: []
|
|
3145
|
+
end
|
|
3146
|
+
|
|
3147
|
+
class GetDashboardUrlResponse
|
|
3148
|
+
attr_accessor url: ::String
|
|
3149
|
+
SENSITIVE: [:url]
|
|
3150
|
+
end
|
|
3151
|
+
|
|
3139
3152
|
class GetDataCatalogEncryptionSettingsRequest
|
|
3140
3153
|
attr_accessor catalog_id: ::String
|
|
3141
3154
|
SENSITIVE: []
|
|
@@ -3730,6 +3743,16 @@ module Aws::Glue
|
|
|
3730
3743
|
SENSITIVE: []
|
|
3731
3744
|
end
|
|
3732
3745
|
|
|
3746
|
+
class GetSessionEndpointRequest
|
|
3747
|
+
attr_accessor session_id: ::String
|
|
3748
|
+
SENSITIVE: []
|
|
3749
|
+
end
|
|
3750
|
+
|
|
3751
|
+
class GetSessionEndpointResponse
|
|
3752
|
+
attr_accessor spark_connect: Types::SessionEndpoint
|
|
3753
|
+
SENSITIVE: []
|
|
3754
|
+
end
|
|
3755
|
+
|
|
3733
3756
|
class GetSessionRequest
|
|
3734
3757
|
attr_accessor id: ::String
|
|
3735
3758
|
attr_accessor request_origin: ::String
|
|
@@ -3777,6 +3800,7 @@ module Aws::Glue
|
|
|
3777
3800
|
attr_accessor query_as_of_time: ::Time
|
|
3778
3801
|
attr_accessor audit_context: Types::AuditContext
|
|
3779
3802
|
attr_accessor include_status_details: bool
|
|
3803
|
+
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
3780
3804
|
SENSITIVE: []
|
|
3781
3805
|
end
|
|
3782
3806
|
|
|
@@ -3825,7 +3849,7 @@ module Aws::Glue
|
|
|
3825
3849
|
attr_accessor query_as_of_time: ::Time
|
|
3826
3850
|
attr_accessor audit_context: Types::AuditContext
|
|
3827
3851
|
attr_accessor include_status_details: bool
|
|
3828
|
-
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE")]
|
|
3852
|
+
attr_accessor attributes_to_get: ::Array[("NAME" | "TABLE_TYPE" | "DEFAULT" | "LATEST_ICEBERG_METADATA")]
|
|
3829
3853
|
SENSITIVE: []
|
|
3830
3854
|
end
|
|
3831
3855
|
|
|
@@ -4235,6 +4259,22 @@ module Aws::Glue
|
|
|
4235
4259
|
SENSITIVE: []
|
|
4236
4260
|
end
|
|
4237
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
|
+
|
|
4238
4278
|
class IcebergTableUpdate
|
|
4239
4279
|
attr_accessor schema: Types::IcebergSchema
|
|
4240
4280
|
attr_accessor partition_spec: Types::IcebergPartitionSpec
|
|
@@ -6291,6 +6331,12 @@ module Aws::Glue
|
|
|
6291
6331
|
attr_accessor dpu_seconds: ::Float
|
|
6292
6332
|
attr_accessor idle_timeout: ::Integer
|
|
6293
6333
|
attr_accessor profile_name: ::String
|
|
6334
|
+
attr_accessor session_type: ("LIVY" | "SPARK_CONNECT")
|
|
6335
|
+
SENSITIVE: []
|
|
6336
|
+
end
|
|
6337
|
+
|
|
6338
|
+
class SessionBusyException
|
|
6339
|
+
attr_accessor message: ::String
|
|
6294
6340
|
SENSITIVE: []
|
|
6295
6341
|
end
|
|
6296
6342
|
|
|
@@ -6300,6 +6346,13 @@ module Aws::Glue
|
|
|
6300
6346
|
SENSITIVE: []
|
|
6301
6347
|
end
|
|
6302
6348
|
|
|
6349
|
+
class SessionEndpoint
|
|
6350
|
+
attr_accessor url: ::String
|
|
6351
|
+
attr_accessor auth_token: ::String
|
|
6352
|
+
attr_accessor auth_token_expiration_time: ::Time
|
|
6353
|
+
SENSITIVE: [:auth_token]
|
|
6354
|
+
end
|
|
6355
|
+
|
|
6303
6356
|
class SkewedInfo
|
|
6304
6357
|
attr_accessor skewed_column_names: ::Array[::String]
|
|
6305
6358
|
attr_accessor skewed_column_values: ::Array[::String]
|
|
@@ -6832,6 +6885,7 @@ module Aws::Glue
|
|
|
6832
6885
|
attr_accessor view_definition: Types::ViewDefinition
|
|
6833
6886
|
attr_accessor is_multi_dialect_view: bool
|
|
6834
6887
|
attr_accessor is_materialized_view: bool
|
|
6888
|
+
attr_accessor iceberg_table_metadata: Types::IcebergTableMetadata
|
|
6835
6889
|
attr_accessor status: Types::TableStatus
|
|
6836
6890
|
SENSITIVE: []
|
|
6837
6891
|
end
|