aws-sdk-deadline 1.28.0 → 1.30.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: 19cc151a9e79c9851f24b700946226c3eccd93758ab6189d07c9ccf034b0d030
4
- data.tar.gz: 9b70fa592f712d115379da6d1de040bf683c63b35b913b1e91bfa0b1888cf4c3
3
+ metadata.gz: c7af144c4a1107100398ded5a113ec9c33d23b4ad82b7bf32614d494048af996
4
+ data.tar.gz: 5d4f7370143ed5ef66f6fc229dc616251329357541d13b7292dbcee4443b250b
5
5
  SHA512:
6
- metadata.gz: 5a213d6089fcaa5391a703ee216527e66524ac04e1eeeac7dac52aee5400d34ed4516030ed986fb9f2072ccbc903ede9d918e740a746e240f7cefe210d948441
7
- data.tar.gz: 4db34945331273947b7dbc661430b1200f6f786bc59b79747bc3b1d56946c4eafbd40b9bdd913deb957bf56127d8b907773aad817be5ec82f5b053b9505a39ce
6
+ metadata.gz: 488dc714008a3d279dedf723ec4cbe5ca0c4bac88db9149430944b111f919b63190ab11d8b2f7b579874d565253f4458229089c1b3264d6942ed1c864cde7356
7
+ data.tar.gz: 3c4986e2903cad36ae178b133310e8b79b0b6f5422590d0e31c27aa03c588f6b40e50d6ac7dfd4d1aa92ecbb943566ec2f51bbec7b53695e5e966f62794e354b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Add support for VPC resource endpoints in Service Managed Fleets
8
+
9
+ 1.29.0 (2025-07-03)
10
+ ------------------
11
+
12
+ * Feature - Added fields for output manifest reporting and task chunking parameters
13
+
4
14
  1.28.0 (2025-06-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -95,7 +95,7 @@ module Aws::Deadline
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::Deadline
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::Deadline
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::Deadline
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::Deadline
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -1292,6 +1302,9 @@ module Aws::Deadline
1292
1302
  # instance_market_options: { # required
1293
1303
  # type: "on-demand", # required, accepts on-demand, spot
1294
1304
  # },
1305
+ # vpc_configuration: {
1306
+ # resource_configuration_arns: ["VpcResourceConfigurationArn"],
1307
+ # },
1295
1308
  # storage_profile_id: "StorageProfileId",
1296
1309
  # },
1297
1310
  # },
@@ -2668,6 +2681,8 @@ module Aws::Deadline
2668
2681
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
2669
2682
  # resp.configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
2670
2683
  # resp.configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
2684
+ # resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
2685
+ # resp.configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
2671
2686
  # resp.configuration.service_managed_ec2.storage_profile_id #=> String
2672
2687
  # resp.host_configuration.script_body #=> String
2673
2688
  # resp.host_configuration.script_timeout_seconds #=> Integer
@@ -3286,6 +3301,7 @@ module Aws::Deadline
3286
3301
  # * {Types::GetSessionActionResponse#progress_message #progress_message} => String
3287
3302
  # * {Types::GetSessionActionResponse#definition #definition} => Types::SessionActionDefinition
3288
3303
  # * {Types::GetSessionActionResponse#acquired_limits #acquired_limits} => Array&lt;Types::AcquiredLimit&gt;
3304
+ # * {Types::GetSessionActionResponse#manifests #manifests} => Array&lt;Types::TaskRunManifestPropertiesResponse&gt;
3289
3305
  #
3290
3306
  # @example Request syntax with placeholder values
3291
3307
  #
@@ -3316,10 +3332,14 @@ module Aws::Deadline
3316
3332
  # resp.definition.task_run.parameters["String"].float #=> String
3317
3333
  # resp.definition.task_run.parameters["String"].string #=> String
3318
3334
  # resp.definition.task_run.parameters["String"].path #=> String
3335
+ # resp.definition.task_run.parameters["String"].chunk_int #=> String
3319
3336
  # resp.definition.sync_input_job_attachments.step_id #=> String
3320
3337
  # resp.acquired_limits #=> Array
3321
3338
  # resp.acquired_limits[0].limit_id #=> String
3322
3339
  # resp.acquired_limits[0].count #=> Integer
3340
+ # resp.manifests #=> Array
3341
+ # resp.manifests[0].output_manifest_path #=> String
3342
+ # resp.manifests[0].output_manifest_hash #=> String
3323
3343
  #
3324
3344
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetSessionAction AWS API Documentation
3325
3345
  #
@@ -3484,7 +3504,7 @@ module Aws::Deadline
3484
3504
  # resp.required_capabilities.amounts[0].value #=> Float
3485
3505
  # resp.parameter_space.parameters #=> Array
3486
3506
  # resp.parameter_space.parameters[0].name #=> String
3487
- # resp.parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH"
3507
+ # resp.parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
3488
3508
  # resp.parameter_space.combination #=> String
3489
3509
  # resp.description #=> String
3490
3510
  #
@@ -3646,6 +3666,7 @@ module Aws::Deadline
3646
3666
  # resp.parameters["String"].float #=> String
3647
3667
  # resp.parameters["String"].string #=> String
3648
3668
  # resp.parameters["String"].path #=> String
3669
+ # resp.parameters["String"].chunk_int #=> String
3649
3670
  # resp.started_at #=> Time
3650
3671
  # resp.ended_at #=> Time
3651
3672
  # resp.updated_at #=> Time
@@ -4079,6 +4100,8 @@ module Aws::Deadline
4079
4100
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values #=> Array
4080
4101
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.custom_attributes[0].values[0] #=> String
4081
4102
  # resp.fleets[0].configuration.service_managed_ec2.instance_market_options.type #=> String, one of "on-demand", "spot"
4103
+ # resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns #=> Array
4104
+ # resp.fleets[0].configuration.service_managed_ec2.vpc_configuration.resource_configuration_arns[0] #=> String
4082
4105
  # resp.fleets[0].configuration.service_managed_ec2.storage_profile_id #=> String
4083
4106
  # resp.fleets[0].created_at #=> Time
4084
4107
  # resp.fleets[0].created_by #=> String
@@ -4806,7 +4829,16 @@ module Aws::Deadline
4806
4829
  # resp.session_actions[0].definition.env_exit.environment_id #=> String
4807
4830
  # resp.session_actions[0].definition.task_run.task_id #=> String
4808
4831
  # resp.session_actions[0].definition.task_run.step_id #=> String
4832
+ # resp.session_actions[0].definition.task_run.parameters #=> Hash
4833
+ # resp.session_actions[0].definition.task_run.parameters["String"].int #=> String
4834
+ # resp.session_actions[0].definition.task_run.parameters["String"].float #=> String
4835
+ # resp.session_actions[0].definition.task_run.parameters["String"].string #=> String
4836
+ # resp.session_actions[0].definition.task_run.parameters["String"].path #=> String
4837
+ # resp.session_actions[0].definition.task_run.parameters["String"].chunk_int #=> String
4809
4838
  # resp.session_actions[0].definition.sync_input_job_attachments.step_id #=> String
4839
+ # resp.session_actions[0].manifests #=> Array
4840
+ # resp.session_actions[0].manifests[0].output_manifest_path #=> String
4841
+ # resp.session_actions[0].manifests[0].output_manifest_hash #=> String
4810
4842
  # resp.next_token #=> String
4811
4843
  #
4812
4844
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListSessionActions AWS API Documentation
@@ -5292,6 +5324,7 @@ module Aws::Deadline
5292
5324
  # resp.tasks[0].parameters["String"].float #=> String
5293
5325
  # resp.tasks[0].parameters["String"].string #=> String
5294
5326
  # resp.tasks[0].parameters["String"].path #=> String
5327
+ # resp.tasks[0].parameters["String"].chunk_int #=> String
5295
5328
  # resp.tasks[0].started_at #=> Time
5296
5329
  # resp.tasks[0].ended_at #=> Time
5297
5330
  # resp.tasks[0].updated_at #=> Time
@@ -5503,6 +5536,8 @@ module Aws::Deadline
5503
5536
  # resp.jobs[0].created_at #=> Time
5504
5537
  # resp.jobs[0].ended_at #=> Time
5505
5538
  # resp.jobs[0].started_at #=> Time
5539
+ # resp.jobs[0].updated_at #=> Time
5540
+ # resp.jobs[0].updated_by #=> String
5506
5541
  # resp.jobs[0].job_parameters #=> Hash
5507
5542
  # resp.jobs[0].job_parameters["JobParametersKeyString"].int #=> String
5508
5543
  # resp.jobs[0].job_parameters["JobParametersKeyString"].float #=> String
@@ -5623,11 +5658,14 @@ module Aws::Deadline
5623
5658
  # resp.steps[0].task_run_status_counts["TaskRunStatus"] #=> Integer
5624
5659
  # resp.steps[0].task_failure_retry_count #=> Integer
5625
5660
  # resp.steps[0].created_at #=> Time
5661
+ # resp.steps[0].created_by #=> String
5626
5662
  # resp.steps[0].started_at #=> Time
5627
5663
  # resp.steps[0].ended_at #=> Time
5664
+ # resp.steps[0].updated_at #=> Time
5665
+ # resp.steps[0].updated_by #=> String
5628
5666
  # resp.steps[0].parameter_space.parameters #=> Array
5629
5667
  # resp.steps[0].parameter_space.parameters[0].name #=> String
5630
- # resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH"
5668
+ # resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
5631
5669
  # resp.steps[0].parameter_space.combination #=> String
5632
5670
  # resp.next_item_offset #=> Integer
5633
5671
  # resp.total_results #=> Integer
@@ -5741,9 +5779,12 @@ module Aws::Deadline
5741
5779
  # resp.tasks[0].parameters["String"].float #=> String
5742
5780
  # resp.tasks[0].parameters["String"].string #=> String
5743
5781
  # resp.tasks[0].parameters["String"].path #=> String
5782
+ # resp.tasks[0].parameters["String"].chunk_int #=> String
5744
5783
  # resp.tasks[0].failure_retry_count #=> Integer
5745
5784
  # resp.tasks[0].started_at #=> Time
5746
5785
  # resp.tasks[0].ended_at #=> Time
5786
+ # resp.tasks[0].updated_at #=> Time
5787
+ # resp.tasks[0].updated_by #=> String
5747
5788
  # resp.next_item_offset #=> Integer
5748
5789
  # resp.total_results #=> Integer
5749
5790
  #
@@ -6276,6 +6317,9 @@ module Aws::Deadline
6276
6317
  # instance_market_options: { # required
6277
6318
  # type: "on-demand", # required, accepts on-demand, spot
6278
6319
  # },
6320
+ # vpc_configuration: {
6321
+ # resource_configuration_arns: ["VpcResourceConfigurationArn"],
6322
+ # },
6279
6323
  # storage_profile_id: "StorageProfileId",
6280
6324
  # },
6281
6325
  # },
@@ -7010,6 +7054,12 @@ module Aws::Deadline
7010
7054
  # ended_at: Time.now,
7011
7055
  # updated_at: Time.now,
7012
7056
  # progress_percent: 1.0,
7057
+ # manifests: [
7058
+ # {
7059
+ # output_manifest_path: "TaskRunManifestPropertiesRequestOutputManifestPathString",
7060
+ # output_manifest_hash: "TaskRunManifestPropertiesRequestOutputManifestHashString",
7061
+ # },
7062
+ # ],
7013
7063
  # },
7014
7064
  # },
7015
7065
  # })
@@ -7030,6 +7080,7 @@ module Aws::Deadline
7030
7080
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].float #=> String
7031
7081
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].string #=> String
7032
7082
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].path #=> String
7083
+ # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].chunk_int #=> String
7033
7084
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.sync_input_job_attachments.step_id #=> String
7034
7085
  # resp.assigned_sessions["SessionId"].log_configuration.log_driver #=> String
