aws-sdk-deadline 1.58.0 → 1.59.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +2 -2
- data/lib/aws-sdk-deadline/client_api.rb +6 -1
- data/lib/aws-sdk-deadline/types.rb +21 -1
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/types.rbs +8 -2
- 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: d5398aea1fe1a95026ded75ef01884f0f5fc7f8a2d780f755a87863dbd530b21
|
|
4
|
+
data.tar.gz: d8e2f781d75d9f7249eefbf59e55515c2df7408fc371ff6bd224a7734b217615
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b49b8821e3a365b5dde60bc8ce38582c8722dc26a742f0dbc661f393ed21977c1f7485c5cf4f4a648d182e0573a39f66c6ac61a3d9901ed9654e44fddef8e49f
|
|
7
|
+
data.tar.gz: 29c849a86ccd0847954452b2c53696cc2fe582b7c7a8c39c8c6a24710527d437c2faaf0a057f9af4c97280b9f589ff24481ca25ab78f26dfe9ef78b333ab46b8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.59.0 (2026-08-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Deadline Cloud now reports persistent volume costs alongside compute and license costs. Customers can view per-fleet storage costs in Usage Explorer by selecting the Usage Type grouping, helping them better understand the costs of their infrastructure.
|
|
8
|
+
|
|
4
9
|
1.58.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.59.0
|
|
@@ -4375,7 +4375,7 @@ module Aws::Deadline
|
|
|
4375
4375
|
# resp.statistics[0].job_id #=> String
|
|
4376
4376
|
# resp.statistics[0].job_name #=> String
|
|
4377
4377
|
# resp.statistics[0].user_id #=> String
|
|
4378
|
-
# resp.statistics[0].usage_type #=> String, one of "COMPUTE", "LICENSE"
|
|
4378
|
+
# resp.statistics[0].usage_type #=> String, one of "COMPUTE", "LICENSE", "PERSISTENT_VOLUME"
|
|
4379
4379
|
# resp.statistics[0].license_product #=> String
|
|
4380
4380
|
# resp.statistics[0].instance_type #=> String
|
|
4381
4381
|
# resp.statistics[0].count #=> Integer
|
|
@@ -8362,7 +8362,7 @@ module Aws::Deadline
|
|
|
8362
8362
|
tracer: tracer
|
|
8363
8363
|
)
|
|
8364
8364
|
context[:gem_name] = 'aws-sdk-deadline'
|
|
8365
|
-
context[:gem_version] = '1.
|
|
8365
|
+
context[:gem_version] = '1.59.0'
|
|
8366
8366
|
Seahorse::Client::Request.new(handlers, context)
|
|
8367
8367
|
end
|
|
8368
8368
|
|
|
@@ -365,6 +365,7 @@ module Aws::Deadline
|
|
|
365
365
|
JobDetailsEntity = Shapes::StructureShape.new(name: 'JobDetailsEntity')
|
|
366
366
|
JobDetailsError = Shapes::StructureShape.new(name: 'JobDetailsError')
|
|
367
367
|
JobDetailsIdentifiers = Shapes::StructureShape.new(name: 'JobDetailsIdentifiers')
|
|
368
|
+
JobDetailsJobAttachmentSettings = Shapes::StructureShape.new(name: 'JobDetailsJobAttachmentSettings')
|
|
368
369
|
JobEntity = Shapes::UnionShape.new(name: 'JobEntity')
|
|
369
370
|
JobEntityErrorCode = Shapes::StringShape.new(name: 'JobEntityErrorCode')
|
|
370
371
|
JobEntityIdentifiers = Shapes::ListShape.new(name: 'JobEntityIdentifiers')
|
|
@@ -2225,7 +2226,7 @@ module Aws::Deadline
|
|
|
2225
2226
|
JobAttachmentSettings.struct_class = Types::JobAttachmentSettings
|
|
2226
2227
|
|
|
2227
2228
|
JobDetailsEntity.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
|
|
2228
|
-
JobDetailsEntity.add_member(:job_attachment_settings, Shapes::ShapeRef.new(shape:
|
|
2229
|
+
JobDetailsEntity.add_member(:job_attachment_settings, Shapes::ShapeRef.new(shape: JobDetailsJobAttachmentSettings, location_name: "jobAttachmentSettings"))
|
|
2229
2230
|
JobDetailsEntity.add_member(:job_run_as_user, Shapes::ShapeRef.new(shape: JobRunAsUser, location_name: "jobRunAsUser"))
|
|
2230
2231
|
JobDetailsEntity.add_member(:log_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "logGroupName"))
|
|
2231
2232
|
JobDetailsEntity.add_member(:queue_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "queueRoleArn"))
|
|
@@ -2242,6 +2243,10 @@ module Aws::Deadline
|
|
|
2242
2243
|
JobDetailsIdentifiers.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "jobId"))
|
|
2243
2244
|
JobDetailsIdentifiers.struct_class = Types::JobDetailsIdentifiers
|
|
2244
2245
|
|
|
2246
|
+
JobDetailsJobAttachmentSettings.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: S3BucketName, required: true, location_name: "s3BucketName"))
|
|
2247
|
+
JobDetailsJobAttachmentSettings.add_member(:root_prefix, Shapes::ShapeRef.new(shape: S3Prefix, required: true, location_name: "rootPrefix"))
|
|
2248
|
+
JobDetailsJobAttachmentSettings.struct_class = Types::JobDetailsJobAttachmentSettings
|
|
2249
|
+
|
|
2245
2250
|
JobEntity.add_member(:job_details, Shapes::ShapeRef.new(shape: JobDetailsEntity, location_name: "jobDetails"))
|
|
2246
2251
|
JobEntity.add_member(:job_attachment_details, Shapes::ShapeRef.new(shape: JobAttachmentDetailsEntity, location_name: "jobAttachmentDetails"))
|
|
2247
2252
|
JobEntity.add_member(:step_details, Shapes::ShapeRef.new(shape: StepDetailsEntity, location_name: "stepDetails"))
|
|
@@ -6716,7 +6716,7 @@ module Aws::Deadline
|
|
|
6716
6716
|
#
|
|
6717
6717
|
# @!attribute [rw] job_attachment_settings
|
|
6718
6718
|
# The job attachment settings.
|
|
6719
|
-
# @return [Types::
|
|
6719
|
+
# @return [Types::JobDetailsJobAttachmentSettings]
|
|
6720
6720
|
#
|
|
6721
6721
|
# @!attribute [rw] job_run_as_user
|
|
6722
6722
|
# The user name and group that the job uses when run.
|
|
@@ -6795,6 +6795,26 @@ module Aws::Deadline
|
|
|
6795
6795
|
include Aws::Structure
|
|
6796
6796
|
end
|
|
6797
6797
|
|
|
6798
|
+
# The job attachment settings returned to workers for a job. These are
|
|
6799
|
+
# the Amazon S3 bucket name and the Amazon S3 prefix.
|
|
6800
|
+
#
|
|
6801
|
+
# @!attribute [rw] s3_bucket_name
|
|
6802
|
+
# The Amazon S3 bucket name.
|
|
6803
|
+
# @return [String]
|
|
6804
|
+
#
|
|
6805
|
+
# @!attribute [rw] root_prefix
|
|
6806
|
+
# The root prefix.
|
|
6807
|
+
# @return [String]
|
|
6808
|
+
#
|
|
6809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/JobDetailsJobAttachmentSettings AWS API Documentation
|
|
6810
|
+
#
|
|
6811
|
+
class JobDetailsJobAttachmentSettings < Struct.new(
|
|
6812
|
+
:s3_bucket_name,
|
|
6813
|
+
:root_prefix)
|
|
6814
|
+
SENSITIVE = []
|
|
6815
|
+
include Aws::Structure
|
|
6816
|
+
end
|
|
6817
|
+
|
|
6798
6818
|
# The details of a job entity.
|
|
6799
6819
|
#
|
|
6800
6820
|
# @note JobEntity is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobEntity corresponding to the set member.
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -1776,7 +1776,7 @@ module Aws::Deadline
|
|
|
1776
1776
|
|
|
1777
1777
|
class JobDetailsEntity
|
|
1778
1778
|
attr_accessor job_id: ::String
|
|
1779
|
-
attr_accessor job_attachment_settings: Types::
|
|
1779
|
+
attr_accessor job_attachment_settings: Types::JobDetailsJobAttachmentSettings
|
|
1780
1780
|
attr_accessor job_run_as_user: Types::JobRunAsUser
|
|
1781
1781
|
attr_accessor log_group_name: ::String
|
|
1782
1782
|
attr_accessor queue_role_arn: ::String
|
|
@@ -1798,6 +1798,12 @@ module Aws::Deadline
|
|
|
1798
1798
|
SENSITIVE: []
|
|
1799
1799
|
end
|
|
1800
1800
|
|
|
1801
|
+
class JobDetailsJobAttachmentSettings
|
|
1802
|
+
attr_accessor s3_bucket_name: ::String
|
|
1803
|
+
attr_accessor root_prefix: ::String
|
|
1804
|
+
SENSITIVE: []
|
|
1805
|
+
end
|
|
1806
|
+
|
|
1801
1807
|
class JobEntity
|
|
1802
1808
|
attr_accessor job_details: Types::JobDetailsEntity
|
|
1803
1809
|
attr_accessor job_attachment_details: Types::JobAttachmentDetailsEntity
|
|
@@ -2870,7 +2876,7 @@ module Aws::Deadline
|
|
|
2870
2876
|
attr_accessor job_id: ::String
|
|
2871
2877
|
attr_accessor job_name: ::String
|
|
2872
2878
|
attr_accessor user_id: ::String
|
|
2873
|
-
attr_accessor usage_type: ("COMPUTE" | "LICENSE")
|
|
2879
|
+
attr_accessor usage_type: ("COMPUTE" | "LICENSE" | "PERSISTENT_VOLUME")
|
|
2874
2880
|
attr_accessor license_product: ::String
|
|
2875
2881
|
attr_accessor instance_type: ::String
|
|
2876
2882
|
attr_accessor count: ::Integer
|