aws-sdk-deadline 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19cc151a9e79c9851f24b700946226c3eccd93758ab6189d07c9ccf034b0d030
4
- data.tar.gz: 9b70fa592f712d115379da6d1de040bf683c63b35b913b1e91bfa0b1888cf4c3
3
+ metadata.gz: 0e275f12ae6aa704aa4ec09e2b27611692979eac6df5a04b2a6bcc34b47c3bcc
4
+ data.tar.gz: 30b1bf909323eb812c9402d49f42905b30415ae861b47985dade7ac2cfef46fa
5
5
  SHA512:
6
- metadata.gz: 5a213d6089fcaa5391a703ee216527e66524ac04e1eeeac7dac52aee5400d34ed4516030ed986fb9f2072ccbc903ede9d918e740a746e240f7cefe210d948441
7
- data.tar.gz: 4db34945331273947b7dbc661430b1200f6f786bc59b79747bc3b1d56946c4eafbd40b9bdd913deb957bf56127d8b907773aad817be5ec82f5b053b9505a39ce
6
+ metadata.gz: 329c6096918d08f156623639b8ff46fb459425446bdd05bea41084f7399b3d083012a1a0de39c6e375e424d2f8000983fca7760151f18613b476b382776d1943
7
+ data.tar.gz: 5fffab8ee941a1e11152072d4655528435b3ec7105efc7dbc41be3c7fcb52ef38ff1f7e91e750763426d14317bfca7278b4d07c9a0a24326375c8271ca0e407a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.28.0 (2025-06-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -3286,6 +3286,7 @@ module Aws::Deadline
3286
3286
  # * {Types::GetSessionActionResponse#progress_message #progress_message} => String
3287
3287
  # * {Types::GetSessionActionResponse#definition #definition} => Types::SessionActionDefinition
3288
3288
  # * {Types::GetSessionActionResponse#acquired_limits #acquired_limits} => Array<Types::AcquiredLimit>
3289
+ # * {Types::GetSessionActionResponse#manifests #manifests} => Array<Types::TaskRunManifestPropertiesResponse>
3289
3290
  #
3290
3291
  # @example Request syntax with placeholder values
3291
3292
  #
@@ -3316,10 +3317,14 @@ module Aws::Deadline
3316
3317
  # resp.definition.task_run.parameters["String"].float #=> String
3317
3318
  # resp.definition.task_run.parameters["String"].string #=> String
3318
3319
  # resp.definition.task_run.parameters["String"].path #=> String
3320
+ # resp.definition.task_run.parameters["String"].chunk_int #=> String
3319
3321
  # resp.definition.sync_input_job_attachments.step_id #=> String
3320
3322
  # resp.acquired_limits #=> Array
3321
3323
  # resp.acquired_limits[0].limit_id #=> String
3322
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
3323
3328
  #
3324
3329
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetSessionAction AWS API Documentation
3325
3330
  #
@@ -3484,7 +3489,7 @@ module Aws::Deadline
3484
3489
  # resp.required_capabilities.amounts[0].value #=> Float
3485
3490
  # resp.parameter_space.parameters #=> Array
3486
3491
  # resp.parameter_space.parameters[0].name #=> String
3487
- # 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"
3488
3493
  # resp.parameter_space.combination #=> String
3489
3494
  # resp.description #=> String
3490
3495
  #
@@ -3646,6 +3651,7 @@ module Aws::Deadline
3646
3651
  # resp.parameters["String"].float #=> String
3647
3652
  # resp.parameters["String"].string #=> String
3648
3653
  # resp.parameters["String"].path #=> String
3654
+ # resp.parameters["String"].chunk_int #=> String
3649
3655
  # resp.started_at #=> Time
3650
3656
  # resp.ended_at #=> Time
3651
3657
  # resp.updated_at #=> Time
@@ -4806,7 +4812,16 @@ module Aws::Deadline
4806
4812
  # resp.session_actions[0].definition.env_exit.environment_id #=> String
4807
4813
  # resp.session_actions[0].definition.task_run.task_id #=> String
4808
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
4809
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
4810
4825
  # resp.next_token #=> String
4811
4826
  #
4812
4827
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListSessionActions AWS API Documentation
@@ -5292,6 +5307,7 @@ module Aws::Deadline
5292
5307
  # resp.tasks[0].parameters["String"].float #=> String
5293
5308
  # resp.tasks[0].parameters["String"].string #=> String
5294
5309
  # resp.tasks[0].parameters["String"].path #=> String
5310
+ # resp.tasks[0].parameters["String"].chunk_int #=> String
5295
5311
  # resp.tasks[0].started_at #=> Time
5296
5312
  # resp.tasks[0].ended_at #=> Time
5297
5313
  # resp.tasks[0].updated_at #=> Time
@@ -5627,7 +5643,7 @@ module Aws::Deadline
5627
5643
  # resp.steps[0].ended_at #=> Time
5628
5644
  # resp.steps[0].parameter_space.parameters #=> Array
5629
5645
  # 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"
5646
+ # resp.steps[0].parameter_space.parameters[0].type #=> String, one of "INT", "FLOAT", "STRING", "PATH", "CHUNK_INT"
5631
5647
  # resp.steps[0].parameter_space.combination #=> String
5632
5648
  # resp.next_item_offset #=> Integer
5633
5649
  # resp.total_results #=> Integer
@@ -5741,6 +5757,7 @@ module Aws::Deadline
5741
5757
  # resp.tasks[0].parameters["String"].float #=> String
5742
5758
  # resp.tasks[0].parameters["String"].string #=> String
5743
5759
  # resp.tasks[0].parameters["String"].path #=> String
5760
+ # resp.tasks[0].parameters["String"].chunk_int #=> String
5744
5761
  # resp.tasks[0].failure_retry_count #=> Integer
5745
5762
  # resp.tasks[0].started_at #=> Time
5746
5763
  # resp.tasks[0].ended_at #=> Time
@@ -7010,6 +7027,12 @@ module Aws::Deadline
7010
7027
  # ended_at: Time.now,
7011
7028
  # updated_at: Time.now,
7012
7029
  # progress_percent: 1.0,
7030
+ # manifests: [
7031
+ # {
7032
+ # output_manifest_path: "TaskRunManifestPropertiesRequestOutputManifestPathString",
7033
+ # output_manifest_hash: "TaskRunManifestPropertiesRequestOutputManifestHashString",
7034
+ # },
7035
+ # ],
7013
7036
  # },
7014
7037
  # },
7015
7038
  # })
@@ -7030,6 +7053,7 @@ module Aws::Deadline
7030
7053
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].float #=> String
7031
7054
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.task_run.parameters["String"].string #=> String
7032
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
7033
7057
  # resp.assigned_sessions["SessionId"].session_actions[0].definition.sync_input_job_attachments.step_id #=> String