7035
7086
  # resp.assigned_sessions["SessionId"].log_configuration.options #=> Hash
@@ -7070,7 +7121,7 @@ module Aws::Deadline
7070
7121
  tracer: tracer
7071
7122
  )
7072
7123
  context[:gem_name] = 'aws-sdk-deadline'
7073
- context[:gem_version] = '1.28.0'
7124
+ context[:gem_version] = '1.30.0'
7074
7125
  Seahorse::Client::Request.new(handlers, context)
7075
7126
  end
7076
7127
 
@@ -567,6 +567,12 @@ module Aws::Deadline
567
567
  TaskParameterValue = Shapes::UnionShape.new(name: 'TaskParameterValue')
568
568
  TaskParameters = Shapes::MapShape.new(name: 'TaskParameters')
569
569
  TaskRetryCount = Shapes::IntegerShape.new(name: 'TaskRetryCount')
570
+ TaskRunManifestPropertiesListRequest = Shapes::ListShape.new(name: 'TaskRunManifestPropertiesListRequest')
571
+ TaskRunManifestPropertiesListResponse = Shapes::ListShape.new(name: 'TaskRunManifestPropertiesListResponse')
572
+ TaskRunManifestPropertiesRequest = Shapes::StructureShape.new(name: 'TaskRunManifestPropertiesRequest')
573
+ TaskRunManifestPropertiesRequestOutputManifestHashString = Shapes::StringShape.new(name: 'TaskRunManifestPropertiesRequestOutputManifestHashString')
574
+ TaskRunManifestPropertiesRequestOutputManifestPathString = Shapes::StringShape.new(name: 'TaskRunManifestPropertiesRequestOutputManifestPathString')
575
+ TaskRunManifestPropertiesResponse = Shapes::StructureShape.new(name: 'TaskRunManifestPropertiesResponse')
570
576
  TaskRunSessionActionDefinition = Shapes::StructureShape.new(name: 'TaskRunSessionActionDefinition')
