aws-sdk-glue 1.211.0 → 1.213.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 +13 -4
- data/lib/aws-sdk-glue/client_api.rb +12 -3
- data/lib/aws-sdk-glue/types.rb +23 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/types.rbs +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58571d166c0d50797b085565a73dd65b048a74e9263af2fe2994bf08e9700d3e
|
4
|
+
data.tar.gz: 9e8d3c6b7f91cfecfa7b20f3161d82a80299311e7cfc12a9c4a3b012495ffffb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 732b0b5344878fb90c11cf35d0574e372db9ca60afc8d857bae0ebad9df6bebc8820a2e6ead717e030478f72cf1b214bc3585c5e8e76bb918b70e4f87901bfc1
|
7
|
+
data.tar.gz: 4b4d8f0dd10c1506976e7b22ef5c2761ba56d04b05e3538875c615237e0abf529d1421a7148be9996781fe9ee22b0065896ff2ccd2445d176cc7ba3fea1cc564
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.213.0 (2025-04-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The TableOptimizer APIs in AWS Glue now return the DpuHours field in each TableOptimizerRun, providing clients visibility to the DPU-hours used for billing in managed Apache Iceberg table compaction optimization.
|
8
|
+
|
9
|
+
1.212.0 (2025-04-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add input validations for multiple Glue APIs
|
13
|
+
|
4
14
|
1.211.0 (2025-03-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.213.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -2198,14 +2198,17 @@ module Aws::Glue
|
|
2198
2198
|
# resp.table_optimizers[0].table_optimizer.last_run.error #=> String
|
2199
2199
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_bytes_compacted #=> Integer
|
2200
2200
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_files_compacted #=> Integer
|
2201
|
+
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
2201
2202
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
2202
2203
|
# resp.table_optimizers[0].table_optimizer.last_run.compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
2203
2204
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
2204
2205
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
2205
2206
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
2207
|
+
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.dpu_hours #=> Float
|
2206
2208
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
2207
2209
|
# resp.table_optimizers[0].table_optimizer.last_run.retention_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
2208
2210
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_orphan_files_deleted #=> Integer
|
2211
|
+
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.dpu_hours #=> Float
|
2209
2212
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
2210
2213
|
# resp.table_optimizers[0].table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
2211
2214
|
# resp.failures #=> Array
|
@@ -5002,7 +5005,7 @@ module Aws::Glue
|
|
5002
5005
|
# "OrchestrationNameString" => "OrchestrationArgumentsValue",
|
5003
5006
|
# },
|
5004
5007
|
# connections: {
|
5005
|
-
# connections: ["
|
5008
|
+
# connections: ["ConnectionString"],
|
5006
5009
|
# },
|
5007
5010
|
# max_capacity: 1.0,
|
5008
5011
|
# number_of_workers: 1,
|
@@ -5515,7 +5518,7 @@ module Aws::Glue
|
|
5515
5518
|
#
|
5516
5519
|
# resp = client.create_workflow({
|
5517
5520
|
# name: "NameString", # required
|
5518
|
-
# description: "
|
5521
|
+
# description: "WorkflowDescriptionString",
|
5519
5522
|
# default_run_properties: {
|
5520
5523
|
# "IdString" => "GenericString",
|
5521
5524
|
# },
|
@@ -12748,14 +12751,17 @@ module Aws::Glue
|
|
12748
12751
|
# resp.table_optimizer.last_run.error #=> String
|
12749
12752
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_bytes_compacted #=> Integer
|
12750
12753
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_files_compacted #=> Integer
|
12754
|
+
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
12751
12755
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
12752
12756
|
# resp.table_optimizer.last_run.compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
12753
12757
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
12754
12758
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
12755
12759
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
12760
|
+
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.dpu_hours #=> Float
|
12756
12761
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
12757
12762
|
# resp.table_optimizer.last_run.retention_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
12758
12763
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_orphan_files_deleted #=> Integer
|
12764
|
+
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.dpu_hours #=> Float
|
12759
12765
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
12760
12766
|
# resp.table_optimizer.last_run.orphan_file_deletion_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
12761
12767
|
#
|
@@ -15920,14 +15926,17 @@ module Aws::Glue
|
|
15920
15926
|
# resp.table_optimizer_runs[0].error #=> String
|
15921
15927
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.number_of_bytes_compacted #=> Integer
|
15922
15928
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.number_of_files_compacted #=> Integer
|
15929
|
+
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.dpu_hours #=> Float
|
15923
15930
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
15924
15931
|
# resp.table_optimizer_runs[0].compaction_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
15925
15932
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_data_files_deleted #=> Integer
|
15926
15933
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_manifest_files_deleted #=> Integer
|
15927
15934
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_manifest_lists_deleted #=> Integer
|
15935
|
+
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.dpu_hours #=> Float
|
15928
15936
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
15929
15937
|
# resp.table_optimizer_runs[0].retention_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
15930
15938
|
# resp.table_optimizer_runs[0].orphan_file_deletion_metrics.iceberg_metrics.number_of_orphan_files_deleted #=> Integer
|
15939
|
+
# resp.table_optimizer_runs[0].orphan_file_deletion_metrics.iceberg_metrics.dpu_hours #=> Float
|
15931
15940
|
# resp.table_optimizer_runs[0].orphan_file_deletion_metrics.iceberg_metrics.number_of_dpus #=> Integer
|
15932
15941
|
# resp.table_optimizer_runs[0].orphan_file_deletion_metrics.iceberg_metrics.job_duration_in_hour #=> Float
|
15933
15942
|
#
|
@@ -20047,7 +20056,7 @@ module Aws::Glue
|
|
20047
20056
|
#
|
20048
20057
|
# resp = client.update_workflow({
|
20049
20058
|
# name: "NameString", # required
|
20050
|
-
# description: "
|
20059
|
+
# description: "WorkflowDescriptionString",
|
20051
20060
|
# default_run_properties: {
|
20052
20061
|
# "IdString" => "GenericString",
|
20053
20062
|
# },
|
@@ -20085,7 +20094,7 @@ module Aws::Glue
|
|
20085
20094
|
tracer: tracer
|
20086
20095
|
)
|
20087
20096
|
context[:gem_name] = 'aws-sdk-glue'
|
20088
|
-
context[:gem_version] = '1.
|
20097
|
+
context[:gem_version] = '1.213.0'
|
20089
20098
|
Seahorse::Client::Request.new(handlers, context)
|
20090
20099
|
end
|
20091
20100
|
|
@@ -259,6 +259,8 @@ module Aws::Glue
|
|
259
259
|
ConnectionPropertyKey = Shapes::StringShape.new(name: 'ConnectionPropertyKey')
|
260
260
|
ConnectionSchemaVersion = Shapes::IntegerShape.new(name: 'ConnectionSchemaVersion')
|
261
261
|
ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
|
262
|
+
ConnectionString = Shapes::StringShape.new(name: 'ConnectionString')
|
263
|
+
ConnectionStringList = Shapes::ListShape.new(name: 'ConnectionStringList')
|
262
264
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
263
265
|
ConnectionTypeBrief = Shapes::StructureShape.new(name: 'ConnectionTypeBrief')
|
264
266
|
ConnectionTypeList = Shapes::ListShape.new(name: 'ConnectionTypeList')
|
@@ -1528,6 +1530,7 @@ module Aws::Glue
|
|
1528
1530
|
ViewValidationList = Shapes::ListShape.new(name: 'ViewValidationList')
|
1529
1531
|
WorkerType = Shapes::StringShape.new(name: 'WorkerType')
|
1530
1532
|
Workflow = Shapes::StructureShape.new(name: 'Workflow')
|
1533
|
+
WorkflowDescriptionString = Shapes::StringShape.new(name: 'WorkflowDescriptionString')
|
1531
1534
|
WorkflowGraph = Shapes::StructureShape.new(name: 'WorkflowGraph')
|
1532
1535
|
WorkflowNames = Shapes::ListShape.new(name: 'WorkflowNames')
|
1533
1536
|
WorkflowRun = Shapes::StructureShape.new(name: 'WorkflowRun')
|
@@ -1541,6 +1544,7 @@ module Aws::Glue
|
|
1541
1544
|
double = Shapes::FloatShape.new(name: 'double')
|
1542
1545
|
dpuCounts = Shapes::IntegerShape.new(name: 'dpuCounts')
|
1543
1546
|
dpuDurationInHour = Shapes::FloatShape.new(name: 'dpuDurationInHour')
|
1547
|
+
dpuHours = Shapes::FloatShape.new(name: 'dpuHours')
|
1544
1548
|
glueConnectionNameString = Shapes::StringShape.new(name: 'glueConnectionNameString')
|
1545
1549
|
metricCounts = Shapes::IntegerShape.new(name: 'metricCounts')
|
1546
1550
|
tableNameString = Shapes::StringShape.new(name: 'tableNameString')
|
@@ -2416,6 +2420,8 @@ module Aws::Glue
|
|
2416
2420
|
ConnectionProperties.key = Shapes::ShapeRef.new(shape: ConnectionPropertyKey)
|
2417
2421
|
ConnectionProperties.value = Shapes::ShapeRef.new(shape: ValueString)
|
2418
2422
|
|
2423
|
+
ConnectionStringList.member = Shapes::ShapeRef.new(shape: ConnectionString)
|
2424
|
+
|
2419
2425
|
ConnectionTypeBrief.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "ConnectionType"))
|
2420
2426
|
ConnectionTypeBrief.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2421
2427
|
ConnectionTypeBrief.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
@@ -2423,7 +2429,7 @@ module Aws::Glue
|
|
2423
2429
|
|
2424
2430
|
ConnectionTypeList.member = Shapes::ShapeRef.new(shape: ConnectionTypeBrief)
|
2425
2431
|
|
2426
|
-
ConnectionsList.add_member(:connections, Shapes::ShapeRef.new(shape:
|
2432
|
+
ConnectionsList.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionStringList, location_name: "Connections"))
|
2427
2433
|
ConnectionsList.struct_class = Types::ConnectionsList
|
2428
2434
|
|
2429
2435
|
ConnectorDataSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
@@ -2916,7 +2922,7 @@ module Aws::Glue
|
|
2916
2922
|
CreateUserDefinedFunctionResponse.struct_class = Types::CreateUserDefinedFunctionResponse
|
2917
2923
|
|
2918
2924
|
CreateWorkflowRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2919
|
-
CreateWorkflowRequest.add_member(:description, Shapes::ShapeRef.new(shape:
|
2925
|
+
CreateWorkflowRequest.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescriptionString, location_name: "Description"))
|
2920
2926
|
CreateWorkflowRequest.add_member(:default_run_properties, Shapes::ShapeRef.new(shape: WorkflowRunProperties, location_name: "DefaultRunProperties"))
|
2921
2927
|
CreateWorkflowRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
2922
2928
|
CreateWorkflowRequest.add_member(:max_concurrent_runs, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaxConcurrentRuns"))
|
@@ -4627,6 +4633,7 @@ module Aws::Glue
|
|
4627
4633
|
|
4628
4634
|
IcebergCompactionMetrics.add_member(:number_of_bytes_compacted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfBytesCompacted"))
|
4629
4635
|
IcebergCompactionMetrics.add_member(:number_of_files_compacted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfFilesCompacted"))
|
4636
|
+
IcebergCompactionMetrics.add_member(:dpu_hours, Shapes::ShapeRef.new(shape: dpuHours, location_name: "DpuHours"))
|
4630
4637
|
IcebergCompactionMetrics.add_member(:number_of_dpus, Shapes::ShapeRef.new(shape: dpuCounts, location_name: "NumberOfDpus"))
|
4631
4638
|
IcebergCompactionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
|
4632
4639
|
IcebergCompactionMetrics.struct_class = Types::IcebergCompactionMetrics
|
@@ -4640,6 +4647,7 @@ module Aws::Glue
|
|
4640
4647
|
IcebergOrphanFileDeletionConfiguration.struct_class = Types::IcebergOrphanFileDeletionConfiguration
|
4641
4648
|
|
4642
4649
|
IcebergOrphanFileDeletionMetrics.add_member(:number_of_orphan_files_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfOrphanFilesDeleted"))
|
4650
|
+
IcebergOrphanFileDeletionMetrics.add_member(:dpu_hours, Shapes::ShapeRef.new(shape: dpuHours, location_name: "DpuHours"))
|
4643
4651
|
IcebergOrphanFileDeletionMetrics.add_member(:number_of_dpus, Shapes::ShapeRef.new(shape: dpuCounts, location_name: "NumberOfDpus"))
|
4644
4652
|
IcebergOrphanFileDeletionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
|
4645
4653
|
IcebergOrphanFileDeletionMetrics.struct_class = Types::IcebergOrphanFileDeletionMetrics
|
@@ -4652,6 +4660,7 @@ module Aws::Glue
|
|
4652
4660
|
IcebergRetentionMetrics.add_member(:number_of_data_files_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfDataFilesDeleted"))
|
4653
4661
|
IcebergRetentionMetrics.add_member(:number_of_manifest_files_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfManifestFilesDeleted"))
|
4654
4662
|
IcebergRetentionMetrics.add_member(:number_of_manifest_lists_deleted, Shapes::ShapeRef.new(shape: metricCounts, location_name: "NumberOfManifestListsDeleted"))
|
4663
|
+
IcebergRetentionMetrics.add_member(:dpu_hours, Shapes::ShapeRef.new(shape: dpuHours, location_name: "DpuHours"))
|
4655
4664
|
IcebergRetentionMetrics.add_member(:number_of_dpus, Shapes::ShapeRef.new(shape: dpuCounts, location_name: "NumberOfDpus"))
|
4656
4665
|
IcebergRetentionMetrics.add_member(:job_duration_in_hour, Shapes::ShapeRef.new(shape: dpuDurationInHour, location_name: "JobDurationInHour"))
|
4657
4666
|
IcebergRetentionMetrics.struct_class = Types::IcebergRetentionMetrics
|
@@ -7103,7 +7112,7 @@ module Aws::Glue
|
|
7103
7112
|
UpdateUserDefinedFunctionResponse.struct_class = Types::UpdateUserDefinedFunctionResponse
|
7104
7113
|
|
7105
7114
|
UpdateWorkflowRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
7106
|
-
UpdateWorkflowRequest.add_member(:description, Shapes::ShapeRef.new(shape:
|
7115
|
+
UpdateWorkflowRequest.add_member(:description, Shapes::ShapeRef.new(shape: WorkflowDescriptionString, location_name: "Description"))
|
7107
7116
|
UpdateWorkflowRequest.add_member(:default_run_properties, Shapes::ShapeRef.new(shape: WorkflowRunProperties, location_name: "DefaultRunProperties"))
|
7108
7117
|
UpdateWorkflowRequest.add_member(:max_concurrent_runs, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "MaxConcurrentRuns"))
|
7109
7118
|
UpdateWorkflowRequest.struct_class = Types::UpdateWorkflowRequest
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -15272,8 +15272,13 @@ module Aws::Glue
|
|
15272
15272
|
# The number of files removed by the compaction job run.
|
15273
15273
|
# @return [Integer]
|
15274
15274
|
#
|
15275
|
-
# @!attribute [rw]
|
15275
|
+
# @!attribute [rw] dpu_hours
|
15276
15276
|
# The number of DPU hours consumed by the job.
|
15277
|
+
# @return [Float]
|
15278
|
+
#
|
15279
|
+
# @!attribute [rw] number_of_dpus
|
15280
|
+
# The number of DPUs consumed by the job, rounded up to the nearest
|
15281
|
+
# whole number.
|
15277
15282
|
# @return [Integer]
|
15278
15283
|
#
|
15279
15284
|
# @!attribute [rw] job_duration_in_hour
|
@@ -15285,6 +15290,7 @@ module Aws::Glue
|
|
15285
15290
|
class IcebergCompactionMetrics < Struct.new(
|
15286
15291
|
:number_of_bytes_compacted,
|
15287
15292
|
:number_of_files_compacted,
|
15293
|
+
:dpu_hours,
|
15288
15294
|
:number_of_dpus,
|
15289
15295
|
:job_duration_in_hour)
|
15290
15296
|
SENSITIVE = []
|
@@ -15341,8 +15347,13 @@ module Aws::Glue
|
|
15341
15347
|
# run.
|
15342
15348
|
# @return [Integer]
|
15343
15349
|
#
|
15344
|
-
# @!attribute [rw]
|
15350
|
+
# @!attribute [rw] dpu_hours
|
15345
15351
|
# The number of DPU hours consumed by the job.
|
15352
|
+
# @return [Float]
|
15353
|
+
#
|
15354
|
+
# @!attribute [rw] number_of_dpus
|
15355
|
+
# The number of DPUs consumed by the job, rounded up to the nearest
|
15356
|
+
# whole number.
|
15346
15357
|
# @return [Integer]
|
15347
15358
|
#
|
15348
15359
|
# @!attribute [rw] job_duration_in_hour
|
@@ -15353,6 +15364,7 @@ module Aws::Glue
|
|
15353
15364
|
#
|
15354
15365
|
class IcebergOrphanFileDeletionMetrics < Struct.new(
|
15355
15366
|
:number_of_orphan_files_deleted,
|
15367
|
+
:dpu_hours,
|
15356
15368
|
:number_of_dpus,
|
15357
15369
|
:job_duration_in_hour)
|
15358
15370
|
SENSITIVE = []
|
@@ -15403,8 +15415,13 @@ module Aws::Glue
|
|
15403
15415
|
# The number of manifest lists deleted by the retention job run.
|
15404
15416
|
# @return [Integer]
|
15405
15417
|
#
|
15406
|
-
# @!attribute [rw]
|
15418
|
+
# @!attribute [rw] dpu_hours
|
15407
15419
|
# The number of DPU hours consumed by the job.
|
15420
|
+
# @return [Float]
|
15421
|
+
#
|
15422
|
+
# @!attribute [rw] number_of_dpus
|
15423
|
+
# The number of DPUs consumed by the job, rounded up to the nearest
|
15424
|
+
# whole number.
|
15408
15425
|
# @return [Integer]
|
15409
15426
|
#
|
15410
15427
|
# @!attribute [rw] job_duration_in_hour
|
@@ -15417,6 +15434,7 @@ module Aws::Glue
|
|
15417
15434
|
:number_of_data_files_deleted,
|
15418
15435
|
:number_of_manifest_files_deleted,
|
15419
15436
|
:number_of_manifest_lists_deleted,
|
15437
|
+
:dpu_hours,
|
15420
15438
|
:number_of_dpus,
|
15421
15439
|
:job_duration_in_hour)
|
15422
15440
|
SENSITIVE = []
|
@@ -21490,7 +21508,8 @@ module Aws::Glue
|
|
21490
21508
|
# @return [String]
|
21491
21509
|
#
|
21492
21510
|
# @!attribute [rw] number_of_dpus
|
21493
|
-
# The number of
|
21511
|
+
# The number of DPUs consumed by the job, rounded up to the nearest
|
21512
|
+
# whole number.
|
21494
21513
|
# @return [String]
|
21495
21514
|
#
|
21496
21515
|
# @!attribute [rw] job_duration_in_hour
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -3819,6 +3819,7 @@ module Aws::Glue
|
|
3819
3819
|
class IcebergCompactionMetrics
|
3820
3820
|
attr_accessor number_of_bytes_compacted: ::Integer
|
3821
3821
|
attr_accessor number_of_files_compacted: ::Integer
|
3822
|
+
attr_accessor dpu_hours: ::Float
|
3822
3823
|
attr_accessor number_of_dpus: ::Integer
|
3823
3824
|
attr_accessor job_duration_in_hour: ::Float
|
3824
3825
|
SENSITIVE: []
|
@@ -3838,6 +3839,7 @@ module Aws::Glue
|
|
3838
3839
|
|
3839
3840
|
class IcebergOrphanFileDeletionMetrics
|
3840
3841
|
attr_accessor number_of_orphan_files_deleted: ::Integer
|
3842
|
+
attr_accessor dpu_hours: ::Float
|
3841
3843
|
attr_accessor number_of_dpus: ::Integer
|
3842
3844
|
attr_accessor job_duration_in_hour: ::Float
|
3843
3845
|
SENSITIVE: []
|
@@ -3854,6 +3856,7 @@ module Aws::Glue
|
|
3854
3856
|
attr_accessor number_of_data_files_deleted: ::Integer
|
3855
3857
|
attr_accessor number_of_manifest_files_deleted: ::Integer
|
3856
3858
|
attr_accessor number_of_manifest_lists_deleted: ::Integer
|
3859
|
+
attr_accessor dpu_hours: ::Float
|
3857
3860
|
attr_accessor number_of_dpus: ::Integer
|
3858
3861
|
attr_accessor job_duration_in_hour: ::Float
|
3859
3862
|
SENSITIVE: []
|
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.213.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: 2025-
|
11
|
+
date: 2025-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|