aws-sdk-deadline 1.27.0 → 1.29.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-deadline/client.rb +35 -3
- data/lib/aws-sdk-deadline/client_api.rb +31 -0
- data/lib/aws-sdk-deadline/types.rb +115 -9
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +10 -1
- data/sig/types.rbs +27 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e275f12ae6aa704aa4ec09e2b27611692979eac6df5a04b2a6bcc34b47c3bcc
|
4
|
+
data.tar.gz: 30b1bf909323eb812c9402d49f42905b30415ae861b47985dade7ac2cfef46fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 329c6096918d08f156623639b8ff46fb459425446bdd05bea41084f7399b3d083012a1a0de39c6e375e424d2f8000983fca7760151f18613b476b382776d1943
|
7
|
+
data.tar.gz: 5fffab8ee941a1e11152072d4655528435b3ec7105efc7dbc41be3c7fcb52ef38ff1f7e91e750763426d14317bfca7278b4d07c9a0a24326375c8271ca0e407a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2025-07-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added fields for output manifest reporting and task chunking parameters
|
8
|
+
|
9
|
+
1.28.0 (2025-06-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added fields to track cumulative task retry attempts for steps and jobs
|
13
|
+
|
4
14
|
1.27.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -2726,6 +2726,7 @@ module Aws::Deadline
|
|
2726
2726
|
# * {Types::GetJobResponse#task_run_status #task_run_status} => String
|
2727
2727
|
# * {Types::GetJobResponse#target_task_run_status #target_task_run_status} => String
|
2728
2728
|
# * {Types::GetJobResponse#task_run_status_counts #task_run_status_counts} => Hash<String,Integer>
|
2729
|
+
# * {Types::GetJobResponse#task_failure_retry_count #task_failure_retry_count} => Integer
|
2729
2730
|
# * {Types::GetJobResponse#storage_profile_id #storage_profile_id} => String
|
2730
2731
|
# * {Types::GetJobResponse#max_failed_tasks_count #max_failed_tasks_count} => Integer
|
2731
2732
|
# * {Types::GetJobResponse#max_retries_per_task #max_retries_per_task} => Integer
|
@@ -2760,6 +2761,7 @@ module Aws::Deadline
|
|
2760
2761
|
# resp.target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
2761
2762
|
# resp.task_run_status_counts #=> Hash
|
2762
2763
|
# resp.task_run_status_counts["TaskRunStatus"] #=> Integer
|
2764
|
+
# resp.task_failure_retry_count #=> Integer
|
2763
2765
|
# resp.storage_profile_id #=> String
|
2764
2766
|
# resp.max_failed_tasks_count #=> Integer
|
2765
2767
|
# resp.max_retries_per_task #=> Integer
|
@@ -3284,6 +3286,7 @@ module Aws::Deadline
|
|
3284
3286
|
# * {Types::GetSessionActionResponse#progress_message #progress_message} => String
|
3285
3287
|
# * {Types::GetSessionActionResponse#definition #definition} => Types::SessionActionDefinition
|
3286
3288
|
# * {Types::GetSessionActionResponse#acquired_limits #acquired_limits} => Array<Types::AcquiredLimit>
|
3289
|
+
# * {Types::GetSessionActionResponse#manifests #manifests} => Array<Types::TaskRunManifestPropertiesResponse>
|
3287
3290
|
#
|
3288
3291
|
# @example Request syntax with placeholder values
|
3289
3292
|
#
|
@@ -3314,10 +3317,14 @@ module Aws::Deadline
|
|
3314
3317
|
# resp.definition.task_run.parameters["String"].float #=> String
|
3315
3318
|
# resp.definition.task_run.parameters["String"].string #=> String
|
3316
3319
|
# resp.definition.task_run.parameters["String"].path #=> String
|
3320
|
+
# resp.definition.task_run.parameters["String"].chunk_int #=> String
|
3317
3321
|
# resp.definition.sync_input_job_attachments.step_id #=> String
|
3318
3322
|
# resp.acquired_limits #=> Array
|
3319
3323
|
# resp.acquired_limits[0].limit_id #=> String
|
3320
3324
|
# resp.acquired_limits[0].count #=> Integer
|
3325
|
+
# resp.manifests #=> Array
|
3326
|
+
# resp.manifests[0].output_manifest_path #=> String
|
3327
|
+
# resp.manifests[0].output_manifest_hash #=> String
|
3321
3328
|
#
|
3322
3329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetSessionAction AWS API Documentation
|
3323
3330
|
#
|
@@ -3426,6 +3433,7 @@ module Aws::Deadline
|
|
3426
3433
|
# * {Types::GetStepResponse#lifecycle_status_message #lifecycle_status_message} => String
|
3427
3434
|
# * {Types::GetStepResponse#task_run_status #task_run_status} => String
|
3428
3435
|
# * {Types::GetStepResponse#task_run_status_counts #task_run_status_counts} => Hash<String,Integer>
|
3436
|
+
# * {Types::GetStepResponse#task_failure_retry_count #task_failure_retry_count} => Integer
|
3429
3437
|
# * {Types::GetStepResponse#target_task_run_status #target_task_run_status} => String
|
3430
3438
|
# * {Types::GetStepResponse#created_at #created_at} => Time
|
3431
3439
|
# * {Types::GetStepResponse#created_by #created_by} => String
|
@@ -3456,6 +3464,7 @@ module Aws::Deadline
|
|
3456
3464
|
# resp.task_run_status #=> String, one of "PENDING", "READY", "ASSIGNED", "STARTING", "SCHEDULED", "INTERRUPTING", "RUNNING", "SUSPENDED", "CANCELED", "FAILED", "SUCCEEDED", "NOT_COMPATIBLE"
|
3457
3465
|
# resp.task_run_status_counts #=> Hash
|
3458
3466
|
# resp.task_run_status_counts["TaskRunStatus"] #=> Integer
|
3467
|
+
# resp.task_failure_retry_count #=> Integer
|
3459
3468
|
# resp.target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
3460
3469
|
# resp.created_at #=> Time
|
3461
3470
|
# resp.created_by #=> String
|
@@ -3480,7 +3489,7 @@ module Aws::Deadline
|
|
3480
3489
|
# resp.required_capabilities.amounts[0].value #=> Float
|
3481
3490
|
# resp.parameter_space.parameters #=> Array
|
3482
3491
|
# resp.parameter_space.parameters[0].name #=> String
|
3483
|
-
# resp.parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH"
|
3492
|
+
# resp.parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
|
3484
3493
|
# resp.parameter_space.combination #=> String
|
3485
3494
|
# resp.description #=> String
|
3486
3495
|
#
|
@@ -3642,6 +3651,7 @@ module Aws::Deadline
|
|
3642
3651
|
# resp.parameters["String"].float #=> String
|
3643
3652
|
# resp.parameters["String"].string #=> String
|
3644
3653
|
# resp.parameters["String"].path #=> String
|
3654
|
+
# resp.parameters["String"].chunk_int #=> String
|
3645
3655
|
# resp.started_at #=> Time
|
3646
3656
|
# resp.ended_at #=> Time
|
3647
3657
|
# resp.updated_at #=> Time
|
@@ -4252,6 +4262,7 @@ module Aws::Deadline
|
|
4252
4262
|
# resp.jobs[0].target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
4253
4263
|
# resp.jobs[0].task_run_status_counts #=> Hash
|
4254
4264
|
# resp.jobs[0].task_run_status_counts["TaskRunStatus"] #=> Integer
|
4265
|
+
# resp.jobs[0].task_failure_retry_count #=> Integer
|
4255
4266
|
# resp.jobs[0].max_failed_tasks_count #=> Integer
|
4256
4267
|
# resp.jobs[0].max_retries_per_task #=> Integer
|
4257
4268
|
# resp.jobs[0].max_worker_count #=> Integer
|
@@ -4801,7 +4812,16 @@ module Aws::Deadline
|
|
4801
4812
|
# resp.session_actions[0].definition.env_exit.environment_id #=> String
|
4802
4813
|
# resp.session_actions[0].definition.task_run.task_id #=> String
|
4803
4814
|
# resp.session_actions[0].definition.task_run.step_id #=> String
|
4815
|
+
# resp.session_actions[0].definition.task_run.parameters #=> Hash
|
4816
|
+
# resp.session_actions[0].definition.task_run.parameters["String"].int #=> String
|
4817
|
+
# resp.session_actions[0].definition.task_run.parameters["String"].float #=> String
|
4818
|
+
# resp.session_actions[0].definition.task_run.parameters["String"].string #=> String
|
4819
|
+
# resp.session_actions[0].definition.task_run.parameters["String"].path #=> String
|
4820
|
+
# resp.session_actions[0].definition.task_run.parameters["String"].chunk_int #=> String
|
4804
4821
|
# resp.session_actions[0].definition.sync_input_job_attachments.step_id #=> String
|
4822
|
+
# resp.session_actions[0].manifests #=> Array
|
4823
|
+
# resp.session_actions[0].manifests[0].output_manifest_path #=> String
|
4824
|
+
# resp.session_actions[0].manifests[0].output_manifest_hash #=> String
|
4805
4825
|
# resp.next_token #=> String
|
4806
4826
|
#
|
4807
4827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListSessionActions AWS API Documentation
|
@@ -5087,6 +5107,7 @@ module Aws::Deadline
|
|
5087
5107
|
# resp.steps[0].task_run_status #=> String, one of "PENDING", "READY", "ASSIGNED", "STARTING", "SCHEDULED", "INTERRUPTING", "RUNNING", "SUSPENDED", "CANCELED", "FAILED", "SUCCEEDED", "NOT_COMPATIBLE"
|
5088
5108
|
# resp.steps[0].task_run_status_counts #=> Hash
|
5089
5109
|
# resp.steps[0].task_run_status_counts["TaskRunStatus"] #=> Integer
|
5110
|
+
# resp.steps[0].task_failure_retry_count #=> Integer
|
5090
5111
|
# resp.steps[0].target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
5091
5112
|
# resp.steps[0].created_at #=> Time
|
5092
5113
|
# resp.steps[0].created_by #=> String
|
@@ -5286,6 +5307,7 @@ module Aws::Deadline
|
|
5286
5307
|
# resp.tasks[0].parameters["String"].float #=> String
|
5287
5308
|
# resp.tasks[0].parameters["String"].string #=> String
|
5288
5309
|
# resp.tasks[0].parameters["String"].path #=> String
|
5310
|
+
# resp.tasks[0].parameters["String"].chunk_int #=> String
|
5289
5311
|
# resp.tasks[0].started_at #=> Time
|
5290
5312
|
# resp.tasks[0].ended_at #=> Time
|
5291
5313
|
# resp.tasks[0].updated_at #=> Time
|
@@ -5489,6 +5511,7 @@ module Aws::Deadline
|
|
5489
5511
|
# resp.jobs[0].target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
5490
5512
|
# resp.jobs[0].task_run_status_counts #=> Hash
|
5491
5513
|
# resp.jobs[0].task_run_status_counts["TaskRunStatus"] #=> Integer
|
5514
|
+
# resp.jobs[0].task_failure_retry_count #=> Integer
|
5492
5515
|
# resp.jobs[0].priority #=> Integer
|
5493
5516
|
# resp.jobs[0].max_failed_tasks_count #=> Integer
|
5494
5517
|
# resp.jobs[0].max_retries_per_task #=> Integer
|
@@ -5614,12 +5637,13 @@ module Aws::Deadline
|
|
5614
5637
|
# resp.steps[0].target_task_run_status #=> String, one of "READY", "FAILED", "SUCCEEDED", "CANCELED", "SUSPENDED", "PENDING"
|
5615
5638
|
# resp.steps[0].task_run_status_counts #=> Hash
|
5616
5639
|
# resp.steps[0].task_run_status_counts["TaskRunStatus"] #=> Integer
|
5640
|
+
# resp.steps[0].task_failure_retry_count #=> Integer
|
5617
5641
|
# resp.steps[0].created_at #=> Time
|
5618
5642
|
# resp.steps[0].started_at #=> Time
|
5619
5643
|
# resp.steps[0].ended_at #=> Time
|
5620
5644
|
# resp.steps[0].parameter_space.parameters #=> Array
|
5621
5645
|
# resp.steps[0].parameter_space.parameters[0].name #=> String
|
5622
|
-
# resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH"
|
5646
|
+
# resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
|
5623
5647
|
# resp.steps[0].parameter_space.combination #=> String
|
5624
5648
|
# resp.next_item_offset #=> Integer
|
5625
5649
|
# resp.total_results #=> Integer
|
@@ -5733,6 +5757,7 @@ module Aws::Deadline
|
|
5733
5757
|
# resp.tasks[0].parameters["String"].float #=> String
|
5734
5758
|
# resp.tasks[0].parameters["String"].string #=> String
|
5735
5759
|
# resp.tasks[0].parameters["String"].path #=> String
|
5760
|
+
# resp.tasks[0].parameters["String"].chunk_int #=> String
|
5736
5761
|
# resp.tasks[0].failure_retry_count #=> Integer
|
5737
5762
|
# resp.tasks[0].started_at #=> Time
|
5738
5763
|
# resp.tasks[0].ended_at #=> Time
|
@@ -7002,6 +7027,12 @@ module Aws::Deadline
|
|
7002
7027
|
# ended_at: Time.now,
|
7003
7028
|
# updated_at: Time.now,
|
7004
7029
|
# progress_percent: 1.0,
|
7030
|
+
# manifests: [
|
7031
|
+
# {
|
7032
|
+
# output_manifest_path: "TaskRunManifestPropertiesRequestOutputManifestPathString",
|
7033
|
+
# output_manifest_hash: "TaskRunManifestPropertiesRequestOutputManifestHashString",
|
7034
|
+
# },
|
7035
|
+
# ],
|
7005
7036
|
# },
|
7006
7037
|
# },
|
7007
7038
|
# })
|
@@ -7022,6 +7053,7 @@ module Aws::Deadline
|
|
7022
7053
|
# resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].float #=> String
|
7023
7054
|
# resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].string #=> String
|
7024
7055
|
# resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].path #=> String
|
7056
|
+
# resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].chunk_int #=> String
|
7025
7057
|
# resp.assigned_sessions["SessionId"].session_actions[0].definition.sync_input_job_attachments.step_id #=> String
|
7026
7058
|
# resp.assigned_sessions["SessionId"].log_configuration.log_driver #=> String
|
7027
7059
|
# resp.assigned_sessions["SessionId"].log_configuration.options #=> Hash
|
@@ -7062,7 +7094,7 @@ module Aws::Deadline
|
|
7062
7094
|
tracer: tracer
|
7063
7095
|
)
|
7064
7096
|
context[:gem_name] = 'aws-sdk-deadline'
|
7065
|
-
context[:gem_version] = '1.
|
7097
|
+
context[:gem_version] = '1.29.0'
|
7066
7098
|
Seahorse::Client::Request.new(handlers, context)
|
7067
7099
|
end
|
7068
7100
|
|
@@ -562,10 +562,17 @@ module Aws::Deadline
|
|
562
562
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
563
563
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
564
564
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
565
|
+
TaskFailureRetryCount = Shapes::IntegerShape.new(name: 'TaskFailureRetryCount')
|
565
566
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
566
567
|
TaskParameterValue = Shapes::UnionShape.new(name: 'TaskParameterValue')
|
567
568
|
TaskParameters = Shapes::MapShape.new(name: 'TaskParameters')
|
568
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')
|
569
576
|
TaskRunSessionActionDefinition = Shapes::StructureShape.new(name: 'TaskRunSessionActionDefinition')
|
570
577
|
TaskRunSessionActionDefinitionSummary = Shapes::StructureShape.new(name: 'TaskRunSessionActionDefinitionSummary')
|
571
578
|
TaskRunStatus = Shapes::StringShape.new(name: 'TaskRunStatus')
|
@@ -1395,6 +1402,7 @@ module Aws::Deadline
|
|
1395
1402
|
GetJobResponse.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, location_name: "taskRunStatus"))
|
1396
1403
|
GetJobResponse.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: JobTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
1397
1404
|
GetJobResponse.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
|
1405
|
+
GetJobResponse.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
1398
1406
|
GetJobResponse.add_member(:storage_profile_id, Shapes::ShapeRef.new(shape: StorageProfileId, location_name: "storageProfileId"))
|
1399
1407
|
GetJobResponse.add_member(:max_failed_tasks_count, Shapes::ShapeRef.new(shape: MaxFailedTasksCount, location_name: "maxFailedTasksCount"))
|
1400
1408
|
GetJobResponse.add_member(:max_retries_per_task, Shapes::ShapeRef.new(shape: MaxRetriesPerTask, location_name: "maxRetriesPerTask"))
|
@@ -1537,6 +1545,7 @@ module Aws::Deadline
|
|
1537
1545
|
GetSessionActionResponse.add_member(:progress_message, Shapes::ShapeRef.new(shape: SessionActionProgressMessage, location_name: "progressMessage"))
|
1538
1546
|
GetSessionActionResponse.add_member(:definition, Shapes::ShapeRef.new(shape: SessionActionDefinition, required: true, location_name: "definition"))
|
1539
1547
|
GetSessionActionResponse.add_member(:acquired_limits, Shapes::ShapeRef.new(shape: AcquiredLimits, location_name: "acquiredLimits"))
|
1548
|
+
GetSessionActionResponse.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListResponse, location_name: "manifests"))
|
1540
1549
|
GetSessionActionResponse.struct_class = Types::GetSessionActionResponse
|
1541
1550
|
|
1542
1551
|
GetSessionRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
|
@@ -1583,6 +1592,7 @@ module Aws::Deadline
|
|
1583
1592
|
GetStepResponse.add_member(:lifecycle_status_message, Shapes::ShapeRef.new(shape: String, location_name: "lifecycleStatusMessage"))
|
1584
1593
|
GetStepResponse.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, required: true, location_name: "taskRunStatus"))
|
1585
1594
|
GetStepResponse.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, required: true, location_name: "taskRunStatusCounts"))
|
1595
|
+
GetStepResponse.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
1586
1596
|
GetStepResponse.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: StepTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
1587
1597
|
GetStepResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
1588
1598
|
GetStepResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
@@ -1790,6 +1800,7 @@ module Aws::Deadline
|
|
1790
1800
|
JobSearchSummary.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, location_name: "taskRunStatus"))
|
1791
1801
|
JobSearchSummary.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: JobTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
1792
1802
|
JobSearchSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
|
1803
|
+
JobSearchSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
1793
1804
|
JobSearchSummary.add_member(:priority, Shapes::ShapeRef.new(shape: JobPriority, location_name: "priority"))
|
1794
1805
|
JobSearchSummary.add_member(:max_failed_tasks_count, Shapes::ShapeRef.new(shape: MaxFailedTasksCount, location_name: "maxFailedTasksCount"))
|
1795
1806
|
JobSearchSummary.add_member(:max_retries_per_task, Shapes::ShapeRef.new(shape: MaxRetriesPerTask, location_name: "maxRetriesPerTask"))
|
@@ -1818,6 +1829,7 @@ module Aws::Deadline
|
|
1818
1829
|
JobSummary.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, location_name: "taskRunStatus"))
|
1819
1830
|
JobSummary.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: JobTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
1820
1831
|
JobSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
|
1832
|
+
JobSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
1821
1833
|
JobSummary.add_member(:max_failed_tasks_count, Shapes::ShapeRef.new(shape: MaxFailedTasksCount, location_name: "maxFailedTasksCount"))
|
1822
1834
|
JobSummary.add_member(:max_retries_per_task, Shapes::ShapeRef.new(shape: MaxRetriesPerTask, location_name: "maxRetriesPerTask"))
|
1823
1835
|
JobSummary.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: MaxWorkerCount, location_name: "maxWorkerCount"))
|
@@ -2460,6 +2472,7 @@ module Aws::Deadline
|
|
2460
2472
|
SessionActionSummary.add_member(:worker_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "workerUpdatedAt"))
|
2461
2473
|
SessionActionSummary.add_member(:progress_percent, Shapes::ShapeRef.new(shape: SessionActionProgressPercent, location_name: "progressPercent"))
|
2462
2474
|
SessionActionSummary.add_member(:definition, Shapes::ShapeRef.new(shape: SessionActionDefinitionSummary, required: true, location_name: "definition"))
|
2475
|
+
SessionActionSummary.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListResponse, location_name: "manifests"))
|
2463
2476
|
SessionActionSummary.struct_class = Types::SessionActionSummary
|
2464
2477
|
|
2465
2478
|
SessionSummaries.member = Shapes::ShapeRef.new(shape: SessionSummary)
|
@@ -2588,6 +2601,7 @@ module Aws::Deadline
|
|
2588
2601
|
StepSearchSummary.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, location_name: "taskRunStatus"))
|
2589
2602
|
StepSearchSummary.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: StepTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
2590
2603
|
StepSearchSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, location_name: "taskRunStatusCounts"))
|
2604
|
+
StepSearchSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
2591
2605
|
StepSearchSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
2592
2606
|
StepSearchSummary.add_member(:started_at, Shapes::ShapeRef.new(shape: StartedAt, location_name: "startedAt"))
|
2593
2607
|
StepSearchSummary.add_member(:ended_at, Shapes::ShapeRef.new(shape: EndedAt, location_name: "endedAt"))
|
@@ -2602,6 +2616,7 @@ module Aws::Deadline
|
|
2602
2616
|
StepSummary.add_member(:lifecycle_status_message, Shapes::ShapeRef.new(shape: String, location_name: "lifecycleStatusMessage"))
|
2603
2617
|
StepSummary.add_member(:task_run_status, Shapes::ShapeRef.new(shape: TaskRunStatus, required: true, location_name: "taskRunStatus"))
|
2604
2618
|
StepSummary.add_member(:task_run_status_counts, Shapes::ShapeRef.new(shape: TaskRunStatusCounts, required: true, location_name: "taskRunStatusCounts"))
|
2619
|
+
StepSummary.add_member(:task_failure_retry_count, Shapes::ShapeRef.new(shape: TaskFailureRetryCount, location_name: "taskFailureRetryCount"))
|
2605
2620
|
StepSummary.add_member(:target_task_run_status, Shapes::ShapeRef.new(shape: StepTargetTaskRunStatus, location_name: "targetTaskRunStatus"))
|
2606
2621
|
StepSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, required: true, location_name: "createdAt"))
|
2607
2622
|
StepSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, required: true, location_name: "createdBy"))
|
@@ -2645,17 +2660,31 @@ module Aws::Deadline
|
|
2645
2660
|
TaskParameterValue.add_member(:float, Shapes::ShapeRef.new(shape: FloatString, location_name: "float"))
|
2646
2661
|
TaskParameterValue.add_member(:string, Shapes::ShapeRef.new(shape: ParameterString, location_name: "string"))
|
2647
2662
|
TaskParameterValue.add_member(:path, Shapes::ShapeRef.new(shape: PathString, location_name: "path"))
|
2663
|
+
TaskParameterValue.add_member(:chunk_int, Shapes::ShapeRef.new(shape: String, location_name: "chunkInt"))
|
2648
2664
|
TaskParameterValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2649
2665
|
TaskParameterValue.add_member_subclass(:int, Types::TaskParameterValue::Int)
|
2650
2666
|
TaskParameterValue.add_member_subclass(:float, Types::TaskParameterValue::Float)
|
2651
2667
|
TaskParameterValue.add_member_subclass(:string, Types::TaskParameterValue::String)
|
2652
2668
|
TaskParameterValue.add_member_subclass(:path, Types::TaskParameterValue::Path)
|
2669
|
+
TaskParameterValue.add_member_subclass(:chunk_int, Types::TaskParameterValue::ChunkInt)
|
2653
2670
|
TaskParameterValue.add_member_subclass(:unknown, Types::TaskParameterValue::Unknown)
|
2654
2671
|
TaskParameterValue.struct_class = Types::TaskParameterValue
|
2655
2672
|
|
2656
2673
|
TaskParameters.key = Shapes::ShapeRef.new(shape: String)
|
2657
2674
|
TaskParameters.value = Shapes::ShapeRef.new(shape: TaskParameterValue)
|
2658
2675
|
|
2676
|
+
TaskRunManifestPropertiesListRequest.member = Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequest)
|
2677
|
+
|
2678
|
+
TaskRunManifestPropertiesListResponse.member = Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesResponse)
|
2679
|
+
|
2680
|
+
TaskRunManifestPropertiesRequest.add_member(:output_manifest_path, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequestOutputManifestPathString, location_name: "outputManifestPath"))
|
2681
|
+
TaskRunManifestPropertiesRequest.add_member(:output_manifest_hash, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesRequestOutputManifestHashString, location_name: "outputManifestHash"))
|
2682
|
+
TaskRunManifestPropertiesRequest.struct_class = Types::TaskRunManifestPropertiesRequest
|
2683
|
+
|
2684
|
+
TaskRunManifestPropertiesResponse.add_member(:output_manifest_path, Shapes::ShapeRef.new(shape: String, location_name: "outputManifestPath"))
|
2685
|
+
TaskRunManifestPropertiesResponse.add_member(:output_manifest_hash, Shapes::ShapeRef.new(shape: String, location_name: "outputManifestHash"))
|
2686
|
+
TaskRunManifestPropertiesResponse.struct_class = Types::TaskRunManifestPropertiesResponse
|
2687
|
+
|
2659
2688
|
TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
|
2660
2689
|
TaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
|
2661
2690
|
TaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
|
@@ -2663,6 +2692,7 @@ module Aws::Deadline
|
|
2663
2692
|
|
2664
2693
|
TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
|
2665
2694
|
TaskRunSessionActionDefinitionSummary.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
|
2695
|
+
TaskRunSessionActionDefinitionSummary.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, location_name: "parameters"))
|
2666
2696
|
TaskRunSessionActionDefinitionSummary.struct_class = Types::TaskRunSessionActionDefinitionSummary
|
2667
2697
|
|
2668
2698
|
TaskRunStatusCounts.key = Shapes::ShapeRef.new(shape: TaskRunStatus)
|
@@ -2894,6 +2924,7 @@ module Aws::Deadline
|
|
2894
2924
|
UpdatedSessionActionInfo.add_member(:ended_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "endedAt"))
|
2895
2925
|
UpdatedSessionActionInfo.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
|
2896
2926
|
UpdatedSessionActionInfo.add_member(:progress_percent, Shapes::ShapeRef.new(shape: SessionActionProgressPercent, location_name: "progressPercent"))
|
2927
|
+
UpdatedSessionActionInfo.add_member(:manifests, Shapes::ShapeRef.new(shape: TaskRunManifestPropertiesListRequest, location_name: "manifests"))
|
2897
2928
|
UpdatedSessionActionInfo.struct_class = Types::UpdatedSessionActionInfo
|
2898
2929
|
|
2899
2930
|
UpdatedSessionActions.key = Shapes::ShapeRef.new(shape: SessionActionId)
|
@@ -62,7 +62,7 @@ module Aws::Deadline
|
|
62
62
|
# The name of the chip used by the GPU accelerator.
|
63
63
|
#
|
64
64
|
# If you specify `l4` as the name of the accelerator, you must specify
|
65
|
-
# `latest` or `grid:
|
65
|
+
# `latest` or `grid:r570` as the runtime.
|
66
66
|
#
|
67
67
|
# The available GPU accelerators are:
|
68
68
|
#
|
@@ -85,7 +85,7 @@ module Aws::Deadline
|
|
85
85
|
# specify `latest` and a new version of the runtime is released, the
|
86
86
|
# new version of the runtime is used.
|
87
87
|
#
|
88
|
-
# * `grid:
|
88
|
+
# * `grid:r570` - [NVIDIA vGPU software 18][1]
|
89
89
|
#
|
90
90
|
# * `grid:r535` - [NVIDIA vGPU software 16][2]
|
91
91
|
#
|
@@ -96,7 +96,7 @@ module Aws::Deadline
|
|
96
96
|
#
|
97
97
|
#
|
98
98
|
#
|
99
|
-
# [1]: https://docs.nvidia.com/vgpu/
|
99
|
+
# [1]: https://docs.nvidia.com/vgpu/18.0/index.html
|
100
100
|
# [2]: https://docs.nvidia.com/vgpu/16.0/index.html
|
101
101
|
# @return [String]
|
102
102
|
#
|
@@ -3070,7 +3070,7 @@ module Aws::Deadline
|
|
3070
3070
|
# @return [String]
|
3071
3071
|
#
|
3072
3072
|
# @!attribute [rw] status
|
3073
|
-
# The
|
3073
|
+
# The status of the fleet.
|
3074
3074
|
# @return [String]
|
3075
3075
|
#
|
3076
3076
|
# @!attribute [rw] auto_scaling_status
|
@@ -3271,6 +3271,11 @@ module Aws::Deadline
|
|
3271
3271
|
# The number of tasks running on the job.
|
3272
3272
|
# @return [Hash<String,Integer>]
|
3273
3273
|
#
|
3274
|
+
# @!attribute [rw] task_failure_retry_count
|
3275
|
+
# The total number of times tasks from the job failed and were
|
3276
|
+
# retried.
|
3277
|
+
# @return [Integer]
|
3278
|
+
#
|
3274
3279
|
# @!attribute [rw] storage_profile_id
|
3275
3280
|
# The storage profile ID associated with the job.
|
3276
3281
|
# @return [String]
|
@@ -3331,6 +3336,7 @@ module Aws::Deadline
|
|
3331
3336
|
:task_run_status,
|
3332
3337
|
:target_task_run_status,
|
3333
3338
|
:task_run_status_counts,
|
3339
|
+
:task_failure_retry_count,
|
3334
3340
|
:storage_profile_id,
|
3335
3341
|
:max_failed_tasks_count,
|
3336
3342
|
:max_retries_per_task,
|
@@ -3982,6 +3988,11 @@ module Aws::Deadline
|
|
3982
3988
|
# limits were acquired during the session, this field isn't returned.
|
3983
3989
|
# @return [Array<Types::AcquiredLimit>]
|
3984
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
|
+
#
|
3985
3996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetSessionActionResponse AWS API Documentation
|
3986
3997
|
#
|
3987
3998
|
class GetSessionActionResponse < Struct.new(
|
@@ -3995,7 +4006,8 @@ module Aws::Deadline
|
|
3995
4006
|
:process_exit_code,
|
3996
4007
|
:progress_message,
|
3997
4008
|
:definition,
|
3998
|
-
:acquired_limits
|
4009
|
+
:acquired_limits,
|
4010
|
+
:manifests)
|
3999
4011
|
SENSITIVE = [:progress_message]
|
4000
4012
|
include Aws::Structure
|
4001
4013
|
end
|
@@ -4218,6 +4230,11 @@ module Aws::Deadline
|
|
4218
4230
|
# The number of tasks running on the job.
|
4219
4231
|
# @return [Hash<String,Integer>]
|
4220
4232
|
#
|
4233
|
+
# @!attribute [rw] task_failure_retry_count
|
4234
|
+
# The total number of times tasks from the step failed and were
|
4235
|
+
# retried.
|
4236
|
+
# @return [Integer]
|
4237
|
+
#
|
4221
4238
|
# @!attribute [rw] target_task_run_status
|
4222
4239
|
# The task status with which the job started.
|
4223
4240
|
# @return [String]
|
@@ -4276,6 +4293,7 @@ module Aws::Deadline
|
|
4276
4293
|
:lifecycle_status_message,
|
4277
4294
|
:task_run_status,
|
4278
4295
|
:task_run_status_counts,
|
4296
|
+
:task_failure_retry_count,
|
4279
4297
|
:target_task_run_status,
|
4280
4298
|
:created_at,
|
4281
4299
|
:created_by,
|
@@ -5136,6 +5154,11 @@ module Aws::Deadline
|
|
5136
5154
|
# The number of tasks running on the job.
|
5137
5155
|
# @return [Hash<String,Integer>]
|
5138
5156
|
#
|
5157
|
+
# @!attribute [rw] task_failure_retry_count
|
5158
|
+
# The total number of times tasks from the job failed and were
|
5159
|
+
# retried.
|
5160
|
+
# @return [Integer]
|
5161
|
+
#
|
5139
5162
|
# @!attribute [rw] priority
|
5140
5163
|
# The job priority.
|
5141
5164
|
# @return [Integer]
|
@@ -5196,6 +5219,7 @@ module Aws::Deadline
|
|
5196
5219
|
:task_run_status,
|
5197
5220
|
:target_task_run_status,
|
5198
5221
|
:task_run_status_counts,
|
5222
|
+
:task_failure_retry_count,
|
5199
5223
|
:priority,
|
5200
5224
|
:max_failed_tasks_count,
|
5201
5225
|
:max_retries_per_task,
|
@@ -5288,6 +5312,11 @@ module Aws::Deadline
|
|
5288
5312
|
# The number of tasks running on the job.
|
5289
5313
|
# @return [Hash<String,Integer>]
|
5290
5314
|
#
|
5315
|
+
# @!attribute [rw] task_failure_retry_count
|
5316
|
+
# The total number of times tasks from the job failed and were
|
5317
|
+
# retried.
|
5318
|
+
# @return [Integer]
|
5319
|
+
#
|
5291
5320
|
# @!attribute [rw] max_failed_tasks_count
|
5292
5321
|
# The number of task failures before the job stops running and is
|
5293
5322
|
# marked as `FAILED`.
|
@@ -5330,6 +5359,7 @@ module Aws::Deadline
|
|
5330
5359
|
:task_run_status,
|
5331
5360
|
:target_task_run_status,
|
5332
5361
|
:task_run_status_counts,
|
5362
|
+
:task_failure_retry_count,
|
5333
5363
|
:max_failed_tasks_count,
|
5334
5364
|
:max_retries_per_task,
|
5335
5365
|
:max_worker_count,
|
@@ -8255,6 +8285,11 @@ module Aws::Deadline
|
|
8255
8285
|
# The session action definition.
|
8256
8286
|
# @return [Types::SessionActionDefinitionSummary]
|
8257
8287
|
#
|
8288
|
+
# @!attribute [rw] manifests
|
8289
|
+
# The list of manifest properties that describe file attachments for
|
8290
|
+
# the task run.
|
8291
|
+
# @return [Array<Types::TaskRunManifestPropertiesResponse>]
|
8292
|
+
#
|
8258
8293
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SessionActionSummary AWS API Documentation
|
8259
8294
|
#
|
8260
8295
|
class SessionActionSummary < Struct.new(
|
@@ -8264,7 +8299,8 @@ module Aws::Deadline
|
|
8264
8299
|
:ended_at,
|
8265
8300
|
:worker_updated_at,
|
8266
8301
|
:progress_percent,
|
8267
|
-
:definition
|
8302
|
+
:definition,
|
8303
|
+
:manifests)
|
8268
8304
|
SENSITIVE = []
|
8269
8305
|
include Aws::Structure
|
8270
8306
|
end
|
@@ -8791,6 +8827,11 @@ module Aws::Deadline
|
|
8791
8827
|
# The number of tasks running on the job.
|
8792
8828
|
# @return [Hash<String,Integer>]
|
8793
8829
|
#
|
8830
|
+
# @!attribute [rw] task_failure_retry_count
|
8831
|
+
# The total number of times tasks from the step failed and were
|
8832
|
+
# retried.
|
8833
|
+
# @return [Integer]
|
8834
|
+
#
|
8794
8835
|
# @!attribute [rw] created_at
|
8795
8836
|
# The date and time the resource was created.
|
8796
8837
|
# @return [Time]
|
@@ -8819,6 +8860,7 @@ module Aws::Deadline
|
|
8819
8860
|
:task_run_status,
|
8820
8861
|
:target_task_run_status,
|
8821
8862
|
:task_run_status_counts,
|
8863
|
+
:task_failure_retry_count,
|
8822
8864
|
:created_at,
|
8823
8865
|
:started_at,
|
8824
8866
|
:ended_at,
|
@@ -8873,6 +8915,11 @@ module Aws::Deadline
|
|
8873
8915
|
# The number of tasks running on the job.
|
8874
8916
|
# @return [Hash<String,Integer>]
|
8875
8917
|
#
|
8918
|
+
# @!attribute [rw] task_failure_retry_count
|
8919
|
+
# The total number of times tasks from the step failed and were
|
8920
|
+
# retried.
|
8921
|
+
# @return [Integer]
|
8922
|
+
#
|
8876
8923
|
# @!attribute [rw] target_task_run_status
|
8877
8924
|
# The task status to start with on the job.
|
8878
8925
|
# @return [String]
|
@@ -8914,6 +8961,7 @@ module Aws::Deadline
|
|
8914
8961
|
:lifecycle_status_message,
|
8915
8962
|
:task_run_status,
|
8916
8963
|
:task_run_status_counts,
|
8964
|
+
:task_failure_retry_count,
|
8917
8965
|
:target_task_run_status,
|
8918
8966
|
:created_at,
|
8919
8967
|
:created_by,
|
@@ -9049,6 +9097,11 @@ module Aws::Deadline
|
|
9049
9097
|
# A file system path represented as a string.
|
9050
9098
|
# @return [String]
|
9051
9099
|
#
|
9100
|
+
# @!attribute [rw] chunk_int
|
9101
|
+
# A range (for example 1-10) or selection of specific (for example
|
9102
|
+
# 1,3,7,8,10) integers represented as a string.
|
9103
|
+
# @return [String]
|
9104
|
+
#
|
9052
9105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskParameterValue AWS API Documentation
|
9053
9106
|
#
|
9054
9107
|
class TaskParameterValue < Struct.new(
|
@@ -9056,6 +9109,7 @@ module Aws::Deadline
|
|
9056
9109
|
:float,
|
9057
9110
|
:string,
|
9058
9111
|
:path,
|
9112
|
+
:chunk_int,
|
9059
9113
|
:unknown)
|
9060
9114
|
SENSITIVE = []
|
9061
9115
|
include Aws::Structure
|
@@ -9065,9 +9119,50 @@ module Aws::Deadline
|
|
9065
9119
|
class Float < TaskParameterValue; end
|
9066
9120
|
class String < TaskParameterValue; end
|
9067
9121
|
class Path < TaskParameterValue; end
|
9122
|
+
class ChunkInt < TaskParameterValue; end
|
9068
9123
|
class Unknown < TaskParameterValue; end
|
9069
9124
|
end
|
9070
9125
|
|
9126
|
+
# The output manifest properties reported by the worker agent for a
|
9127
|
+
# completed task run.
|
9128
|
+
#
|
9129
|
+
# @!attribute [rw] output_manifest_path
|
9130
|
+
# The manifest file path.
|
9131
|
+
# @return [String]
|
9132
|
+
#
|
9133
|
+
# @!attribute [rw] output_manifest_hash
|
9134
|
+
# The hash value of the file.
|
9135
|
+
# @return [String]
|
9136
|
+
#
|
9137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunManifestPropertiesRequest AWS API Documentation
|
9138
|
+
#
|
9139
|
+
class TaskRunManifestPropertiesRequest < Struct.new(
|
9140
|
+
:output_manifest_path,
|
9141
|
+
:output_manifest_hash)
|
9142
|
+
SENSITIVE = []
|
9143
|
+
include Aws::Structure
|
9144
|
+
end
|
9145
|
+
|
9146
|
+
# The manifest properties for a task run, corresponding to the manifest
|
9147
|
+
# properties in the job.
|
9148
|
+
#
|
9149
|
+
# @!attribute [rw] output_manifest_path
|
9150
|
+
# The manifest file path.
|
9151
|
+
# @return [String]
|
9152
|
+
#
|
9153
|
+
# @!attribute [rw] output_manifest_hash
|
9154
|
+
# The hash value of the file.
|
9155
|
+
# @return [String]
|
9156
|
+
#
|
9157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunManifestPropertiesResponse AWS API Documentation
|
9158
|
+
#
|
9159
|
+
class TaskRunManifestPropertiesResponse < Struct.new(
|
9160
|
+
:output_manifest_path,
|
9161
|
+
:output_manifest_hash)
|
9162
|
+
SENSITIVE = []
|
9163
|
+
include Aws::Structure
|
9164
|
+
end
|
9165
|
+
|
9071
9166
|
# The task, step, and parameters for the task run in the session action.
|
9072
9167
|
#
|
9073
9168
|
# @!attribute [rw] task_id
|
@@ -9102,12 +9197,17 @@ module Aws::Deadline
|
|
9102
9197
|
# The step ID.
|
9103
9198
|
# @return [String]
|
9104
9199
|
#
|
9200
|
+
# @!attribute [rw] parameters
|
9201
|
+
# The parameters of a task run in a session action.
|
9202
|
+
# @return [Hash<String,Types::TaskParameterValue>]
|
9203
|
+
#
|
9105
9204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunSessionActionDefinitionSummary AWS API Documentation
|
9106
9205
|
#
|
9107
9206
|
class TaskRunSessionActionDefinitionSummary < Struct.new(
|
9108
9207
|
:task_id,
|
9109
|
-
:step_id
|
9110
|
-
|
9208
|
+
:step_id,
|
9209
|
+
:parameters)
|
9210
|
+
SENSITIVE = [:parameters]
|
9111
9211
|
include Aws::Structure
|
9112
9212
|
end
|
9113
9213
|
|
@@ -10200,6 +10300,11 @@ module Aws::Deadline
|
|
10200
10300
|
# The percentage completed.
|
10201
10301
|
# @return [Float]
|
10202
10302
|
#
|
10303
|
+
# @!attribute [rw] manifests
|
10304
|
+
# A list of output manifest properties reported by the worker agent,
|
10305
|
+
# with each entry corresponding to a manifest property in the job.
|
10306
|
+
# @return [Array<Types::TaskRunManifestPropertiesRequest>]
|
10307
|
+
#
|
10203
10308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdatedSessionActionInfo AWS API Documentation
|
10204
10309
|
#
|
10205
10310
|
class UpdatedSessionActionInfo < Struct.new(
|
@@ -10209,7 +10314,8 @@ module Aws::Deadline
|
|
10209
10314
|
:started_at,
|
10210
10315
|
:ended_at,
|
10211
10316
|
:updated_at,
|
10212
|
-
:progress_percent
|
10317
|
+
:progress_percent,
|
10318
|
+
:manifests)
|
10213
10319
|
SENSITIVE = [:progress_message]
|
10214
10320
|
include Aws::Structure
|
10215
10321
|
end
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -849,6 +849,7 @@ module Aws
|
|
849
849
|
def task_run_status: () -> ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
850
850
|
def target_task_run_status: () -> ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
851
851
|
def task_run_status_counts: () -> ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
852
|
+
def task_failure_retry_count: () -> ::Integer
|
852
853
|
def storage_profile_id: () -> ::String
|
853
854
|
def max_failed_tasks_count: () -> ::Integer
|
854
855
|
def max_retries_per_task: () -> ::Integer
|
@@ -1042,6 +1043,7 @@ module Aws
|
|
1042
1043
|
def progress_message: () -> ::String
|
1043
1044
|
def definition: () -> Types::SessionActionDefinition
|
1044
1045
|
def acquired_limits: () -> ::Array[Types::AcquiredLimit]
|
1046
|
+
def manifests: () -> ::Array[Types::TaskRunManifestPropertiesResponse]
|
1045
1047
|
end
|
1046
1048
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#get_session_action-instance_method
|
1047
1049
|
def get_session_action: (
|
@@ -1076,6 +1078,7 @@ module Aws
|
|
1076
1078
|
def lifecycle_status_message: () -> ::String
|
1077
1079
|
def task_run_status: () -> ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
1078
1080
|
def task_run_status_counts: () -> ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
1081
|
+
def task_failure_retry_count: () -> ::Integer
|
1079
1082
|
def target_task_run_status: () -> ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
1080
1083
|
def created_at: () -> ::Time
|
1081
1084
|
def created_by: () -> ::String
|
@@ -2263,7 +2266,13 @@ module Aws
|
|
2263
2266
|
started_at: ::Time?,
|
2264
2267
|
ended_at: ::Time?,
|
2265
2268
|
updated_at: ::Time?,
|
2266
|
-
progress_percent: ::Float
|
2269
|
+
progress_percent: ::Float?,
|
2270
|
+
manifests: Array[
|
2271
|
+
{
|
2272
|
+
output_manifest_path: ::String?,
|
2273
|
+
output_manifest_hash: ::String?
|
2274
|
+
},
|
2275
|
+
]?
|
2267
2276
|
}]
|
2268
2277
|
) -> _UpdateWorkerScheduleResponseSuccess
|
2269
2278
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkerScheduleResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -959,6 +959,7 @@ module Aws::Deadline
|
|
959
959
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
960
960
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
961
961
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
962
|
+
attr_accessor task_failure_retry_count: ::Integer
|
962
963
|
attr_accessor storage_profile_id: ::String
|
963
964
|
attr_accessor max_failed_tasks_count: ::Integer
|
964
965
|
attr_accessor max_retries_per_task: ::Integer
|
@@ -1129,6 +1130,7 @@ module Aws::Deadline
|
|
1129
1130
|
attr_accessor progress_message: ::String
|
1130
1131
|
attr_accessor definition: Types::SessionActionDefinition
|
1131
1132
|
attr_accessor acquired_limits: ::Array[Types::AcquiredLimit]
|
1133
|
+
attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesResponse]
|
1132
1134
|
SENSITIVE: [:progress_message]
|
1133
1135
|
end
|
1134
1136
|
|
@@ -1187,6 +1189,7 @@ module Aws::Deadline
|
|
1187
1189
|
attr_accessor lifecycle_status_message: ::String
|
1188
1190
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
1189
1191
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
1192
|
+
attr_accessor task_failure_retry_count: ::Integer
|
1190
1193
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
1191
1194
|
attr_accessor created_at: ::Time
|
1192
1195
|
attr_accessor created_by: ::String
|
@@ -1447,6 +1450,7 @@ module Aws::Deadline
|
|
1447
1450
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
1448
1451
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
1449
1452
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
1453
|
+
attr_accessor task_failure_retry_count: ::Integer
|
1450
1454
|
attr_accessor priority: ::Integer
|
1451
1455
|
attr_accessor max_failed_tasks_count: ::Integer
|
1452
1456
|
attr_accessor max_retries_per_task: ::Integer
|
@@ -1475,6 +1479,7 @@ module Aws::Deadline
|
|
1475
1479
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
1476
1480
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
1477
1481
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
1482
|
+
attr_accessor task_failure_retry_count: ::Integer
|
1478
1483
|
attr_accessor max_failed_tasks_count: ::Integer
|
1479
1484
|
attr_accessor max_retries_per_task: ::Integer
|
1480
1485
|
attr_accessor max_worker_count: ::Integer
|
@@ -2284,6 +2289,7 @@ module Aws::Deadline
|
|
2284
2289
|
attr_accessor worker_updated_at: ::Time
|
2285
2290
|
attr_accessor progress_percent: ::Float
|
2286
2291
|
attr_accessor definition: Types::SessionActionDefinitionSummary
|
2292
|
+
attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesResponse]
|
2287
2293
|
SENSITIVE: []
|
2288
2294
|
end
|
2289
2295
|
|
@@ -2408,7 +2414,7 @@ module Aws::Deadline
|
|
2408
2414
|
|
2409
2415
|
class StepParameter
|
2410
2416
|
attr_accessor name: ::String
|
2411
|
-
attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH")
|
2417
|
+
attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH" | "CHUNK_INT")
|
2412
2418
|
SENSITIVE: []
|
2413
2419
|
end
|
2414
2420
|
|
@@ -2428,6 +2434,7 @@ module Aws::Deadline
|
|
2428
2434
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
2429
2435
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
2430
2436
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
2437
|
+
attr_accessor task_failure_retry_count: ::Integer
|
2431
2438
|
attr_accessor created_at: ::Time
|
2432
2439
|
attr_accessor started_at: ::Time
|
2433
2440
|
attr_accessor ended_at: ::Time
|
@@ -2442,6 +2449,7 @@ module Aws::Deadline
|
|
2442
2449
|
attr_accessor lifecycle_status_message: ::String
|
2443
2450
|
attr_accessor task_run_status: ("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE")
|
2444
2451
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
2452
|
+
attr_accessor task_failure_retry_count: ::Integer
|
2445
2453
|
attr_accessor target_task_run_status: ("READY" | "FAILED" | "SUCCEEDED" | "CANCELED" | "SUSPENDED" | "PENDING")
|
2446
2454
|
attr_accessor created_at: ::Time
|
2447
2455
|
attr_accessor created_by: ::String
|
@@ -2491,6 +2499,7 @@ module Aws::Deadline
|
|
2491
2499
|
attr_accessor float: ::String
|
2492
2500
|
attr_accessor string: ::String
|
2493
2501
|
attr_accessor path: ::String
|
2502
|
+
attr_accessor chunk_int: ::String
|
2494
2503
|
attr_accessor unknown: untyped
|
2495
2504
|
SENSITIVE: []
|
2496
2505
|
|
@@ -2502,10 +2511,24 @@ module Aws::Deadline
|
|
2502
2511
|
end
|
2503
2512
|
class Path < TaskParameterValue
|
2504
2513
|
end
|
2514
|
+
class ChunkInt < TaskParameterValue
|
2515
|
+
end
|
2505
2516
|
class Unknown < TaskParameterValue
|
2506
2517
|
end
|
2507
2518
|
end
|
2508
2519
|
|
2520
|
+
class TaskRunManifestPropertiesRequest
|
2521
|
+
attr_accessor output_manifest_path: ::String
|
2522
|
+
attr_accessor output_manifest_hash: ::String
|
2523
|
+
SENSITIVE: []
|
2524
|
+
end
|
2525
|
+
|
2526
|
+
class TaskRunManifestPropertiesResponse
|
2527
|
+
attr_accessor output_manifest_path: ::String
|
2528
|
+
attr_accessor output_manifest_hash: ::String
|
2529
|
+
SENSITIVE: []
|
2530
|
+
end
|
2531
|
+
|
2509
2532
|
class TaskRunSessionActionDefinition
|
2510
2533
|
attr_accessor task_id: ::String
|
2511
2534
|
attr_accessor step_id: ::String
|
@@ -2516,7 +2539,8 @@ module Aws::Deadline
|
|
2516
2539
|
class TaskRunSessionActionDefinitionSummary
|
2517
2540
|
attr_accessor task_id: ::String
|
2518
2541
|
attr_accessor step_id: ::String
|
2519
|
-
|
2542
|
+
attr_accessor parameters: ::Hash[::String, Types::TaskParameterValue]
|
2543
|
+
SENSITIVE: [:parameters]
|
2520
2544
|
end
|
2521
2545
|
|
2522
2546
|
class TaskSearchSummary
|
@@ -2801,6 +2825,7 @@ module Aws::Deadline
|
|
2801
2825
|
attr_accessor ended_at: ::Time
|
2802
2826
|
attr_accessor updated_at: ::Time
|
2803
2827
|
attr_accessor progress_percent: ::Float
|
2828
|
+
attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesRequest]
|
2804
2829
|
SENSITIVE: [:progress_message]
|
2805
2830
|
end
|
2806
2831
|
|