aws-sdk-deadline 1.14.0 → 1.16.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 +63 -5
- data/lib/aws-sdk-deadline/client_api.rb +45 -2
- data/lib/aws-sdk-deadline/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-deadline/endpoints.rb +2 -1120
- data/lib/aws-sdk-deadline/plugins/endpoints.rb +1 -210
- data/lib/aws-sdk-deadline/types.rb +81 -4
- data/lib/aws-sdk-deadline.rb +1 -1
- data/sig/client.rbs +20 -3
- data/sig/types.rbs +19 -0
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::Deadline::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,215 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_member_to_farm
|
74
|
-
Aws::Deadline::Endpoints::AssociateMemberToFarm.build(context)
|
75
|
-
when :associate_member_to_fleet
|
76
|
-
Aws::Deadline::Endpoints::AssociateMemberToFleet.build(context)
|
77
|
-
when :associate_member_to_job
|
78
|
-
Aws::Deadline::Endpoints::AssociateMemberToJob.build(context)
|
79
|
-
when :associate_member_to_queue
|
80
|
-
Aws::Deadline::Endpoints::AssociateMemberToQueue.build(context)
|
81
|
-
when :assume_fleet_role_for_read
|
82
|
-
Aws::Deadline::Endpoints::AssumeFleetRoleForRead.build(context)
|
83
|
-
when :assume_fleet_role_for_worker
|
84
|
-
Aws::Deadline::Endpoints::AssumeFleetRoleForWorker.build(context)
|
85
|
-
when :assume_queue_role_for_read
|
86
|
-
Aws::Deadline::Endpoints::AssumeQueueRoleForRead.build(context)
|
87
|
-
when :assume_queue_role_for_user
|
88
|
-
Aws::Deadline::Endpoints::AssumeQueueRoleForUser.build(context)
|
89
|
-
when :assume_queue_role_for_worker
|
90
|
-
Aws::Deadline::Endpoints::AssumeQueueRoleForWorker.build(context)
|
91
|
-
when :batch_get_job_entity
|
92
|
-
Aws::Deadline::Endpoints::BatchGetJobEntity.build(context)
|
93
|
-
when :copy_job_template
|
94
|
-
Aws::Deadline::Endpoints::CopyJobTemplate.build(context)
|
95
|
-
when :create_budget
|
96
|
-
Aws::Deadline::Endpoints::CreateBudget.build(context)
|
97
|
-
when :create_farm
|
98
|
-
Aws::Deadline::Endpoints::CreateFarm.build(context)
|
99
|
-
when :create_fleet
|
100
|
-
Aws::Deadline::Endpoints::CreateFleet.build(context)
|
101
|
-
when :create_job
|
102
|
-
Aws::Deadline::Endpoints::CreateJob.build(context)
|
103
|
-
when :create_license_endpoint
|
104
|
-
Aws::Deadline::Endpoints::CreateLicenseEndpoint.build(context)
|
105
|
-
when :create_monitor
|
106
|
-
Aws::Deadline::Endpoints::CreateMonitor.build(context)
|
107
|
-
when :create_queue
|
108
|
-
Aws::Deadline::Endpoints::CreateQueue.build(context)
|
109
|
-
when :create_queue_environment
|
110
|
-
Aws::Deadline::Endpoints::CreateQueueEnvironment.build(context)
|
111
|
-
when :create_queue_fleet_association
|
112
|
-
Aws::Deadline::Endpoints::CreateQueueFleetAssociation.build(context)
|
113
|
-
when :create_storage_profile
|
114
|
-
Aws::Deadline::Endpoints::CreateStorageProfile.build(context)
|
115
|
-
when :create_worker
|
116
|
-
Aws::Deadline::Endpoints::CreateWorker.build(context)
|
117
|
-
when :delete_budget
|
118
|
-
Aws::Deadline::Endpoints::DeleteBudget.build(context)
|
119
|
-
when :delete_farm
|
120
|
-
Aws::Deadline::Endpoints::DeleteFarm.build(context)
|
121
|
-
when :delete_fleet
|
122
|
-
Aws::Deadline::Endpoints::DeleteFleet.build(context)
|
123
|
-
when :delete_license_endpoint
|
124
|
-
Aws::Deadline::Endpoints::DeleteLicenseEndpoint.build(context)
|
125
|
-
when :delete_metered_product
|
126
|
-
Aws::Deadline::Endpoints::DeleteMeteredProduct.build(context)
|
127
|
-
when :delete_monitor
|
128
|
-
Aws::Deadline::Endpoints::DeleteMonitor.build(context)
|
129
|
-
when :delete_queue
|
130
|
-
Aws::Deadline::Endpoints::DeleteQueue.build(context)
|
131
|
-
when :delete_queue_environment
|
132
|
-
Aws::Deadline::Endpoints::DeleteQueueEnvironment.build(context)
|
133
|
-
when :delete_queue_fleet_association
|
134
|
-
Aws::Deadline::Endpoints::DeleteQueueFleetAssociation.build(context)
|
135
|
-
when :delete_storage_profile
|
136
|
-
Aws::Deadline::Endpoints::DeleteStorageProfile.build(context)
|
137
|
-
when :delete_worker
|
138
|
-
Aws::Deadline::Endpoints::DeleteWorker.build(context)
|
139
|
-
when :disassociate_member_from_farm
|
140
|
-
Aws::Deadline::Endpoints::DisassociateMemberFromFarm.build(context)
|
141
|
-
when :disassociate_member_from_fleet
|
142
|
-
Aws::Deadline::Endpoints::DisassociateMemberFromFleet.build(context)
|
143
|
-
when :disassociate_member_from_job
|
144
|
-
Aws::Deadline::Endpoints::DisassociateMemberFromJob.build(context)
|
145
|
-
when :disassociate_member_from_queue
|
146
|
-
Aws::Deadline::Endpoints::DisassociateMemberFromQueue.build(context)
|
147
|
-
when :get_budget
|
148
|
-
Aws::Deadline::Endpoints::GetBudget.build(context)
|
149
|
-
when :get_farm
|
150
|
-
Aws::Deadline::Endpoints::GetFarm.build(context)
|
151
|
-
when :get_fleet
|
152
|
-
Aws::Deadline::Endpoints::GetFleet.build(context)
|
153
|
-
when :get_job
|
154
|
-
Aws::Deadline::Endpoints::GetJob.build(context)
|
155
|
-
when :get_license_endpoint
|
156
|
-
Aws::Deadline::Endpoints::GetLicenseEndpoint.build(context)
|
157
|
-
when :get_monitor
|
158
|
-
Aws::Deadline::Endpoints::GetMonitor.build(context)
|
159
|
-
when :get_queue
|
160
|
-
Aws::Deadline::Endpoints::GetQueue.build(context)
|
161
|
-
when :get_queue_environment
|
162
|
-
Aws::Deadline::Endpoints::GetQueueEnvironment.build(context)
|
163
|
-
when :get_queue_fleet_association
|
164
|
-
Aws::Deadline::Endpoints::GetQueueFleetAssociation.build(context)
|
165
|
-
when :get_session
|
166
|
-
Aws::Deadline::Endpoints::GetSession.build(context)
|
167
|
-
when :get_session_action
|
168
|
-
Aws::Deadline::Endpoints::GetSessionAction.build(context)
|
169
|
-
when :get_sessions_statistics_aggregation
|
170
|
-
Aws::Deadline::Endpoints::GetSessionsStatisticsAggregation.build(context)
|
171
|
-
when :get_step
|
172
|
-
Aws::Deadline::Endpoints::GetStep.build(context)
|
173
|
-
when :get_storage_profile
|
174
|
-
Aws::Deadline::Endpoints::GetStorageProfile.build(context)
|
175
|
-
when :get_storage_profile_for_queue
|
176
|
-
Aws::Deadline::Endpoints::GetStorageProfileForQueue.build(context)
|
177
|
-
when :get_task
|
178
|
-
Aws::Deadline::Endpoints::GetTask.build(context)
|
179
|
-
when :get_worker
|
180
|
-
Aws::Deadline::Endpoints::GetWorker.build(context)
|
181
|
-
when :list_available_metered_products
|
182
|
-
Aws::Deadline::Endpoints::ListAvailableMeteredProducts.build(context)
|
183
|
-
when :list_budgets
|
184
|
-
Aws::Deadline::Endpoints::ListBudgets.build(context)
|
185
|
-
when :list_farm_members
|
186
|
-
Aws::Deadline::Endpoints::ListFarmMembers.build(context)
|
187
|
-
when :list_farms
|
188
|
-
Aws::Deadline::Endpoints::ListFarms.build(context)
|
189
|
-
when :list_fleet_members
|
190
|
-
Aws::Deadline::Endpoints::ListFleetMembers.build(context)
|
191
|
-
when :list_fleets
|
192
|
-
Aws::Deadline::Endpoints::ListFleets.build(context)
|
193
|
-
when :list_job_members
|
194
|
-
Aws::Deadline::Endpoints::ListJobMembers.build(context)
|
195
|
-
when :list_jobs
|
196
|
-
Aws::Deadline::Endpoints::ListJobs.build(context)
|
197
|
-
when :list_license_endpoints
|
198
|
-
Aws::Deadline::Endpoints::ListLicenseEndpoints.build(context)
|
199
|
-
when :list_metered_products
|
200
|
-
Aws::Deadline::Endpoints::ListMeteredProducts.build(context)
|
201
|
-
when :list_monitors
|
202
|
-
Aws::Deadline::Endpoints::ListMonitors.build(context)
|
203
|
-
when :list_queue_environments
|
204
|
-
Aws::Deadline::Endpoints::ListQueueEnvironments.build(context)
|
205
|
-
when :list_queue_fleet_associations
|
206
|
-
Aws::Deadline::Endpoints::ListQueueFleetAssociations.build(context)
|
207
|
-
when :list_queue_members
|
208
|
-
Aws::Deadline::Endpoints::ListQueueMembers.build(context)
|
209
|
-
when :list_queues
|
210
|
-
Aws::Deadline::Endpoints::ListQueues.build(context)
|
211
|
-
when :list_session_actions
|
212
|
-
Aws::Deadline::Endpoints::ListSessionActions.build(context)
|
213
|
-
when :list_sessions
|
214
|
-
Aws::Deadline::Endpoints::ListSessions.build(context)
|
215
|
-
when :list_sessions_for_worker
|
216
|
-
Aws::Deadline::Endpoints::ListSessionsForWorker.build(context)
|
217
|
-
when :list_step_consumers
|
218
|
-
Aws::Deadline::Endpoints::ListStepConsumers.build(context)
|
219
|
-
when :list_step_dependencies
|
220
|
-
Aws::Deadline::Endpoints::ListStepDependencies.build(context)
|
221
|
-
when :list_steps
|
222
|
-
Aws::Deadline::Endpoints::ListSteps.build(context)
|
223
|
-
when :list_storage_profiles
|
224
|
-
Aws::Deadline::Endpoints::ListStorageProfiles.build(context)
|
225
|
-
when :list_storage_profiles_for_queue
|
226
|
-
Aws::Deadline::Endpoints::ListStorageProfilesForQueue.build(context)
|
227
|
-
when :list_tags_for_resource
|
228
|
-
Aws::Deadline::Endpoints::ListTagsForResource.build(context)
|
229
|
-
when :list_tasks
|
230
|
-
Aws::Deadline::Endpoints::ListTasks.build(context)
|
231
|
-
when :list_workers
|
232
|
-
Aws::Deadline::Endpoints::ListWorkers.build(context)
|
233
|
-
when :put_metered_product
|
234
|
-
Aws::Deadline::Endpoints::PutMeteredProduct.build(context)
|
235
|
-
when :search_jobs
|
236
|
-
Aws::Deadline::Endpoints::SearchJobs.build(context)
|
237
|
-
when :search_steps
|
238
|
-
Aws::Deadline::Endpoints::SearchSteps.build(context)
|
239
|
-
when :search_tasks
|
240
|
-
Aws::Deadline::Endpoints::SearchTasks.build(context)
|
241
|
-
when :search_workers
|
242
|
-
Aws::Deadline::Endpoints::SearchWorkers.build(context)
|
243
|
-
when :start_sessions_statistics_aggregation
|
244
|
-
Aws::Deadline::Endpoints::StartSessionsStatisticsAggregation.build(context)
|
245
|
-
when :tag_resource
|
246
|
-
Aws::Deadline::Endpoints::TagResource.build(context)
|
247
|
-
when :untag_resource
|
248
|
-
Aws::Deadline::Endpoints::UntagResource.build(context)
|
249
|
-
when :update_budget
|
250
|
-
Aws::Deadline::Endpoints::UpdateBudget.build(context)
|
251
|
-
when :update_farm
|
252
|
-
Aws::Deadline::Endpoints::UpdateFarm.build(context)
|
253
|
-
when :update_fleet
|
254
|
-
Aws::Deadline::Endpoints::UpdateFleet.build(context)
|
255
|
-
when :update_job
|
256
|
-
Aws::Deadline::Endpoints::UpdateJob.build(context)
|
257
|
-
when :update_monitor
|
258
|
-
Aws::Deadline::Endpoints::UpdateMonitor.build(context)
|
259
|
-
when :update_queue
|
260
|
-
Aws::Deadline::Endpoints::UpdateQueue.build(context)
|
261
|
-
when :update_queue_environment
|
262
|
-
Aws::Deadline::Endpoints::UpdateQueueEnvironment.build(context)
|
263
|
-
when :update_queue_fleet_association
|
264
|
-
Aws::Deadline::Endpoints::UpdateQueueFleetAssociation.build(context)
|
265
|
-
when :update_session
|
266
|
-
Aws::Deadline::Endpoints::UpdateSession.build(context)
|
267
|
-
when :update_step
|
268
|
-
Aws::Deadline::Endpoints::UpdateStep.build(context)
|
269
|
-
when :update_storage_profile
|
270
|
-
Aws::Deadline::Endpoints::UpdateStorageProfile.build(context)
|
271
|
-
when :update_task
|
272
|
-
Aws::Deadline::Endpoints::UpdateTask.build(context)
|
273
|
-
when :update_worker
|
274
|
-
Aws::Deadline::Endpoints::UpdateWorker.build(context)
|
275
|
-
when :update_worker_schedule
|
276
|
-
Aws::Deadline::Endpoints::UpdateWorkerSchedule.build(context)
|
277
|
-
end
|
278
|
-
end
|
279
70
|
end
|
280
71
|
|
281
72
|
def add_handlers(handlers, _config)
|
@@ -1147,6 +1147,10 @@ module Aws::Deadline
|
|
1147
1147
|
# The maximum number of retries for each task.
|
1148
1148
|
# @return [Integer]
|
1149
1149
|
#
|
1150
|
+
# @!attribute [rw] source_job_id
|
1151
|
+
# The job ID for the source job.
|
1152
|
+
# @return [String]
|
1153
|
+
#
|
1150
1154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateJobRequest AWS API Documentation
|
1151
1155
|
#
|
1152
1156
|
class CreateJobRequest < Struct.new(
|
@@ -1161,7 +1165,8 @@ module Aws::Deadline
|
|
1161
1165
|
:storage_profile_id,
|
1162
1166
|
:target_task_run_status,
|
1163
1167
|
:max_failed_tasks_count,
|
1164
|
-
:max_retries_per_task
|
1168
|
+
:max_retries_per_task,
|
1169
|
+
:source_job_id)
|
1165
1170
|
SENSITIVE = [:template, :parameters]
|
1166
1171
|
include Aws::Structure
|
1167
1172
|
end
|
@@ -2992,6 +2997,10 @@ module Aws::Deadline
|
|
2992
2997
|
# interpret the content of this field.
|
2993
2998
|
# @return [String]
|
2994
2999
|
#
|
3000
|
+
# @!attribute [rw] source_job_id
|
3001
|
+
# The job ID for the source job.
|
3002
|
+
# @return [String]
|
3003
|
+
#
|
2995
3004
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetJobResponse AWS API Documentation
|
2996
3005
|
#
|
2997
3006
|
class GetJobResponse < Struct.new(
|
@@ -3014,7 +3023,8 @@ module Aws::Deadline
|
|
3014
3023
|
:max_retries_per_task,
|
3015
3024
|
:parameters,
|
3016
3025
|
:attachments,
|
3017
|
-
:description
|
3026
|
+
:description,
|
3027
|
+
:source_job_id)
|
3018
3028
|
SENSITIVE = [:parameters, :description]
|
3019
3029
|
include Aws::Structure
|
3020
3030
|
end
|
@@ -4619,6 +4629,10 @@ module Aws::Deadline
|
|
4619
4629
|
# The job parameters.
|
4620
4630
|
# @return [Hash<String,Types::JobParameter>]
|
4621
4631
|
#
|
4632
|
+
# @!attribute [rw] source_job_id
|
4633
|
+
# The job ID for the source job.
|
4634
|
+
# @return [String]
|
4635
|
+
#
|
4622
4636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/JobSearchSummary AWS API Documentation
|
4623
4637
|
#
|
4624
4638
|
class JobSearchSummary < Struct.new(
|
@@ -4637,7 +4651,8 @@ module Aws::Deadline
|
|
4637
4651
|
:created_at,
|
4638
4652
|
:ended_at,
|
4639
4653
|
:started_at,
|
4640
|
-
:job_parameters
|
4654
|
+
:job_parameters,
|
4655
|
+
:source_job_id)
|
4641
4656
|
SENSITIVE = [:job_parameters]
|
4642
4657
|
include Aws::Structure
|
4643
4658
|
end
|
@@ -4729,6 +4744,10 @@ module Aws::Deadline
|
|
4729
4744
|
# The maximum number of retries for a job.
|
4730
4745
|
# @return [Integer]
|
4731
4746
|
#
|
4747
|
+
# @!attribute [rw] source_job_id
|
4748
|
+
# The job ID for the source job.
|
4749
|
+
# @return [String]
|
4750
|
+
#
|
4732
4751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/JobSummary AWS API Documentation
|
4733
4752
|
#
|
4734
4753
|
class JobSummary < Struct.new(
|
@@ -4747,7 +4766,8 @@ module Aws::Deadline
|
|
4747
4766
|
:target_task_run_status,
|
4748
4767
|
:task_run_status_counts,
|
4749
4768
|
:max_failed_tasks_count,
|
4750
|
-
:max_retries_per_task
|
4769
|
+
:max_retries_per_task,
|
4770
|
+
:source_job_id)
|
4751
4771
|
SENSITIVE = []
|
4752
4772
|
include Aws::Structure
|
4753
4773
|
end
|
@@ -5145,6 +5165,63 @@ module Aws::Deadline
|
|
5145
5165
|
include Aws::Structure
|
5146
5166
|
end
|
5147
5167
|
|
5168
|
+
# @!attribute [rw] farm_id
|
5169
|
+
# The farm ID of the job to list.
|
5170
|
+
# @return [String]
|
5171
|
+
#
|
5172
|
+
# @!attribute [rw] job_id
|
5173
|
+
# The job ID to include on the list.
|
5174
|
+
# @return [String]
|
5175
|
+
#
|
5176
|
+
# @!attribute [rw] queue_id
|
5177
|
+
# The queue ID to include on the list.
|
5178
|
+
# @return [String]
|
5179
|
+
#
|
5180
|
+
# @!attribute [rw] next_token
|
5181
|
+
# The token for the next set of results, or `null` to start from the
|
5182
|
+
# beginning.
|
5183
|
+
# @return [String]
|
5184
|
+
#
|
5185
|
+
# @!attribute [rw] max_results
|
5186
|
+
# The maximum number of results to return. Use this parameter with
|
5187
|
+
# `NextToken` to get results as a set of sequential pages.
|
5188
|
+
# @return [Integer]
|
5189
|
+
#
|
5190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListJobParameterDefinitionsRequest AWS API Documentation
|
5191
|
+
#
|
5192
|
+
class ListJobParameterDefinitionsRequest < Struct.new(
|
5193
|
+
:farm_id,
|
5194
|
+
:job_id,
|
5195
|
+
:queue_id,
|
5196
|
+
:next_token,
|
5197
|
+
:max_results)
|
5198
|
+
SENSITIVE = []
|
5199
|
+
include Aws::Structure
|
5200
|
+
end
|
5201
|
+
|
5202
|
+
# @!attribute [rw] job_parameter_definitions
|
5203
|
+
# Lists parameter definitions of a job.
|
5204
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
5205
|
+
#
|
5206
|
+
# @!attribute [rw] next_token
|
5207
|
+
# If Deadline Cloud returns `nextToken`, then there are more results
|
5208
|
+
# available. The value of `nextToken` is a unique pagination token for
|
5209
|
+
# each page. To retrieve the next page, call the operation again using
|
5210
|
+
# the returned token. Keep all other arguments unchanged. If no
|
5211
|
+
# results remain, then `nextToken` is set to `null`. Each pagination
|
5212
|
+
# token expires after 24 hours. If you provide a token that isn't
|
5213
|
+
# valid, then you receive an HTTP 400 `ValidationException` error.
|
5214
|
+
# @return [String]
|
5215
|
+
#
|
5216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListJobParameterDefinitionsResponse AWS API Documentation
|
5217
|
+
#
|
5218
|
+
class ListJobParameterDefinitionsResponse < Struct.new(
|
5219
|
+
:job_parameter_definitions,
|
5220
|
+
:next_token)
|
5221
|
+
SENSITIVE = []
|
5222
|
+
include Aws::Structure
|
5223
|
+
end
|
5224
|
+
|
5148
5225
|
# @!attribute [rw] farm_id
|
5149
5226
|
# The farm ID for the jobs.
|
5150
5227
|
# @return [String]
|
data/lib/aws-sdk-deadline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -383,8 +383,8 @@ module Aws
|
|
383
383
|
farm_id: ::String,
|
384
384
|
queue_id: ::String,
|
385
385
|
?client_token: ::String,
|
386
|
-
template: ::String,
|
387
|
-
template_type: ("JSON" | "YAML"),
|
386
|
+
?template: ::String,
|
387
|
+
?template_type: ("JSON" | "YAML"),
|
388
388
|
priority: ::Integer,
|
389
389
|
?parameters: Hash[::String, {
|
390
390
|
int: ::String?,
|
@@ -408,7 +408,8 @@ module Aws
|
|
408
408
|
?storage_profile_id: ::String,
|
409
409
|
?target_task_run_status: ("READY" | "SUSPENDED"),
|
410
410
|
?max_failed_tasks_count: ::Integer,
|
411
|
-
?max_retries_per_task: ::Integer
|
411
|
+
?max_retries_per_task: ::Integer,
|
412
|
+
?source_job_id: ::String
|
412
413
|
) -> _CreateJobResponseSuccess
|
413
414
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
|
414
415
|
|
@@ -784,6 +785,7 @@ module Aws
|
|
784
785
|
def parameters: () -> ::Hash[::String, Types::JobParameter]
|
785
786
|
def attachments: () -> Types::Attachments
|
786
787
|
def description: () -> ::String
|
788
|
+
def source_job_id: () -> ::String
|
787
789
|
end
|
788
790
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#get_job-instance_method
|
789
791
|
def get_job: (
|
@@ -1160,6 +1162,21 @@ module Aws
|
|
1160
1162
|
) -> _ListJobMembersResponseSuccess
|
1161
1163
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobMembersResponseSuccess
|
1162
1164
|
|
1165
|
+
interface _ListJobParameterDefinitionsResponseSuccess
|
1166
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobParameterDefinitionsResponse]
|
1167
|
+
def job_parameter_definitions: () -> ::Array[untyped]
|
1168
|
+
def next_token: () -> ::String
|
1169
|
+
end
|
1170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#list_job_parameter_definitions-instance_method
|
1171
|
+
def list_job_parameter_definitions: (
|
1172
|
+
farm_id: ::String,
|
1173
|
+
job_id: ::String,
|
1174
|
+
queue_id: ::String,
|
1175
|
+
?next_token: ::String,
|
1176
|
+
?max_results: ::Integer
|
1177
|
+
) -> _ListJobParameterDefinitionsResponseSuccess
|
1178
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobParameterDefinitionsResponseSuccess
|
1179
|
+
|
1163
1180
|
interface _ListJobsResponseSuccess
|
1164
1181
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
1165
1182
|
def jobs: () -> ::Array[Types::JobSummary]
|
data/sig/types.rbs
CHANGED
@@ -348,6 +348,7 @@ module Aws::Deadline
|
|
348
348
|
attr_accessor target_task_run_status: ("READY" | "SUSPENDED")
|
349
349
|
attr_accessor max_failed_tasks_count: ::Integer
|
350
350
|
attr_accessor max_retries_per_task: ::Integer
|
351
|
+
attr_accessor source_job_id: ::String
|
351
352
|
SENSITIVE: [:template, :parameters]
|
352
353
|
end
|
353
354
|
|
@@ -897,6 +898,7 @@ module Aws::Deadline
|
|
897
898
|
attr_accessor parameters: ::Hash[::String, Types::JobParameter]
|
898
899
|
attr_accessor attachments: Types::Attachments
|
899
900
|
attr_accessor description: ::String
|
901
|
+
attr_accessor source_job_id: ::String
|
900
902
|
SENSITIVE: [:parameters, :description]
|
901
903
|
end
|
902
904
|
|
@@ -1339,6 +1341,7 @@ module Aws::Deadline
|
|
1339
1341
|
attr_accessor ended_at: ::Time
|
1340
1342
|
attr_accessor started_at: ::Time
|
1341
1343
|
attr_accessor job_parameters: ::Hash[::String, Types::JobParameter]
|
1344
|
+
attr_accessor source_job_id: ::String
|
1342
1345
|
SENSITIVE: [:job_parameters]
|
1343
1346
|
end
|
1344
1347
|
|
@@ -1359,6 +1362,7 @@ module Aws::Deadline
|
|
1359
1362
|
attr_accessor task_run_status_counts: ::Hash[("PENDING" | "READY" | "ASSIGNED" | "STARTING" | "SCHEDULED" | "INTERRUPTING" | "RUNNING" | "SUSPENDED" | "CANCELED" | "FAILED" | "SUCCEEDED" | "NOT_COMPATIBLE"), ::Integer]
|
1360
1363
|
attr_accessor max_failed_tasks_count: ::Integer
|
1361
1364
|
attr_accessor max_retries_per_task: ::Integer
|
1365
|
+
attr_accessor source_job_id: ::String
|
1362
1366
|
SENSITIVE: []
|
1363
1367
|
end
|
1364
1368
|
|
@@ -1467,6 +1471,21 @@ module Aws::Deadline
|
|
1467
1471
|
SENSITIVE: []
|
1468
1472
|
end
|
1469
1473
|
|
1474
|
+
class ListJobParameterDefinitionsRequest
|
1475
|
+
attr_accessor farm_id: ::String
|
1476
|
+
attr_accessor job_id: ::String
|
1477
|
+
attr_accessor queue_id: ::String
|
1478
|
+
attr_accessor next_token: ::String
|
1479
|
+
attr_accessor max_results: ::Integer
|
1480
|
+
SENSITIVE: []
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class ListJobParameterDefinitionsResponse
|
1484
|
+
attr_accessor job_parameter_definitions: ::Array[untyped]
|
1485
|
+
attr_accessor next_token: ::String
|
1486
|
+
SENSITIVE: []
|
1487
|
+
end
|
1488
|
+
|
1470
1489
|
class ListJobsRequest
|
1471
1490
|
attr_accessor farm_id: ::String
|
1472
1491
|
attr_accessor principal_id: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-deadline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|