aws-sdk-deadline 1.25.0 → 1.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a830728a01b0516e48afd4d12b76852765fe0e08f30790ab7c44df804581b0a
4
- data.tar.gz: b2eef35b47cde8f5b7233928103c5b0a64e893eab1c4e2142e07081f38b4f95f
3
+ metadata.gz: d8a7711806657ac4ea0ecb22b3c9d4da1c8f3cde6bc03d6f2d3a0cc4d9ccbec2
4
+ data.tar.gz: 3e6ebb211f29ba49e277352c3b2c265a46772709b421f88bdae8b128d4277b20
5
5
  SHA512:
6
- metadata.gz: 1c32f551a6849deb68fac34c53137185560dd2d9e3ac6c7672c4a41f9486d6b5fba2b0164a7128109812007207281e1f1fa24d39826595e6e98131603105dc17
7
- data.tar.gz: df8428053b51be1cde3b5877c5913fa45401b5ac95bd72e7774af5160c395cd1d3efce1ce01b4f1b84901d353732402cbc49fd6e0c8d7b8da6f9da59a7773448
6
+ metadata.gz: 453cdb79ad801ae6e48df2298ed1a16d156701e615bd82b0a3252535c2065e0ab38c7a71b316188ebdbddfdf58e4ad7368a0cd8e00a4287c46724c5868f807d5
7
+ data.tar.gz: c56cf5a5c4f069ae82463cedab37703f885cdfbe393190372f9563d43935ce31acee4d3e9a9800477762154356b5dfc8c051ab01a9170f8d50bac55826c8a564
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2025-06-02)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.26.0 (2025-05-27)
10
+ ------------------
11
+
12
+ * Feature - AWS Deadline Cloud service-managed fleets now support storage profiles. With storage profiles, you can map file paths between a workstation and the worker hosts running the job.
13
+
4
14
  1.25.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -1292,6 +1292,7 @@ module Aws::Deadline
1292
1292
  # instance_market_options: { # required
1293
1293
  # type: "on-demand", # required, accepts on-demand, spot
1294
1294
  # },
1295
+ # storage_profile_id: "StorageProfileId",
1295
1296
  # },
1296
1297
  # },
1297
1298
  # tags: {
@@ -2667,6 +2668,7 @@ module Aws::Deadline
2667
2668
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
2668
2669
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
2669
2670
  # resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
2671
+ # resp.configuration.service_managed_ec2.storage_profile_id #=> String
2670
2672
  # resp.host_configuration.script_body #=> String
2671
2673
  # resp.host_configuration.script_timeout_seconds #=> Integer
2672
2674
  # resp.capabilities.amounts #=> Array
@@ -4073,6 +4075,7 @@ module Aws::Deadline
4073
4075
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
4074
4076
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
4075
4077
  # resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
4078
+ # resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
4076
4079
  # resp.fleets[0].created_at #=> Time
4077
4080
  # resp.fleets[0].created_by #=> String
4078
4081
  # resp.fleets[0].updated_at #=> Time
@@ -6265,6 +6268,7 @@ module Aws::Deadline
6265
6268
  # instance_market_options: { # required
6266
6269
  # type: "on-demand", # required, accepts on-demand, spot
6267
6270
  # },
6271
+ # storage_profile_id: "StorageProfileId",
6268
6272
  # },
6269
6273
  # },
6270
6274
  # host_configuration: {
@@ -7058,7 +7062,7 @@ module Aws::Deadline
7058
7062
  tracer: tracer
7059
7063
  )
7060
7064
  context[:gem_name] = 'aws-sdk-deadline'
7061
- context[:gem_version] = '1.25.0'
7065
+ context[:gem_version] = '1.27.0'
7062
7066
  Seahorse::Client::Request.new(handlers, context)
7063
7067
  end
7064
7068
 
@@ -2398,6 +2398,7 @@ module Aws::Deadline
2398
2398
 
2399
2399
  ServiceManagedEc2FleetConfiguration.add_member(:instance_capabilities, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceCapabilities, required: true, location_name: "instanceCapabilities"))
2400
2400
  ServiceManagedEc2FleetConfiguration.add_member(:instance_market_options, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceMarketOptions, required: true, location_name: "instanceMarketOptions"))
2401
+ ServiceManagedEc2FleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
2401
2402
  ServiceManagedEc2FleetConfiguration.struct_class = Types::ServiceManagedEc2FleetConfiguration
2402
2403
 
2403
2404
  ServiceManagedEc2InstanceCapabilities.add_member(:v_cpu_count, Shapes::ShapeRef.new(shape: VCpuCountRange, required: true, location_name: "vCpuCount"))
@@ -8009,11 +8009,16 @@ module Aws::Deadline
8009
8009
  # The Amazon EC2 market type.
8010
8010
  # @return [Types::ServiceManagedEc2InstanceMarketOptions]
8011
8011
  #
8012
+ # @!attribute [rw] storage_profile_id
8013
+ # The storage profile ID.
8014
+ # @return [String]
8015
+ #
8012
8016
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ServiceManagedEc2FleetConfiguration AWS API Documentation
8013
8017
  #
8014
8018
  class ServiceManagedEc2FleetConfiguration < Struct.new(
8015
8019
  :instance_capabilities,
8016
- :instance_market_options)
8020
+ :instance_market_options,
8021
+ :storage_profile_id)
8017
8022
  SENSITIVE = []
8018
8023
  include Aws::Structure
8019
8024
  end
@@ -55,7 +55,7 @@ module Aws::Deadline
55
55
  autoload :EndpointProvider, 'aws-sdk-deadline/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-deadline/endpoints'
57
57
 
58
- GEM_VERSION = '1.25.0'
58
+ GEM_VERSION = '1.27.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -382,7 +382,8 @@ module Aws
382
382
  },
383
383
  instance_market_options: {
384
384
  type: ("on-demand" | "spot")
385
- }
385
+ },
386
+ storage_profile_id: ::String?
386
387
  }?
387
388
  },
388
389
  ?tags: Hash[::String, ::String],
@@ -2011,7 +2012,8 @@ module Aws
2011
2012
  },
2012
2013
  instance_market_options: {
2013
2014
  type: ("on-demand" | "spot")
2014
- }
2015
+ },
2016
+ storage_profile_id: ::String?
2015
2017
  }?
2016
2018
  },
2017
2019
  ?host_configuration: {
data/sig/types.rbs CHANGED
@@ -2202,6 +2202,7 @@ module Aws::Deadline
2202
2202
  class ServiceManagedEc2FleetConfiguration
2203
2203
  attr_accessor instance_capabilities: Types::ServiceManagedEc2InstanceCapabilities
2204
2204
  attr_accessor instance_market_options: Types::ServiceManagedEc2InstanceMarketOptions
2205
+ attr_accessor storage_profile_id: ::String
2205
2206
  SENSITIVE: []
2206
2207
  end
2207
2208
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-deadline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.216.0
21
+ version: 3.225.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.216.0
31
+ version: 3.225.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
84
84
  requirements:
85
85
  - - ">="
86
86
  - !ruby/object:Gem::Version
87
- version: '2.5'
87
+ version: '2.7'
88
88
  required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  requirements:
90
90
  - - ">="