571
577
  TaskRunSessionActionDefinitionSummary = Shapes::StructureShape.new(name: 'TaskRunSessionActionDefinitionSummary')
572
578
  TaskRunStatus = Shapes::StringShape.new(name: 'TaskRunStatus')
@@ -638,7 +644,10 @@ module Aws::Deadline
638
644
  ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
639
645
  ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
640
646
  ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
647
+ VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
641
648
  VpcId = Shapes::StringShape.new(name: 'VpcId')
649
+ VpcResourceConfigurationArn = Shapes::StringShape.new(name: 'VpcResourceConfigurationArn')
650
+ VpcResourceConfigurationArns = Shapes::ListShape.new(name: 'VpcResourceConfigurationArns')
642
651
  WindowsUser = Shapes::StructureShape.new(name: 'WindowsUser')
643
652
  WindowsUserPasswordArnString = Shapes::StringShape.new(name: 'WindowsUserPasswordArnString')
644
653
  WindowsUserUserString = Shapes::StringShape.new(name: 'WindowsUserUserString')
@@ -1539,6 +1548,7 @@ module Aws::Deadline
1539
1548
  GetSessionActionResponse.add_member(:progress_message, Shapes::ShapeRef.new(shape: SessionActionProgressMessage, location_name: "progressMessage"))
1540
1549
  GetSessionActionResponse.add_member(:definition, Shapes::ShapeRef.new(shape: SessionActionDefinition, required: true, location_name: "definition"))
1541
1550
  GetSessionActionResponse.add_member(:acquired_limits, Shapes::ShapeRef.new(shape: AcquiredLimits, location_name: "acquiredLimits"))
1551
+ GetSessionActionResponse.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListResponse, location_name: "manifests"))
1542
1552
  GetSessionActionResponse.struct_class = Types::GetSessionActionResponse
1543
1553
 
1544
1554
  GetSessionRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
@@ -1801,6 +1811,8 @@ module Aws::Deadline
1801
1811
  JobSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
1802
1812
  JobSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
1803
1813
  JobSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
1814
+ JobSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
1815
+ JobSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
1804
1816
  JobSearchSummary.add_member(:job_parameters, Shapes::ShapeRef.new(shape: JobParameters, location_name: "jobParameters"))
1805
1817
  JobSearchSummary.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
1806
1818
  JobSearchSummary.add_member(:source_job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "sourceJobId"))
@@ -2403,6 +2415,7 @@ module Aws::Deadline
2403
2415
 
2404
2416
  ServiceManagedEc2FleetConfiguration.add_member(:instance_capabilities, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceCapabilities, required: true, location_name: "instanceCapabilities"))
2405
2417
  ServiceManagedEc2FleetConfiguration.add_member(:instance_market_options, Shapes::ShapeRef.new(shape: ServiceManagedEc2InstanceMarketOptions, required: true, location_name: "instanceMarketOptions"))
2418
+ ServiceManagedEc2FleetConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: VpcConfiguration, location_name: "vpcConfiguration"))
2406
2419
  ServiceManagedEc2FleetConfiguration.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
2407
2420
  ServiceManagedEc2FleetConfiguration.struct_class = Types::ServiceManagedEc2FleetConfiguration
2408
2421
 
@@ -2465,6 +2478,7 @@ module Aws::Deadline
2465
2478
  SessionActionSummary.add_member(:worker_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "workerUpdatedAt"))
2466
2479
  SessionActionSummary.add_member(:progress_percent, Shapes::ShapeRef.new(shape: SessionActionProgressPercent, location_name: "progressPercent"))
2467
2480
  SessionActionSummary.add_member(:definition, Shapes::ShapeRef.new(shape: SessionActionDefinitionSummary, required: true, location_name: "definition"))
2481
+ SessionActionSummary.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListResponse, location_name: "manifests"))
2468
2482
  SessionActionSummary.struct_class = Types::SessionActionSummary
2469
2483
 
2470
2484
  SessionSummaries.member = Shapes::ShapeRef.new(shape: SessionSummary)
@@ -2595,8 +2609,11 @@ module Aws::Deadline
2595
2609
  StepSearchSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
2596
2610
  StepSearchSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
2597
2611
  StepSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
2612
+ StepSearchSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
2598
2613
  StepSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
2599
2614
  StepSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
2615
+ StepSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
2616
+ StepSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
2600
2617
  StepSearchSummary.add_member(:parameter_space, Shapes::ShapeRef.new(shape: ParameterSpace, location_name: "parameterSpace"))
2601
2618
  StepSearchSummary.struct_class = Types::StepSearchSummary
2602
2619
 
@@ -2652,17 +2669,31 @@ module Aws::Deadline
2652
2669
  TaskParameterValue.add_member(:float, Shapes::ShapeRef.new(shape: FloatString, location_name: "float"))
2653
2670
  TaskParameterValue.add_member(:string, Shapes::ShapeRef.new(shape: ParameterString, location_name: "string"))
2654
2671
  TaskParameterValue.add_member(:path, Shapes::ShapeRef.new(shape: PathString, location_name: "path"))
2672
+ TaskParameterValue.add_member(:chunk_int, Shapes::ShapeRef.new(shape: String, location_name: "chunkInt"))
2655
2673
  TaskParameterValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2656
2674
  TaskParameterValue.add_member_subclass(:int, Types::TaskParameterValue::Int)
2657
2675
  TaskParameterValue.add_member_subclass(:float, Types::TaskParameterValue::Float)
2658
2676
  TaskParameterValue.add_member_subclass(:string, Types::TaskParameterValue::String)
2659
2677
  TaskParameterValue.add_member_subclass(:path, Types::TaskParameterValue::Path)
2678
+ TaskParameterValue.add_member_subclass(:chunk_int, Types::TaskParameterValue::ChunkInt)
2660
2679
  TaskParameterValue.add_member_subclass(:unknown, Types::TaskParameterValue::Unknown)
2661
2680
  TaskParameterValue.struct_class = Types::TaskParameterValue
2662
2681
 
2663
2682
  TaskParameters.key = Shapes::ShapeRef.new(shape: String)
2664
2683
  TaskParameters.value = Shapes::ShapeRef.new(shape: TaskParameterValue)
2665
2684
 
2685
+ TaskRunManifestPropertiesListRequest.member = Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequest)
2686
+
2687
+ TaskRunManifestPropertiesListResponse.member = Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesResponse)
2688
+
2689
+ TaskRunManifestPropertiesRequest.add_member(:output_manifest_path, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequestOutputManifestPathString, location_name: "outputManifestPath"))
2690
+ TaskRunManifestPropertiesRequest.add_member(:output_manifest_hash, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequestOutputManifestHashString, location_name: "outputManifestHash"))
2691
+ TaskRunManifestPropertiesRequest.struct_class = Types::TaskRunManifestPropertiesRequest
2692
+
2693
+ TaskRunManifestPropertiesResponse.add_member(:output_manifest_path, Shapes::ShapeRef.new(shape: String, location_name: "outputManifestPath"))
2694
+ TaskRunManifestPropertiesResponse.add_member(:output_manifest_hash, Shapes::ShapeRef.new(shape: String, location_name: "outputManifestHash"))
2695
+ TaskRunManifestPropertiesResponse.struct_class = Types::TaskRunManifestPropertiesResponse
2696
+
2666
2697
  TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2667
2698
  TaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
2668
2699
  TaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
@@ -2670,6 +2701,7 @@ module Aws::Deadline
2670
2701
 
2671
2702
  TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2672
2703
  TaskRunSessionActionDefinitionSummary.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
2704
+ TaskRunSessionActionDefinitionSummary.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, location_name: "parameters"))
2673
2705
  TaskRunSessionActionDefinitionSummary.struct_class = Types::TaskRunSessionActionDefinitionSummary
2674
2706
 
2675
2707
  TaskRunStatusCounts.key = Shapes::ShapeRef.new(shape: TaskRunStatus)
@@ -2687,6 +2719,8 @@ module Aws::Deadline
2687
2719
  TaskSearchSummary.add_member(:failure_retry_count, Shapes::ShapeRef.new(shape: TaskRetryCount, location_name: "failureRetryCount"))
2688
2720
  TaskSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
2689
2721
  TaskSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
2722
+ TaskSearchSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
2723
+ TaskSearchSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
2690
2724
  TaskSearchSummary.struct_class = Types::TaskSearchSummary
2691
2725
 
2692
2726
  TaskSummaries.member = Shapes::ShapeRef.new(shape: TaskSummary)
@@ -2901,6 +2935,7 @@ module Aws::Deadline
2901
2935
  UpdatedSessionActionInfo.add_member(:ended_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "endedAt"))
2902
2936
  UpdatedSessionActionInfo.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
2903
2937
  UpdatedSessionActionInfo.add_member(:progress_percent, Shapes::ShapeRef.new(shape: SessionActionProgressPercent, location_name: "progressPercent"))
2938
+ UpdatedSessionActionInfo.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListRequest, location_name: "manifests"))
2904
2939
  UpdatedSessionActionInfo.struct_class = Types::UpdatedSessionActionInfo
2905
2940
 
2906
2941
  UpdatedSessionActions.key = Shapes::ShapeRef.new(shape: SessionActionId)
@@ -2935,6 +2970,11 @@ module Aws::Deadline
2935
2970
 
2936
2971
  ValidationExceptionFieldList.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
2937
2972
 
2973
+ VpcConfiguration.add_member(:resource_configuration_arns, Shapes::ShapeRef.new(shape: VpcResourceConfigurationArns, location_name: "resourceConfigurationArns"))
2974
+ VpcConfiguration.struct_class = Types::VpcConfiguration
2975
+
2976
+ VpcResourceConfigurationArns.member = Shapes::ShapeRef.new(shape: VpcResourceConfigurationArn)
2977
+
2938
2978
  WindowsUser.add_member(:user, Shapes::ShapeRef.new(shape: WindowsUserUserString, required: true, location_name: "user"))
2939
2979
  WindowsUser.add_member(:password_arn, Shapes::ShapeRef.new(shape: WindowsUserPasswordArnString, required: true, location_name: "passwordArn"))
2940
2980
  WindowsUser.struct_class = Types::WindowsUser
@@ -3988,6 +3988,11 @@ module Aws::Deadline
3988
3988
  # limits were acquired during the session, this field isn't returned.
3989
3989
  # @return [Array<Types::AcquiredLimit>]
3990
3990
  #
3991
+ # @!attribute [rw] manifests
3992
+ # The list of manifest properties that describe file attachments for
3993
+ # the task run.
3994
+ # @return [Array<Types::TaskRunManifestPropertiesResponse>]
3995
+ #
3991
3996
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetSessionActionResponse AWS API Documentation
3992
3997
  #
3993
3998
  class GetSessionActionResponse < Struct.new(
@@ -4001,7 +4006,8 @@ module Aws::Deadline
4001
4006
  :process_exit_code,
4002
4007
  :progress_message,
4003
4008
  :definition,
4004
- :acquired_limits)
4009
+ :acquired_limits,
4010
+ :manifests)
4005
4011
  SENSITIVE = [:progress_message]
4006
4012
  include Aws::Structure
4007
4013
  end
@@ -5182,6 +5188,14 @@ module Aws::Deadline
5182
5188
  # The date and time the resource started running.
5183
5189
  # @return [Time]
5184
5190
  #
5191
+ # @!attribute [rw] updated_at
5192
+ # The date and time the resource was updated.
5193
+ # @return [Time]
5194
+ #
5195
+ # @!attribute [rw] updated_by
5196
+ # The user or system that updated this resource.
5197
+ # @return [String]
5198
+ #
5185
5199
  # @!attribute [rw] job_parameters
5186
5200
  # The job parameters.
5187
5201
  # @return [Hash<String,Types::JobParameter>]
@@ -5221,6 +5235,8 @@ module Aws::Deadline
5221
5235
  :created_at,
5222
5236
  :ended_at,
5223
5237
  :started_at,
5238
+ :updated_at,
5239
+ :updated_by,
5224
5240
  :job_parameters,
5225
5241
  :max_worker_count,
5226
5242
  :source_job_id)
@@ -8033,6 +8049,11 @@ module Aws::Deadline
8033
8049
  # The Amazon EC2 market type.
8034
8050
  # @return [Types::ServiceManagedEc2InstanceMarketOptions]
8035
8051
  #
8052
+ # @!attribute [rw] vpc_configuration
8053
+ # The VPC configuration details for a service managed Amazon EC2
8054
+ # fleet.
8055
+ # @return [Types::VpcConfiguration]
8056
+ #
8036
8057
  # @!attribute [rw] storage_profile_id
8037
8058
  # The storage profile ID.
8038
8059
  # @return [String]
@@ -8042,6 +8063,7 @@ module Aws::Deadline
8042
8063
  class ServiceManagedEc2FleetConfiguration < Struct.new(
8043
8064
  :instance_capabilities,
8044
8065
  :instance_market_options,
8066
+ :vpc_configuration,
8045
8067
  :storage_profile_id)
8046
8068
  SENSITIVE = []
8047
8069
  include Aws::Structure
@@ -8279,6 +8301,11 @@ module Aws::Deadline
8279
8301
  # The session action definition.
8280
8302
  # @return [Types::SessionActionDefinitionSummary]
8281
8303
  #
8304
+ # @!attribute [rw] manifests
8305
+ # The list of manifest properties that describe file attachments for
8306
+ # the task run.
8307
+ # @return [Array<Types::TaskRunManifestPropertiesResponse>]
8308
+ #
8282
8309
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SessionActionSummary AWS API Documentation
8283
8310
  #