7034
7058
  # resp.assigned_sessions["SessionId"].log_configuration.log_driver #=> String
7035
7059
  # resp.assigned_sessions["SessionId"].log_configuration.options #=> Hash
@@ -7070,7 +7094,7 @@ module Aws::Deadline
7070
7094
  tracer: tracer
7071
7095
  )
7072
7096
  context[:gem_name] = 'aws-sdk-deadline'
7073
- context[:gem_version] = '1.28.0'
7097
+ context[:gem_version] = '1.29.0'
7074
7098
  Seahorse::Client::Request.new(handlers, context)
7075
7099
  end
7076
7100
 
@@ -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')
@@ -1539,6 +1545,7 @@ module Aws::Deadline
1539
1545
  GetSessionActionResponse.add_member(:progress_message, Shapes::ShapeRef.new(shape: SessionActionProgressMessage, location_name: "progressMessage"))
1540
1546
  GetSessionActionResponse.add_member(:definition, Shapes::ShapeRef.new(shape: SessionActionDefinition, required: true, location_name: "definition"))
1541
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"))
1542
1549
  GetSessionActionResponse.struct_class = Types::GetSessionActionResponse
1543
1550
 
1544
1551
  GetSessionRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
@@ -2465,6 +2472,7 @@ module Aws::Deadline
2465
2472
  SessionActionSummary.add_member(:worker_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "workerUpdatedAt"))
2466
2473
  SessionActionSummary.add_member(:progress_percent, Shapes::ShapeRef.new(shape: SessionActionProgressPercent, location_name: "progressPercent"))
2467
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"))
2468
2476
  SessionActionSummary.struct_class = Types::SessionActionSummary
2469
2477
 
2470
2478
  SessionSummaries.member = Shapes::ShapeRef.new(shape: SessionSummary)
@@ -2652,17 +2660,31 @@ module Aws::Deadline
2652
2660
  TaskParameterValue.add_member(:float, Shapes::ShapeRef.new(shape: FloatString, location_name: "float"))
2653
2661
  TaskParameterValue.add_member(:string, Shapes::ShapeRef.new(shape: ParameterString, location_name: "string"))
2654
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"))
2655
2664
  TaskParameterValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2656
2665
  TaskParameterValue.add_member_subclass(:int, Types::TaskParameterValue::Int)
2657
2666
  TaskParameterValue.add_member_subclass(:float, Types::TaskParameterValue::Float)
2658
2667
  TaskParameterValue.add_member_subclass(:string, Types::TaskParameterValue::String)
2659
2668
  TaskParameterValue.add_member_subclass(:path, Types::TaskParameterValue::Path)
