aws-sdk-glue 1.192.0 → 1.194.0

Sign up to get free protection for your applications and to get access to all the features.
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,11 @@ module Aws::Glue
5591
5658
  SENSITIVE: []
5592
5659
  end
5593
5660
 
5661
+ class ThrottlingException
5662
+ attr_accessor message: ::String
5663
+ SENSITIVE: []
5664
+ end
5665
+
5594
5666
  class TimestampFilter
5595
5667
  attr_accessor recorded_before: ::Time
5596
5668
  attr_accessor recorded_after: ::Time
@@ -5964,7 +6036,7 @@ module Aws::Glue
5964
6036
  attr_accessor catalog_id: ::String
5965
6037
  attr_accessor database_name: ::String
5966
6038
  attr_accessor table_name: ::String
5967
- attr_accessor type: ("compaction")
6039
+ attr_accessor type: ("compaction" | "retention" | "orphan_file_deletion")
5968
6040
  attr_accessor table_optimizer_configuration: Types::TableOptimizerConfiguration
5969
6041
  SENSITIVE: []
5970
6042
  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.192.0
4
+ version: 1.194.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-10 00:00:00.000000000 Z
11
+ date: 2024-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.203.0
22
+ version: 3.205.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.203.0
32
+ version: 3.205.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement