aws-sdk-glue 1.229.0 → 1.231.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 +159 -1
- data/lib/aws-sdk-glue/client_api.rb +116 -0
- data/lib/aws-sdk-glue/types.rb +253 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +65 -6
- data/sig/types.rbs +59 -0
- 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: 042ac73baf164cd990ec4899064ba1939ddf2f317014f53c07e34f0c314794bb
|
4
|
+
data.tar.gz: b5ba433785168a07313b24bc4392ed3b268bb7797fd8cc9a69a3e966ac2882a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1b704949a182ff9d077fff5ad9153baa6c31927646cfde1df5fbc4829c7d90b925cfc0249ca80f4ad57c25ccb2c6b611c7c43d2a5ef974d3b1169709f89b8d5
|
7
|
+
data.tar.gz: cdc7568a215710b1c2dd3c138b5d6599b00ea3a5503c97d85e31d76ee930b749e5648582761e81cf3894bd83ed363abca5a659e87e357a59283ad9c757164e28
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.231.0 (2025-08-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue now supports Trusted Identity Propagation.
|
8
|
+
|
9
|
+
1.230.0 (2025-08-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Glue Data Catalog now supports Iceberg Optimization settings at the Catalog level, and supports new options to control the optimization job run rate.
|
13
|
+
|
4
14
|
1.229.0 (2025-08-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.231.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1296,11 +1296,15 @@ module Aws::Glue
|
|
1296
1296
|
# resp.table_optimizers[0].table_optimizer.configuration.enabled #=> Boolean
|
1297
1297
|
# resp.table_optimizers[0].table_optimizer.configuration.vpc_configuration.glue_connection_name #=> String
|
1298
1298
|
# resp.table_optimizers[0].table_optimizer.configuration.compaction_configuration.iceberg_configuration.strategy #=> String, one of "binpack", "sort", "z-order"
|
1299
|
+
# resp.table_optimizers[0].table_optimizer.configuration.compaction_configuration.iceberg_configuration.min_input_files #=> Integer
|
1300
|
+
# resp.table_optimizers[0].table_optimizer.configuration.compaction_configuration.iceberg_configuration.delete_file_threshold #=> Integer
|
1299
1301
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.snapshot_retention_period_in_days #=> Integer
|
1300
1302
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.number_of_snapshots_to_retain #=> Integer
|
1301
1303
|
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.clean_expired_files #=> Boolean
|
1304
|
+
# resp.table_optimizers[0].table_optimizer.configuration.retention_configuration.iceberg_configuration.run_rate_in_hours #=> Integer
|
1302
1305
|
# resp.table_optimizers[0].table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.orphan_file_retention_period_in_days #=> Integer
|
1303
1306
|
# resp.table_optimizers[0].table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.location #=> String
|
1307
|
+
# resp.table_optimizers[0].table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.run_rate_in_hours #=> Integer
|
1304
1308
|
# resp.table_optimizers[0].table_optimizer.last_run.event_type #=> String, one of "starting", "completed", "failed", "in_progress"
|
1305
1309
|
# resp.table_optimizers[0].table_optimizer.last_run.start_timestamp #=> Time
|
1306
1310
|
# resp.table_optimizers[0].table_optimizer.last_run.end_timestamp #=> Time
|
@@ -1325,6 +1329,7 @@ module Aws::Glue
|
|
1325
1329
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.dpu_hours #=> Float
|
1326
1330
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
1327
1331
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
1332
|
+
# resp.table_optimizers[0].table_optimizer.configuration_source #=> String, one of "catalog", "table"
|
1328
1333
|
# resp.failures #=> Array
|
1329
1334
|
# resp.failures[0].error.error_code #=> String
|
1330
1335
|
# resp.failures[0].error.error_message #=> String
|
@@ -2045,6 +2050,18 @@ module Aws::Glue
|
|
2045
2050
|
# kms_key: "ResourceArnString",
|
2046
2051
|
# catalog_type: "NameString",
|
2047
2052
|
# },
|
2053
|
+
# iceberg_optimization_properties: {
|
2054
|
+
# role_arn: "IAMRoleArn",
|
2055
|
+
# compaction: {
|
2056
|
+
# "KeyString" => "ParametersMapValue",
|
2057
|
+
# },
|
2058
|
+
# retention: {
|
2059
|
+
# "KeyString" => "ParametersMapValue",
|
2060
|
+
# },
|
2061
|
+
# orphan_file_deletion: {
|
2062
|
+
# "KeyString" => "ParametersMapValue",
|
2063
|
+
# },
|
2064
|
+
# },
|
2048
2065
|
# custom_properties: {
|
2049
2066
|
# "KeyString" => "ParametersMapValue",
|
2050
2067
|
# },
|
@@ -2858,6 +2875,42 @@ module Aws::Glue
|
|
2858
2875
|
req.send_request(options)
|
2859
2876
|
end
|
2860
2877
|
|
2878
|
+
# Creates a new Glue Identity Center configuration to enable integration
|
2879
|
+
# between Glue and Amazon Web Services IAM Identity Center for
|
2880
|
+
# authentication and authorization.
|
2881
|
+
#
|
2882
|
+
# @option params [required, String] :instance_arn
|
2883
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance to be
|
2884
|
+
# associated with the Glue configuration.
|
2885
|
+
#
|
2886
|
+
# @option params [Array<String>] :scopes
|
2887
|
+
# A list of Identity Center scopes that define the permissions and
|
2888
|
+
# access levels for the Glue configuration.
|
2889
|
+
#
|
2890
|
+
# @return [Types::CreateGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2891
|
+
#
|
2892
|
+
# * {Types::CreateGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
2893
|
+
#
|
2894
|
+
# @example Request syntax with placeholder values
|
2895
|
+
#
|
2896
|
+
# resp = client.create_glue_identity_center_configuration({
|
2897
|
+
# instance_arn: "IdentityCenterInstanceArn", # required
|
2898
|
+
# scopes: ["IdentityCenterScope"],
|
2899
|
+
# })
|
2900
|
+
#
|
2901
|
+
# @example Response structure
|
2902
|
+
#
|
2903
|
+
# resp.application_arn #=> String
|
2904
|
+
#
|
2905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfiguration AWS API Documentation
|
2906
|
+
#
|
2907
|
+
# @overload create_glue_identity_center_configuration(params = {})
|
2908
|
+
# @param [Hash] params ({})
|
2909
|
+
def create_glue_identity_center_configuration(params = {}, options = {})
|
2910
|
+
req = build_request(:create_glue_identity_center_configuration, params)
|
2911
|
+
req.send_request(options)
|
2912
|
+
end
|
2913
|
+
|
2861
2914
|
# Creates a Zero-ETL integration in the caller's account between two
|
2862
2915
|
# resources with Amazon Resource Names (ARNs): the `SourceArn` and
|
2863
2916
|
# `TargetArn`.
|
@@ -4430,6 +4483,8 @@ module Aws::Glue
|
|
4430
4483
|
# compaction_configuration: {
|
4431
4484
|
# iceberg_configuration: {
|
4432
4485
|
# strategy: "binpack", # accepts binpack, sort, z-order
|
4486
|
+
# min_input_files: 1,
|
4487
|
+
# delete_file_threshold: 1,
|
4433
4488
|
# },
|
4434
4489
|
# },
|
4435
4490
|
# retention_configuration: {
|
@@ -4437,12 +4492,14 @@ module Aws::Glue
|
|
4437
4492
|
# snapshot_retention_period_in_days: 1,
|
4438
4493
|
# number_of_snapshots_to_retain: 1,
|
4439
4494
|
# clean_expired_files: false,
|
4495
|
+
# run_rate_in_hours: 1,
|
4440
4496
|
# },
|
4441
4497
|
# },
|
4442
4498
|
# orphan_file_deletion_configuration: {
|
4443
4499
|
# iceberg_configuration: {
|
4444
4500
|
# orphan_file_retention_period_in_days: 1,
|
4445
4501
|
# location: "MessageString",
|
4502
|
+
# run_rate_in_hours: 1,
|
4446
4503
|
# },
|
4447
4504
|
# },
|
4448
4505
|
# },
|
@@ -5093,6 +5150,20 @@ module Aws::Glue
|
|
5093
5150
|
req.send_request(options)
|
5094
5151
|
end
|
5095
5152
|
|
5153
|
+
# Deletes the existing Glue Identity Center configuration, removing the
|
5154
|
+
# integration between Glue and Amazon Web Services IAM Identity Center.
|
5155
|
+
#
|
5156
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5157
|
+
#
|
5158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfiguration AWS API Documentation
|
5159
|
+
#
|
5160
|
+
# @overload delete_glue_identity_center_configuration(params = {})
|
5161
|
+
# @param [Hash] params ({})
|
5162
|
+
def delete_glue_identity_center_configuration(params = {}, options = {})
|
5163
|
+
req = build_request(:delete_glue_identity_center_configuration, params)
|
5164
|
+
req.send_request(options)
|
5165
|
+
end
|
5166
|
+
|
5096
5167
|
# Deletes the specified Zero-ETL integration.
|
5097
5168
|
#
|
5098
5169
|
# @option params [required, String] :integration_identifier
|
@@ -6350,6 +6421,14 @@ module Aws::Glue
|
|
6350
6421
|
# resp.catalog.catalog_properties.data_lake_access_properties.redshift_database_name #=> String
|
6351
6422
|
# resp.catalog.catalog_properties.data_lake_access_properties.status_message #=> String
|
6352
6423
|
# resp.catalog.catalog_properties.data_lake_access_properties.catalog_type #=> String
|
6424
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.role_arn #=> String
|
6425
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.compaction #=> Hash
|
6426
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.compaction["KeyString"] #=> String
|
6427
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.retention #=> Hash
|
6428
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.retention["KeyString"] #=> String
|
6429
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.orphan_file_deletion #=> Hash
|
6430
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.orphan_file_deletion["KeyString"] #=> String
|
6431
|
+
# resp.catalog.catalog_properties.iceberg_optimization_properties.last_updated_time #=> Time
|
6353
6432
|
# resp.catalog.catalog_properties.custom_properties #=> Hash
|
6354
6433
|
# resp.catalog.catalog_properties.custom_properties["KeyString"] #=> String
|
6355
6434
|
# resp.catalog.create_table_default_permissions #=> Array
|
@@ -6470,6 +6549,14 @@ module Aws::Glue
|
|
6470
6549
|
# resp.catalog_list[0].catalog_properties.data_lake_access_properties.redshift_database_name #=> String
|
6471
6550
|
# resp.catalog_list[0].catalog_properties.data_lake_access_properties.status_message #=> String
|
6472
6551
|
# resp.catalog_list[0].catalog_properties.data_lake_access_properties.catalog_type #=> String
|
6552
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.role_arn #=> String
|
6553
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.compaction #=> Hash
|
6554
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.compaction["KeyString"] #=> String
|
6555
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.retention #=> Hash
|
6556
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.retention["KeyString"] #=> String
|
6557
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.orphan_file_deletion #=> Hash
|
6558
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.orphan_file_deletion["KeyString"] #=> String
|
6559
|
+
# resp.catalog_list[0].catalog_properties.iceberg_optimization_properties.last_updated_time #=> Time
|
6473
6560
|
# resp.catalog_list[0].catalog_properties.custom_properties #=> Hash
|
6474
6561
|
# resp.catalog_list[0].catalog_properties.custom_properties["KeyString"] #=> String
|
6475
6562
|
# resp.catalog_list[0].create_table_default_permissions #=> Array
|
@@ -8182,6 +8269,32 @@ module Aws::Glue
|
|
8182
8269
|
req.send_request(options)
|
8183
8270
|
end
|
8184
8271
|
|
8272
|
+
# Retrieves the current Glue Identity Center configuration details,
|
8273
|
+
# including the associated Identity Center instance and application
|
8274
|
+
# information.
|
8275
|
+
#
|
8276
|
+
# @return [Types::GetGlueIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8277
|
+
#
|
8278
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
8279
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
|
8280
|
+
# * {Types::GetGlueIdentityCenterConfigurationResponse#scopes #scopes} => Array<String>
|
8281
|
+
#
|
8282
|
+
# @example Response structure
|
8283
|
+
#
|
8284
|
+
# resp.application_arn #=> String
|
8285
|
+
# resp.instance_arn #=> String
|
8286
|
+
# resp.scopes #=> Array
|
8287
|
+
# resp.scopes[0] #=> String
|
8288
|
+
#
|
8289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfiguration AWS API Documentation
|
8290
|
+
#
|
8291
|
+
# @overload get_glue_identity_center_configuration(params = {})
|
8292
|
+
# @param [Hash] params ({})
|
8293
|
+
def get_glue_identity_center_configuration(params = {}, options = {})
|
8294
|
+
req = build_request(:get_glue_identity_center_configuration, params)
|
8295
|
+
req.send_request(options)
|
8296
|
+
end
|
8297
|
+
|
8185
8298
|
# This API is used for fetching the `ResourceProperty` of the Glue
|
8186
8299
|
# connection (for the source) or Glue database ARN (for the target)
|
8187
8300
|
#
|
@@ -10160,11 +10273,15 @@ module Aws::Glue
|
|
10160
10273
|
# resp.table_optimizer.configuration.enabled #=> Boolean
|
10161
10274
|
# resp.table_optimizer.configuration.vpc_configuration.glue_connection_name #=> String
|
10162
10275
|
# resp.table_optimizer.configuration.compaction_configuration.iceberg_configuration.strategy #=> String, one of "binpack", "sort", "z-order"
|
10276
|
+
# resp.table_optimizer.configuration.compaction_configuration.iceberg_configuration.min_input_files #=> Integer
|
10277
|
+
# resp.table_optimizer.configuration.compaction_configuration.iceberg_configuration.delete_file_threshold #=> Integer
|
10163
10278
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.snapshot_retention_period_in_days #=> Integer
|
10164
10279
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.number_of_snapshots_to_retain #=> Integer
|
10165
10280
|
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.clean_expired_files #=> Boolean
|
10281
|
+
# resp.table_optimizer.configuration.retention_configuration.iceberg_configuration.run_rate_in_hours #=> Integer
|
10166
10282
|
# resp.table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.orphan_file_retention_period_in_days #=> Integer
|
10167
10283
|
# resp.table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.location #=> String
|
10284
|
+
# resp.table_optimizer.configuration.orphan_file_deletion_configuration.iceberg_configuration.run_rate_in_hours #=> Integer
|
10168
10285
|
# resp.table_optimizer.last_run.event_type #=> String, one of "starting", "completed", "failed", "in_progress"
|
10169
10286
|
# resp.table_optimizer.last_run.start_timestamp #=> Time
|
10170
10287
|
# resp.table_optimizer.last_run.end_timestamp #=> Time
|
@@ -10189,6 +10306,7 @@ module Aws::Glue
|
|
10189
10306
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.dpu_hours #=> Float
|
10190
10307
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
10191
10308
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
10309
|
+
# resp.table_optimizer.configuration_source #=> String, one of "catalog", "table"
|
10192
10310
|
#
|
10193
10311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTableOptimizer AWS API Documentation
|
10194
10312
|
#
|
@@ -15584,6 +15702,18 @@ module Aws::Glue
|
|
15584
15702
|
# kms_key: "ResourceArnString",
|
15585
15703
|
# catalog_type: "NameString",
|
15586
15704
|
# },
|
15705
|
+
# iceberg_optimization_properties: {
|
15706
|
+
# role_arn: "IAMRoleArn",
|
15707
|
+
# compaction: {
|
15708
|
+
# "KeyString" => "ParametersMapValue",
|
15709
|
+
# },
|
15710
|
+
# retention: {
|
15711
|
+
# "KeyString" => "ParametersMapValue",
|
15712
|
+
# },
|
15713
|
+
# orphan_file_deletion: {
|
15714
|
+
# "KeyString" => "ParametersMapValue",
|
15715
|
+
# },
|
15716
|
+
# },
|
15587
15717
|
# custom_properties: {
|
15588
15718
|
# "KeyString" => "ParametersMapValue",
|
15589
15719
|
# },
|
@@ -16460,6 +16590,30 @@ module Aws::Glue
|
|
16460
16590
|
req.send_request(options)
|
16461
16591
|
end
|
16462
16592
|
|
16593
|
+
# Updates the existing Glue Identity Center configuration, allowing
|
16594
|
+
# modification of scopes and permissions for the integration.
|
16595
|
+
#
|
16596
|
+
# @option params [Array<String>] :scopes
|
16597
|
+
# A list of Identity Center scopes that define the updated permissions
|
16598
|
+
# and access levels for the Glue configuration.
|
16599
|
+
#
|
16600
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
16601
|
+
#
|
16602
|
+
# @example Request syntax with placeholder values
|
16603
|
+
#
|
16604
|
+
# resp = client.update_glue_identity_center_configuration({
|
16605
|
+
# scopes: ["IdentityCenterScope"],
|
16606
|
+
# })
|
16607
|
+
#
|
16608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfiguration AWS API Documentation
|
16609
|
+
#
|
16610
|
+
# @overload update_glue_identity_center_configuration(params = {})
|
16611
|
+
# @param [Hash] params ({})
|
16612
|
+
def update_glue_identity_center_configuration(params = {}, options = {})
|
16613
|
+
req = build_request(:update_glue_identity_center_configuration, params)
|
16614
|
+
req.send_request(options)
|
16615
|
+
end
|
16616
|
+
|
16463
16617
|
# This API can be used for updating the `ResourceProperty` of the Glue
|
16464
16618
|
# connection (for the source) or Glue database ARN (for the target).
|
16465
16619
|
# These properties can include the role to access the connection or
|
@@ -17325,6 +17479,8 @@ module Aws::Glue
|
|
17325
17479
|
# compaction_configuration: {
|
17326
17480
|
# iceberg_configuration: {
|
17327
17481
|
# strategy: "binpack", # accepts binpack, sort, z-order
|
17482
|
+
# min_input_files: 1,
|
17483
|
+
# delete_file_threshold: 1,
|
17328
17484
|
# },
|
17329
17485
|
# },
|
17330
17486
|
# retention_configuration: {
|
@@ -17332,12 +17488,14 @@ module Aws::Glue
|
|
17332
17488
|
# snapshot_retention_period_in_days: 1,
|
17333
17489
|
# number_of_snapshots_to_retain: 1,
|
17334
17490
|
# clean_expired_files: false,
|
17491
|
+
# run_rate_in_hours: 1,
|
17335
17492
|
# },
|
17336
17493
|
# },
|
17337
17494
|
# orphan_file_deletion_configuration: {
|
17338
17495
|
# iceberg_configuration: {
|
17339
17496
|
# orphan_file_retention_period_in_days: 1,
|
17340
17497
|
# location: "MessageString",
|
17498
|
+
# run_rate_in_hours: 1,
|
17341
17499
|
# },
|
17342
17500
|
# },
|
17343
17501
|
# },
|
@@ -17619,7 +17777,7 @@ module Aws::Glue
|
|
17619
17777
|
tracer: tracer
|
17620
17778
|
)
|
17621
17779
|
context[:gem_name] = 'aws-sdk-glue'
|
17622
|
-
context[:gem_version] = '1.
|
17780
|
+
context[:gem_version] = '1.231.0'
|
17623
17781
|
Seahorse::Client::Request.new(handlers, context)
|
17624
17782
|
end
|
17625
17783
|
|
@@ -44,6 +44,7 @@ module Aws::Glue
|
|
44
44
|
AnnotationErrorList = Shapes::ListShape.new(name: 'AnnotationErrorList')
|
45
45
|
AnnotationList = Shapes::ListShape.new(name: 'AnnotationList')
|
46
46
|
ApiVersion = Shapes::StringShape.new(name: 'ApiVersion')
|
47
|
+
ApplicationArn = Shapes::StringShape.new(name: 'ApplicationArn')
|
47
48
|
ApplyMapping = Shapes::StructureShape.new(name: 'ApplyMapping')
|
48
49
|
ArnString = Shapes::StringShape.new(name: 'ArnString')
|
49
50
|
AthenaConnectorSource = Shapes::StructureShape.new(name: 'AthenaConnectorSource')
|
@@ -251,6 +252,7 @@ module Aws::Glue
|
|
251
252
|
ConfigValueString = Shapes::StringShape.new(name: 'ConfigValueString')
|
252
253
|
ConfigurationMap = Shapes::MapShape.new(name: 'ConfigurationMap')
|
253
254
|
ConfigurationObject = Shapes::StructureShape.new(name: 'ConfigurationObject')
|
255
|
+
ConfigurationSource = Shapes::StringShape.new(name: 'ConfigurationSource')
|
254
256
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
255
257
|
ConfusionMatrix = Shapes::StructureShape.new(name: 'ConfusionMatrix')
|
256
258
|
Connection = Shapes::StructureShape.new(name: 'Connection')
|
@@ -321,6 +323,8 @@ module Aws::Glue
|
|
321
323
|
CreateDatabaseResponse = Shapes::StructureShape.new(name: 'CreateDatabaseResponse')
|
322
324
|
CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
|
323
325
|
CreateDevEndpointResponse = Shapes::StructureShape.new(name: 'CreateDevEndpointResponse')
|
326
|
+
CreateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationRequest')
|
327
|
+
CreateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'CreateGlueIdentityCenterConfigurationResponse')
|
324
328
|
CreateGrokClassifierRequest = Shapes::StructureShape.new(name: 'CreateGrokClassifierRequest')
|
325
329
|
CreateIcebergTableInput = Shapes::StructureShape.new(name: 'CreateIcebergTableInput')
|
326
330
|
CreateIntegrationRequest = Shapes::StructureShape.new(name: 'CreateIntegrationRequest')
|
@@ -475,6 +479,8 @@ module Aws::Glue
|
|
475
479
|
DeleteDatabaseResponse = Shapes::StructureShape.new(name: 'DeleteDatabaseResponse')
|
476
480
|
DeleteDevEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDevEndpointRequest')
|
477
481
|
DeleteDevEndpointResponse = Shapes::StructureShape.new(name: 'DeleteDevEndpointResponse')
|
482
|
+
DeleteGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationRequest')
|
483
|
+
DeleteGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteGlueIdentityCenterConfigurationResponse')
|
478
484
|
DeleteIntegrationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationRequest')
|
479
485
|
DeleteIntegrationResponse = Shapes::StructureShape.new(name: 'DeleteIntegrationResponse')
|
480
486
|
DeleteIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationTablePropertiesRequest')
|
@@ -689,6 +695,8 @@ module Aws::Glue
|
|
689
695
|
GetDevEndpointsResponse = Shapes::StructureShape.new(name: 'GetDevEndpointsResponse')
|
690
696
|
GetEntityRecordsRequest = Shapes::StructureShape.new(name: 'GetEntityRecordsRequest')
|
691
697
|
GetEntityRecordsResponse = Shapes::StructureShape.new(name: 'GetEntityRecordsResponse')
|
698
|
+
GetGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationRequest')
|
699
|
+
GetGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'GetGlueIdentityCenterConfigurationResponse')
|
692
700
|
GetIntegrationResourcePropertyRequest = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyRequest')
|
693
701
|
GetIntegrationResourcePropertyResponse = Shapes::StructureShape.new(name: 'GetIntegrationResourcePropertyResponse')
|
694
702
|
GetIntegrationTablePropertiesRequest = Shapes::StructureShape.new(name: 'GetIntegrationTablePropertiesRequest')
|
@@ -812,6 +820,8 @@ module Aws::Glue
|
|
812
820
|
IcebergDocument = Shapes::DocumentShape.new(name: 'IcebergDocument', document: true)
|
813
821
|
IcebergInput = Shapes::StructureShape.new(name: 'IcebergInput')
|
814
822
|
IcebergNullOrder = Shapes::StringShape.new(name: 'IcebergNullOrder')
|
823
|
+
IcebergOptimizationProperties = Shapes::StructureShape.new(name: 'IcebergOptimizationProperties')
|
824
|
+
IcebergOptimizationPropertiesOutput = Shapes::StructureShape.new(name: 'IcebergOptimizationPropertiesOutput')
|
815
825
|
IcebergOrphanFileDeletionConfiguration = Shapes::StructureShape.new(name: 'IcebergOrphanFileDeletionConfiguration')
|
816
826
|
IcebergOrphanFileDeletionMetrics = Shapes::StructureShape.new(name: 'IcebergOrphanFileDeletionMetrics')
|
817
827
|
IcebergPartitionField = Shapes::StructureShape.new(name: 'IcebergPartitionField')
|
@@ -835,6 +845,9 @@ module Aws::Glue
|
|
835
845
|
IcebergTransformString = Shapes::StringShape.new(name: 'IcebergTransformString')
|
836
846
|
IdString = Shapes::StringShape.new(name: 'IdString')
|
837
847
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
848
|
+
IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
|
849
|
+
IdentityCenterScope = Shapes::StringShape.new(name: 'IdentityCenterScope')
|
850
|
+
IdentityCenterScopesList = Shapes::ListShape.new(name: 'IdentityCenterScopesList')
|
838
851
|
IdleTimeout = Shapes::IntegerShape.new(name: 'IdleTimeout')
|
839
852
|
IllegalBlueprintStateException = Shapes::StructureShape.new(name: 'IllegalBlueprintStateException')
|
840
853
|
IllegalSessionStateException = Shapes::StructureShape.new(name: 'IllegalSessionStateException')
|
@@ -1510,6 +1523,8 @@ module Aws::Glue
|
|
1510
1523
|
UpdateDatabaseResponse = Shapes::StructureShape.new(name: 'UpdateDatabaseResponse')
|
1511
1524
|
UpdateDevEndpointRequest = Shapes::StructureShape.new(name: 'UpdateDevEndpointRequest')
|
1512
1525
|
UpdateDevEndpointResponse = Shapes::StructureShape.new(name: 'UpdateDevEndpointResponse')
|
1526
|
+
UpdateGlueIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationRequest')
|
1527
|
+
UpdateGlueIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateGlueIdentityCenterConfigurationResponse')
|
1513
1528
|
UpdateGrokClassifierRequest = Shapes::StructureShape.new(name: 'UpdateGrokClassifierRequest')
|
1514
1529
|
UpdateIcebergInput = Shapes::StructureShape.new(name: 'UpdateIcebergInput')
|
1515
1530
|
UpdateIcebergTableInput = Shapes::StructureShape.new(name: 'UpdateIcebergTableInput')
|
@@ -2129,10 +2144,12 @@ module Aws::Glue
|
|
2129
2144
|
CatalogList.member = Shapes::ShapeRef.new(shape: Catalog)
|
2130
2145
|
|
2131
2146
|
CatalogProperties.add_member(:data_lake_access_properties, Shapes::ShapeRef.new(shape: DataLakeAccessProperties, location_name: "DataLakeAccessProperties"))
|
2147
|
+
CatalogProperties.add_member(:iceberg_optimization_properties, Shapes::ShapeRef.new(shape: IcebergOptimizationProperties, location_name: "IcebergOptimizationProperties"))
|
2132
2148
|
CatalogProperties.add_member(:custom_properties, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "CustomProperties"))
|
2133
2149
|
CatalogProperties.struct_class = Types::CatalogProperties
|
2134
2150
|
|
2135
2151
|
CatalogPropertiesOutput.add_member(:data_lake_access_properties, Shapes::ShapeRef.new(shape: DataLakeAccessPropertiesOutput, location_name: "DataLakeAccessProperties"))
|
2152
|
+
CatalogPropertiesOutput.add_member(:iceberg_optimization_properties, Shapes::ShapeRef.new(shape: IcebergOptimizationPropertiesOutput, location_name: "IcebergOptimizationProperties"))
|
2136
2153
|
CatalogPropertiesOutput.add_member(:custom_properties, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "CustomProperties"))
|
2137
2154
|
CatalogPropertiesOutput.struct_class = Types::CatalogPropertiesOutput
|
2138
2155
|
|
@@ -2771,6 +2788,13 @@ module Aws::Glue
|
|
2771
2788
|
CreateDevEndpointResponse.add_member(:arguments, Shapes::ShapeRef.new(shape: MapValue, location_name: "Arguments"))
|
2772
2789
|
CreateDevEndpointResponse.struct_class = Types::CreateDevEndpointResponse
|
2773
2790
|
|
2791
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, required: true, location_name: "InstanceArn"))
|
2792
|
+
CreateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
2793
|
+
CreateGlueIdentityCenterConfigurationRequest.struct_class = Types::CreateGlueIdentityCenterConfigurationRequest
|
2794
|
+
|
2795
|
+
CreateGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
2796
|
+
CreateGlueIdentityCenterConfigurationResponse.struct_class = Types::CreateGlueIdentityCenterConfigurationResponse
|
2797
|
+
|
2774
2798
|
CreateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, required: true, location_name: "Classification"))
|
2775
2799
|
CreateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2776
2800
|
CreateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, required: true, location_name: "GrokPattern"))
|
@@ -3405,6 +3429,10 @@ module Aws::Glue
|
|
3405
3429
|
|
3406
3430
|
DeleteDevEndpointResponse.struct_class = Types::DeleteDevEndpointResponse
|
3407
3431
|
|
3432
|
+
DeleteGlueIdentityCenterConfigurationRequest.struct_class = Types::DeleteGlueIdentityCenterConfigurationRequest
|
3433
|
+
|
3434
|
+
DeleteGlueIdentityCenterConfigurationResponse.struct_class = Types::DeleteGlueIdentityCenterConfigurationResponse
|
3435
|
+
|
3408
3436
|
DeleteIntegrationRequest.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "IntegrationIdentifier"))
|
3409
3437
|
DeleteIntegrationRequest.struct_class = Types::DeleteIntegrationRequest
|
3410
3438
|
|
@@ -4217,6 +4245,13 @@ module Aws::Glue
|
|
4217
4245
|
GetEntityRecordsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4218
4246
|
GetEntityRecordsResponse.struct_class = Types::GetEntityRecordsResponse
|
4219
4247
|
|
4248
|
+
GetGlueIdentityCenterConfigurationRequest.struct_class = Types::GetGlueIdentityCenterConfigurationRequest
|
4249
|
+
|
4250
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
4251
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
4252
|
+
GetGlueIdentityCenterConfigurationResponse.add_member(:scopes, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Scopes"))
|
4253
|
+
GetGlueIdentityCenterConfigurationResponse.struct_class = Types::GetGlueIdentityCenterConfigurationResponse
|
4254
|
+
|
4220
4255
|
GetIntegrationResourcePropertyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String128, required: true, location_name: "ResourceArn"))
|
4221
4256
|
GetIntegrationResourcePropertyRequest.struct_class = Types::GetIntegrationResourcePropertyRequest
|
4222
4257
|
|
@@ -4774,6 +4809,8 @@ module Aws::Glue
|
|
4774
4809
|
HudiTargetList.member = Shapes::ShapeRef.new(shape: HudiTarget)
|
4775
4810
|
|
4776
4811
|
IcebergCompactionConfiguration.add_member(:strategy, Shapes::ShapeRef.new(shape: CompactionStrategy, location_name: "strategy"))
|
4812
|
+
IcebergCompactionConfiguration.add_member(:min_input_files, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "minInputFiles"))
|
4813
|
+
IcebergCompactionConfiguration.add_member(:delete_file_threshold, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "deleteFileThreshold"))
|
4777
4814
|
IcebergCompactionConfiguration.struct_class = Types::IcebergCompactionConfiguration
|
4778
4815
|
|
4779
4816
|
IcebergCompactionMetrics.add_member(:number_of_bytes_compacted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfBytesCompacted"))
|
@@ -4788,8 +4825,22 @@ module Aws::Glue
|
|
4788
4825
|
IcebergInput.add_member(:create_iceberg_table_input, Shapes::ShapeRef.new(shape: CreateIcebergTableInput, location_name: "CreateIcebergTableInput"))
|
4789
4826
|
IcebergInput.struct_class = Types::IcebergInput
|
4790
4827
|
|
4828
|
+
IcebergOptimizationProperties.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "RoleArn"))
|
4829
|
+
IcebergOptimizationProperties.add_member(:compaction, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Compaction"))
|
4830
|
+
IcebergOptimizationProperties.add_member(:retention, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Retention"))
|
4831
|
+
IcebergOptimizationProperties.add_member(:orphan_file_deletion, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "OrphanFileDeletion"))
|
4832
|
+
IcebergOptimizationProperties.struct_class = Types::IcebergOptimizationProperties
|
4833
|
+
|
4834
|
+
IcebergOptimizationPropertiesOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "RoleArn"))
|
4835
|
+
IcebergOptimizationPropertiesOutput.add_member(:compaction, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Compaction"))
|
4836
|
+
IcebergOptimizationPropertiesOutput.add_member(:retention, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Retention"))
|
4837
|
+
IcebergOptimizationPropertiesOutput.add_member(:orphan_file_deletion, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "OrphanFileDeletion"))
|
4838
|
+
IcebergOptimizationPropertiesOutput.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
|
4839
|
+
IcebergOptimizationPropertiesOutput.struct_class = Types::IcebergOptimizationPropertiesOutput
|
4840
|
+
|
4791
4841
|
IcebergOrphanFileDeletionConfiguration.add_member(:orphan_file_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "orphanFileRetentionPeriodInDays"))
|
4792
4842
|
IcebergOrphanFileDeletionConfiguration.add_member(:location, Shapes::ShapeRef.new(shape: MessageString, location_name: "location"))
|
4843
|
+
IcebergOrphanFileDeletionConfiguration.add_member(:run_rate_in_hours, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "runRateInHours"))
|
4793
4844
|
IcebergOrphanFileDeletionConfiguration.struct_class = Types::IcebergOrphanFileDeletionConfiguration
|
4794
4845
|
|
4795
4846
|
IcebergOrphanFileDeletionMetrics.add_member(:number_of_orphan_files_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfOrphanFilesDeleted"))
|
@@ -4813,6 +4864,7 @@ module Aws::Glue
|
|
4813
4864
|
IcebergRetentionConfiguration.add_member(:snapshot_retention_period_in_days, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "snapshotRetentionPeriodInDays"))
|
4814
4865
|
IcebergRetentionConfiguration.add_member(:number_of_snapshots_to_retain, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "numberOfSnapshotsToRetain"))
|
4815
4866
|
IcebergRetentionConfiguration.add_member(:clean_expired_files, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "cleanExpiredFiles"))
|
4867
|
+
IcebergRetentionConfiguration.add_member(:run_rate_in_hours, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "runRateInHours"))
|
4816
4868
|
IcebergRetentionConfiguration.struct_class = Types::IcebergRetentionConfiguration
|
4817
4869
|
|
4818
4870
|
IcebergRetentionMetrics.add_member(:number_of_data_files_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfDataFilesDeleted"))
|
@@ -4870,6 +4922,8 @@ module Aws::Glue
|
|
4870
4922
|
IdempotentParameterMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4871
4923
|
IdempotentParameterMismatchException.struct_class = Types::IdempotentParameterMismatchException
|
4872
4924
|
|
4925
|
+
IdentityCenterScopesList.member = Shapes::ShapeRef.new(shape: IdentityCenterScope)
|
4926
|
+
|
4873
4927
|
IllegalBlueprintStateException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4874
4928
|
IllegalBlueprintStateException.struct_class = Types::IllegalBlueprintStateException
|
4875
4929
|
|
@@ -6906,6 +6960,7 @@ module Aws::Glue
|
|
6906
6960
|
TableOptimizer.add_member(:type, Shapes::ShapeRef.new(shape: TableOptimizerType, location_name: "type"))
|
6907
6961
|
TableOptimizer.add_member(:configuration, Shapes::ShapeRef.new(shape: TableOptimizerConfiguration, location_name: "configuration"))
|
6908
6962
|
TableOptimizer.add_member(:last_run, Shapes::ShapeRef.new(shape: TableOptimizerRun, location_name: "lastRun"))
|
6963
|
+
TableOptimizer.add_member(:configuration_source, Shapes::ShapeRef.new(shape: ConfigurationSource, location_name: "configurationSource"))
|
6909
6964
|
TableOptimizer.struct_class = Types::TableOptimizer
|
6910
6965
|
|
6911
6966
|
TableOptimizerConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: ArnString, location_name: "roleArn"))
|
@@ -7259,6 +7314,11 @@ module Aws::Glue
|
|
7259
7314
|
|
7260
7315
|
UpdateDevEndpointResponse.struct_class = Types::UpdateDevEndpointResponse
|
7261
7316
|
|
7317
|
+
UpdateGlueIdentityCenterConfigurationRequest.add_member(:scopes, Shapes::ShapeRef.new(shape: IdentityCenterScopesList, location_name: "Scopes"))
|
7318
|
+
UpdateGlueIdentityCenterConfigurationRequest.struct_class = Types::UpdateGlueIdentityCenterConfigurationRequest
|
7319
|
+
|
7320
|
+
UpdateGlueIdentityCenterConfigurationResponse.struct_class = Types::UpdateGlueIdentityCenterConfigurationResponse
|
7321
|
+
|
7262
7322
|
UpdateGrokClassifierRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
7263
7323
|
UpdateGrokClassifierRequest.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, location_name: "Classification"))
|
7264
7324
|
UpdateGrokClassifierRequest.add_member(:grok_pattern, Shapes::ShapeRef.new(shape: GrokPattern, location_name: "GrokPattern"))
|
@@ -8015,6 +8075,20 @@ module Aws::Glue
|
|
8015
8075
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
8016
8076
|
end)
|
8017
8077
|
|
8078
|
+
api.add_operation(:create_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8079
|
+
o.name = "CreateGlueIdentityCenterConfiguration"
|
8080
|
+
o.http_method = "POST"
|
8081
|
+
o.http_request_uri = "/"
|
8082
|
+
o.input = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationRequest)
|
8083
|
+
o.output = Shapes::ShapeRef.new(shape: CreateGlueIdentityCenterConfigurationResponse)
|
8084
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8085
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
8086
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8087
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8088
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8089
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8090
|
+
end)
|
8091
|
+
|
8018
8092
|
api.add_operation(:create_integration, Seahorse::Model::Operation.new.tap do |o|
|
8019
8093
|
o.name = "CreateIntegration"
|
8020
8094
|
o.http_method = "POST"
|
@@ -8436,6 +8510,20 @@ module Aws::Glue
|
|
8436
8510
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8437
8511
|
end)
|
8438
8512
|
|
8513
|
+
api.add_operation(:delete_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
8514
|
+
o.name = "DeleteGlueIdentityCenterConfiguration"
|
8515
|
+
o.http_method = "POST"
|
8516
|
+
o.http_request_uri = "/"
|
8517
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationRequest)
|
8518
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteGlueIdentityCenterConfigurationResponse)
|
8519
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
8520
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
8521
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
8522
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
8523
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
8524
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
8525
|
+
end)
|
8526
|
+
|
8439
8527
|
api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
|
8440
8528
|
o.name = "DeleteIntegration"
|
8441
8529
|
o.http_method = "POST"
|
@@ -9177,6 +9265,20 @@ module Aws::Glue
|
|
9177
9265
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9178
9266
|
end)
|
9179
9267
|
|
9268
|
+
api.add_operation(:get_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
9269
|
+
o.name = "GetGlueIdentityCenterConfiguration"
|
9270
|
+
o.http_method = "POST"
|
9271
|
+
o.http_request_uri = "/"
|
9272
|
+
o.input = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationRequest)
|
9273
|
+
o.output = Shapes::ShapeRef.new(shape: GetGlueIdentityCenterConfigurationResponse)
|
9274
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
9275
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
9276
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
9277
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
9278
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
9279
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
9280
|
+
end)
|
9281
|
+
|
9180
9282
|
api.add_operation(:get_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
9181
9283
|
o.name = "GetIntegrationResourceProperty"
|
9182
9284
|
o.http_method = "POST"
|
@@ -10919,6 +11021,20 @@ module Aws::Glue
|
|
10919
11021
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
10920
11022
|
end)
|
10921
11023
|
|
11024
|
+
api.add_operation(:update_glue_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
|
11025
|
+
o.name = "UpdateGlueIdentityCenterConfiguration"
|
11026
|
+
o.http_method = "POST"
|
11027
|
+
o.http_request_uri = "/"
|
11028
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationRequest)
|
11029
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateGlueIdentityCenterConfigurationResponse)
|
11030
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
11031
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
11032
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
11033
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
11034
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
11035
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
11036
|
+
end)
|
11037
|
+
|
10922
11038
|
api.add_operation(:update_integration_resource_property, Seahorse::Model::Operation.new.tap do |o|
|
10923
11039
|
o.name = "UpdateIntegrationResourceProperty"
|
10924
11040
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -2350,6 +2350,13 @@ module Aws::Glue
|
|
2350
2350
|
# Data Catalog.
|
2351
2351
|
# @return [Types::DataLakeAccessProperties]
|
2352
2352
|
#
|
2353
|
+
# @!attribute [rw] iceberg_optimization_properties
|
2354
|
+
# A structure that specifies Iceberg table optimization properties for
|
2355
|
+
# the catalog. This includes configuration for compaction, retention,
|
2356
|
+
# and orphan file deletion operations that can be applied to Iceberg
|
2357
|
+
# tables in this catalog.
|
2358
|
+
# @return [Types::IcebergOptimizationProperties]
|
2359
|
+
#
|
2353
2360
|
# @!attribute [rw] custom_properties
|
2354
2361
|
# Additional key-value properties for the catalog, such as column
|
2355
2362
|
# statistics optimizations.
|
@@ -2359,6 +2366,7 @@ module Aws::Glue
|
|
2359
2366
|
#
|
2360
2367
|
class CatalogProperties < Struct.new(
|
2361
2368
|
:data_lake_access_properties,
|
2369
|
+
:iceberg_optimization_properties,
|
2362
2370
|
:custom_properties)
|
2363
2371
|
SENSITIVE = []
|
2364
2372
|
include Aws::Structure
|
@@ -2373,6 +2381,13 @@ module Aws::Glue
|
|
2373
2381
|
# Data Catalog.
|
2374
2382
|
# @return [Types::DataLakeAccessPropertiesOutput]
|
2375
2383
|
#
|
2384
|
+
# @!attribute [rw] iceberg_optimization_properties
|
2385
|
+
# An `IcebergOptimizationPropertiesOutput` object that specifies
|
2386
|
+
# Iceberg table optimization settings for the catalog, including
|
2387
|
+
# configurations for compaction, retention, and orphan file deletion
|
2388
|
+
# operations.
|
2389
|
+
# @return [Types::IcebergOptimizationPropertiesOutput]
|
2390
|
+
#
|
2376
2391
|
# @!attribute [rw] custom_properties
|
2377
2392
|
# Additional key-value properties for the catalog, such as column
|
2378
2393
|
# statistics optimizations.
|
@@ -2382,6 +2397,7 @@ module Aws::Glue
|
|
2382
2397
|
#
|
2383
2398
|
class CatalogPropertiesOutput < Struct.new(
|
2384
2399
|
:data_lake_access_properties,
|
2400
|
+
:iceberg_optimization_properties,
|
2385
2401
|
:custom_properties)
|
2386
2402
|
SENSITIVE = []
|
2387
2403
|
include Aws::Structure
|
@@ -5776,6 +5792,42 @@ module Aws::Glue
|
|
5776
5792
|
include Aws::Structure
|
5777
5793
|
end
|
5778
5794
|
|
5795
|
+
# Request to create a new Glue Identity Center configuration.
|
5796
|
+
#
|
5797
|
+
# @!attribute [rw] instance_arn
|
5798
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance to be
|
5799
|
+
# associated with the Glue configuration.
|
5800
|
+
# @return [String]
|
5801
|
+
#
|
5802
|
+
# @!attribute [rw] scopes
|
5803
|
+
# A list of Identity Center scopes that define the permissions and
|
5804
|
+
# access levels for the Glue configuration.
|
5805
|
+
# @return [Array<String>]
|
5806
|
+
#
|
5807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfigurationRequest AWS API Documentation
|
5808
|
+
#
|
5809
|
+
class CreateGlueIdentityCenterConfigurationRequest < Struct.new(
|
5810
|
+
:instance_arn,
|
5811
|
+
:scopes)
|
5812
|
+
SENSITIVE = []
|
5813
|
+
include Aws::Structure
|
5814
|
+
end
|
5815
|
+
|
5816
|
+
# Response from creating a new Glue Identity Center configuration.
|
5817
|
+
#
|
5818
|
+
# @!attribute [rw] application_arn
|
5819
|
+
# The Amazon Resource Name (ARN) of the Identity Center application
|
5820
|
+
# that was created for the Glue configuration.
|
5821
|
+
# @return [String]
|
5822
|
+
#
|
5823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateGlueIdentityCenterConfigurationResponse AWS API Documentation
|
5824
|
+
#
|
5825
|
+
class CreateGlueIdentityCenterConfigurationResponse < Struct.new(
|
5826
|
+
:application_arn)
|
5827
|
+
SENSITIVE = []
|
5828
|
+
include Aws::Structure
|
5829
|
+
end
|
5830
|
+
|
5779
5831
|
# Specifies a `grok` classifier for `CreateClassifier` to create.
|
5780
5832
|
#
|
5781
5833
|
# @!attribute [rw] classification
|
@@ -9022,6 +9074,20 @@ module Aws::Glue
|
|
9022
9074
|
#
|
9023
9075
|
class DeleteDevEndpointResponse < Aws::EmptyStructure; end
|
9024
9076
|
|
9077
|
+
# Request to delete the existing Glue Identity Center configuration.
|
9078
|
+
#
|
9079
|
+
# @api private
|
9080
|
+
#
|
9081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfigurationRequest AWS API Documentation
|
9082
|
+
#
|
9083
|
+
class DeleteGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure; end
|
9084
|
+
|
9085
|
+
# Response from deleting the Glue Identity Center configuration.
|
9086
|
+
#
|
9087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteGlueIdentityCenterConfigurationResponse AWS API Documentation
|
9088
|
+
#
|
9089
|
+
class DeleteGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
|
9090
|
+
|
9025
9091
|
# @!attribute [rw] integration_identifier
|
9026
9092
|
# The Amazon Resource Name (ARN) for the integration.
|
9027
9093
|
# @return [String]
|
@@ -12926,6 +12992,41 @@ module Aws::Glue
|
|
12926
12992
|
include Aws::Structure
|
12927
12993
|
end
|
12928
12994
|
|
12995
|
+
# Request to retrieve the Glue Identity Center configuration.
|
12996
|
+
#
|
12997
|
+
# @api private
|
12998
|
+
#
|
12999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfigurationRequest AWS API Documentation
|
13000
|
+
#
|
13001
|
+
class GetGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure; end
|
13002
|
+
|
13003
|
+
# Response containing the Glue Identity Center configuration details.
|
13004
|
+
#
|
13005
|
+
# @!attribute [rw] application_arn
|
13006
|
+
# The Amazon Resource Name (ARN) of the Identity Center application
|
13007
|
+
# associated with the Glue configuration.
|
13008
|
+
# @return [String]
|
13009
|
+
#
|
13010
|
+
# @!attribute [rw] instance_arn
|
13011
|
+
# The Amazon Resource Name (ARN) of the Identity Center instance
|
13012
|
+
# associated with the Glue configuration.
|
13013
|
+
# @return [String]
|
13014
|
+
#
|
13015
|
+
# @!attribute [rw] scopes
|
13016
|
+
# A list of Identity Center scopes that define the permissions and
|
13017
|
+
# access levels for the Glue configuration.
|
13018
|
+
# @return [Array<String>]
|
13019
|
+
#
|
13020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetGlueIdentityCenterConfigurationResponse AWS API Documentation
|
13021
|
+
#
|
13022
|
+
class GetGlueIdentityCenterConfigurationResponse < Struct.new(
|
13023
|
+
:application_arn,
|
13024
|
+
:instance_arn,
|
13025
|
+
:scopes)
|
13026
|
+
SENSITIVE = []
|
13027
|
+
include Aws::Structure
|
13028
|
+
end
|
13029
|
+
|
12929
13030
|
# @!attribute [rw] resource_arn
|
12930
13031
|
# The connection ARN of the source, or the database ARN of the target.
|
12931
13032
|
# @return [String]
|
@@ -15827,10 +15928,29 @@ module Aws::Glue
|
|
15827
15928
|
# used.
|
15828
15929
|
# @return [String]
|
15829
15930
|
#
|
15931
|
+
# @!attribute [rw] min_input_files
|
15932
|
+
# The minimum number of data files that must be present in a partition
|
15933
|
+
# before compaction will actually compact files. This parameter helps
|
15934
|
+
# control when compaction is triggered, preventing unnecessary
|
15935
|
+
# compaction operations on partitions with few files. If an input is
|
15936
|
+
# not provided, the default value 100 will be used.
|
15937
|
+
# @return [Integer]
|
15938
|
+
#
|
15939
|
+
# @!attribute [rw] delete_file_threshold
|
15940
|
+
# The minimum number of deletes that must be present in a data file to
|
15941
|
+
# make it eligible for compaction. This parameter helps optimize
|
15942
|
+
# compaction by focusing on files that contain a significant number of
|
15943
|
+
# delete operations, which can improve query performance by removing
|
15944
|
+
# deleted records. If an input is not provided, the default value 1
|
15945
|
+
# will be used.
|
15946
|
+
# @return [Integer]
|
15947
|
+
#
|
15830
15948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergCompactionConfiguration AWS API Documentation
|
15831
15949
|
#
|
15832
15950
|
class IcebergCompactionConfiguration < Struct.new(
|
15833
|
-
:strategy
|
15951
|
+
:strategy,
|
15952
|
+
:min_input_files,
|
15953
|
+
:delete_file_threshold)
|
15834
15954
|
SENSITIVE = []
|
15835
15955
|
include Aws::Structure
|
15836
15956
|
end
|
@@ -15897,6 +16017,88 @@ module Aws::Glue
|
|
15897
16017
|
include Aws::Structure
|
15898
16018
|
end
|
15899
16019
|
|
16020
|
+
# A structure that specifies Iceberg table optimization properties for
|
16021
|
+
# the catalog, including configurations for compaction, retention, and
|
16022
|
+
# orphan file deletion operations.
|
16023
|
+
#
|
16024
|
+
# @!attribute [rw] role_arn
|
16025
|
+
# The Amazon Resource Name (ARN) of the IAM role that will be assumed
|
16026
|
+
# to perform Iceberg table optimization operations.
|
16027
|
+
# @return [String]
|
16028
|
+
#
|
16029
|
+
# @!attribute [rw] compaction
|
16030
|
+
# A map of key-value pairs that specify configuration parameters for
|
16031
|
+
# Iceberg table compaction operations, which optimize the layout of
|
16032
|
+
# data files to improve query performance.
|
16033
|
+
# @return [Hash<String,String>]
|
16034
|
+
#
|
16035
|
+
# @!attribute [rw] retention
|
16036
|
+
# A map of key-value pairs that specify configuration parameters for
|
16037
|
+
# Iceberg table retention operations, which manage the lifecycle of
|
16038
|
+
# table snapshots to control storage costs.
|
16039
|
+
# @return [Hash<String,String>]
|
16040
|
+
#
|
16041
|
+
# @!attribute [rw] orphan_file_deletion
|
16042
|
+
# A map of key-value pairs that specify configuration parameters for
|
16043
|
+
# Iceberg orphan file deletion operations, which identify and remove
|
16044
|
+
# files that are no longer referenced by the table metadata.
|
16045
|
+
# @return [Hash<String,String>]
|
16046
|
+
#
|
16047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergOptimizationProperties AWS API Documentation
|
16048
|
+
#
|
16049
|
+
class IcebergOptimizationProperties < Struct.new(
|
16050
|
+
:role_arn,
|
16051
|
+
:compaction,
|
16052
|
+
:retention,
|
16053
|
+
:orphan_file_deletion)
|
16054
|
+
SENSITIVE = []
|
16055
|
+
include Aws::Structure
|
16056
|
+
end
|
16057
|
+
|
16058
|
+
# A structure that contains the output properties of Iceberg table
|
16059
|
+
# optimization configuration for your catalog resource in the Glue Data
|
16060
|
+
# Catalog.
|
16061
|
+
#
|
16062
|
+
# @!attribute [rw] role_arn
|
16063
|
+
# The Amazon Resource Name (ARN) of the IAM role that is used to
|
16064
|
+
# perform Iceberg table optimization operations.
|
16065
|
+
# @return [String]
|
16066
|
+
#
|
16067
|
+
# @!attribute [rw] compaction
|
16068
|
+
# A map of key-value pairs that specify configuration parameters for
|
16069
|
+
# Iceberg table compaction operations, which optimize the layout of
|
16070
|
+
# data files to improve query performance.
|
16071
|
+
# @return [Hash<String,String>]
|
16072
|
+
#
|
16073
|
+
# @!attribute [rw] retention
|
16074
|
+
# A map of key-value pairs that specify configuration parameters for
|
16075
|
+
# Iceberg table retention operations, which manage the lifecycle of
|
16076
|
+
# table snapshots to control storage costs.
|
16077
|
+
# @return [Hash<String,String>]
|
16078
|
+
#
|
16079
|
+
# @!attribute [rw] orphan_file_deletion
|
16080
|
+
# A map of key-value pairs that specify configuration parameters for
|
16081
|
+
# Iceberg orphan file deletion operations, which identify and remove
|
16082
|
+
# files that are no longer referenced by the table metadata.
|
16083
|
+
# @return [Hash<String,String>]
|
16084
|
+
#
|
16085
|
+
# @!attribute [rw] last_updated_time
|
16086
|
+
# The timestamp when the Iceberg optimization properties were last
|
16087
|
+
# updated.
|
16088
|
+
# @return [Time]
|
16089
|
+
#
|
16090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergOptimizationPropertiesOutput AWS API Documentation
|
16091
|
+
#
|
16092
|
+
class IcebergOptimizationPropertiesOutput < Struct.new(
|
16093
|
+
:role_arn,
|
16094
|
+
:compaction,
|
16095
|
+
:retention,
|
16096
|
+
:orphan_file_deletion,
|
16097
|
+
:last_updated_time)
|
16098
|
+
SENSITIVE = []
|
16099
|
+
include Aws::Structure
|
16100
|
+
end
|
16101
|
+
|
15900
16102
|
# The configuration for an Iceberg orphan file deletion optimizer.
|
15901
16103
|
#
|
15902
16104
|
# @!attribute [rw] orphan_file_retention_period_in_days
|
@@ -15911,11 +16113,20 @@ module Aws::Glue
|
|
15911
16113
|
# top-level table location.
|
15912
16114
|
# @return [String]
|
15913
16115
|
#
|
16116
|
+
# @!attribute [rw] run_rate_in_hours
|
16117
|
+
# The interval in hours between orphan file deletion job runs. This
|
16118
|
+
# parameter controls how frequently the orphan file deletion optimizer
|
16119
|
+
# will run to clean up orphan files. The value must be between 3 and
|
16120
|
+
# 168 hours (7 days). If an input is not provided, the default value
|
16121
|
+
# 24 will be used.
|
16122
|
+
# @return [Integer]
|
16123
|
+
#
|
15914
16124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergOrphanFileDeletionConfiguration AWS API Documentation
|
15915
16125
|
#
|
15916
16126
|
class IcebergOrphanFileDeletionConfiguration < Struct.new(
|
15917
16127
|
:orphan_file_retention_period_in_days,
|
15918
|
-
:location
|
16128
|
+
:location,
|
16129
|
+
:run_rate_in_hours)
|
15919
16130
|
SENSITIVE = []
|
15920
16131
|
include Aws::Structure
|
15921
16132
|
end
|
@@ -16030,12 +16241,21 @@ module Aws::Glue
|
|
16030
16241
|
# the underlying data and metadata files are not deleted.
|
16031
16242
|
# @return [Boolean]
|
16032
16243
|
#
|
16244
|
+
# @!attribute [rw] run_rate_in_hours
|
16245
|
+
# The interval in hours between retention job runs. This parameter
|
16246
|
+
# controls how frequently the retention optimizer will run to clean up
|
16247
|
+
# expired snapshots. The value must be between 3 and 168 hours (7
|
16248
|
+
# days). If an input is not provided, the default value 24 will be
|
16249
|
+
# used.
|
16250
|
+
# @return [Integer]
|
16251
|
+
#
|
16033
16252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IcebergRetentionConfiguration AWS API Documentation
|
16034
16253
|
#
|
16035
16254
|
class IcebergRetentionConfiguration < Struct.new(
|
16036
16255
|
:snapshot_retention_period_in_days,
|
16037
16256
|
:number_of_snapshots_to_retain,
|
16038
|
-
:clean_expired_files
|
16257
|
+
:clean_expired_files,
|
16258
|
+
:run_rate_in_hours)
|
16039
16259
|
SENSITIVE = []
|
16040
16260
|
include Aws::Structure
|
16041
16261
|
end
|
@@ -26574,12 +26794,19 @@ module Aws::Glue
|
|
26574
26794
|
# optimizer.
|
26575
26795
|
# @return [Types::TableOptimizerRun]
|
26576
26796
|
#
|
26797
|
+
# @!attribute [rw] configuration_source
|
26798
|
+
# Specifies the source of the optimizer configuration. This indicates
|
26799
|
+
# how the table optimizer was configured and which entity or service
|
26800
|
+
# initiated the configuration.
|
26801
|
+
# @return [String]
|
26802
|
+
#
|
26577
26803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TableOptimizer AWS API Documentation
|
26578
26804
|
#
|
26579
26805
|
class TableOptimizer < Struct.new(
|
26580
26806
|
:type,
|
26581
26807
|
:configuration,
|
26582
|
-
:last_run
|
26808
|
+
:last_run,
|
26809
|
+
:configuration_source)
|
26583
26810
|
SENSITIVE = []
|
26584
26811
|
include Aws::Structure
|
26585
26812
|
end
|
@@ -28253,6 +28480,27 @@ module Aws::Glue
|
|
28253
28480
|
#
|
28254
28481
|
class UpdateDevEndpointResponse < Aws::EmptyStructure; end
|
28255
28482
|
|
28483
|
+
# Request to update an existing Glue Identity Center configuration.
|
28484
|
+
#
|
28485
|
+
# @!attribute [rw] scopes
|
28486
|
+
# A list of Identity Center scopes that define the updated permissions
|
28487
|
+
# and access levels for the Glue configuration.
|
28488
|
+
# @return [Array<String>]
|
28489
|
+
#
|
28490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationRequest AWS API Documentation
|
28491
|
+
#
|
28492
|
+
class UpdateGlueIdentityCenterConfigurationRequest < Struct.new(
|
28493
|
+
:scopes)
|
28494
|
+
SENSITIVE = []
|
28495
|
+
include Aws::Structure
|
28496
|
+
end
|
28497
|
+
|
28498
|
+
# Response from updating an existing Glue Identity Center configuration.
|
28499
|
+
#
|
28500
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateGlueIdentityCenterConfigurationResponse AWS API Documentation
|
28501
|
+
#
|
28502
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
|
28503
|
+
|
28256
28504
|
# Specifies a grok classifier to update when passed to
|
28257
28505
|
# `UpdateClassifier`.
|
28258
28506
|
#
|
@@ -28303,7 +28551,7 @@ module Aws::Glue
|
|
28303
28551
|
end
|
28304
28552
|
|
28305
28553
|
# Contains the update operations to be applied to an existing Iceberg
|
28306
|
-
# table
|
28554
|
+
# table inGlue Data Catalog, defining the new state of the table
|
28307
28555
|
# metadata.
|
28308
28556
|
#
|
28309
28557
|
# @!attribute [rw] updates
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -511,6 +511,12 @@ module Aws
|
|
511
511
|
kms_key: ::String?,
|
512
512
|
catalog_type: ::String?
|
513
513
|
}?,
|
514
|
+
iceberg_optimization_properties: {
|
515
|
+
role_arn: ::String?,
|
516
|
+
compaction: Hash[::String, ::String]?,
|
517
|
+
retention: Hash[::String, ::String]?,
|
518
|
+
orphan_file_deletion: Hash[::String, ::String]?
|
519
|
+
}?,
|
514
520
|
custom_properties: Hash[::String, ::String]?
|
515
521
|
}?,
|
516
522
|
create_table_default_permissions: Array[
|
@@ -852,6 +858,17 @@ module Aws
|
|
852
858
|
) -> _CreateDevEndpointResponseSuccess
|
853
859
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDevEndpointResponseSuccess
|
854
860
|
|
861
|
+
interface _CreateGlueIdentityCenterConfigurationResponseSuccess
|
862
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateGlueIdentityCenterConfigurationResponse]
|
863
|
+
def application_arn: () -> ::String
|
864
|
+
end
|
865
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_glue_identity_center_configuration-instance_method
|
866
|
+
def create_glue_identity_center_configuration: (
|
867
|
+
instance_arn: ::String,
|
868
|
+
?scopes: Array[::String]
|
869
|
+
) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
|
870
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlueIdentityCenterConfigurationResponseSuccess
|
871
|
+
|
855
872
|
interface _CreateIntegrationResponseSuccess
|
856
873
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationResponse]
|
857
874
|
def source_arn: () -> ::String
|
@@ -2929,20 +2946,24 @@ module Aws
|
|
2929
2946
|
}?,
|
2930
2947
|
compaction_configuration: {
|
2931
2948
|
iceberg_configuration: {
|
2932
|
-
strategy: ("binpack" | "sort" | "z-order")
|
2949
|
+
strategy: ("binpack" | "sort" | "z-order")?,
|
2950
|
+
min_input_files: ::Integer?,
|
2951
|
+
delete_file_threshold: ::Integer?
|
2933
2952
|
}?
|
2934
2953
|
}?,
|
2935
2954
|
retention_configuration: {
|
2936
2955
|
iceberg_configuration: {
|
2937
2956
|
snapshot_retention_period_in_days: ::Integer?,
|
2938
2957
|
number_of_snapshots_to_retain: ::Integer?,
|
2939
|
-
clean_expired_files: bool
|
2958
|
+
clean_expired_files: bool?,
|
2959
|
+
run_rate_in_hours: ::Integer?
|
2940
2960
|
}?
|
2941
2961
|
}?,
|
2942
2962
|
orphan_file_deletion_configuration: {
|
2943
2963
|
iceberg_configuration: {
|
2944
2964
|
orphan_file_retention_period_in_days: ::Integer?,
|
2945
|
-
location: ::String
|
2965
|
+
location: ::String?,
|
2966
|
+
run_rate_in_hours: ::Integer?
|
2946
2967
|
}?
|
2947
2968
|
}?
|
2948
2969
|
}
|
@@ -3175,6 +3196,14 @@ module Aws
|
|
3175
3196
|
) -> _DeleteDevEndpointResponseSuccess
|
3176
3197
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevEndpointResponseSuccess
|
3177
3198
|
|
3199
|
+
interface _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGlueIdentityCenterConfigurationResponse]
|
3201
|
+
end
|
3202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_glue_identity_center_configuration-instance_method
|
3203
|
+
def delete_glue_identity_center_configuration: (
|
3204
|
+
) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3205
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGlueIdentityCenterConfigurationResponseSuccess
|
3206
|
+
|
3178
3207
|
interface _DeleteIntegrationResponseSuccess
|
3179
3208
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
|
3180
3209
|
def source_arn: () -> ::String
|
@@ -3909,6 +3938,17 @@ module Aws
|
|
3909
3938
|
) -> _GetEntityRecordsResponseSuccess
|
3910
3939
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEntityRecordsResponseSuccess
|
3911
3940
|
|
3941
|
+
interface _GetGlueIdentityCenterConfigurationResponseSuccess
|
3942
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlueIdentityCenterConfigurationResponse]
|
3943
|
+
def application_arn: () -> ::String
|
3944
|
+
def instance_arn: () -> ::String
|
3945
|
+
def scopes: () -> ::Array[::String]
|
3946
|
+
end
|
3947
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_glue_identity_center_configuration-instance_method
|
3948
|
+
def get_glue_identity_center_configuration: (
|
3949
|
+
) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3950
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlueIdentityCenterConfigurationResponseSuccess
|
3951
|
+
|
3912
3952
|
interface _GetIntegrationResourcePropertyResponseSuccess
|
3913
3953
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationResourcePropertyResponse]
|
3914
3954
|
def resource_arn: () -> ::String
|
@@ -5788,6 +5828,12 @@ module Aws
|
|
5788
5828
|
kms_key: ::String?,
|
5789
5829
|
catalog_type: ::String?
|
5790
5830
|
}?,
|
5831
|
+
iceberg_optimization_properties: {
|
5832
|
+
role_arn: ::String?,
|
5833
|
+
compaction: Hash[::String, ::String]?,
|
5834
|
+
retention: Hash[::String, ::String]?,
|
5835
|
+
orphan_file_deletion: Hash[::String, ::String]?
|
5836
|
+
}?,
|
5791
5837
|
custom_properties: Hash[::String, ::String]?
|
5792
5838
|
}?,
|
5793
5839
|
create_table_default_permissions: Array[
|
@@ -6230,6 +6276,15 @@ module Aws
|
|
6230
6276
|
) -> _UpdateDevEndpointResponseSuccess
|
6231
6277
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEndpointResponseSuccess
|
6232
6278
|
|
6279
|
+
interface _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGlueIdentityCenterConfigurationResponse]
|
6281
|
+
end
|
6282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_glue_identity_center_configuration-instance_method
|
6283
|
+
def update_glue_identity_center_configuration: (
|
6284
|
+
?scopes: Array[::String]
|
6285
|
+
) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6286
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlueIdentityCenterConfigurationResponseSuccess
|
6287
|
+
|
6233
6288
|
interface _UpdateIntegrationResourcePropertyResponseSuccess
|
6234
6289
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationResourcePropertyResponse]
|
6235
6290
|
def resource_arn: () -> ::String
|
@@ -8174,20 +8229,24 @@ module Aws
|
|
8174
8229
|
}?,
|
8175
8230
|
compaction_configuration: {
|
8176
8231
|
iceberg_configuration: {
|
8177
|
-
strategy: ("binpack" | "sort" | "z-order")
|
8232
|
+
strategy: ("binpack" | "sort" | "z-order")?,
|
8233
|
+
min_input_files: ::Integer?,
|
8234
|
+
delete_file_threshold: ::Integer?
|
8178
8235
|
}?
|
8179
8236
|
}?,
|
8180
8237
|
retention_configuration: {
|
8181
8238
|
iceberg_configuration: {
|
8182
8239
|
snapshot_retention_period_in_days: ::Integer?,
|
8183
8240
|
number_of_snapshots_to_retain: ::Integer?,
|
8184
|
-
clean_expired_files: bool
|
8241
|
+
clean_expired_files: bool?,
|
8242
|
+
run_rate_in_hours: ::Integer?
|
8185
8243
|
}?
|
8186
8244
|
}?,
|
8187
8245
|
orphan_file_deletion_configuration: {
|
8188
8246
|
iceberg_configuration: {
|
8189
8247
|
orphan_file_retention_period_in_days: ::Integer?,
|
8190
|
-
location: ::String
|
8248
|
+
location: ::String?,
|
8249
|
+
run_rate_in_hours: ::Integer?
|
8191
8250
|
}?
|
8192
8251
|
}?
|
8193
8252
|
}
|
data/sig/types.rbs
CHANGED
@@ -641,12 +641,14 @@ module Aws::Glue
|
|
641
641
|
|
642
642
|
class CatalogProperties
|
643
643
|
attr_accessor data_lake_access_properties: Types::DataLakeAccessProperties
|
644
|
+
attr_accessor iceberg_optimization_properties: Types::IcebergOptimizationProperties
|
644
645
|
attr_accessor custom_properties: ::Hash[::String, ::String]
|
645
646
|
SENSITIVE: []
|
646
647
|
end
|
647
648
|
|
648
649
|
class CatalogPropertiesOutput
|
649
650
|
attr_accessor data_lake_access_properties: Types::DataLakeAccessPropertiesOutput
|
651
|
+
attr_accessor iceberg_optimization_properties: Types::IcebergOptimizationPropertiesOutput
|
650
652
|
attr_accessor custom_properties: ::Hash[::String, ::String]
|
651
653
|
SENSITIVE: []
|
652
654
|
end
|
@@ -1349,6 +1351,17 @@ module Aws::Glue
|
|
1349
1351
|
SENSITIVE: []
|
1350
1352
|
end
|
1351
1353
|
|
1354
|
+
class CreateGlueIdentityCenterConfigurationRequest
|
1355
|
+
attr_accessor instance_arn: ::String
|
1356
|
+
attr_accessor scopes: ::Array[::String]
|
1357
|
+
SENSITIVE: []
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
class CreateGlueIdentityCenterConfigurationResponse
|
1361
|
+
attr_accessor application_arn: ::String
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1352
1365
|
class CreateGrokClassifierRequest
|
1353
1366
|
attr_accessor classification: ::String
|
1354
1367
|
attr_accessor name: ::String
|
@@ -2114,6 +2127,12 @@ module Aws::Glue
|
|
2114
2127
|
class DeleteDevEndpointResponse < Aws::EmptyStructure
|
2115
2128
|
end
|
2116
2129
|
|
2130
|
+
class DeleteGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
class DeleteGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
2134
|
+
end
|
2135
|
+
|
2117
2136
|
class DeleteIntegrationRequest
|
2118
2137
|
attr_accessor integration_identifier: ::String
|
2119
2138
|
SENSITIVE: []
|
@@ -3185,6 +3204,16 @@ module Aws::Glue
|
|
3185
3204
|
SENSITIVE: [:records]
|
3186
3205
|
end
|
3187
3206
|
|
3207
|
+
class GetGlueIdentityCenterConfigurationRequest < Aws::EmptyStructure
|
3208
|
+
end
|
3209
|
+
|
3210
|
+
class GetGlueIdentityCenterConfigurationResponse
|
3211
|
+
attr_accessor application_arn: ::String
|
3212
|
+
attr_accessor instance_arn: ::String
|
3213
|
+
attr_accessor scopes: ::Array[::String]
|
3214
|
+
SENSITIVE: []
|
3215
|
+
end
|
3216
|
+
|
3188
3217
|
class GetIntegrationResourcePropertyRequest
|
3189
3218
|
attr_accessor resource_arn: ::String
|
3190
3219
|
SENSITIVE: []
|
@@ -3924,6 +3953,8 @@ module Aws::Glue
|
|
3924
3953
|
|
3925
3954
|
class IcebergCompactionConfiguration
|
3926
3955
|
attr_accessor strategy: ("binpack" | "sort" | "z-order")
|
3956
|
+
attr_accessor min_input_files: ::Integer
|
3957
|
+
attr_accessor delete_file_threshold: ::Integer
|
3927
3958
|
SENSITIVE: []
|
3928
3959
|
end
|
3929
3960
|
|
@@ -3943,9 +3974,27 @@ module Aws::Glue
|
|
3943
3974
|
SENSITIVE: []
|
3944
3975
|
end
|
3945
3976
|
|
3977
|
+
class IcebergOptimizationProperties
|
3978
|
+
attr_accessor role_arn: ::String
|
3979
|
+
attr_accessor compaction: ::Hash[::String, ::String]
|
3980
|
+
attr_accessor retention: ::Hash[::String, ::String]
|
3981
|
+
attr_accessor orphan_file_deletion: ::Hash[::String, ::String]
|
3982
|
+
SENSITIVE: []
|
3983
|
+
end
|
3984
|
+
|
3985
|
+
class IcebergOptimizationPropertiesOutput
|
3986
|
+
attr_accessor role_arn: ::String
|
3987
|
+
attr_accessor compaction: ::Hash[::String, ::String]
|
3988
|
+
attr_accessor retention: ::Hash[::String, ::String]
|
3989
|
+
attr_accessor orphan_file_deletion: ::Hash[::String, ::String]
|
3990
|
+
attr_accessor last_updated_time: ::Time
|
3991
|
+
SENSITIVE: []
|
3992
|
+
end
|
3993
|
+
|
3946
3994
|
class IcebergOrphanFileDeletionConfiguration
|
3947
3995
|
attr_accessor orphan_file_retention_period_in_days: ::Integer
|
3948
3996
|
attr_accessor location: ::String
|
3997
|
+
attr_accessor run_rate_in_hours: ::Integer
|
3949
3998
|
SENSITIVE: []
|
3950
3999
|
end
|
3951
4000
|
|
@@ -3975,6 +4024,7 @@ module Aws::Glue
|
|
3975
4024
|
attr_accessor snapshot_retention_period_in_days: ::Integer
|
3976
4025
|
attr_accessor number_of_snapshots_to_retain: ::Integer
|
3977
4026
|
attr_accessor clean_expired_files: bool
|
4027
|
+
attr_accessor run_rate_in_hours: ::Integer
|
3978
4028
|
SENSITIVE: []
|
3979
4029
|
end
|
3980
4030
|
|
@@ -6483,6 +6533,7 @@ module Aws::Glue
|
|
6483
6533
|
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
6484
6534
|
attr_accessor configuration: Types::TableOptimizerConfiguration
|
6485
6535
|
attr_accessor last_run: Types::TableOptimizerRun
|
6536
|
+
attr_accessor configuration_source: ("catalog" | "table")
|
6486
6537
|
SENSITIVE: []
|
6487
6538
|
end
|
6488
6539
|
|
@@ -6917,6 +6968,14 @@ module Aws::Glue
|
|
6917
6968
|
class UpdateDevEndpointResponse < Aws::EmptyStructure
|
6918
6969
|
end
|
6919
6970
|
|
6971
|
+
class UpdateGlueIdentityCenterConfigurationRequest
|
6972
|
+
attr_accessor scopes: ::Array[::String]
|
6973
|
+
SENSITIVE: []
|
6974
|
+
end
|
6975
|
+
|
6976
|
+
class UpdateGlueIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
6977
|
+
end
|
6978
|
+
|
6920
6979
|
class UpdateGrokClassifierRequest
|
6921
6980
|
attr_accessor name: ::String
|
6922
6981
|
attr_accessor classification: ::String
|