aws-sdk-deadline 1.16.0 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +58 -1
- data/lib/aws-sdk-deadline/client_api.rb +16 -0
- data/lib/aws-sdk-deadline/types.rb +63 -2
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +26 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +13 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb18128a0a0cf41e52fea59b8f228109f9ae0f0573e3f02947eebf469e378ce
|
4
|
+
data.tar.gz: 8195190639366c6d5073c475a06f04ef1b5112b92a9671f96bb69b85f105bd79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a7d998baf3fcd4ee44f3f39925022ce68d707bd4607d1e2a43bb6816e7c07dc95e3bb1128d18621da80d83cc34ac0e93fea2634c6a3b0cf132ae95028f523a6
|
7
|
+
data.tar.gz: 89c2748cd3bf1436eba6c8ed391b990e797fa2a52471c6f4beb0b4a55820c9222a118b22e7d59c009558e0857866d7038b122713074dbced8f461b443f67bf29
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.17.0 (2024-11-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for select GPU accelerated instance types when creating new service-managed fleets.
|
13
|
+
|
4
14
|
1.16.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -257,11 +257,34 @@ module Aws::Deadline
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1225,6 +1248,18 @@ module Aws::Deadline
|
|
1225
1248
|
# iops: 1,
|
1226
1249
|
# throughput_mi_b: 1,
|
1227
1250
|
# },
|
1251
|
+
# accelerator_capabilities: {
|
1252
|
+
# selections: [ # required
|
1253
|
+
# {
|
1254
|
+
# name: "t4", # required, accepts t4, a10g, l4, l40s
|
1255
|
+
# runtime: "AcceleratorRuntime",
|
1256
|
+
# },
|
1257
|
+
# ],
|
1258
|
+
# count: {
|
1259
|
+
# min: 1, # required
|
1260
|
+
# max: 1,
|
1261
|
+
# },
|
1262
|
+
# },
|
1228
1263
|
# allowed_instance_types: ["InstanceType"],
|
1229
1264
|
# excluded_instance_types: ["InstanceType"],
|
1230
1265
|
# custom_amounts: [
|
@@ -2392,6 +2427,11 @@ module Aws::Deadline
|
|
2392
2427
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.size_gi_b #=> Integer
|
2393
2428
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
|
2394
2429
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
|
2430
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
|
2431
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
|
2432
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
|
2433
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
|
2434
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
|
2395
2435
|
# resp.configuration.service_managed_ec2.instance_capabilities.allowed_instance_types #=> Array
|
2396
2436
|
# resp.configuration.service_managed_ec2.instance_capabilities.allowed_instance_types[0] #=> String
|
2397
2437
|
# resp.configuration.service_managed_ec2.instance_capabilities.excluded_instance_types #=> Array
|
@@ -3677,6 +3717,11 @@ module Aws::Deadline
|
|
3677
3717
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.size_gi_b #=> Integer
|
3678
3718
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
|
3679
3719
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
|
3720
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
|
3721
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
|
3722
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
|
3723
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
|
3724
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
|
3680
3725
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.allowed_instance_types #=> Array
|
3681
3726
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.allowed_instance_types[0] #=> String
|
3682
3727
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.excluded_instance_types #=> Array
|
@@ -5716,6 +5761,18 @@ module Aws::Deadline
|
|
5716
5761
|
# iops: 1,
|
5717
5762
|
# throughput_mi_b: 1,
|
5718
5763
|
# },
|
5764
|
+
# accelerator_capabilities: {
|
5765
|
+
# selections: [ # required
|
5766
|
+
# {
|
5767
|
+
# name: "t4", # required, accepts t4, a10g, l4, l40s
|
5768
|
+
# runtime: "AcceleratorRuntime",
|
5769
|
+
# },
|
5770
|
+
# ],
|
5771
|
+
# count: {
|
5772
|
+
# min: 1, # required
|
5773
|
+
# max: 1,
|
5774
|
+
# },
|
5775
|
+
# },
|
5719
5776
|
# allowed_instance_types: ["InstanceType"],
|
5720
5777
|
# excluded_instance_types: ["InstanceType"],
|
5721
5778
|
# custom_amounts: [
|
@@ -6412,7 +6469,7 @@ module Aws::Deadline
|
|
6412
6469
|
tracer: tracer
|
6413
6470
|
)
|
6414
6471
|
context[:gem_name] = 'aws-sdk-deadline'
|
6415
|
-
context[:gem_version] = '1.
|
6472
|
+
context[:gem_version] = '1.18.0'
|
6416
6473
|
Seahorse::Client::Request.new(handlers, context)
|
6417
6474
|
end
|
6418
6475
|
|
@@ -14,7 +14,12 @@ module Aws::Deadline
|
|
14
14
|
|
15
15
|
include Seahorse::Model
|
16
16
|
|
17
|
+
AcceleratorCapabilities = Shapes::StructureShape.new(name: 'AcceleratorCapabilities')
|
17
18
|
AcceleratorCountRange = Shapes::StructureShape.new(name: 'AcceleratorCountRange')
|
19
|
+
AcceleratorName = Shapes::StringShape.new(name: 'AcceleratorName')
|
20
|
+
AcceleratorRuntime = Shapes::StringShape.new(name: 'AcceleratorRuntime')
|
21
|
+
AcceleratorSelection = Shapes::StructureShape.new(name: 'AcceleratorSelection')
|
22
|
+
AcceleratorSelections = Shapes::ListShape.new(name: 'AcceleratorSelections')
|
18
23
|
AcceleratorTotalMemoryMiBRange = Shapes::StructureShape.new(name: 'AcceleratorTotalMemoryMiBRange')
|
19
24
|
AcceleratorType = Shapes::StringShape.new(name: 'AcceleratorType')
|
20
25
|
AcceleratorTypes = Shapes::ListShape.new(name: 'AcceleratorTypes')
|
@@ -610,10 +615,20 @@ module Aws::Deadline
|
|
610
615
|
WorkerSummaries = Shapes::ListShape.new(name: 'WorkerSummaries')
|
611
616
|
WorkerSummary = Shapes::StructureShape.new(name: 'WorkerSummary')
|
612
617
|
|
618
|
+
AcceleratorCapabilities.add_member(:selections, Shapes::ShapeRef.new(shape: AcceleratorSelections, required: true, location_name: "selections"))
|
619
|
+
AcceleratorCapabilities.add_member(:count, Shapes::ShapeRef.new(shape: AcceleratorCountRange, location_name: "count"))
|
620
|
+
AcceleratorCapabilities.struct_class = Types::AcceleratorCapabilities
|
621
|
+
|
613
622
|
AcceleratorCountRange.add_member(:min, Shapes::ShapeRef.new(shape: MinZeroMaxInteger, required: true, location_name: "min"))
|
614
623
|
AcceleratorCountRange.add_member(:max, Shapes::ShapeRef.new(shape: MinZeroMaxInteger, location_name: "max"))
|
615
624
|
AcceleratorCountRange.struct_class = Types::AcceleratorCountRange
|
616
625
|
|
626
|
+
AcceleratorSelection.add_member(:name, Shapes::ShapeRef.new(shape: AcceleratorName, required: true, location_name: "name"))
|
627
|
+
AcceleratorSelection.add_member(:runtime, Shapes::ShapeRef.new(shape: AcceleratorRuntime, location_name: "runtime"))
|
628
|
+
AcceleratorSelection.struct_class = Types::AcceleratorSelection
|
629
|
+
|
630
|
+
AcceleratorSelections.member = Shapes::ShapeRef.new(shape: AcceleratorSelection)
|
631
|
+
|
617
632
|
AcceleratorTotalMemoryMiBRange.add_member(:min, Shapes::ShapeRef.new(shape: MinZeroMaxInteger, required: true, location_name: "min"))
|
618
633
|
AcceleratorTotalMemoryMiBRange.add_member(:max, Shapes::ShapeRef.new(shape: MinZeroMaxInteger, location_name: "max"))
|
619
634
|
AcceleratorTotalMemoryMiBRange.struct_class = Types::AcceleratorTotalMemoryMiBRange
|
@@ -2224,6 +2239,7 @@ module Aws::Deadline
|
|
2224
2239
|
ServiceManagedEc2InstanceCapabilities.add_member(:os_family, Shapes::ShapeRef.new(shape: ServiceManagedFleetOperatingSystemFamily, required: true, location_name: "osFamily"))
|
2225
2240
|
ServiceManagedEc2InstanceCapabilities.add_member(:cpu_architecture_type, Shapes::ShapeRef.new(shape: CpuArchitectureType, required: true, location_name: "cpuArchitectureType"))
|
2226
2241
|
ServiceManagedEc2InstanceCapabilities.add_member(:root_ebs_volume, Shapes::ShapeRef.new(shape: Ec2EbsVolume, location_name: "rootEbsVolume"))
|
2242
|
+
ServiceManagedEc2InstanceCapabilities.add_member(:accelerator_capabilities, Shapes::ShapeRef.new(shape: AcceleratorCapabilities, location_name: "acceleratorCapabilities"))
|
2227
2243
|
ServiceManagedEc2InstanceCapabilities.add_member(:allowed_instance_types, Shapes::ShapeRef.new(shape: InstanceTypes, location_name: "allowedInstanceTypes"))
|
2228
2244
|
ServiceManagedEc2InstanceCapabilities.add_member(:excluded_instance_types, Shapes::ShapeRef.new(shape: InstanceTypes, location_name: "excludedInstanceTypes"))
|
2229
2245
|
ServiceManagedEc2InstanceCapabilities.add_member(:custom_amounts, Shapes::ShapeRef.new(shape: CustomFleetAmountCapabilities, location_name: "customAmounts"))
|
@@ -10,14 +10,43 @@
|
|
10
10
|
module Aws::Deadline
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# Provides information about the GPU accelerators and drivers for the
|
14
|
+
# instance types in a fleet. If you include the
|
15
|
+
# `acceleratorCapabilities` property in the
|
16
|
+
# [ServiceManagedEc2InstanceCapabilities][1] object, all of the Amazon
|
17
|
+
# EC2 instances will have at least one accelerator.
|
18
|
+
#
|
19
|
+
#
|
20
|
+
#
|
21
|
+
# [1]: https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities
|
22
|
+
#
|
23
|
+
# @!attribute [rw] selections
|
24
|
+
# A list of objects that contain the GPU name of the accelerator and
|
25
|
+
# driver for the instance types that support the accelerator.
|
26
|
+
# @return [Array<Types::AcceleratorSelection>]
|
27
|
+
#
|
28
|
+
# @!attribute [rw] count
|
29
|
+
# The number of GPUs on each worker. The default is 1.
|
30
|
+
# @return [Types::AcceleratorCountRange]
|
31
|
+
#
|
32
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AcceleratorCapabilities AWS API Documentation
|
33
|
+
#
|
34
|
+
class AcceleratorCapabilities < Struct.new(
|
35
|
+
:selections,
|
36
|
+
:count)
|
37
|
+
SENSITIVE = []
|
38
|
+
include Aws::Structure
|
39
|
+
end
|
40
|
+
|
13
41
|
# The range for the GPU fleet acceleration.
|
14
42
|
#
|
15
43
|
# @!attribute [rw] min
|
16
|
-
# The minimum
|
44
|
+
# The minimum number of GPUs for the accelerator. If you set the value
|
45
|
+
# to 0, a worker will still have 1 GPU.
|
17
46
|
# @return [Integer]
|
18
47
|
#
|
19
48
|
# @!attribute [rw] max
|
20
|
-
# The maximum
|
49
|
+
# The maximum number of GPUs for the accelerator.
|
21
50
|
# @return [Integer]
|
22
51
|
#
|
23
52
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AcceleratorCountRange AWS API Documentation
|
@@ -29,6 +58,26 @@ module Aws::Deadline
|
|
29
58
|
include Aws::Structure
|
30
59
|
end
|
31
60
|
|
61
|
+
# Values that you can use to select a particular Amazon EC2 instance
|
62
|
+
# type.
|
63
|
+
#
|
64
|
+
# @!attribute [rw] name
|
65
|
+
# The name of the GPU accelerator.
|
66
|
+
# @return [String]
|
67
|
+
#
|
68
|
+
# @!attribute [rw] runtime
|
69
|
+
# The driver version that the GPU accelerator uses.
|
70
|
+
# @return [String]
|
71
|
+
#
|
72
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AcceleratorSelection AWS API Documentation
|
73
|
+
#
|
74
|
+
class AcceleratorSelection < Struct.new(
|
75
|
+
:name,
|
76
|
+
:runtime)
|
77
|
+
SENSITIVE = []
|
78
|
+
include Aws::Structure
|
79
|
+
end
|
80
|
+
|
32
81
|
# The range for memory, in MiB, to use for the accelerator.
|
33
82
|
#
|
34
83
|
# @!attribute [rw] min
|
@@ -7219,6 +7268,17 @@ module Aws::Deadline
|
|
7219
7268
|
# The root EBS volume.
|
7220
7269
|
# @return [Types::Ec2EbsVolume]
|
7221
7270
|
#
|
7271
|
+
# @!attribute [rw] accelerator_capabilities
|
7272
|
+
# The GPU accelerator capabilities required for the Amazon EC2
|
7273
|
+
# instances. If you include the `acceleratorCapabilities` property in
|
7274
|
+
# the [ServiceManagedEc2InstanceCapabilities][1] object, all of the
|
7275
|
+
# Amazon EC2 instances will have at least one accelerator.
|
7276
|
+
#
|
7277
|
+
#
|
7278
|
+
#
|
7279
|
+
# [1]: https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities
|
7280
|
+
# @return [Types::AcceleratorCapabilities]
|
7281
|
+
#
|
7222
7282
|
# @!attribute [rw] allowed_instance_types
|
7223
7283
|
# The allowable Amazon EC2 instance types.
|
7224
7284
|
# @return [Array<String>]
|
@@ -7245,6 +7305,7 @@ module Aws::Deadline
|
|
7245
7305
|
:os_family,
|
7246
7306
|
:cpu_architecture_type,
|
7247
7307
|
:root_ebs_volume,
|
7308
|
+
:accelerator_capabilities,
|
7248
7309
|
:allowed_instance_types,
|
7249
7310
|
:excluded_instance_types,
|
7250
7311
|
:custom_amounts,
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -349,6 +351,18 @@ module Aws
|
|
349
351
|
iops: ::Integer?,
|
350
352
|
throughput_mi_b: ::Integer?
|
351
353
|
}?,
|
354
|
+
accelerator_capabilities: {
|
355
|
+
selections: Array[
|
356
|
+
{
|
357
|
+
name: ("t4" | "a10g" | "l4" | "l40s"),
|
358
|
+
runtime: ::String?
|
359
|
+
},
|
360
|
+
],
|
361
|
+
count: {
|
362
|
+
min: ::Integer,
|
363
|
+
max: ::Integer?
|
364
|
+
}?
|
365
|
+
}?,
|
352
366
|
allowed_instance_types: Array[::String]?,
|
353
367
|
excluded_instance_types: Array[::String]?,
|
354
368
|
custom_amounts: Array[
|
@@ -1838,6 +1852,18 @@ module Aws
|
|
1838
1852
|
iops: ::Integer?,
|
1839
1853
|
throughput_mi_b: ::Integer?
|
1840
1854
|
}?,
|
1855
|
+
accelerator_capabilities: {
|
1856
|
+
selections: Array[
|
1857
|
+
{
|
1858
|
+
name: ("t4" | "a10g" | "l4" | "l40s"),
|
1859
|
+
runtime: ::String?
|
1860
|
+
},
|
1861
|
+
],
|
1862
|
+
count: {
|
1863
|
+
min: ::Integer,
|
1864
|
+
max: ::Integer?
|
1865
|
+
}?
|
1866
|
+
}?,
|
1841
1867
|
allowed_instance_types: Array[::String]?,
|
1842
1868
|
excluded_instance_types: Array[::String]?,
|
1843
1869
|
custom_amounts: Array[
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -8,12 +8,24 @@
|
|
8
8
|
module Aws::Deadline
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class AcceleratorCapabilities
|
12
|
+
attr_accessor selections: ::Array[Types::AcceleratorSelection]
|
13
|
+
attr_accessor count: Types::AcceleratorCountRange
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
11
17
|
class AcceleratorCountRange
|
12
18
|
attr_accessor min: ::Integer
|
13
19
|
attr_accessor max: ::Integer
|
14
20
|
SENSITIVE: []
|
15
21
|
end
|
16
22
|
|
23
|
+
class AcceleratorSelection
|
24
|
+
attr_accessor name: ("t4" | "a10g" | "l4" | "l40s")
|
25
|
+
attr_accessor runtime: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
17
29
|
class AcceleratorTotalMemoryMiBRange
|
18
30
|
attr_accessor min: ::Integer
|
19
31
|
attr_accessor max: ::Integer
|
@@ -2041,6 +2053,7 @@ module Aws::Deadline
|
|
2041
2053
|
attr_accessor os_family: ("WINDOWS" | "LINUX")
|
2042
2054
|
attr_accessor cpu_architecture_type: ("x86_64" | "arm64")
|
2043
2055
|
attr_accessor root_ebs_volume: Types::Ec2EbsVolume
|
2056
|
+
attr_accessor accelerator_capabilities: Types::AcceleratorCapabilities
|
2044
2057
|
attr_accessor allowed_instance_types: ::Array[::String]
|
2045
2058
|
attr_accessor excluded_instance_types: ::Array[::String]
|
2046
2059
|
attr_accessor custom_amounts: ::Array[Types::FleetAmountCapability]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-deadline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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:
|
11
|
+
date: 2025-01-15 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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|