8284
8311
  class SessionActionSummary < Struct.new(
@@ -8288,7 +8315,8 @@ module Aws::Deadline
8288
8315
  :ended_at,
8289
8316
  :worker_updated_at,
8290
8317
  :progress_percent,
8291
- :definition)
8318
+ :definition,
8319
+ :manifests)
8292
8320
  SENSITIVE = []
8293
8321
  include Aws::Structure
8294
8322
  end
@@ -8824,6 +8852,10 @@ module Aws::Deadline
8824
8852
  # The date and time the resource was created.
8825
8853
  # @return [Time]
8826
8854
  #
8855
+ # @!attribute [rw] created_by
8856
+ # The user or system that created this resource.
8857
+ # @return [String]
8858
+ #
8827
8859
  # @!attribute [rw] started_at
8828
8860
  # The date and time the resource started running.
8829
8861
  # @return [Time]
@@ -8832,6 +8864,14 @@ module Aws::Deadline
8832
8864
  # The date and time the resource ended running.
8833
8865
  # @return [Time]
8834
8866
  #
8867
+ # @!attribute [rw] updated_at
8868
+ # The date and time the resource was updated.
8869
+ # @return [Time]
8870
+ #
8871
+ # @!attribute [rw] updated_by
8872
+ # The user or system that updated this resource.
8873
+ # @return [String]
8874
+ #
8835
8875
  # @!attribute [rw] parameter_space
8836
8876
  # The parameters and combination expressions for the search.
8837
8877
  # @return [Types::ParameterSpace]
@@ -8850,8 +8890,11 @@ module Aws::Deadline
8850
8890
  :task_run_status_counts,
8851
8891
  :task_failure_retry_count,
8852
8892
  :created_at,
8893
+ :created_by,
8853
8894
  :started_at,
8854
8895
  :ended_at,
8896
+ :updated_at,
8897
+ :updated_by,
8855
8898
  :parameter_space)
8856
8899
  SENSITIVE = []
8857
8900
  include Aws::Structure
@@ -9085,6 +9128,11 @@ module Aws::Deadline
9085
9128
  # A file system path represented as a string.
9086
9129
  # @return [String]
9087
9130
  #
9131
+ # @!attribute [rw] chunk_int
9132
+ # A range (for example 1-10) or selection of specific (for example
9133
+ # 1,3,7,8,10) integers represented as a string.
9134
+ # @return [String]
9135
+ #
9088
9136
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskParameterValue AWS API Documentation
9089
9137
  #
9090
9138
  class TaskParameterValue < Struct.new(
@@ -9092,6 +9140,7 @@ module Aws::Deadline
9092
9140
  :float,
9093
9141
  :string,
9094
9142
  :path,
9143
+ :chunk_int,
9095
9144
  :unknown)
9096
9145
  SENSITIVE = []
9097
9146
  include Aws::Structure
@@ -9101,9 +9150,50 @@ module Aws::Deadline
9101
9150
  class Float < TaskParameterValue; end
9102
9151
  class String < TaskParameterValue; end
9103
9152
  class Path < TaskParameterValue; end
9153
+ class ChunkInt < TaskParameterValue; end
9104
9154
  class Unknown < TaskParameterValue; end
9105
9155
  end
9106
9156
 
9157
+ # The output manifest properties reported by the worker agent for a
9158
+ # completed task run.
9159
+ #
9160
+ # @!attribute [rw] output_manifest_path
9161
+ # The manifest file path.
9162
+ # @return [String]
9163
+ #
9164
+ # @!attribute [rw] output_manifest_hash
9165
+ # The hash value of the file.
9166
+ # @return [String]
9167
+ #
9168
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunManifestPropertiesRequest AWS API Documentation
9169
+ #
9170
+ class TaskRunManifestPropertiesRequest < Struct.new(
9171
+ :output_manifest_path,
9172
+ :output_manifest_hash)
9173
+ SENSITIVE = []
9174
+ include Aws::Structure
9175
+ end
9176
+
9177
+ # The manifest properties for a task run, corresponding to the manifest
9178
+ # properties in the job.
9179
+ #
9180
+ # @!attribute [rw] output_manifest_path
9181
+ # The manifest file path.
9182
+ # @return [String]
9183
+ #
9184
+ # @!attribute [rw] output_manifest_hash
9185
+ # The hash value of the file.
9186
+ # @return [String]
9187
+ #
9188
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunManifestPropertiesResponse AWS API Documentation
9189
+ #
9190
+ class TaskRunManifestPropertiesResponse < Struct.new(
9191
+ :output_manifest_path,
9192
+ :output_manifest_hash)
9193
+ SENSITIVE = []
9194
+ include Aws::Structure
9195
+ end
9196
+
9107
9197
  # The task, step, and parameters for the task run in the session action.
9108
9198
  #
9109
9199
  # @!attribute [rw] task_id
@@ -9138,12 +9228,17 @@ module Aws::Deadline
9138
9228
  # The step ID.
9139
9229
  # @return [String]
9140
9230
  #
9231
+ # @!attribute [rw] parameters
9232
+ # The parameters of a task run in a session action.
9233
+ # @return [Hash<String,Types::TaskParameterValue>]
9234
+ #
9141
9235
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunSessionActionDefinitionSummary AWS API Documentation
9142
9236
  #
9143
9237
  class TaskRunSessionActionDefinitionSummary < Struct.new(
9144
9238
  :task_id,
9145
- :step_id)
9146
- SENSITIVE = []
9239
+ :step_id,
9240
+ :parameters)
9241
+ SENSITIVE = [:parameters]
9147
9242
  include Aws::Structure