2669
+ TaskParameterValue.add_member_subclass(:chunk_int, Types::TaskParameterValue::ChunkInt)
2660
2670
  TaskParameterValue.add_member_subclass(:unknown, Types::TaskParameterValue::Unknown)
2661
2671
  TaskParameterValue.struct_class = Types::TaskParameterValue
2662
2672
 
2663
2673
  TaskParameters.key = Shapes::ShapeRef.new(shape: String)
2664
2674
  TaskParameters.value = Shapes::ShapeRef.new(shape: TaskParameterValue)
2665
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
+
2666
2688
  TaskRunSessionActionDefinition.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2667
2689
  TaskRunSessionActionDefinition.add_member(:step_id, Shapes::ShapeRef.new(shape: StepId, required: true, location_name: "stepId"))
2668
2690
  TaskRunSessionActionDefinition.add_member(:parameters, Shapes::ShapeRef.new(shape: TaskParameters, required: true, location_name: "parameters"))
@@ -2670,6 +2692,7 @@ module Aws::Deadline
2670
2692
 
2671
2693
  TaskRunSessionActionDefinitionSummary.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, location_name: "taskId"))
2672
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"))
2673
2696
  TaskRunSessionActionDefinitionSummary.struct_class = Types::TaskRunSessionActionDefinitionSummary
2674
2697
 
2675
2698
  TaskRunStatusCounts.key = Shapes::ShapeRef.new(shape: TaskRunStatus)
@@ -2901,6 +2924,7 @@ module Aws::Deadline
2901
2924
  UpdatedSessionActionInfo.add_member(:ended_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "endedAt"))
2902
2925
  UpdatedSessionActionInfo.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
2903
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"))
2904
2928
  UpdatedSessionActionInfo.struct_class = Types::UpdatedSessionActionInfo
2905
2929
 
2906
2930
  UpdatedSessionActions.key = Shapes::ShapeRef.new(shape: SessionActionId)
@@ -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
@@ -8279,6 +8285,11 @@ module Aws::Deadline
8279
8285
  # The session action definition.
8280
8286
  # @return [Types::SessionActionDefinitionSummary]
8281
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
+ #
8282
8293
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SessionActionSummary AWS API Documentation
8283
8294
  #
8284
8295
  class SessionActionSummary < Struct.new(
@@ -8288,7 +8299,8 @@ module Aws::Deadline
8288
8299
  :ended_at,
8289
8300
  :worker_updated_at,
8290
8301
  :progress_percent,
8291
- :definition)
8302
+ :definition,
8303
+ :manifests)
8292
8304
  SENSITIVE = []
8293
8305
  include Aws::Structure
8294
8306
  end
@@ -9085,6 +9097,11 @@ module Aws::Deadline
9085
9097
  # A file system path represented as a string.
9086
9098
  # @return [String]
9087
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
+ #
9088
9105
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskParameterValue AWS API Documentation
9089
9106
  #
9090
9107
  class TaskParameterValue < Struct.new(
@@ -9092,6 +9109,7 @@ module Aws::Deadline
9092
9109
  :float,
9093
9110
  :string,
9094
9111
  :path,
9112
+ :chunk_int,
9095
9113
  :unknown)
9096
9114
  SENSITIVE = []
9097
9115
  include Aws::Structure
@@ -9101,9 +9119,50 @@ module Aws::Deadline
9101
9119
  class Float < TaskParameterValue; end
9102
9120
  class String < TaskParameterValue; end
9103
9121
  class Path < TaskParameterValue; end
9122
+ class ChunkInt < TaskParameterValue; end
9104
9123
  class Unknown < TaskParameterValue; end
9105
9124
  end
9106
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
+
9107
9166
  # The task, step, and parameters for the task run in the session action.
9108
9167
  #
9109
9168
  # @!attribute [rw] task_id
@@ -9138,12 +9197,17 @@ module Aws::Deadline
9138
9197
  # The step ID.
9139
9198
  # @return [String]
9140
9199
  #
9200
+ # @!attribute [rw] parameters
9201
+ # The parameters of a task run in a session action.
9202
+ # @return [Hash<String,Types::TaskParameterValue>]
9203
+ #
9141
9204
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskRunSessionActionDefinitionSummary AWS API Documentation
9142
9205
  #
9143
9206
  class TaskRunSessionActionDefinitionSummary < Struct.new(
9144
9207
  :task_id,
9145
- :step_id)
9146
- SENSITIVE = []
9208
+ :step_id,
9209
+ :parameters)
9210
+ SENSITIVE = [:parameters]
9147
9211
  include Aws::Structure
9148
9212
  end
9149
9213
 
@@ -10236,6 +10300,11 @@ module Aws::Deadline
10236
10300
  # The percentage completed.
