aws-sdk-glue 1.193.0 → 1.195.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 +142 -10
- data/lib/aws-sdk-glue/client_api.rb +109 -1
- data/lib/aws-sdk-glue/endpoints.rb +11 -0
- data/lib/aws-sdk-glue/errors.rb +16 -0
- data/lib/aws-sdk-glue/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-glue/types.rb +340 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +64 -8
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +96 -8
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -308,7 +308,7 @@ module Aws::Glue
|
|
308
308
|
attr_accessor catalog_id: ::String
|
309
309
|
attr_accessor database_name: ::String
|
310
310
|
attr_accessor table_name: ::String
|
311
|
-
attr_accessor type: ("compaction")
|
311
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
312
312
|
SENSITIVE: []
|
313
313
|
end
|
314
314
|
|
@@ -317,7 +317,7 @@ module Aws::Glue
|
|
317
317
|
attr_accessor catalog_id: ::String
|
318
318
|
attr_accessor database_name: ::String
|
319
319
|
attr_accessor table_name: ::String
|
320
|
-
attr_accessor type: ("compaction")
|
320
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
321
321
|
SENSITIVE: []
|
322
322
|
end
|
323
323
|
|
@@ -798,6 +798,11 @@ module Aws::Glue
|
|
798
798
|
SENSITIVE: []
|
799
799
|
end
|
800
800
|
|
801
|
+
class CompactionMetrics
|
802
|
+
attr_accessor iceberg_metrics: Types::IcebergCompactionMetrics
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
801
806
|
class ConcurrentModificationException
|
802
807
|
attr_accessor message: ::String
|
803
808
|
SENSITIVE: []
|
@@ -1347,7 +1352,7 @@ module Aws::Glue
|
|
1347
1352
|
attr_accessor catalog_id: ::String
|
1348
1353
|
attr_accessor database_name: ::String
|
1349
1354
|
attr_accessor table_name: ::String
|
1350
|
-
attr_accessor type: ("compaction")
|
1355
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
1351
1356
|
attr_accessor table_optimizer_configuration: Types::TableOptimizerConfiguration
|
1352
1357
|
SENSITIVE: []
|
1353
1358
|
end
|
@@ -1895,7 +1900,7 @@ module Aws::Glue
|
|
1895
1900
|
attr_accessor catalog_id: ::String
|
1896
1901
|
attr_accessor database_name: ::String
|
1897
1902
|
attr_accessor table_name: ::String
|
1898
|
-
attr_accessor type: ("compaction")
|
1903
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
1899
1904
|
SENSITIVE: []
|
1900
1905
|
end
|
1901
1906
|
|
@@ -3012,7 +3017,7 @@ module Aws::Glue
|
|
3012
3017
|
attr_accessor catalog_id: ::String
|
3013
3018
|
attr_accessor database_name: ::String
|
3014
3019
|
attr_accessor table_name: ::String
|
3015
|
-
attr_accessor type: ("compaction")
|
3020
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
3016
3021
|
SENSITIVE: []
|
3017
3022
|
end
|
3018
3023
|
|
@@ -3348,12 +3353,49 @@ module Aws::Glue
|
|
3348
3353
|
SENSITIVE: []
|
3349
3354
|
end
|
3350
3355
|
|
3356
|
+
class IcebergCompactionMetrics
|
3357
|
+
attr_accessor number_of_bytes_compacted: ::Integer
|
3358
|
+
attr_accessor number_of_files_compacted: ::Integer
|
3359
|
+
attr_accessor number_of_dpus: ::Integer
|
3360
|
+
attr_accessor job_duration_in_hour: ::Float
|
3361
|
+
SENSITIVE: []
|
3362
|
+
end
|
3363
|
+
|
3351
3364
|
class IcebergInput
|
3352
3365
|
attr_accessor metadata_operation: ("CREATE")
|
3353
3366
|
attr_accessor version: ::String
|
3354
3367
|
SENSITIVE: []
|
3355
3368
|
end
|
3356
3369
|
|
3370
|
+
class IcebergOrphanFileDeletionConfiguration
|
3371
|
+
attr_accessor orphan_file_retention_period_in_days: ::Integer
|
3372
|
+
attr_accessor location: ::String
|
3373
|
+
SENSITIVE: []
|
3374
|
+
end
|
3375
|
+
|
3376
|
+
class IcebergOrphanFileDeletionMetrics
|
3377
|
+
attr_accessor number_of_orphan_files_deleted: ::Integer
|
3378
|
+
attr_accessor number_of_dpus: ::Integer
|
3379
|
+
attr_accessor job_duration_in_hour: ::Float
|
3380
|
+
SENSITIVE: []
|
3381
|
+
end
|
3382
|
+
|
3383
|
+
class IcebergRetentionConfiguration
|
3384
|
+
attr_accessor snapshot_retention_period_in_days: ::Integer
|
3385
|
+
attr_accessor number_of_snapshots_to_retain: ::Integer
|
3386
|
+
attr_accessor clean_expired_files: bool
|
3387
|
+
SENSITIVE: []
|
3388
|
+
end
|
3389
|
+
|
3390
|
+
class IcebergRetentionMetrics
|
3391
|
+
attr_accessor number_of_data_files_deleted: ::Integer
|
3392
|
+
attr_accessor number_of_manifest_files_deleted: ::Integer
|
3393
|
+
attr_accessor number_of_manifest_lists_deleted: ::Integer
|
3394
|
+
attr_accessor number_of_dpus: ::Integer
|
3395
|
+
attr_accessor job_duration_in_hour: ::Float
|
3396
|
+
SENSITIVE: []
|
3397
|
+
end
|
3398
|
+
|
3357
3399
|
class IcebergTarget
|
3358
3400
|
attr_accessor paths: ::Array[::String]
|
3359
3401
|
attr_accessor connection_name: ::String
|
@@ -3948,7 +3990,7 @@ module Aws::Glue
|
|
3948
3990
|
attr_accessor catalog_id: ::String
|
3949
3991
|
attr_accessor database_name: ::String
|
3950
3992
|
attr_accessor table_name: ::String
|
3951
|
-
attr_accessor type: ("compaction")
|
3993
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
3952
3994
|
attr_accessor max_results: ::Integer
|
3953
3995
|
attr_accessor next_token: ::String
|
3954
3996
|
SENSITIVE: []
|
@@ -4235,6 +4277,16 @@ module Aws::Glue
|
|
4235
4277
|
SENSITIVE: []
|
4236
4278
|
end
|
4237
4279
|
|
4280
|
+
class OrphanFileDeletionConfiguration
|
4281
|
+
attr_accessor iceberg_configuration: Types::IcebergOrphanFileDeletionConfiguration
|
4282
|
+
SENSITIVE: []
|
4283
|
+
end
|
4284
|
+
|
4285
|
+
class OrphanFileDeletionMetrics
|
4286
|
+
attr_accessor iceberg_metrics: Types::IcebergOrphanFileDeletionMetrics
|
4287
|
+
SENSITIVE: []
|
4288
|
+
end
|
4289
|
+
|
4238
4290
|
class OtherMetadataValueListItem
|
4239
4291
|
attr_accessor metadata_value: ::String
|
4240
4292
|
attr_accessor created_time: ::String
|
@@ -4601,6 +4653,16 @@ module Aws::Glue
|
|
4601
4653
|
SENSITIVE: []
|
4602
4654
|
end
|
4603
4655
|
|
4656
|
+
class RetentionConfiguration
|
4657
|
+
attr_accessor iceberg_configuration: Types::IcebergRetentionConfiguration
|
4658
|
+
SENSITIVE: []
|
4659
|
+
end
|
4660
|
+
|
4661
|
+
class RetentionMetrics
|
4662
|
+
attr_accessor iceberg_metrics: Types::IcebergRetentionMetrics
|
4663
|
+
SENSITIVE: []
|
4664
|
+
end
|
4665
|
+
|
4604
4666
|
class RunIdentifier
|
4605
4667
|
attr_accessor run_id: ::String
|
4606
4668
|
attr_accessor job_run_id: ::String
|
@@ -5499,7 +5561,7 @@ module Aws::Glue
|
|
5499
5561
|
end
|
5500
5562
|
|
5501
5563
|
class TableOptimizer
|
5502
|
-
attr_accessor type: ("compaction")
|
5564
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
5503
5565
|
attr_accessor configuration: Types::TableOptimizerConfiguration
|
5504
5566
|
attr_accessor last_run: Types::TableOptimizerRun
|
5505
5567
|
SENSITIVE: []
|
@@ -5508,6 +5570,8 @@ module Aws::Glue
|
|
5508
5570
|
class TableOptimizerConfiguration
|
5509
5571
|
attr_accessor role_arn: ::String
|
5510
5572
|
attr_accessor enabled: bool
|
5573
|
+
attr_accessor retention_configuration: Types::RetentionConfiguration
|
5574
|
+
attr_accessor orphan_file_deletion_configuration: Types::OrphanFileDeletionConfiguration
|
5511
5575
|
SENSITIVE: []
|
5512
5576
|
end
|
5513
5577
|
|
@@ -5517,6 +5581,9 @@ module Aws::Glue
|
|
5517
5581
|
attr_accessor end_timestamp: ::Time
|
5518
5582
|
attr_accessor metrics: Types::RunMetrics
|
5519
5583
|
attr_accessor error: ::String
|
5584
|
+
attr_accessor compaction_metrics: Types::CompactionMetrics
|
5585
|
+
attr_accessor retention_metrics: Types::RetentionMetrics
|
5586
|
+
attr_accessor orphan_file_deletion_metrics: Types::OrphanFileDeletionMetrics
|
5520
5587
|
SENSITIVE: []
|
5521
5588
|
end
|
5522
5589
|
|
@@ -5591,6 +5658,27 @@ module Aws::Glue
|
|
5591
5658
|
SENSITIVE: []
|
5592
5659
|
end
|
5593
5660
|
|
5661
|
+
class TestConnectionInput
|
5662
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
5663
|
+
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
5664
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
5665
|
+
SENSITIVE: []
|
5666
|
+
end
|
5667
|
+
|
5668
|
+
class TestConnectionRequest
|
5669
|
+
attr_accessor connection_name: ::String
|
5670
|
+
attr_accessor test_connection_input: Types::TestConnectionInput
|
5671
|
+
SENSITIVE: []
|
5672
|
+
end
|
5673
|
+
|
5674
|
+
class TestConnectionResponse < Aws::EmptyStructure
|
5675
|
+
end
|
5676
|
+
|
5677
|
+
class ThrottlingException
|
5678
|
+
attr_accessor message: ::String
|
5679
|
+
SENSITIVE: []
|
5680
|
+
end
|
5681
|
+
|
5594
5682
|
class TimestampFilter
|
5595
5683
|
attr_accessor recorded_before: ::Time
|
5596
5684
|
attr_accessor recorded_after: ::Time
|
@@ -5964,7 +6052,7 @@ module Aws::Glue
|
|
5964
6052
|
attr_accessor catalog_id: ::String
|
5965
6053
|
attr_accessor database_name: ::String
|
5966
6054
|
attr_accessor table_name: ::String
|
5967
|
-
attr_accessor type: ("compaction")
|
6055
|
+
attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
|
5968
6056
|
attr_accessor table_optimizer_configuration: Types::TableOptimizerConfiguration
|
5969
6057
|
SENSITIVE: []
|
5970
6058
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.195.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|