9148
9243
  end
9149
9244
 
@@ -9189,6 +9284,14 @@ module Aws::Deadline
9189
9284
  # The date and time the resource ended running.
9190
9285
  # @return [Time]
9191
9286
  #
9287
+ # @!attribute [rw] updated_at
9288
+ # The date and time the resource was updated.
9289
+ # @return [Time]
9290
+ #
9291
+ # @!attribute [rw] updated_by
9292
+ # The user or system that updated this resource.
9293
+ # @return [String]
9294
+ #
9192
9295
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskSearchSummary AWS API Documentation
9193
9296
  #
9194
9297
  class TaskSearchSummary < Struct.new(
@@ -9201,7 +9304,9 @@ module Aws::Deadline
9201
9304
  :parameters,
9202
9305
  :failure_retry_count,
9203
9306
  :started_at,
9204
- :ended_at)
9307
+ :ended_at,
9308
+ :updated_at,
9309
+ :updated_by)
9205
9310
  SENSITIVE = [:parameters]
9206
9311
  include Aws::Structure
9207
9312
  end
@@ -10236,6 +10341,11 @@ module Aws::Deadline
10236
10341
  # The percentage completed.
10237
10342
  # @return [Float]
10238
10343
  #
10344
+ # @!attribute [rw] manifests
10345
+ # A list of output manifest properties reported by the worker agent,
10346
+ # with each entry corresponding to a manifest property in the job.
10347
+ # @return [Array<Types::TaskRunManifestPropertiesRequest>]
10348
+ #
10239
10349
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdatedSessionActionInfo AWS API Documentation
10240
10350
  #
10241
10351
  class UpdatedSessionActionInfo < Struct.new(
@@ -10245,7 +10355,8 @@ module Aws::Deadline
10245
10355
  :started_at,
10246
10356
  :ended_at,
10247
10357
  :updated_at,
10248
- :progress_percent)
10358
+ :progress_percent,
10359
+ :manifests)
10249
10360
  SENSITIVE = [:progress_message]
10250
10361
  include Aws::Structure
10251
10362
  end
@@ -10355,6 +10466,21 @@ module Aws::Deadline
10355
10466
  include Aws::Structure
10356
10467
  end
10357
10468
 
10469
+ # The configuration options for a service managed fleet's VPC.
10470
+ #
10471
+ # @!attribute [rw] resource_configuration_arns
10472
+ # The ARNs of the VPC Lattice resource configurations attached to the
10473
+ # fleet.
10474
+ # @return [Array<String>]
10475
+ #
10476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/VpcConfiguration AWS API Documentation
10477
+ #
10478
+ class VpcConfiguration < Struct.new(
10479
+ :resource_configuration_arns)
10480
+ SENSITIVE = []
10481
+ include Aws::Structure
10482
+ end
10483
+
10358
10484
  # The Windows user details.
10359
10485
  #
10360
10486
  # @!attribute [rw] user
@@ -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.28.0'
58
+ GEM_VERSION = '1.30.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -383,6 +384,9 @@ module Aws
383
384
  instance_market_options: {
384
385
  type: ("on-demand" | "spot")
385
386
  },
387
+ vpc_configuration: {
388
+ resource_configuration_arns: Array[::String]?
389
+ }?,
386
390
  storage_profile_id: ::String?
387
391
  }?
388
392
  },
@@ -1043,6 +1047,7 @@ module Aws
1043
1047
  def progress_message: () -> ::String
1044
1048
  def definition: () -> Types::SessionActionDefinition
1045
1049
  def acquired_limits: () -> ::Array[Types::AcquiredLimit]
1050
+ def manifests: () -> ::Array[Types::TaskRunManifestPropertiesResponse]
1046
1051
  end
1047
1052
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#get_session_action-instance_method
1048
1053
  def get_session_action: (
@@ -2015,6 +2020,9 @@ module Aws
2015
2020
  instance_market_options: {
2016
2021
  type: ("on-demand" | "spot")
2017
2022
  },
2023
+ vpc_configuration: {
2024
+ resource_configuration_arns: Array[::String]?
2025
+ }?,
2018
2026
  storage_profile_id: ::String?
2019
2027
  }?
2020
2028
  },
@@ -2265,7 +2273,13 @@ module Aws
2265
2273
  started_at: ::Time?,
2266
2274
  ended_at: ::Time?,
2267
2275
  updated_at: ::Time?,
2268
- progress_percent: ::Float?
2276
+ progress_percent: ::Float?,
2277
+ manifests: Array[
2278
+ {
2279
+ output_manifest_path: ::String?,
2280
+ output_manifest_hash: ::String?
2281
+ },
2282
+ ]?
2269
2283
  }]
2270
2284
  ) -> _UpdateWorkerScheduleResponseSuccess
2271
2285
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkerScheduleResponseSuccess
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -1130,6 +1130,7 @@ module Aws::Deadline
1130
1130
  attr_accessor progress_message: ::String
1131
1131
  attr_accessor definition: Types::SessionActionDefinition
1132
1132
  attr_accessor acquired_limits: ::Array[Types::AcquiredLimit]
1133
+ attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesResponse]
1133
1134
  SENSITIVE: [:progress_message]
1134
1135
  end
1135
1136
 
@@ -1457,6 +1458,8 @@ module Aws::Deadline
1457
1458
  attr_accessor created_at: ::Time
1458
1459
  attr_accessor ended_at: ::Time
1459
1460
  attr_accessor started_at: ::Time