10237
10301
  # @return [Float]
10238
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
+ #
10239
10308
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdatedSessionActionInfo AWS API Documentation
10240
10309
  #
10241
10310
  class UpdatedSessionActionInfo < Struct.new(
@@ -10245,7 +10314,8 @@ module Aws::Deadline
10245
10314
  :started_at,
10246
10315
  :ended_at,
10247
10316
  :updated_at,
10248
- :progress_percent)
10317
+ :progress_percent,
10318
+ :manifests)
10249
10319
  SENSITIVE = [:progress_message]
10250
10320
  include Aws::Structure
10251
10321
  end
@@ -55,7 +55,7 @@ module Aws::Deadline
55
55
  autoload :EndpointProvider, 'aws-sdk-deadline/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-deadline/endpoints'
57
57
 
58
- GEM_VERSION = '1.28.0'
58
+ GEM_VERSION = '1.29.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1043,6 +1043,7 @@ module Aws
1043
1043
  def progress_message: () -> ::String
1044
1044
  def definition: () -> Types::SessionActionDefinition
1045
1045
  def acquired_limits: () -> ::Array[Types::AcquiredLimit]
1046
+ def manifests: () -> ::Array[Types::TaskRunManifestPropertiesResponse]
1046
1047
  end
1047
1048
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#get_session_action-instance_method
1048
1049
  def get_session_action: (
@@ -2265,7 +2266,13 @@ module Aws
2265
2266
  started_at: ::Time?,
2266
2267
  ended_at: ::Time?,
2267
2268
  updated_at: ::Time?,
2268
- progress_percent: ::Float?
2269
+ progress_percent: ::Float?,
2270
+ manifests: Array[
2271
+ {
2272
+ output_manifest_path: ::String?,
2273
+ output_manifest_hash: ::String?
2274
+ },
2275
+ ]?
2269
2276
  }]
2270
2277
  ) -> _UpdateWorkerScheduleResponseSuccess
2271
2278
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkerScheduleResponseSuccess
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
 
@@ -2288,6 +2289,7 @@ module Aws::Deadline
2288
2289
  attr_accessor worker_updated_at: ::Time
2289
2290
  attr_accessor progress_percent: ::Float
2290
2291
  attr_accessor definition: Types::SessionActionDefinitionSummary
2292
+ attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesResponse]
2291
2293
  SENSITIVE: []
2292
2294
  end
2293
2295
 
@@ -2412,7 +2414,7 @@ module Aws::Deadline
2412
2414
 
2413
2415
  class StepParameter
2414
2416
  attr_accessor name: ::String
2415
- attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH")
2417
+ attr_accessor type: ("INT" | "FLOAT" | "STRING" | "PATH" | "CHUNK_INT")
2416
2418
  SENSITIVE: []
2417
2419
  end
2418
2420
 
@@ -2497,6 +2499,7 @@ module Aws::Deadline
2497
2499
  attr_accessor float: ::String
2498
2500
  attr_accessor string: ::String
2499
2501
  attr_accessor path: ::String
2502
+ attr_accessor chunk_int: ::String
2500
2503
  attr_accessor unknown: untyped
2501
2504
  SENSITIVE: []
2502
2505
 
@@ -2508,10 +2511,24 @@ module Aws::Deadline
2508
2511
  end
2509
2512
  class Path < TaskParameterValue
2510
2513
  end
2514
+ class ChunkInt < TaskParameterValue
2515
+ end
2511
2516
  class Unknown < TaskParameterValue
2512
2517
  end
2513
2518
  end
2514
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
+
2515
2532
  class TaskRunSessionActionDefinition
2516
2533
  attr_accessor task_id: ::String
2517
2534
  attr_accessor step_id: ::String
@@ -2522,7 +2539,8 @@ module Aws::Deadline
2522
2539
  class TaskRunSessionActionDefinitionSummary
2523
2540
  attr_accessor task_id: ::String
2524
2541
  attr_accessor step_id: ::String
2525
- SENSITIVE: []
2542
+ attr_accessor parameters: ::Hash[::String, Types::TaskParameterValue]
2543
+ SENSITIVE: [:parameters]
2526
2544
  end
2527
2545
 
2528
2546
  class TaskSearchSummary
@@ -2807,6 +2825,7 @@ module Aws::Deadline
2807
2825
  attr_accessor ended_at: ::Time
2808
2826
  attr_accessor updated_at: ::Time
2809
2827
  attr_accessor progress_percent: ::Float
2828
+ attr_accessor manifests: ::Array[Types::TaskRunManifestPropertiesRequest]
2810
2829
  SENSITIVE: [:progress_message]
2811
2830
  end
2812
2831
 
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.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services