@aws-sdk/client-deadline 3.933.0 → 3.935.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.
- package/dist-cjs/index.js +336 -336
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +335 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -394
- package/dist-es/models/models_1.js +1 -74
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/DeleteLicenseEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMeteredProductCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueFleetAssociationCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueLimitAssociationCommand.d.ts +1 -1
- package/dist-types/commands/GetSessionsStatisticsAggregationCommand.d.ts +1 -1
- package/dist-types/commands/ListLicenseEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListMeteredProductsCommand.d.ts +2 -1
- package/dist-types/commands/ListQueueEnvironmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueueMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListStepsCommand.d.ts +1 -2
- package/dist-types/commands/ListStorageProfilesForQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFarmCommand.d.ts +1 -1
- package/dist-types/commands/UpdateJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLimitCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQueueCommand.d.ts +1 -1
- package/dist-types/commands/UpdateQueueEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSessionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStepCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStorageProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTaskCommand.d.ts +1 -1
- package/dist-types/index.d.ts +4 -1
- package/dist-types/models/enums.d.ts +810 -0
- package/dist-types/models/errors.d.ts +205 -0
- package/dist-types/models/models_0.d.ts +1440 -827
- package/dist-types/models/models_1.d.ts +2 -1626
- package/dist-types/ts3.4/commands/DeleteLicenseEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteMeteredProductCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetLicenseEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueueFleetAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetQueueLimitAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetSessionsStatisticsAggregationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLicenseEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMeteredProductsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListQueueEnvironmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQueueMembersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStepsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListStorageProfilesForQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFarmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateLimitCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateQueueEnvironmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateStepCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateStorageProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +4 -1
- package/dist-types/ts3.4/models/enums.d.ts +442 -0
- package/dist-types/ts3.4/models/errors.d.ts +81 -0
- package/dist-types/ts3.4/models/models_0.d.ts +355 -418
- package/dist-types/ts3.4/models/models_1.d.ts +17 -422
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/index.d.ts +0 -2
|
@@ -1,1522 +1,5 @@
|
|
|
1
|
-
import { ComparisonOperator,
|
|
2
|
-
|
|
3
|
-
* <p>The details for a step.</p>
|
|
4
|
-
* @public
|
|
5
|
-
*/
|
|
6
|
-
export interface StepSummary {
|
|
7
|
-
/**
|
|
8
|
-
* <p>The step ID.</p>
|
|
9
|
-
* @public
|
|
10
|
-
*/
|
|
11
|
-
stepId: string | undefined;
|
|
12
|
-
/**
|
|
13
|
-
* <p>The name of the step.</p>
|
|
14
|
-
* @public
|
|
15
|
-
*/
|
|
16
|
-
name: string | undefined;
|
|
17
|
-
/**
|
|
18
|
-
* <p>The life cycle status.</p>
|
|
19
|
-
* @public
|
|
20
|
-
*/
|
|
21
|
-
lifecycleStatus: StepLifecycleStatus | undefined;
|
|
22
|
-
/**
|
|
23
|
-
* <p>A message that describes the lifecycle of the step.</p>
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
lifecycleStatusMessage?: string | undefined;
|
|
27
|
-
/**
|
|
28
|
-
* <p>The task run status for the job.</p>
|
|
29
|
-
* <ul>
|
|
30
|
-
* <li>
|
|
31
|
-
* <p>
|
|
32
|
-
* <code>PENDING</code>–pending and waiting for resources.</p>
|
|
33
|
-
* </li>
|
|
34
|
-
* <li>
|
|
35
|
-
* <p>
|
|
36
|
-
* <code>READY</code>–ready to process.</p>
|
|
37
|
-
* </li>
|
|
38
|
-
* <li>
|
|
39
|
-
* <p>
|
|
40
|
-
* <code>ASSIGNED</code>–assigned and will run next on a worker.</p>
|
|
41
|
-
* </li>
|
|
42
|
-
* <li>
|
|
43
|
-
* <p>
|
|
44
|
-
* <code>SCHEDULED</code>–scheduled to run on a worker.</p>
|
|
45
|
-
* </li>
|
|
46
|
-
* <li>
|
|
47
|
-
* <p>
|
|
48
|
-
* <code>INTERRUPTING</code>–being interrupted.</p>
|
|
49
|
-
* </li>
|
|
50
|
-
* <li>
|
|
51
|
-
* <p>
|
|
52
|
-
* <code>RUNNING</code>–running on a worker.</p>
|
|
53
|
-
* </li>
|
|
54
|
-
* <li>
|
|
55
|
-
* <p>
|
|
56
|
-
* <code>SUSPENDED</code>–the task is suspended.</p>
|
|
57
|
-
* </li>
|
|
58
|
-
* <li>
|
|
59
|
-
* <p>
|
|
60
|
-
* <code>CANCELED</code>–the task has been canceled.</p>
|
|
61
|
-
* </li>
|
|
62
|
-
* <li>
|
|
63
|
-
* <p>
|
|
64
|
-
* <code>FAILED</code>–the task has failed.</p>
|
|
65
|
-
* </li>
|
|
66
|
-
* <li>
|
|
67
|
-
* <p>
|
|
68
|
-
* <code>SUCCEEDED</code>–the task has succeeded.</p>
|
|
69
|
-
* </li>
|
|
70
|
-
* </ul>
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
taskRunStatus: TaskRunStatus | undefined;
|
|
74
|
-
/**
|
|
75
|
-
* <p>The number of tasks running on the job.</p>
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
79
|
-
/**
|
|
80
|
-
* <p>The total number of times tasks from the step failed and were retried.</p>
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
taskFailureRetryCount?: number | undefined;
|
|
84
|
-
/**
|
|
85
|
-
* <p>The task status to start with on the job.</p>
|
|
86
|
-
* @public
|
|
87
|
-
*/
|
|
88
|
-
targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
|
|
89
|
-
/**
|
|
90
|
-
* <p>The date and time the resource was created.</p>
|
|
91
|
-
* @public
|
|
92
|
-
*/
|
|
93
|
-
createdAt: Date | undefined;
|
|
94
|
-
/**
|
|
95
|
-
* <p>The user or system that created this resource.</p>
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
createdBy: string | undefined;
|
|
99
|
-
/**
|
|
100
|
-
* <p>The date and time the resource was updated.</p>
|
|
101
|
-
* @public
|
|
102
|
-
*/
|
|
103
|
-
updatedAt?: Date | undefined;
|
|
104
|
-
/**
|
|
105
|
-
* <p>The user or system that updated this resource.</p>
|
|
106
|
-
* @public
|
|
107
|
-
*/
|
|
108
|
-
updatedBy?: string | undefined;
|
|
109
|
-
/**
|
|
110
|
-
* <p>The date and time the resource started running.</p>
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
startedAt?: Date | undefined;
|
|
114
|
-
/**
|
|
115
|
-
* <p>The date and time the resource ended running.</p>
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
endedAt?: Date | undefined;
|
|
119
|
-
/**
|
|
120
|
-
* <p>The number of dependencies for the step.</p>
|
|
121
|
-
* @public
|
|
122
|
-
*/
|
|
123
|
-
dependencyCounts?: DependencyCounts | undefined;
|
|
124
|
-
}
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export interface ListStepsResponse {
|
|
129
|
-
/**
|
|
130
|
-
* <p>The steps on the list.</p>
|
|
131
|
-
* @public
|
|
132
|
-
*/
|
|
133
|
-
steps: StepSummary[] | undefined;
|
|
134
|
-
/**
|
|
135
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
nextToken?: string | undefined;
|
|
139
|
-
}
|
|
140
|
-
/**
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
export interface ListTasksRequest {
|
|
144
|
-
/**
|
|
145
|
-
* <p>The farm ID connected to the tasks.</p>
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
farmId: string | undefined;
|
|
149
|
-
/**
|
|
150
|
-
* <p>The queue ID connected to the tasks.</p>
|
|
151
|
-
* @public
|
|
152
|
-
*/
|
|
153
|
-
queueId: string | undefined;
|
|
154
|
-
/**
|
|
155
|
-
* <p>The job ID for the tasks.</p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
jobId: string | undefined;
|
|
159
|
-
/**
|
|
160
|
-
* <p>The step ID for the tasks.</p>
|
|
161
|
-
* @public
|
|
162
|
-
*/
|
|
163
|
-
stepId: string | undefined;
|
|
164
|
-
/**
|
|
165
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
166
|
-
* @public
|
|
167
|
-
*/
|
|
168
|
-
nextToken?: string | undefined;
|
|
169
|
-
/**
|
|
170
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
171
|
-
* @public
|
|
172
|
-
*/
|
|
173
|
-
maxResults?: number | undefined;
|
|
174
|
-
}
|
|
175
|
-
/**
|
|
176
|
-
* <p>The details of a task.</p>
|
|
177
|
-
* @public
|
|
178
|
-
*/
|
|
179
|
-
export interface TaskSummary {
|
|
180
|
-
/**
|
|
181
|
-
* <p>The task ID.</p>
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
taskId: string | undefined;
|
|
185
|
-
/**
|
|
186
|
-
* <p>The date and time the resource was created.</p>
|
|
187
|
-
* @public
|
|
188
|
-
*/
|
|
189
|
-
createdAt: Date | undefined;
|
|
190
|
-
/**
|
|
191
|
-
* <p>The user or system that created this resource.</p>
|
|
192
|
-
* @public
|
|
193
|
-
*/
|
|
194
|
-
createdBy: string | undefined;
|
|
195
|
-
/**
|
|
196
|
-
* <p>The run status of the task.</p>
|
|
197
|
-
* @public
|
|
198
|
-
*/
|
|
199
|
-
runStatus: TaskRunStatus | undefined;
|
|
200
|
-
/**
|
|
201
|
-
* <p>The run status on which the started.</p>
|
|
202
|
-
* @public
|
|
203
|
-
*/
|
|
204
|
-
targetRunStatus?: TaskTargetRunStatus | undefined;
|
|
205
|
-
/**
|
|
206
|
-
* <p>The number of times that the task failed and was retried.</p>
|
|
207
|
-
* @public
|
|
208
|
-
*/
|
|
209
|
-
failureRetryCount?: number | undefined;
|
|
210
|
-
/**
|
|
211
|
-
* <p>The task parameters.</p>
|
|
212
|
-
* @public
|
|
213
|
-
*/
|
|
214
|
-
parameters?: Record<string, TaskParameterValue> | undefined;
|
|
215
|
-
/**
|
|
216
|
-
* <p>The date and time the resource started running.</p>
|
|
217
|
-
* @public
|
|
218
|
-
*/
|
|
219
|
-
startedAt?: Date | undefined;
|
|
220
|
-
/**
|
|
221
|
-
* <p>The date and time the resource ended running.</p>
|
|
222
|
-
* @public
|
|
223
|
-
*/
|
|
224
|
-
endedAt?: Date | undefined;
|
|
225
|
-
/**
|
|
226
|
-
* <p>The date and time the resource was updated.</p>
|
|
227
|
-
* @public
|
|
228
|
-
*/
|
|
229
|
-
updatedAt?: Date | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* <p>The user or system that updated this resource.</p>
|
|
232
|
-
* @public
|
|
233
|
-
*/
|
|
234
|
-
updatedBy?: string | undefined;
|
|
235
|
-
/**
|
|
236
|
-
* <p>The latest session action for the task.</p>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
latestSessionActionId?: string | undefined;
|
|
240
|
-
}
|
|
241
|
-
/**
|
|
242
|
-
* @public
|
|
243
|
-
*/
|
|
244
|
-
export interface ListTasksResponse {
|
|
245
|
-
/**
|
|
246
|
-
* <p>Tasks for the job.</p>
|
|
247
|
-
* @public
|
|
248
|
-
*/
|
|
249
|
-
tasks: TaskSummary[] | undefined;
|
|
250
|
-
/**
|
|
251
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
252
|
-
* @public
|
|
253
|
-
*/
|
|
254
|
-
nextToken?: string | undefined;
|
|
255
|
-
}
|
|
256
|
-
/**
|
|
257
|
-
* @public
|
|
258
|
-
* @enum
|
|
259
|
-
*/
|
|
260
|
-
export declare const UpdateJobLifecycleStatus: {
|
|
261
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
262
|
-
};
|
|
263
|
-
/**
|
|
264
|
-
* @public
|
|
265
|
-
*/
|
|
266
|
-
export type UpdateJobLifecycleStatus = (typeof UpdateJobLifecycleStatus)[keyof typeof UpdateJobLifecycleStatus];
|
|
267
|
-
/**
|
|
268
|
-
* @public
|
|
269
|
-
*/
|
|
270
|
-
export interface UpdateJobRequest {
|
|
271
|
-
/**
|
|
272
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
273
|
-
* @public
|
|
274
|
-
*/
|
|
275
|
-
clientToken?: string | undefined;
|
|
276
|
-
/**
|
|
277
|
-
* <p>The task status to update the job's tasks to.</p>
|
|
278
|
-
* @public
|
|
279
|
-
*/
|
|
280
|
-
targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
|
|
281
|
-
/**
|
|
282
|
-
* <p>The job priority to update.</p>
|
|
283
|
-
* @public
|
|
284
|
-
*/
|
|
285
|
-
priority?: number | undefined;
|
|
286
|
-
/**
|
|
287
|
-
* <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
|
|
288
|
-
* @public
|
|
289
|
-
*/
|
|
290
|
-
maxFailedTasksCount?: number | undefined;
|
|
291
|
-
/**
|
|
292
|
-
* <p>The maximum number of retries for a job.</p>
|
|
293
|
-
* @public
|
|
294
|
-
*/
|
|
295
|
-
maxRetriesPerTask?: number | undefined;
|
|
296
|
-
/**
|
|
297
|
-
* <p>The status of a job in its lifecycle. When you change the status of the job to
|
|
298
|
-
* <code>ARCHIVED</code>, the job can't be scheduled or archived.</p>
|
|
299
|
-
* <important>
|
|
300
|
-
* <p>An archived jobs and its steps and tasks are deleted after 120 days. The job can't be
|
|
301
|
-
* recovered.</p>
|
|
302
|
-
* </important>
|
|
303
|
-
* @public
|
|
304
|
-
*/
|
|
305
|
-
lifecycleStatus?: UpdateJobLifecycleStatus | undefined;
|
|
306
|
-
/**
|
|
307
|
-
* <p>The maximum number of worker hosts that can concurrently process a job. When the
|
|
308
|
-
* <code>maxWorkerCount</code> is reached, no more workers will be assigned to process the
|
|
309
|
-
* job, even if the fleets assigned to the job's queue has available workers.</p>
|
|
310
|
-
* <p>You can't set the <code>maxWorkerCount</code> to 0. If you set it to -1, there is no
|
|
311
|
-
* maximum number of workers.</p>
|
|
312
|
-
* <p>If you don't specify the <code>maxWorkerCount</code>, the default is -1.</p>
|
|
313
|
-
* <p>The maximum number of workers that can process tasks in the job.</p>
|
|
314
|
-
* @public
|
|
315
|
-
*/
|
|
316
|
-
maxWorkerCount?: number | undefined;
|
|
317
|
-
/**
|
|
318
|
-
* <p>The farm ID of the job to update.</p>
|
|
319
|
-
* @public
|
|
320
|
-
*/
|
|
321
|
-
farmId: string | undefined;
|
|
322
|
-
/**
|
|
323
|
-
* <p>The queue ID of the job to update.</p>
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
queueId: string | undefined;
|
|
327
|
-
/**
|
|
328
|
-
* <p>The job ID to update.</p>
|
|
329
|
-
* @public
|
|
330
|
-
*/
|
|
331
|
-
jobId: string | undefined;
|
|
332
|
-
}
|
|
333
|
-
/**
|
|
334
|
-
* @public
|
|
335
|
-
*/
|
|
336
|
-
export interface UpdateJobResponse {
|
|
337
|
-
}
|
|
338
|
-
/**
|
|
339
|
-
* @public
|
|
340
|
-
*/
|
|
341
|
-
export interface UpdateSessionRequest {
|
|
342
|
-
/**
|
|
343
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
344
|
-
* @public
|
|
345
|
-
*/
|
|
346
|
-
clientToken?: string | undefined;
|
|
347
|
-
/**
|
|
348
|
-
* <p>The life cycle status to update in the session.</p>
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
targetLifecycleStatus: SessionLifecycleTargetStatus | undefined;
|
|
352
|
-
/**
|
|
353
|
-
* <p>The farm ID to update in the session.</p>
|
|
354
|
-
* @public
|
|
355
|
-
*/
|
|
356
|
-
farmId: string | undefined;
|
|
357
|
-
/**
|
|
358
|
-
* <p>The queue ID to update in the session.</p>
|
|
359
|
-
* @public
|
|
360
|
-
*/
|
|
361
|
-
queueId: string | undefined;
|
|
362
|
-
/**
|
|
363
|
-
* <p>The job ID to update in the session.</p>
|
|
364
|
-
* @public
|
|
365
|
-
*/
|
|
366
|
-
jobId: string | undefined;
|
|
367
|
-
/**
|
|
368
|
-
* <p>The session ID to update.</p>
|
|
369
|
-
* @public
|
|
370
|
-
*/
|
|
371
|
-
sessionId: string | undefined;
|
|
372
|
-
}
|
|
373
|
-
/**
|
|
374
|
-
* @public
|
|
375
|
-
*/
|
|
376
|
-
export interface UpdateSessionResponse {
|
|
377
|
-
}
|
|
378
|
-
/**
|
|
379
|
-
* @public
|
|
380
|
-
*/
|
|
381
|
-
export interface UpdateStepRequest {
|
|
382
|
-
/**
|
|
383
|
-
* <p>The task status to update the step's tasks to.</p>
|
|
384
|
-
* @public
|
|
385
|
-
*/
|
|
386
|
-
targetTaskRunStatus: StepTargetTaskRunStatus | undefined;
|
|
387
|
-
/**
|
|
388
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
389
|
-
* @public
|
|
390
|
-
*/
|
|
391
|
-
clientToken?: string | undefined;
|
|
392
|
-
/**
|
|
393
|
-
* <p>The farm ID to update.</p>
|
|
394
|
-
* @public
|
|
395
|
-
*/
|
|
396
|
-
farmId: string | undefined;
|
|
397
|
-
/**
|
|
398
|
-
* <p>The queue ID to update.</p>
|
|
399
|
-
* @public
|
|
400
|
-
*/
|
|
401
|
-
queueId: string | undefined;
|
|
402
|
-
/**
|
|
403
|
-
* <p>The job ID to update.</p>
|
|
404
|
-
* @public
|
|
405
|
-
*/
|
|
406
|
-
jobId: string | undefined;
|
|
407
|
-
/**
|
|
408
|
-
* <p>The step ID to update.</p>
|
|
409
|
-
* @public
|
|
410
|
-
*/
|
|
411
|
-
stepId: string | undefined;
|
|
412
|
-
}
|
|
413
|
-
/**
|
|
414
|
-
* @public
|
|
415
|
-
*/
|
|
416
|
-
export interface UpdateStepResponse {
|
|
417
|
-
}
|
|
418
|
-
/**
|
|
419
|
-
* @public
|
|
420
|
-
*/
|
|
421
|
-
export interface UpdateTaskRequest {
|
|
422
|
-
/**
|
|
423
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
424
|
-
* @public
|
|
425
|
-
*/
|
|
426
|
-
clientToken?: string | undefined;
|
|
427
|
-
/**
|
|
428
|
-
* <p>The run status with which to start the task.</p>
|
|
429
|
-
* @public
|
|
430
|
-
*/
|
|
431
|
-
targetRunStatus: TaskTargetRunStatus | undefined;
|
|
432
|
-
/**
|
|
433
|
-
* <p>The farm ID to update.</p>
|
|
434
|
-
* @public
|
|
435
|
-
*/
|
|
436
|
-
farmId: string | undefined;
|
|
437
|
-
/**
|
|
438
|
-
* <p>The queue ID to update.</p>
|
|
439
|
-
* @public
|
|
440
|
-
*/
|
|
441
|
-
queueId: string | undefined;
|
|
442
|
-
/**
|
|
443
|
-
* <p>The job ID to update.</p>
|
|
444
|
-
* @public
|
|
445
|
-
*/
|
|
446
|
-
jobId: string | undefined;
|
|
447
|
-
/**
|
|
448
|
-
* <p>The step ID to update.</p>
|
|
449
|
-
* @public
|
|
450
|
-
*/
|
|
451
|
-
stepId: string | undefined;
|
|
452
|
-
/**
|
|
453
|
-
* <p>The task ID to update.</p>
|
|
454
|
-
* @public
|
|
455
|
-
*/
|
|
456
|
-
taskId: string | undefined;
|
|
457
|
-
}
|
|
458
|
-
/**
|
|
459
|
-
* @public
|
|
460
|
-
*/
|
|
461
|
-
export interface UpdateTaskResponse {
|
|
462
|
-
}
|
|
463
|
-
/**
|
|
464
|
-
* @public
|
|
465
|
-
*/
|
|
466
|
-
export interface ListQueueEnvironmentsRequest {
|
|
467
|
-
/**
|
|
468
|
-
* <p>The farm ID for the queue environment list.</p>
|
|
469
|
-
* @public
|
|
470
|
-
*/
|
|
471
|
-
farmId: string | undefined;
|
|
472
|
-
/**
|
|
473
|
-
* <p>The queue ID for the queue environment list.</p>
|
|
474
|
-
* @public
|
|
475
|
-
*/
|
|
476
|
-
queueId: string | undefined;
|
|
477
|
-
/**
|
|
478
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
479
|
-
* @public
|
|
480
|
-
*/
|
|
481
|
-
nextToken?: string | undefined;
|
|
482
|
-
/**
|
|
483
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
484
|
-
* @public
|
|
485
|
-
*/
|
|
486
|
-
maxResults?: number | undefined;
|
|
487
|
-
}
|
|
488
|
-
/**
|
|
489
|
-
* <p>The summary of a queue environment.</p>
|
|
490
|
-
* @public
|
|
491
|
-
*/
|
|
492
|
-
export interface QueueEnvironmentSummary {
|
|
493
|
-
/**
|
|
494
|
-
* <p>The queue environment ID.</p>
|
|
495
|
-
* @public
|
|
496
|
-
*/
|
|
497
|
-
queueEnvironmentId: string | undefined;
|
|
498
|
-
/**
|
|
499
|
-
* <p>The name of the queue environment.</p>
|
|
500
|
-
* @public
|
|
501
|
-
*/
|
|
502
|
-
name: string | undefined;
|
|
503
|
-
/**
|
|
504
|
-
* <p>The queue environment's priority.</p>
|
|
505
|
-
* @public
|
|
506
|
-
*/
|
|
507
|
-
priority: number | undefined;
|
|
508
|
-
}
|
|
509
|
-
/**
|
|
510
|
-
* @public
|
|
511
|
-
*/
|
|
512
|
-
export interface ListQueueEnvironmentsResponse {
|
|
513
|
-
/**
|
|
514
|
-
* <p>The environments to include in the queue environments list.</p>
|
|
515
|
-
* @public
|
|
516
|
-
*/
|
|
517
|
-
environments: QueueEnvironmentSummary[] | undefined;
|
|
518
|
-
/**
|
|
519
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
520
|
-
* @public
|
|
521
|
-
*/
|
|
522
|
-
nextToken?: string | undefined;
|
|
523
|
-
}
|
|
524
|
-
/**
|
|
525
|
-
* @public
|
|
526
|
-
*/
|
|
527
|
-
export interface ListQueueMembersRequest {
|
|
528
|
-
/**
|
|
529
|
-
* <p>The farm ID for the queue.</p>
|
|
530
|
-
* @public
|
|
531
|
-
*/
|
|
532
|
-
farmId: string | undefined;
|
|
533
|
-
/**
|
|
534
|
-
* <p>The queue ID to include on the list.</p>
|
|
535
|
-
* @public
|
|
536
|
-
*/
|
|
537
|
-
queueId: string | undefined;
|
|
538
|
-
/**
|
|
539
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
540
|
-
* @public
|
|
541
|
-
*/
|
|
542
|
-
nextToken?: string | undefined;
|
|
543
|
-
/**
|
|
544
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
545
|
-
* @public
|
|
546
|
-
*/
|
|
547
|
-
maxResults?: number | undefined;
|
|
548
|
-
}
|
|
549
|
-
/**
|
|
550
|
-
* <p>The details of a queue member.</p>
|
|
551
|
-
* @public
|
|
552
|
-
*/
|
|
553
|
-
export interface QueueMember {
|
|
554
|
-
/**
|
|
555
|
-
* <p>The farm ID.</p>
|
|
556
|
-
* @public
|
|
557
|
-
*/
|
|
558
|
-
farmId: string | undefined;
|
|
559
|
-
/**
|
|
560
|
-
* <p>The queue ID.</p>
|
|
561
|
-
* @public
|
|
562
|
-
*/
|
|
563
|
-
queueId: string | undefined;
|
|
564
|
-
/**
|
|
565
|
-
* <p>The principal ID of the queue member.</p>
|
|
566
|
-
* @public
|
|
567
|
-
*/
|
|
568
|
-
principalId: string | undefined;
|
|
569
|
-
/**
|
|
570
|
-
* <p>The principal type of the queue member.</p>
|
|
571
|
-
* @public
|
|
572
|
-
*/
|
|
573
|
-
principalType: DeadlinePrincipalType | undefined;
|
|
574
|
-
/**
|
|
575
|
-
* <p>The identity store ID.</p>
|
|
576
|
-
* @public
|
|
577
|
-
*/
|
|
578
|
-
identityStoreId: string | undefined;
|
|
579
|
-
/**
|
|
580
|
-
* <p>The queue member's membership level.</p>
|
|
581
|
-
* @public
|
|
582
|
-
*/
|
|
583
|
-
membershipLevel: MembershipLevel | undefined;
|
|
584
|
-
}
|
|
585
|
-
/**
|
|
586
|
-
* @public
|
|
587
|
-
*/
|
|
588
|
-
export interface ListQueueMembersResponse {
|
|
589
|
-
/**
|
|
590
|
-
* <p>The members on the list.</p>
|
|
591
|
-
* @public
|
|
592
|
-
*/
|
|
593
|
-
members: QueueMember[] | undefined;
|
|
594
|
-
/**
|
|
595
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
596
|
-
* @public
|
|
597
|
-
*/
|
|
598
|
-
nextToken?: string | undefined;
|
|
599
|
-
}
|
|
600
|
-
/**
|
|
601
|
-
* @public
|
|
602
|
-
*/
|
|
603
|
-
export interface ListQueuesRequest {
|
|
604
|
-
/**
|
|
605
|
-
* <p>The farm ID of the queue.</p>
|
|
606
|
-
* @public
|
|
607
|
-
*/
|
|
608
|
-
farmId: string | undefined;
|
|
609
|
-
/**
|
|
610
|
-
* <p>The principal IDs to include in the list of queues.</p>
|
|
611
|
-
* @public
|
|
612
|
-
*/
|
|
613
|
-
principalId?: string | undefined;
|
|
614
|
-
/**
|
|
615
|
-
* <p>The status of the queues listed.</p>
|
|
616
|
-
* <ul>
|
|
617
|
-
* <li>
|
|
618
|
-
* <p>
|
|
619
|
-
* <code>ACTIVE</code>–The queues are active.</p>
|
|
620
|
-
* </li>
|
|
621
|
-
* <li>
|
|
622
|
-
* <p>
|
|
623
|
-
* <code>SCHEDULING</code>–The queues are scheduling.</p>
|
|
624
|
-
* </li>
|
|
625
|
-
* <li>
|
|
626
|
-
* <p>
|
|
627
|
-
* <code>SCHEDULING_BLOCKED</code>–The queue scheduling is blocked for these
|
|
628
|
-
* queues.</p>
|
|
629
|
-
* </li>
|
|
630
|
-
* </ul>
|
|
631
|
-
* @public
|
|
632
|
-
*/
|
|
633
|
-
status?: QueueStatus | undefined;
|
|
634
|
-
/**
|
|
635
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
636
|
-
* @public
|
|
637
|
-
*/
|
|
638
|
-
nextToken?: string | undefined;
|
|
639
|
-
/**
|
|
640
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
641
|
-
* @public
|
|
642
|
-
*/
|
|
643
|
-
maxResults?: number | undefined;
|
|
644
|
-
}
|
|
645
|
-
/**
|
|
646
|
-
* <p>The details of a queue summary.</p>
|
|
647
|
-
* @public
|
|
648
|
-
*/
|
|
649
|
-
export interface QueueSummary {
|
|
650
|
-
/**
|
|
651
|
-
* <p>The farm ID.</p>
|
|
652
|
-
* @public
|
|
653
|
-
*/
|
|
654
|
-
farmId: string | undefined;
|
|
655
|
-
/**
|
|
656
|
-
* <p>The queue ID.</p>
|
|
657
|
-
* @public
|
|
658
|
-
*/
|
|
659
|
-
queueId: string | undefined;
|
|
660
|
-
/**
|
|
661
|
-
* <p>The display name of the queue summary to update.</p>
|
|
662
|
-
* <important>
|
|
663
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
664
|
-
* </important>
|
|
665
|
-
* @public
|
|
666
|
-
*/
|
|
667
|
-
displayName: string | undefined;
|
|
668
|
-
/**
|
|
669
|
-
* <p>That status of the queue.</p>
|
|
670
|
-
* @public
|
|
671
|
-
*/
|
|
672
|
-
status: QueueStatus | undefined;
|
|
673
|
-
/**
|
|
674
|
-
* <p>The default action taken on a queue summary if a budget wasn't configured.</p>
|
|
675
|
-
* @public
|
|
676
|
-
*/
|
|
677
|
-
defaultBudgetAction: DefaultQueueBudgetAction | undefined;
|
|
678
|
-
/**
|
|
679
|
-
* <p>The reason the queue is blocked, if applicable.</p>
|
|
680
|
-
* @public
|
|
681
|
-
*/
|
|
682
|
-
blockedReason?: QueueBlockedReason | undefined;
|
|
683
|
-
/**
|
|
684
|
-
* <p>The date and time the resource was created.</p>
|
|
685
|
-
* @public
|
|
686
|
-
*/
|
|
687
|
-
createdAt: Date | undefined;
|
|
688
|
-
/**
|
|
689
|
-
* <p>The user or system that created this resource.</p>
|
|
690
|
-
* @public
|
|
691
|
-
*/
|
|
692
|
-
createdBy: string | undefined;
|
|
693
|
-
/**
|
|
694
|
-
* <p>The date and time the resource was updated.</p>
|
|
695
|
-
* @public
|
|
696
|
-
*/
|
|
697
|
-
updatedAt?: Date | undefined;
|
|
698
|
-
/**
|
|
699
|
-
* <p>The user or system that updated this resource.</p>
|
|
700
|
-
* @public
|
|
701
|
-
*/
|
|
702
|
-
updatedBy?: string | undefined;
|
|
703
|
-
}
|
|
704
|
-
/**
|
|
705
|
-
* @public
|
|
706
|
-
*/
|
|
707
|
-
export interface ListQueuesResponse {
|
|
708
|
-
/**
|
|
709
|
-
* <p>The queues on the list.</p>
|
|
710
|
-
* @public
|
|
711
|
-
*/
|
|
712
|
-
queues: QueueSummary[] | undefined;
|
|
713
|
-
/**
|
|
714
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
715
|
-
* @public
|
|
716
|
-
*/
|
|
717
|
-
nextToken?: string | undefined;
|
|
718
|
-
}
|
|
719
|
-
/**
|
|
720
|
-
* @public
|
|
721
|
-
*/
|
|
722
|
-
export interface ListStorageProfilesForQueueRequest {
|
|
723
|
-
/**
|
|
724
|
-
* <p>The farm ID of the queue's storage profile.</p>
|
|
725
|
-
* @public
|
|
726
|
-
*/
|
|
727
|
-
farmId: string | undefined;
|
|
728
|
-
/**
|
|
729
|
-
* <p>The queue ID for the storage profile.</p>
|
|
730
|
-
* @public
|
|
731
|
-
*/
|
|
732
|
-
queueId: string | undefined;
|
|
733
|
-
/**
|
|
734
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
735
|
-
* @public
|
|
736
|
-
*/
|
|
737
|
-
nextToken?: string | undefined;
|
|
738
|
-
/**
|
|
739
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
740
|
-
* @public
|
|
741
|
-
*/
|
|
742
|
-
maxResults?: number | undefined;
|
|
743
|
-
}
|
|
744
|
-
/**
|
|
745
|
-
* @public
|
|
746
|
-
*/
|
|
747
|
-
export interface ListStorageProfilesForQueueResponse {
|
|
748
|
-
/**
|
|
749
|
-
* <p>The storage profiles in the queue.</p>
|
|
750
|
-
* @public
|
|
751
|
-
*/
|
|
752
|
-
storageProfiles: StorageProfileSummary[] | undefined;
|
|
753
|
-
/**
|
|
754
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
755
|
-
* @public
|
|
756
|
-
*/
|
|
757
|
-
nextToken?: string | undefined;
|
|
758
|
-
}
|
|
759
|
-
/**
|
|
760
|
-
* @public
|
|
761
|
-
*/
|
|
762
|
-
export interface UpdateQueueRequest {
|
|
763
|
-
/**
|
|
764
|
-
* <p>The idempotency token to update in the queue.</p>
|
|
765
|
-
* @public
|
|
766
|
-
*/
|
|
767
|
-
clientToken?: string | undefined;
|
|
768
|
-
/**
|
|
769
|
-
* <p>The farm ID to update in the queue.</p>
|
|
770
|
-
* @public
|
|
771
|
-
*/
|
|
772
|
-
farmId: string | undefined;
|
|
773
|
-
/**
|
|
774
|
-
* <p>The queue ID to update.</p>
|
|
775
|
-
* @public
|
|
776
|
-
*/
|
|
777
|
-
queueId: string | undefined;
|
|
778
|
-
/**
|
|
779
|
-
* <p>The display name of the queue to update.</p>
|
|
780
|
-
* <important>
|
|
781
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
782
|
-
* </important>
|
|
783
|
-
* @public
|
|
784
|
-
*/
|
|
785
|
-
displayName?: string | undefined;
|
|
786
|
-
/**
|
|
787
|
-
* <p>The description of the queue to update.</p>
|
|
788
|
-
* <important>
|
|
789
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
790
|
-
* </important>
|
|
791
|
-
* @public
|
|
792
|
-
*/
|
|
793
|
-
description?: string | undefined;
|
|
794
|
-
/**
|
|
795
|
-
* <p>The default action to take for a queue update if a budget isn't configured.</p>
|
|
796
|
-
* @public
|
|
797
|
-
*/
|
|
798
|
-
defaultBudgetAction?: DefaultQueueBudgetAction | undefined;
|
|
799
|
-
/**
|
|
800
|
-
* <p>The job attachment settings to update for the
|
|
801
|
-
* queue.</p>
|
|
802
|
-
* @public
|
|
803
|
-
*/
|
|
804
|
-
jobAttachmentSettings?: JobAttachmentSettings | undefined;
|
|
805
|
-
/**
|
|
806
|
-
* <p>The IAM role ARN that's used to run jobs from this queue.</p>
|
|
807
|
-
* @public
|
|
808
|
-
*/
|
|
809
|
-
roleArn?: string | undefined;
|
|
810
|
-
/**
|
|
811
|
-
* <p>Update the jobs in the queue to run as a specified POSIX user.</p>
|
|
812
|
-
* @public
|
|
813
|
-
*/
|
|
814
|
-
jobRunAsUser?: JobRunAsUser | undefined;
|
|
815
|
-
/**
|
|
816
|
-
* <p>The required file system location names to add to the queue.</p>
|
|
817
|
-
* @public
|
|
818
|
-
*/
|
|
819
|
-
requiredFileSystemLocationNamesToAdd?: string[] | undefined;
|
|
820
|
-
/**
|
|
821
|
-
* <p>The required file system location names to remove from the queue.</p>
|
|
822
|
-
* @public
|
|
823
|
-
*/
|
|
824
|
-
requiredFileSystemLocationNamesToRemove?: string[] | undefined;
|
|
825
|
-
/**
|
|
826
|
-
* <p>The storage profile IDs to add.</p>
|
|
827
|
-
* @public
|
|
828
|
-
*/
|
|
829
|
-
allowedStorageProfileIdsToAdd?: string[] | undefined;
|
|
830
|
-
/**
|
|
831
|
-
* <p>The storage profile ID to remove.</p>
|
|
832
|
-
* @public
|
|
833
|
-
*/
|
|
834
|
-
allowedStorageProfileIdsToRemove?: string[] | undefined;
|
|
835
|
-
}
|
|
836
|
-
/**
|
|
837
|
-
* @public
|
|
838
|
-
*/
|
|
839
|
-
export interface UpdateQueueResponse {
|
|
840
|
-
}
|
|
841
|
-
/**
|
|
842
|
-
* @public
|
|
843
|
-
*/
|
|
844
|
-
export interface UpdateQueueEnvironmentRequest {
|
|
845
|
-
/**
|
|
846
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
847
|
-
* @public
|
|
848
|
-
*/
|
|
849
|
-
clientToken?: string | undefined;
|
|
850
|
-
/**
|
|
851
|
-
* <p>The farm ID of the queue environment to update.</p>
|
|
852
|
-
* @public
|
|
853
|
-
*/
|
|
854
|
-
farmId: string | undefined;
|
|
855
|
-
/**
|
|
856
|
-
* <p>The queue ID of the queue environment to update.</p>
|
|
857
|
-
* @public
|
|
858
|
-
*/
|
|
859
|
-
queueId: string | undefined;
|
|
860
|
-
/**
|
|
861
|
-
* <p>The queue environment ID to update.</p>
|
|
862
|
-
* @public
|
|
863
|
-
*/
|
|
864
|
-
queueEnvironmentId: string | undefined;
|
|
865
|
-
/**
|
|
866
|
-
* <p>The priority to update.</p>
|
|
867
|
-
* @public
|
|
868
|
-
*/
|
|
869
|
-
priority?: number | undefined;
|
|
870
|
-
/**
|
|
871
|
-
* <p>The template type to update.</p>
|
|
872
|
-
* @public
|
|
873
|
-
*/
|
|
874
|
-
templateType?: EnvironmentTemplateType | undefined;
|
|
875
|
-
/**
|
|
876
|
-
* <p>The template to update.</p>
|
|
877
|
-
* @public
|
|
878
|
-
*/
|
|
879
|
-
template?: string | undefined;
|
|
880
|
-
}
|
|
881
|
-
/**
|
|
882
|
-
* @public
|
|
883
|
-
*/
|
|
884
|
-
export interface UpdateQueueEnvironmentResponse {
|
|
885
|
-
}
|
|
886
|
-
/**
|
|
887
|
-
* @public
|
|
888
|
-
*/
|
|
889
|
-
export interface UpdateFarmRequest {
|
|
890
|
-
/**
|
|
891
|
-
* <p>The farm ID to update.</p>
|
|
892
|
-
* @public
|
|
893
|
-
*/
|
|
894
|
-
farmId: string | undefined;
|
|
895
|
-
/**
|
|
896
|
-
* <p>The display name of the farm to update.</p>
|
|
897
|
-
* <important>
|
|
898
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
899
|
-
* </important>
|
|
900
|
-
* @public
|
|
901
|
-
*/
|
|
902
|
-
displayName?: string | undefined;
|
|
903
|
-
/**
|
|
904
|
-
* <p>The description of the farm to update.</p>
|
|
905
|
-
* <important>
|
|
906
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
907
|
-
* </important>
|
|
908
|
-
* @public
|
|
909
|
-
*/
|
|
910
|
-
description?: string | undefined;
|
|
911
|
-
}
|
|
912
|
-
/**
|
|
913
|
-
* @public
|
|
914
|
-
*/
|
|
915
|
-
export interface UpdateFarmResponse {
|
|
916
|
-
}
|
|
917
|
-
/**
|
|
918
|
-
* @public
|
|
919
|
-
*/
|
|
920
|
-
export interface UpdateLimitRequest {
|
|
921
|
-
/**
|
|
922
|
-
* <p>The unique identifier of the farm that contains the limit.</p>
|
|
923
|
-
* @public
|
|
924
|
-
*/
|
|
925
|
-
farmId: string | undefined;
|
|
926
|
-
/**
|
|
927
|
-
* <p>The unique identifier of the limit to update.</p>
|
|
928
|
-
* @public
|
|
929
|
-
*/
|
|
930
|
-
limitId: string | undefined;
|
|
931
|
-
/**
|
|
932
|
-
* <p>The new display name of the limit.</p>
|
|
933
|
-
* <important>
|
|
934
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
935
|
-
* </important>
|
|
936
|
-
* @public
|
|
937
|
-
*/
|
|
938
|
-
displayName?: string | undefined;
|
|
939
|
-
/**
|
|
940
|
-
* <p>The new description of the limit.</p>
|
|
941
|
-
* <important>
|
|
942
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
943
|
-
* </important>
|
|
944
|
-
* @public
|
|
945
|
-
*/
|
|
946
|
-
description?: string | undefined;
|
|
947
|
-
/**
|
|
948
|
-
* <p>The maximum number of resources constrained by this limit. When all of the resources are
|
|
949
|
-
* in use, steps that require the limit won't be scheduled until the resource is
|
|
950
|
-
* available.</p>
|
|
951
|
-
* <p>If more than the new maximum number is currently in use, running jobs finish but no new
|
|
952
|
-
* jobs are started until the number of resources in use is below the new maximum
|
|
953
|
-
* number.</p>
|
|
954
|
-
* <p>The <code>maxCount</code> must not be 0. If the value is -1, there is no restriction on
|
|
955
|
-
* the number of resources that can be acquired for this limit.</p>
|
|
956
|
-
* @public
|
|
957
|
-
*/
|
|
958
|
-
maxCount?: number | undefined;
|
|
959
|
-
}
|
|
960
|
-
/**
|
|
961
|
-
* @public
|
|
962
|
-
*/
|
|
963
|
-
export interface UpdateLimitResponse {
|
|
964
|
-
}
|
|
965
|
-
/**
|
|
966
|
-
* @public
|
|
967
|
-
*/
|
|
968
|
-
export interface UpdateStorageProfileRequest {
|
|
969
|
-
/**
|
|
970
|
-
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
971
|
-
* @public
|
|
972
|
-
*/
|
|
973
|
-
clientToken?: string | undefined;
|
|
974
|
-
/**
|
|
975
|
-
* <p>The farm ID to update.</p>
|
|
976
|
-
* @public
|
|
977
|
-
*/
|
|
978
|
-
farmId: string | undefined;
|
|
979
|
-
/**
|
|
980
|
-
* <p>The storage profile ID to update.</p>
|
|
981
|
-
* @public
|
|
982
|
-
*/
|
|
983
|
-
storageProfileId: string | undefined;
|
|
984
|
-
/**
|
|
985
|
-
* <p>The display name of the storage profile to update.</p>
|
|
986
|
-
* <important>
|
|
987
|
-
* <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
|
|
988
|
-
* </important>
|
|
989
|
-
* @public
|
|
990
|
-
*/
|
|
991
|
-
displayName?: string | undefined;
|
|
992
|
-
/**
|
|
993
|
-
* <p>The OS system to update.</p>
|
|
994
|
-
* @public
|
|
995
|
-
*/
|
|
996
|
-
osFamily?: StorageProfileOperatingSystemFamily | undefined;
|
|
997
|
-
/**
|
|
998
|
-
* <p>The file system location names to add.</p>
|
|
999
|
-
* @public
|
|
1000
|
-
*/
|
|
1001
|
-
fileSystemLocationsToAdd?: FileSystemLocation[] | undefined;
|
|
1002
|
-
/**
|
|
1003
|
-
* <p>The file system location names to remove.</p>
|
|
1004
|
-
* @public
|
|
1005
|
-
*/
|
|
1006
|
-
fileSystemLocationsToRemove?: FileSystemLocation[] | undefined;
|
|
1007
|
-
}
|
|
1008
|
-
/**
|
|
1009
|
-
* @public
|
|
1010
|
-
*/
|
|
1011
|
-
export interface UpdateStorageProfileResponse {
|
|
1012
|
-
}
|
|
1013
|
-
/**
|
|
1014
|
-
* @public
|
|
1015
|
-
*/
|
|
1016
|
-
export interface GetQueueFleetAssociationRequest {
|
|
1017
|
-
/**
|
|
1018
|
-
* <p>The farm ID of the farm that contains the queue-fleet association.</p>
|
|
1019
|
-
* @public
|
|
1020
|
-
*/
|
|
1021
|
-
farmId: string | undefined;
|
|
1022
|
-
/**
|
|
1023
|
-
* <p>The queue ID for the queue-fleet association.</p>
|
|
1024
|
-
* @public
|
|
1025
|
-
*/
|
|
1026
|
-
queueId: string | undefined;
|
|
1027
|
-
/**
|
|
1028
|
-
* <p>The fleet ID for the queue-fleet association.</p>
|
|
1029
|
-
* @public
|
|
1030
|
-
*/
|
|
1031
|
-
fleetId: string | undefined;
|
|
1032
|
-
}
|
|
1033
|
-
/**
|
|
1034
|
-
* @public
|
|
1035
|
-
* @enum
|
|
1036
|
-
*/
|
|
1037
|
-
export declare const QueueFleetAssociationStatus: {
|
|
1038
|
-
readonly ACTIVE: "ACTIVE";
|
|
1039
|
-
readonly STOPPED: "STOPPED";
|
|
1040
|
-
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
1041
|
-
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
1042
|
-
};
|
|
1043
|
-
/**
|
|
1044
|
-
* @public
|
|
1045
|
-
*/
|
|
1046
|
-
export type QueueFleetAssociationStatus = (typeof QueueFleetAssociationStatus)[keyof typeof QueueFleetAssociationStatus];
|
|
1047
|
-
/**
|
|
1048
|
-
* @public
|
|
1049
|
-
*/
|
|
1050
|
-
export interface GetQueueFleetAssociationResponse {
|
|
1051
|
-
/**
|
|
1052
|
-
* <p>The queue ID for the queue-fleet association.</p>
|
|
1053
|
-
* @public
|
|
1054
|
-
*/
|
|
1055
|
-
queueId: string | undefined;
|
|
1056
|
-
/**
|
|
1057
|
-
* <p>The fleet ID for the queue-fleet association.</p>
|
|
1058
|
-
* @public
|
|
1059
|
-
*/
|
|
1060
|
-
fleetId: string | undefined;
|
|
1061
|
-
/**
|
|
1062
|
-
* <p>The status of the queue-fleet association.</p>
|
|
1063
|
-
* @public
|
|
1064
|
-
*/
|
|
1065
|
-
status: QueueFleetAssociationStatus | undefined;
|
|
1066
|
-
/**
|
|
1067
|
-
* <p>The date and time the resource was created.</p>
|
|
1068
|
-
* @public
|
|
1069
|
-
*/
|
|
1070
|
-
createdAt: Date | undefined;
|
|
1071
|
-
/**
|
|
1072
|
-
* <p>The user or system that created this resource.</p>
|
|
1073
|
-
* @public
|
|
1074
|
-
*/
|
|
1075
|
-
createdBy: string | undefined;
|
|
1076
|
-
/**
|
|
1077
|
-
* <p>The date and time the resource was updated.</p>
|
|
1078
|
-
* @public
|
|
1079
|
-
*/
|
|
1080
|
-
updatedAt?: Date | undefined;
|
|
1081
|
-
/**
|
|
1082
|
-
* <p>The user or system that updated this resource.</p>
|
|
1083
|
-
* @public
|
|
1084
|
-
*/
|
|
1085
|
-
updatedBy?: string | undefined;
|
|
1086
|
-
}
|
|
1087
|
-
/**
|
|
1088
|
-
* @public
|
|
1089
|
-
*/
|
|
1090
|
-
export interface GetQueueLimitAssociationRequest {
|
|
1091
|
-
/**
|
|
1092
|
-
* <p>The unique identifier of the farm that contains the associated queue and limit.</p>
|
|
1093
|
-
* @public
|
|
1094
|
-
*/
|
|
1095
|
-
farmId: string | undefined;
|
|
1096
|
-
/**
|
|
1097
|
-
* <p>The unique identifier of the queue associated with the limit.</p>
|
|
1098
|
-
* @public
|
|
1099
|
-
*/
|
|
1100
|
-
queueId: string | undefined;
|
|
1101
|
-
/**
|
|
1102
|
-
* <p>The unique identifier of the limit associated with the queue.</p>
|
|
1103
|
-
* @public
|
|
1104
|
-
*/
|
|
1105
|
-
limitId: string | undefined;
|
|
1106
|
-
}
|
|
1107
|
-
/**
|
|
1108
|
-
* @public
|
|
1109
|
-
* @enum
|
|
1110
|
-
*/
|
|
1111
|
-
export declare const QueueLimitAssociationStatus: {
|
|
1112
|
-
readonly ACTIVE: "ACTIVE";
|
|
1113
|
-
readonly STOPPED: "STOPPED";
|
|
1114
|
-
readonly STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS";
|
|
1115
|
-
readonly STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS";
|
|
1116
|
-
};
|
|
1117
|
-
/**
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
export type QueueLimitAssociationStatus = (typeof QueueLimitAssociationStatus)[keyof typeof QueueLimitAssociationStatus];
|
|
1121
|
-
/**
|
|
1122
|
-
* @public
|
|
1123
|
-
*/
|
|
1124
|
-
export interface GetQueueLimitAssociationResponse {
|
|
1125
|
-
/**
|
|
1126
|
-
* <p>The Unix timestamp of the date and time that the association was created.</p>
|
|
1127
|
-
* @public
|
|
1128
|
-
*/
|
|
1129
|
-
createdAt: Date | undefined;
|
|
1130
|
-
/**
|
|
1131
|
-
* <p>The user identifier of the person that created the association.</p>
|
|
1132
|
-
* @public
|
|
1133
|
-
*/
|
|
1134
|
-
createdBy: string | undefined;
|
|
1135
|
-
/**
|
|
1136
|
-
* <p>The Unix timestamp of the date and time that the association was last updated.</p>
|
|
1137
|
-
* @public
|
|
1138
|
-
*/
|
|
1139
|
-
updatedAt?: Date | undefined;
|
|
1140
|
-
/**
|
|
1141
|
-
* <p>The user identifier of the person that last updated the association.</p>
|
|
1142
|
-
* @public
|
|
1143
|
-
*/
|
|
1144
|
-
updatedBy?: string | undefined;
|
|
1145
|
-
/**
|
|
1146
|
-
* <p>The unique identifier of the queue associated with the limit.</p>
|
|
1147
|
-
* @public
|
|
1148
|
-
*/
|
|
1149
|
-
queueId: string | undefined;
|
|
1150
|
-
/**
|
|
1151
|
-
* <p>The unique identifier of the limit associated with the queue.</p>
|
|
1152
|
-
* @public
|
|
1153
|
-
*/
|
|
1154
|
-
limitId: string | undefined;
|
|
1155
|
-
/**
|
|
1156
|
-
* <p>The current status of the limit.</p>
|
|
1157
|
-
* @public
|
|
1158
|
-
*/
|
|
1159
|
-
status: QueueLimitAssociationStatus | undefined;
|
|
1160
|
-
}
|
|
1161
|
-
/**
|
|
1162
|
-
* @public
|
|
1163
|
-
*/
|
|
1164
|
-
export interface GetSessionsStatisticsAggregationRequest {
|
|
1165
|
-
/**
|
|
1166
|
-
* <p>The identifier of the farm to include in the statistics. This should be the same as the
|
|
1167
|
-
* farm ID used in the call to the <code>StartSessionsStatisticsAggregation</code>
|
|
1168
|
-
* operation.</p>
|
|
1169
|
-
* @public
|
|
1170
|
-
*/
|
|
1171
|
-
farmId: string | undefined;
|
|
1172
|
-
/**
|
|
1173
|
-
* <p>The identifier returned by the <code>StartSessionsStatisticsAggregation</code> operation
|
|
1174
|
-
* that identifies the aggregated statistics.</p>
|
|
1175
|
-
* @public
|
|
1176
|
-
*/
|
|
1177
|
-
aggregationId: string | undefined;
|
|
1178
|
-
/**
|
|
1179
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
1180
|
-
* @public
|
|
1181
|
-
*/
|
|
1182
|
-
maxResults?: number | undefined;
|
|
1183
|
-
/**
|
|
1184
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
1185
|
-
* @public
|
|
1186
|
-
*/
|
|
1187
|
-
nextToken?: string | undefined;
|
|
1188
|
-
}
|
|
1189
|
-
/**
|
|
1190
|
-
* <p>The minimum, maximum, average, and sum.</p>
|
|
1191
|
-
* @public
|
|
1192
|
-
*/
|
|
1193
|
-
export interface Stats {
|
|
1194
|
-
/**
|
|
1195
|
-
* <p>The minimum of the usage statistics.</p>
|
|
1196
|
-
* @public
|
|
1197
|
-
*/
|
|
1198
|
-
min?: number | undefined;
|
|
1199
|
-
/**
|
|
1200
|
-
* <p>The maximum among the usage statistics.</p>
|
|
1201
|
-
* @public
|
|
1202
|
-
*/
|
|
1203
|
-
max?: number | undefined;
|
|
1204
|
-
/**
|
|
1205
|
-
* <p>The average of the usage statistics.</p>
|
|
1206
|
-
* @public
|
|
1207
|
-
*/
|
|
1208
|
-
avg?: number | undefined;
|
|
1209
|
-
/**
|
|
1210
|
-
* <p>The sum of the usage statistics.</p>
|
|
1211
|
-
* @public
|
|
1212
|
-
*/
|
|
1213
|
-
sum?: number | undefined;
|
|
1214
|
-
}
|
|
1215
|
-
/**
|
|
1216
|
-
* @public
|
|
1217
|
-
* @enum
|
|
1218
|
-
*/
|
|
1219
|
-
export declare const UsageType: {
|
|
1220
|
-
readonly COMPUTE: "COMPUTE";
|
|
1221
|
-
readonly LICENSE: "LICENSE";
|
|
1222
|
-
};
|
|
1223
|
-
/**
|
|
1224
|
-
* @public
|
|
1225
|
-
*/
|
|
1226
|
-
export type UsageType = (typeof UsageType)[keyof typeof UsageType];
|
|
1227
|
-
/**
|
|
1228
|
-
* <p>A list of statistics for a session.</p>
|
|
1229
|
-
* @public
|
|
1230
|
-
*/
|
|
1231
|
-
export interface Statistics {
|
|
1232
|
-
/**
|
|
1233
|
-
* <p>The queue ID.</p>
|
|
1234
|
-
* @public
|
|
1235
|
-
*/
|
|
1236
|
-
queueId?: string | undefined;
|
|
1237
|
-
/**
|
|
1238
|
-
* <p>The fleet ID.</p>
|
|
1239
|
-
* @public
|
|
1240
|
-
*/
|
|
1241
|
-
fleetId?: string | undefined;
|
|
1242
|
-
/**
|
|
1243
|
-
* <p>The job ID.</p>
|
|
1244
|
-
* @public
|
|
1245
|
-
*/
|
|
1246
|
-
jobId?: string | undefined;
|
|
1247
|
-
/**
|
|
1248
|
-
* <p>The job name.</p>
|
|
1249
|
-
* @public
|
|
1250
|
-
*/
|
|
1251
|
-
jobName?: string | undefined;
|
|
1252
|
-
/**
|
|
1253
|
-
* <p>The user ID.</p>
|
|
1254
|
-
* @public
|
|
1255
|
-
*/
|
|
1256
|
-
userId?: string | undefined;
|
|
1257
|
-
/**
|
|
1258
|
-
* <p>The type of usage for the statistics.</p>
|
|
1259
|
-
* @public
|
|
1260
|
-
*/
|
|
1261
|
-
usageType?: UsageType | undefined;
|
|
1262
|
-
/**
|
|
1263
|
-
* <p>The licensed product.</p>
|
|
1264
|
-
* @public
|
|
1265
|
-
*/
|
|
1266
|
-
licenseProduct?: string | undefined;
|
|
1267
|
-
/**
|
|
1268
|
-
* <p>The type of instance.</p>
|
|
1269
|
-
* @public
|
|
1270
|
-
*/
|
|
1271
|
-
instanceType?: string | undefined;
|
|
1272
|
-
/**
|
|
1273
|
-
* <p>The number of instances in a list of statistics.</p>
|
|
1274
|
-
* @public
|
|
1275
|
-
*/
|
|
1276
|
-
count: number | undefined;
|
|
1277
|
-
/**
|
|
1278
|
-
* <p>How the statistics should appear in USD. Options include: minimum, maximum, average or
|
|
1279
|
-
* sum.</p>
|
|
1280
|
-
* @public
|
|
1281
|
-
*/
|
|
1282
|
-
costInUsd: Stats | undefined;
|
|
1283
|
-
/**
|
|
1284
|
-
* <p>The total aggregated runtime.</p>
|
|
1285
|
-
* @public
|
|
1286
|
-
*/
|
|
1287
|
-
runtimeInSeconds: Stats | undefined;
|
|
1288
|
-
/**
|
|
1289
|
-
* <p>The start time for the aggregation.</p>
|
|
1290
|
-
* @public
|
|
1291
|
-
*/
|
|
1292
|
-
aggregationStartTime?: Date | undefined;
|
|
1293
|
-
/**
|
|
1294
|
-
* <p>The end time for the aggregation.</p>
|
|
1295
|
-
* @public
|
|
1296
|
-
*/
|
|
1297
|
-
aggregationEndTime?: Date | undefined;
|
|
1298
|
-
}
|
|
1299
|
-
/**
|
|
1300
|
-
* @public
|
|
1301
|
-
* @enum
|
|
1302
|
-
*/
|
|
1303
|
-
export declare const SessionsStatisticsAggregationStatus: {
|
|
1304
|
-
readonly COMPLETED: "COMPLETED";
|
|
1305
|
-
readonly FAILED: "FAILED";
|
|
1306
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1307
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
1308
|
-
};
|
|
1309
|
-
/**
|
|
1310
|
-
* @public
|
|
1311
|
-
*/
|
|
1312
|
-
export type SessionsStatisticsAggregationStatus = (typeof SessionsStatisticsAggregationStatus)[keyof typeof SessionsStatisticsAggregationStatus];
|
|
1313
|
-
/**
|
|
1314
|
-
* @public
|
|
1315
|
-
*/
|
|
1316
|
-
export interface GetSessionsStatisticsAggregationResponse {
|
|
1317
|
-
/**
|
|
1318
|
-
* <p>The statistics for the specified fleets or queues.</p>
|
|
1319
|
-
* @public
|
|
1320
|
-
*/
|
|
1321
|
-
statistics?: Statistics[] | undefined;
|
|
1322
|
-
/**
|
|
1323
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
1324
|
-
* @public
|
|
1325
|
-
*/
|
|
1326
|
-
nextToken?: string | undefined;
|
|
1327
|
-
/**
|
|
1328
|
-
* <p>The status of the aggregated results. An aggregation may fail or time out if the results
|
|
1329
|
-
* are too large. If this happens, you can call the
|
|
1330
|
-
* <code>StartSessionsStatisticsAggregation</code> operation after you reduce the
|
|
1331
|
-
* aggregation time frame, reduce the number of queues or fleets in the aggregation, or
|
|
1332
|
-
* increase the period length.</p>
|
|
1333
|
-
* <p>If you call the <code>StartSessionsStatisticsAggregation </code> operation when the
|
|
1334
|
-
* status is <code>IN_PROGRESS</code>, you will receive a
|
|
1335
|
-
* <code>ThrottlingException</code>.</p>
|
|
1336
|
-
* @public
|
|
1337
|
-
*/
|
|
1338
|
-
status: SessionsStatisticsAggregationStatus | undefined;
|
|
1339
|
-
/**
|
|
1340
|
-
* <p>A message that describes the status.</p>
|
|
1341
|
-
* @public
|
|
1342
|
-
*/
|
|
1343
|
-
statusMessage?: string | undefined;
|
|
1344
|
-
}
|
|
1345
|
-
/**
|
|
1346
|
-
* @public
|
|
1347
|
-
*/
|
|
1348
|
-
export interface DeleteLicenseEndpointRequest {
|
|
1349
|
-
/**
|
|
1350
|
-
* <p>The license endpoint ID of the license endpoint to delete.</p>
|
|
1351
|
-
* @public
|
|
1352
|
-
*/
|
|
1353
|
-
licenseEndpointId: string | undefined;
|
|
1354
|
-
}
|
|
1355
|
-
/**
|
|
1356
|
-
* @public
|
|
1357
|
-
*/
|
|
1358
|
-
export interface DeleteLicenseEndpointResponse {
|
|
1359
|
-
}
|
|
1360
|
-
/**
|
|
1361
|
-
* @public
|
|
1362
|
-
*/
|
|
1363
|
-
export interface GetLicenseEndpointRequest {
|
|
1364
|
-
/**
|
|
1365
|
-
* <p>The license endpoint ID.</p>
|
|
1366
|
-
* @public
|
|
1367
|
-
*/
|
|
1368
|
-
licenseEndpointId: string | undefined;
|
|
1369
|
-
}
|
|
1370
|
-
/**
|
|
1371
|
-
* @public
|
|
1372
|
-
* @enum
|
|
1373
|
-
*/
|
|
1374
|
-
export declare const LicenseEndpointStatus: {
|
|
1375
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
1376
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
1377
|
-
readonly NOT_READY: "NOT_READY";
|
|
1378
|
-
readonly READY: "READY";
|
|
1379
|
-
};
|
|
1380
|
-
/**
|
|
1381
|
-
* @public
|
|
1382
|
-
*/
|
|
1383
|
-
export type LicenseEndpointStatus = (typeof LicenseEndpointStatus)[keyof typeof LicenseEndpointStatus];
|
|
1384
|
-
/**
|
|
1385
|
-
* @public
|
|
1386
|
-
*/
|
|
1387
|
-
export interface GetLicenseEndpointResponse {
|
|
1388
|
-
/**
|
|
1389
|
-
* <p>The license endpoint ID.</p>
|
|
1390
|
-
* @public
|
|
1391
|
-
*/
|
|
1392
|
-
licenseEndpointId: string | undefined;
|
|
1393
|
-
/**
|
|
1394
|
-
* <p>The status of the license endpoint.</p>
|
|
1395
|
-
* @public
|
|
1396
|
-
*/
|
|
1397
|
-
status: LicenseEndpointStatus | undefined;
|
|
1398
|
-
/**
|
|
1399
|
-
* <p>The status message of the license endpoint.</p>
|
|
1400
|
-
* @public
|
|
1401
|
-
*/
|
|
1402
|
-
statusMessage: string | undefined;
|
|
1403
|
-
/**
|
|
1404
|
-
* <p>The VCP(virtual private cloud) ID associated with the license endpoint.</p>
|
|
1405
|
-
* @public
|
|
1406
|
-
*/
|
|
1407
|
-
vpcId?: string | undefined;
|
|
1408
|
-
/**
|
|
1409
|
-
* <p>The DNS name.</p>
|
|
1410
|
-
* @public
|
|
1411
|
-
*/
|
|
1412
|
-
dnsName?: string | undefined;
|
|
1413
|
-
/**
|
|
1414
|
-
* <p>The subnet IDs.</p>
|
|
1415
|
-
* @public
|
|
1416
|
-
*/
|
|
1417
|
-
subnetIds?: string[] | undefined;
|
|
1418
|
-
/**
|
|
1419
|
-
* <p>The security group IDs for the license endpoint.</p>
|
|
1420
|
-
* @public
|
|
1421
|
-
*/
|
|
1422
|
-
securityGroupIds?: string[] | undefined;
|
|
1423
|
-
}
|
|
1424
|
-
/**
|
|
1425
|
-
* @public
|
|
1426
|
-
*/
|
|
1427
|
-
export interface ListLicenseEndpointsRequest {
|
|
1428
|
-
/**
|
|
1429
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
1430
|
-
* @public
|
|
1431
|
-
*/
|
|
1432
|
-
nextToken?: string | undefined;
|
|
1433
|
-
/**
|
|
1434
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
1435
|
-
* @public
|
|
1436
|
-
*/
|
|
1437
|
-
maxResults?: number | undefined;
|
|
1438
|
-
}
|
|
1439
|
-
/**
|
|
1440
|
-
* <p>The details for a license endpoint.</p>
|
|
1441
|
-
* @public
|
|
1442
|
-
*/
|
|
1443
|
-
export interface LicenseEndpointSummary {
|
|
1444
|
-
/**
|
|
1445
|
-
* <p>The license endpoint ID.</p>
|
|
1446
|
-
* @public
|
|
1447
|
-
*/
|
|
1448
|
-
licenseEndpointId?: string | undefined;
|
|
1449
|
-
/**
|
|
1450
|
-
* <p>The status of the license endpoint.</p>
|
|
1451
|
-
* @public
|
|
1452
|
-
*/
|
|
1453
|
-
status?: LicenseEndpointStatus | undefined;
|
|
1454
|
-
/**
|
|
1455
|
-
* <p>The status message of the license endpoint.</p>
|
|
1456
|
-
* @public
|
|
1457
|
-
*/
|
|
1458
|
-
statusMessage?: string | undefined;
|
|
1459
|
-
/**
|
|
1460
|
-
* <p>The VCP(virtual private cloud) ID associated with the license endpoint.</p>
|
|
1461
|
-
* @public
|
|
1462
|
-
*/
|
|
1463
|
-
vpcId?: string | undefined;
|
|
1464
|
-
}
|
|
1465
|
-
/**
|
|
1466
|
-
* @public
|
|
1467
|
-
*/
|
|
1468
|
-
export interface ListLicenseEndpointsResponse {
|
|
1469
|
-
/**
|
|
1470
|
-
* <p>The license endpoints.</p>
|
|
1471
|
-
* @public
|
|
1472
|
-
*/
|
|
1473
|
-
licenseEndpoints: LicenseEndpointSummary[] | undefined;
|
|
1474
|
-
/**
|
|
1475
|
-
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
1476
|
-
* @public
|
|
1477
|
-
*/
|
|
1478
|
-
nextToken?: string | undefined;
|
|
1479
|
-
}
|
|
1480
|
-
/**
|
|
1481
|
-
* @public
|
|
1482
|
-
*/
|
|
1483
|
-
export interface DeleteMeteredProductRequest {
|
|
1484
|
-
/**
|
|
1485
|
-
* <p>The ID of the license endpoint from which to remove the metered product.</p>
|
|
1486
|
-
* @public
|
|
1487
|
-
*/
|
|
1488
|
-
licenseEndpointId: string | undefined;
|
|
1489
|
-
/**
|
|
1490
|
-
* <p>The product ID to remove from the license endpoint.</p>
|
|
1491
|
-
* @public
|
|
1492
|
-
*/
|
|
1493
|
-
productId: string | undefined;
|
|
1494
|
-
}
|
|
1495
|
-
/**
|
|
1496
|
-
* @public
|
|
1497
|
-
*/
|
|
1498
|
-
export interface DeleteMeteredProductResponse {
|
|
1499
|
-
}
|
|
1500
|
-
/**
|
|
1501
|
-
* @public
|
|
1502
|
-
*/
|
|
1503
|
-
export interface ListMeteredProductsRequest {
|
|
1504
|
-
/**
|
|
1505
|
-
* <p>The license endpoint ID to include on the list of metered products.</p>
|
|
1506
|
-
* @public
|
|
1507
|
-
*/
|
|
1508
|
-
licenseEndpointId: string | undefined;
|
|
1509
|
-
/**
|
|
1510
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
1511
|
-
* @public
|
|
1512
|
-
*/
|
|
1513
|
-
nextToken?: string | undefined;
|
|
1514
|
-
/**
|
|
1515
|
-
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
1516
|
-
* @public
|
|
1517
|
-
*/
|
|
1518
|
-
maxResults?: number | undefined;
|
|
1519
|
-
}
|
|
1
|
+
import { ComparisonOperator, JobLifecycleStatus, JobTargetTaskRunStatus, LogicalOperator, Period, QueueFleetAssociationStatus, QueueLimitAssociationStatus, SearchTermMatchingType, SortOrder, StepLifecycleStatus, StepTargetTaskRunStatus, TaskRunStatus, TaskTargetRunStatus, UpdateQueueFleetAssociationStatus, UpdateQueueLimitAssociationStatus, UsageGroupByField, UsageStatistic, WorkerStatus } from "./enums";
|
|
2
|
+
import { DateTimeFilterExpression, HostPropertiesResponse, JobParameter, ParameterSpace, TaskParameterValue } from "./models_0";
|
|
1520
3
|
/**
|
|
1521
4
|
* <p>The details of a metered product.</p>
|
|
1522
5
|
* @public
|
|
@@ -2091,18 +574,6 @@ export interface ParameterFilterExpression {
|
|
|
2091
574
|
*/
|
|
2092
575
|
value: string | undefined;
|
|
2093
576
|
}
|
|
2094
|
-
/**
|
|
2095
|
-
* @public
|
|
2096
|
-
* @enum
|
|
2097
|
-
*/
|
|
2098
|
-
export declare const SearchTermMatchingType: {
|
|
2099
|
-
readonly CONTAINS: "CONTAINS";
|
|
2100
|
-
readonly FUZZY_MATCH: "FUZZY_MATCH";
|
|
2101
|
-
};
|
|
2102
|
-
/**
|
|
2103
|
-
* @public
|
|
2104
|
-
*/
|
|
2105
|
-
export type SearchTermMatchingType = (typeof SearchTermMatchingType)[keyof typeof SearchTermMatchingType];
|
|
2106
577
|
/**
|
|
2107
578
|
* <p>Searches for a particular search term.</p>
|
|
2108
579
|
* @public
|
|
@@ -2153,30 +624,6 @@ export interface StringFilterExpression {
|
|
|
2153
624
|
*/
|
|
2154
625
|
value: string | undefined;
|
|
2155
626
|
}
|
|
2156
|
-
/**
|
|
2157
|
-
* @public
|
|
2158
|
-
* @enum
|
|
2159
|
-
*/
|
|
2160
|
-
export declare const LogicalOperator: {
|
|
2161
|
-
readonly AND: "AND";
|
|
2162
|
-
readonly OR: "OR";
|
|
2163
|
-
};
|
|
2164
|
-
/**
|
|
2165
|
-
* @public
|
|
2166
|
-
*/
|
|
2167
|
-
export type LogicalOperator = (typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
2168
|
-
/**
|
|
2169
|
-
* @public
|
|
2170
|
-
* @enum
|
|
2171
|
-
*/
|
|
2172
|
-
export declare const SortOrder: {
|
|
2173
|
-
readonly ASCENDING: "ASCENDING";
|
|
2174
|
-
readonly DESCENDING: "DESCENDING";
|
|
2175
|
-
};
|
|
2176
|
-
/**
|
|
2177
|
-
* @public
|
|
2178
|
-
*/
|
|
2179
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2180
627
|
/**
|
|
2181
628
|
* <p>The field sorting order and name of the field.</p>
|
|
2182
629
|
* @public
|
|
@@ -2762,37 +1209,6 @@ export interface SearchWorkersResponse {
|
|
|
2762
1209
|
*/
|
|
2763
1210
|
totalResults: number | undefined;
|
|
2764
1211
|
}
|
|
2765
|
-
/**
|
|
2766
|
-
* @public
|
|
2767
|
-
* @enum
|
|
2768
|
-
*/
|
|
2769
|
-
export declare const UsageGroupByField: {
|
|
2770
|
-
readonly FLEET_ID: "FLEET_ID";
|
|
2771
|
-
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
2772
|
-
readonly JOB_ID: "JOB_ID";
|
|
2773
|
-
readonly LICENSE_PRODUCT: "LICENSE_PRODUCT";
|
|
2774
|
-
readonly QUEUE_ID: "QUEUE_ID";
|
|
2775
|
-
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
2776
|
-
readonly USER_ID: "USER_ID";
|
|
2777
|
-
};
|
|
2778
|
-
/**
|
|
2779
|
-
* @public
|
|
2780
|
-
*/
|
|
2781
|
-
export type UsageGroupByField = (typeof UsageGroupByField)[keyof typeof UsageGroupByField];
|
|
2782
|
-
/**
|
|
2783
|
-
* @public
|
|
2784
|
-
* @enum
|
|
2785
|
-
*/
|
|
2786
|
-
export declare const Period: {
|
|
2787
|
-
readonly DAILY: "DAILY";
|
|
2788
|
-
readonly HOURLY: "HOURLY";
|
|
2789
|
-
readonly MONTHLY: "MONTHLY";
|
|
2790
|
-
readonly WEEKLY: "WEEKLY";
|
|
2791
|
-
};
|
|
2792
|
-
/**
|
|
2793
|
-
* @public
|
|
2794
|
-
*/
|
|
2795
|
-
export type Period = (typeof Period)[keyof typeof Period];
|
|
2796
1212
|
/**
|
|
2797
1213
|
* <p>Specifies the fleet IDs or queue IDs to return statistics. You can specify only fleet
|
|
2798
1214
|
* IDs or queue IDS, not both.</p>
|
|
@@ -2841,20 +1257,6 @@ export declare namespace SessionsStatisticsResources {
|
|
|
2841
1257
|
_: (name: string, value: any) => T;
|
|
2842
1258
|
}
|
|
2843
1259
|
}
|
|
2844
|
-
/**
|
|
2845
|
-
* @public
|
|
2846
|
-
* @enum
|
|
2847
|
-
*/
|
|
2848
|
-
export declare const UsageStatistic: {
|
|
2849
|
-
readonly AVG: "AVG";
|
|
2850
|
-
readonly MAX: "MAX";
|
|
2851
|
-
readonly MIN: "MIN";
|
|
2852
|
-
readonly SUM: "SUM";
|
|
2853
|
-
};
|
|
2854
|
-
/**
|
|
2855
|
-
* @public
|
|
2856
|
-
*/
|
|
2857
|
-
export type UsageStatistic = (typeof UsageStatistic)[keyof typeof UsageStatistic];
|
|
2858
1260
|
/**
|
|
2859
1261
|
* @public
|
|
2860
1262
|
*/
|
|
@@ -2953,19 +1355,6 @@ export interface UntagResourceRequest {
|
|
|
2953
1355
|
*/
|
|
2954
1356
|
export interface UntagResourceResponse {
|
|
2955
1357
|
}
|
|
2956
|
-
/**
|
|
2957
|
-
* @public
|
|
2958
|
-
* @enum
|
|
2959
|
-
*/
|
|
2960
|
-
export declare const UpdateQueueFleetAssociationStatus: {
|
|
2961
|
-
readonly ACTIVE: "ACTIVE";
|
|
2962
|
-
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
2963
|
-
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
2964
|
-
};
|
|
2965
|
-
/**
|
|
2966
|
-
* @public
|
|
2967
|
-
*/
|
|
2968
|
-
export type UpdateQueueFleetAssociationStatus = (typeof UpdateQueueFleetAssociationStatus)[keyof typeof UpdateQueueFleetAssociationStatus];
|
|
2969
1358
|
/**
|
|
2970
1359
|
* @public
|
|
2971
1360
|
*/
|
|
@@ -2996,19 +1385,6 @@ export interface UpdateQueueFleetAssociationRequest {
|
|
|
2996
1385
|
*/
|
|
2997
1386
|
export interface UpdateQueueFleetAssociationResponse {
|
|
2998
1387
|
}
|
|
2999
|
-
/**
|
|
3000
|
-
* @public
|
|
3001
|
-
* @enum
|
|
3002
|
-
*/
|
|
3003
|
-
export declare const UpdateQueueLimitAssociationStatus: {
|
|
3004
|
-
readonly ACTIVE: "ACTIVE";
|
|
3005
|
-
readonly STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS";
|
|
3006
|
-
readonly STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS";
|
|
3007
|
-
};
|
|
3008
|
-
/**
|
|
3009
|
-
* @public
|
|
3010
|
-
*/
|
|
3011
|
-
export type UpdateQueueLimitAssociationStatus = (typeof UpdateQueueLimitAssociationStatus)[keyof typeof UpdateQueueLimitAssociationStatus];
|
|
3012
1388
|
/**
|
|
3013
1389
|
* @public
|
|
3014
1390
|
*/
|