1461
+ attr_accessor updated_at: ::Time
1462
+ attr_accessor updated_by: ::String
1460
1463
  attr_accessor job_parameters: ::Hash[::String, Types::JobParameter]
1461
1464
  attr_accessor max_worker_count: ::Integer
1462
1465
  attr_accessor source_job_id: ::String
@@ -2206,6 +2209,7 @@ module Aws::Deadline
2206
2209
  class ServiceManagedEc2FleetConfiguration
2207
2210
  attr_accessor instance_capabilities: Types::ServiceManagedEc2InstanceCapabilities
2208
2211
  attr_accessor instance_market_options: Types::ServiceManagedEc2InstanceMarketOptions
2212
+ attr_accessor vpc_configuration: Types::VpcConfiguration
2209
2213
  attr_accessor storage_profile_id: ::String
2210
2214
  SENSITIVE: []
2211
2215
  end
@@ -2288,6 +2292,7 @@ module Aws::Deadline
2288
2292
  attr_accessor worker_updated_at: ::Time
2289
2293
  attr_accessor progress_percent: ::Float
2290
2294
  attr_accessor definition: Types::SessionActionDefinitionSummary
2295
+ attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesResponse]
2291
2296
  SENSITIVE: []
2292
2297
  end
2293
2298
 
@@ -2412,7 +2417,7 @@ module Aws::Deadline
2412
2417
 
2413
2418
  class StepParameter
2414
2419
  attr_accessor name: ::String
2415
- attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH")
2420
+ attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH" | "CHUNK_INT")
2416
2421
  SENSITIVE: []
2417
2422
  end
2418
2423
 
@@ -2434,8 +2439,11 @@ module Aws::Deadline
2434
2439
  attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
2435
2440
  attr_accessor task_failure_retry_count: ::Integer
2436
2441
  attr_accessor created_at: ::Time
2442
+ attr_accessor created_by: ::String
2437
2443
  attr_accessor started_at: ::Time
2438
2444
  attr_accessor ended_at: ::Time
2445
+ attr_accessor updated_at: ::Time
2446
+ attr_accessor updated_by: ::String
2439
2447
  attr_accessor parameter_space: Types::ParameterSpace
2440
2448
  SENSITIVE: []
2441
2449
  end
@@ -2497,6 +2505,7 @@ module Aws::Deadline
2497
2505
  attr_accessor float: ::String
2498
2506
  attr_accessor string: ::String
2499
2507
  attr_accessor path: ::String
2508
+ attr_accessor chunk_int: ::String
2500
2509
  attr_accessor unknown: untyped
2501
2510
  SENSITIVE: []
2502
2511
 
@@ -2508,10 +2517,24 @@ module Aws::Deadline
2508
2517
  end
2509
2518
  class Path < TaskParameterValue
2510
2519
  end
2520
+ class ChunkInt < TaskParameterValue
2521
+ end
2511
2522
  class Unknown < TaskParameterValue
2512
2523
  end
2513
2524
  end
2514
2525
 
2526
+ class TaskRunManifestPropertiesRequest
2527
+ attr_accessor output_manifest_path: ::String
2528
+ attr_accessor output_manifest_hash: ::String
2529
+ SENSITIVE: []
2530
+ end
2531
+
2532
+ class TaskRunManifestPropertiesResponse
2533
+ attr_accessor output_manifest_path: ::String
2534
+ attr_accessor output_manifest_hash: ::String
2535
+ SENSITIVE: []
2536
+ end
2537
+
2515
2538
  class TaskRunSessionActionDefinition
2516
2539
  attr_accessor task_id: ::String
2517
2540
  attr_accessor step_id: ::String
@@ -2522,7 +2545,8 @@ module Aws::Deadline
2522
2545
  class TaskRunSessionActionDefinitionSummary
2523
2546
  attr_accessor task_id: ::String
2524
2547
  attr_accessor step_id: ::String
2525
- SENSITIVE: []
2548
+ attr_accessor parameters: ::Hash[::String, Types::TaskParameterValue]
2549
+ SENSITIVE: [:parameters]
2526
2550
  end
2527
2551
 
2528
2552
  class TaskSearchSummary
@@ -2536,6 +2560,8 @@ module Aws::Deadline
2536
2560
  attr_accessor failure_retry_count: ::Integer
2537
2561
  attr_accessor started_at: ::Time
2538
2562
  attr_accessor ended_at: ::Time
2563
+ attr_accessor updated_at: ::Time
2564
+ attr_accessor updated_by: ::String
2539
2565
  SENSITIVE: [:parameters]
2540
2566
  end
2541
2567
 
@@ -2807,6 +2833,7 @@ module Aws::Deadline
2807
2833
  attr_accessor ended_at: ::Time
2808
2834
  attr_accessor updated_at: ::Time
2809
2835
  attr_accessor progress_percent: ::Float
2836
+ attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesRequest]
2810
2837
  SENSITIVE: [:progress_message]
2811
2838
  end
2812
2839
 
@@ -2846,6 +2873,11 @@ module Aws::Deadline
2846
2873
  SENSITIVE: []
2847
2874
  end
2848
2875
 
2876
+ class VpcConfiguration
2877
+ attr_accessor resource_configuration_arns: ::Array[::String]
2878
+ SENSITIVE: []
2879
+ end
2880
+
2849
2881
  class WindowsUser
2850
2882
  attr_accessor user: ::String
2851
2883
  attr_accessor password_arn: ::String
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.28.0
4
+ version: 1.30.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.225.0
21
+ version: 3.227.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.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement