aws-sdk-deadline 1.16.0 → 1.17.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 +35 -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 +24 -0
- data/sig/types.rbs +13 -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: c81fc1ffe90041f29e229488773c858f5e0c5cfbb42e46150c433cc5f50277f7
|
4
|
+
data.tar.gz: b99bfa1751ad38e26a674e060f855c3560557201d90801722abf3801e62358b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c398e4750550a1408b58c1e6c3c1b51afcef97da5dbe944f04d2634e2ec3f01fef04af3c1484682feb629aa4c50de018915bb6f85d6d10b6bc0ef92d1aca86d
|
7
|
+
data.tar.gz: a57283c5e17e98d557036a691f77a4c6e3144f99b6766719c715d68b6206af77475e33c72694df6f3884f3fc17a8caee66816982419c54ebab9a2422519c67e8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
@@ -1225,6 +1225,18 @@ module Aws::Deadline
|
|
1225
1225
|
# iops: 1,
|
1226
1226
|
# throughput_mi_b: 1,
|
1227
1227
|
# },
|
1228
|
+
# accelerator_capabilities: {
|
1229
|
+
# selections: [ # required
|
1230
|
+
# {
|
1231
|
+
# name: "t4", # required, accepts t4, a10g, l4, l40s
|
1232
|
+
# runtime: "AcceleratorRuntime",
|
1233
|
+
# },
|
1234
|
+
# ],
|
1235
|
+
# count: {
|
1236
|
+
# min: 1, # required
|
1237
|
+
# max: 1,
|
1238
|
+
# },
|
1239
|
+
# },
|
1228
1240
|
# allowed_instance_types: ["InstanceType"],
|
1229
1241
|
# excluded_instance_types: ["InstanceType"],
|
1230
1242
|
# custom_amounts: [
|
@@ -2392,6 +2404,11 @@ module Aws::Deadline
|
|
2392
2404
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.size_gi_b #=> Integer
|
2393
2405
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
|
2394
2406
|
# resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
|
2407
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
|
2408
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
|
2409
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
|
2410
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
|
2411
|
+
# resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
|
2395
2412
|
# resp.configuration.service_managed_ec2.instance_capabilities.allowed_instance_types #=> Array
|
2396
2413
|
# resp.configuration.service_managed_ec2.instance_capabilities.allowed_instance_types[0] #=> String
|
2397
2414
|
# resp.configuration.service_managed_ec2.instance_capabilities.excluded_instance_types #=> Array
|
@@ -3677,6 +3694,11 @@ module Aws::Deadline
|
|
3677
3694
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.size_gi_b #=> Integer
|
3678
3695
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
|
3679
3696
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
|
3697
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
|
3698
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
|
3699
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
|
3700
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
|
3701
|
+
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
|
3680
3702
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.allowed_instance_types #=> Array
|
3681
3703
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.allowed_instance_types[0] #=> String
|
3682
3704
|
# resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.excluded_instance_types #=> Array
|
@@ -5716,6 +5738,18 @@ module Aws::Deadline
|
|
5716
5738
|
# iops: 1,
|
5717
5739
|
# throughput_mi_b: 1,
|
5718
5740
|
# },
|
5741
|
+
# accelerator_capabilities: {
|
5742
|
+
# selections: [ # required
|
5743
|
+
# {
|
5744
|
+
# name: "t4", # required, accepts t4, a10g, l4, l40s
|
5745
|
+
# runtime: "AcceleratorRuntime",
|
5746
|
+
# },
|
5747
|
+
# ],
|
5748
|
+
# count: {
|
5749
|
+
# min: 1, # required
|
5750
|
+
# max: 1,
|
5751
|
+
# },
|
5752
|
+
# },
|
5719
5753
|
# allowed_instance_types: ["InstanceType"],
|
5720
5754
|
# excluded_instance_types: ["InstanceType"],
|
5721
5755
|
# custom_amounts: [
|
@@ -6412,7 +6446,7 @@ module Aws::Deadline
|
|
6412
6446
|
tracer: tracer
|
6413
6447
|
)
|
6414
6448
|
context[:gem_name] = 'aws-sdk-deadline'
|
6415
|
-
context[:gem_version] = '1.
|
6449
|
+
context[:gem_version] = '1.17.0'
|
6416
6450
|
Seahorse::Client::Request.new(handlers, context)
|
6417
6451
|
end
|
6418
6452
|
|
@@ -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
@@ -349,6 +349,18 @@ module Aws
|
|
349
349
|
iops: ::Integer?,
|
350
350
|
throughput_mi_b: ::Integer?
|
351
351
|
}?,
|
352
|
+
accelerator_capabilities: {
|
353
|
+
selections: Array[
|
354
|
+
{
|
355
|
+
name: ("t4" | "a10g" | "l4" | "l40s"),
|
356
|
+
runtime: ::String?
|
357
|
+
},
|
358
|
+
],
|
359
|
+
count: {
|
360
|
+
min: ::Integer,
|
361
|
+
max: ::Integer?
|
362
|
+
}?
|
363
|
+
}?,
|
352
364
|
allowed_instance_types: Array[::String]?,
|
353
365
|
excluded_instance_types: Array[::String]?,
|
354
366
|
custom_amounts: Array[
|
@@ -1838,6 +1850,18 @@ module Aws
|
|
1838
1850
|
iops: ::Integer?,
|
1839
1851
|
throughput_mi_b: ::Integer?
|
1840
1852
|
}?,
|
1853
|
+
accelerator_capabilities: {
|
1854
|
+
selections: Array[
|
1855
|
+
{
|
1856
|
+
name: ("t4" | "a10g" | "l4" | "l40s"),
|
1857
|
+
runtime: ::String?
|
1858
|
+
},
|
1859
|
+
],
|
1860
|
+
count: {
|
1861
|
+
min: ::Integer,
|
1862
|
+
max: ::Integer?
|
1863
|
+
}?
|
1864
|
+
}?,
|
1841
1865
|
allowed_instance_types: Array[::String]?,
|
1842
1866
|
excluded_instance_types: Array[::String]?,
|
1843
1867
|
custom_amounts: Array[
|
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.17.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-
|
11
|
+
date: 2024-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|