@aws-sdk/client-deadline 3.1055.0 → 3.1057.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/README.md +21 -0
- package/dist-cjs/index.js +58 -0
- package/dist-cjs/schemas/schemas_0.js +88 -11
- package/dist-es/Deadline.js +8 -0
- package/dist-es/commands/DeleteVolumeCommand.js +16 -0
- package/dist-es/commands/GetVolumeCommand.js +16 -0
- package/dist-es/commands/ListVolumesCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListVolumesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +78 -2
- package/dist-types/Deadline.d.ts +28 -0
- package/dist-types/DeadlineClient.d.ts +5 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +7 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +109 -0
- package/dist-types/commands/GetFleetCommand.d.ts +7 -0
- package/dist-types/commands/GetVolumeCommand.d.ts +121 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +7 -0
- package/dist-types/commands/ListStepConsumersCommand.d.ts +2 -1
- package/dist-types/commands/ListStepDependenciesCommand.d.ts +1 -1
- package/dist-types/commands/ListStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -2
- package/dist-types/commands/ListVolumesCommand.d.ts +119 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +7 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +26 -3
- package/dist-types/models/models_0.d.ts +243 -249
- package/dist-types/models/models_1.d.ts +251 -4
- package/dist-types/pagination/ListVolumesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/Deadline.d.ts +58 -0
- package/dist-types/ts3.4/DeadlineClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetVolumeCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ListStepConsumersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStepDependenciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListVolumesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -56
- package/dist-types/ts3.4/models/models_1.d.ts +59 -0
- package/dist-types/ts3.4/pagination/ListVolumesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +6 -6
|
@@ -1,5 +1,252 @@
|
|
|
1
|
-
import type { ComparisonOperator, DeadlinePrincipalType, DefaultQueueBudgetAction, EnvironmentTemplateType, JobLifecycleStatus, JobTargetTaskRunStatus, LicenseEndpointStatus, LogicalOperator, MembershipLevel, Period, QueueBlockedReason, QueueFleetAssociationStatus, QueueLimitAssociationStatus, QueueStatus, SearchTermMatchingType, SessionLifecycleTargetStatus, SessionsStatisticsAggregationStatus, SortOrder, StepLifecycleStatus, StepTargetTaskRunStatus, StorageProfileOperatingSystemFamily, TaskRunStatus, TaskTargetRunStatus, UpdateJobLifecycleStatus, UpdateQueueFleetAssociationStatus, UpdateQueueLimitAssociationStatus, UsageGroupByField, UsageStatistic, UsageType, WorkerStatus } from "./enums";
|
|
2
|
-
import type { DateTimeFilterExpression, FileSystemLocation, HostPropertiesResponse, JobAttachmentSettings, JobParameter, JobRunAsUser, ParameterSpace, SchedulingConfiguration, StorageProfileSummary, TaskParameterValue } from "./models_0";
|
|
1
|
+
import type { ComparisonOperator, DeadlinePrincipalType, DefaultQueueBudgetAction, DependencyConsumerResolutionStatus, EnvironmentTemplateType, JobLifecycleStatus, JobTargetTaskRunStatus, LicenseEndpointStatus, LogicalOperator, MembershipLevel, Period, QueueBlockedReason, QueueFleetAssociationStatus, QueueLimitAssociationStatus, QueueStatus, SearchTermMatchingType, SessionLifecycleTargetStatus, SessionsStatisticsAggregationStatus, SortOrder, StepLifecycleStatus, StepTargetTaskRunStatus, StorageProfileOperatingSystemFamily, TaskRunStatus, TaskTargetRunStatus, UpdateJobLifecycleStatus, UpdateQueueFleetAssociationStatus, UpdateQueueLimitAssociationStatus, UsageGroupByField, UsageStatistic, UsageType, WorkerStatus } from "./enums";
|
|
2
|
+
import type { DateTimeFilterExpression, DependencyCounts, FileSystemLocation, HostPropertiesResponse, JobAttachmentSettings, JobParameter, JobRunAsUser, ParameterSpace, SchedulingConfiguration, StepConsumer, StorageProfileSummary, TaskParameterValue } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* Shared pagination field for List operation outputs (nextToken).
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ListStepConsumersResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The consumers on the list.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
consumers: StepConsumer[] | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <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>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
nextToken?: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface ListStepDependenciesRequest {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The farm ID for the step dependencies list.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
farmId: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The queue ID for the step dependencies list.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
queueId: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The job ID for the step dependencies list.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
jobId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The step ID to include on the list.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
stepId: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
nextToken?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <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>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
maxResults?: number | undefined;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The details of step dependency.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export interface StepDependency {
|
|
59
|
+
/**
|
|
60
|
+
* <p>The step ID.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
stepId: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The step dependency status.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
status: DependencyConsumerResolutionStatus | undefined;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Shared pagination field for List operation outputs (nextToken).
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export interface ListStepDependenciesResponse {
|
|
75
|
+
/**
|
|
76
|
+
* <p>The dependencies on the list.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
dependencies: StepDependency[] | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <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>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
nextToken?: string | undefined;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Shared pagination fields for List operation inputs (nextToken + maxResults).
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export interface ListStepsRequest {
|
|
91
|
+
/**
|
|
92
|
+
* <p>The farm ID to include on the list of steps.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
farmId: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>The queue ID to include on the list of steps.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
queueId: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The job ID to include on the list of steps.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
jobId: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
nextToken?: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <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>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
maxResults?: number | undefined;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* <p>The details for a step.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export interface StepSummary {
|
|
122
|
+
/**
|
|
123
|
+
* <p>The step ID.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
stepId: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The name of the step.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
name: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p>The life cycle status.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
lifecycleStatus: StepLifecycleStatus | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>A message that describes the lifecycle of the step.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
lifecycleStatusMessage?: string | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* <p>The task run status for the job.</p> <ul> <li> <p> <code>PENDING</code>–pending and waiting for resources.</p> </li> <li> <p> <code>READY</code>–ready to process.</p> </li> <li> <p> <code>ASSIGNED</code>–assigned and will run next on a worker.</p> </li> <li> <p> <code>SCHEDULED</code>–scheduled to run on a worker.</p> </li> <li> <p> <code>INTERRUPTING</code>–being interrupted.</p> </li> <li> <p> <code>RUNNING</code>–running on a worker.</p> </li> <li> <p> <code>SUSPENDED</code>–the task is suspended.</p> </li> <li> <p> <code>CANCELED</code>–the task has been canceled.</p> </li> <li> <p> <code>FAILED</code>–the task has failed.</p> </li> <li> <p> <code>SUCCEEDED</code>–the task has succeeded.</p> </li> </ul>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
taskRunStatus: TaskRunStatus | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The number of tasks running on the job.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>The total number of times tasks from the step failed and were retried.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
taskFailureRetryCount?: number | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The task status to update the job's tasks to.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* <p>The date and time the resource was created.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
createdAt: Date | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>The user or system that created this resource.</p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
createdBy: string | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* <p>The date and time the resource was updated.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
updatedAt?: Date | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* <p>The user or system that updated this resource.</p>
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
updatedBy?: string | undefined;
|
|
182
|
+
/**
|
|
183
|
+
* <p>The date and time the resource started running.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
startedAt?: Date | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* <p>The date and time the resource ended running.</p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
endedAt?: Date | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>The number of dependencies for the step.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
dependencyCounts?: DependencyCounts | undefined;
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Shared pagination field for List operation outputs (nextToken).
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export interface ListStepsResponse {
|
|
203
|
+
/**
|
|
204
|
+
* <p>The steps on the list.</p>
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
steps: StepSummary[] | undefined;
|
|
208
|
+
/**
|
|
209
|
+
* <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>
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
nextToken?: string | undefined;
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* Shared pagination fields for List operation inputs (nextToken + maxResults).
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export interface ListTasksRequest {
|
|
219
|
+
/**
|
|
220
|
+
* <p>The farm ID connected to the tasks.</p>
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
farmId: string | undefined;
|
|
224
|
+
/**
|
|
225
|
+
* <p>The queue ID connected to the tasks.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
queueId: string | undefined;
|
|
229
|
+
/**
|
|
230
|
+
* <p>The job ID for the tasks.</p>
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
jobId: string | undefined;
|
|
234
|
+
/**
|
|
235
|
+
* <p>The step ID for the tasks.</p>
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
stepId: string | undefined;
|
|
239
|
+
/**
|
|
240
|
+
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
241
|
+
* @public
|
|
242
|
+
*/
|
|
243
|
+
nextToken?: string | undefined;
|
|
244
|
+
/**
|
|
245
|
+
* <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>
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
maxResults?: number | undefined;
|
|
249
|
+
}
|
|
3
250
|
/**
|
|
4
251
|
* <p>The details of a task.</p>
|
|
5
252
|
* @public
|
|
@@ -1589,7 +1836,7 @@ export interface GetMonitorResponse {
|
|
|
1589
1836
|
*/
|
|
1590
1837
|
identityCenterInstanceArn: string | undefined;
|
|
1591
1838
|
/**
|
|
1592
|
-
* <p>The
|
|
1839
|
+
* <p>The Region where IAM Identity Center is enabled.</p>
|
|
1593
1840
|
* @public
|
|
1594
1841
|
*/
|
|
1595
1842
|
identityCenterRegion?: string | undefined;
|
|
@@ -1691,7 +1938,7 @@ export interface MonitorSummary {
|
|
|
1691
1938
|
*/
|
|
1692
1939
|
identityCenterInstanceArn: string | undefined;
|
|
1693
1940
|
/**
|
|
1694
|
-
* <p>The
|
|
1941
|
+
* <p>The Region where IAM Identity Center is enabled.</p>
|
|
1695
1942
|
* @public
|
|
1696
1943
|
*/
|
|
1697
1944
|
identityCenterRegion?: string | undefined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListVolumesCommandInput, ListVolumesCommandOutput } from "../commands/ListVolumesCommand";
|
|
3
|
+
import type { DeadlinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListVolumes: (config: DeadlinePaginationConfiguration, input: ListVolumesCommandInput, ...rest: any[]) => Paginator<ListVolumesCommandOutput>;
|
|
@@ -27,4 +27,5 @@ export * from "./ListStepsPaginator";
|
|
|
27
27
|
export * from "./ListStorageProfilesPaginator";
|
|
28
28
|
export * from "./ListStorageProfilesForQueuePaginator";
|
|
29
29
|
export * from "./ListTasksPaginator";
|
|
30
|
+
export * from "./ListVolumesPaginator";
|
|
30
31
|
export * from "./ListWorkersPaginator";
|
|
@@ -145,6 +145,8 @@ export declare var DeleteQueueRequest$: StaticStructureSchema;
|
|
|
145
145
|
export declare var DeleteQueueResponse$: StaticStructureSchema;
|
|
146
146
|
export declare var DeleteStorageProfileRequest$: StaticStructureSchema;
|
|
147
147
|
export declare var DeleteStorageProfileResponse$: StaticStructureSchema;
|
|
148
|
+
export declare var DeleteVolumeRequest$: StaticStructureSchema;
|
|
149
|
+
export declare var DeleteVolumeResponse$: StaticStructureSchema;
|
|
148
150
|
export declare var DeleteWorkerRequest$: StaticStructureSchema;
|
|
149
151
|
export declare var DeleteWorkerResponse$: StaticStructureSchema;
|
|
150
152
|
export declare var DependencyCounts$: StaticStructureSchema;
|
|
@@ -212,6 +214,8 @@ export declare var GetStorageProfileRequest$: StaticStructureSchema;
|
|
|
212
214
|
export declare var GetStorageProfileResponse$: StaticStructureSchema;
|
|
213
215
|
export declare var GetTaskRequest$: StaticStructureSchema;
|
|
214
216
|
export declare var GetTaskResponse$: StaticStructureSchema;
|
|
217
|
+
export declare var GetVolumeRequest$: StaticStructureSchema;
|
|
218
|
+
export declare var GetVolumeResponse$: StaticStructureSchema;
|
|
215
219
|
export declare var GetWorkerRequest$: StaticStructureSchema;
|
|
216
220
|
export declare var GetWorkerResponse$: StaticStructureSchema;
|
|
217
221
|
export declare var HostConfiguration$: StaticStructureSchema;
|
|
@@ -287,6 +291,8 @@ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
|
287
291
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
288
292
|
export declare var ListTasksRequest$: StaticStructureSchema;
|
|
289
293
|
export declare var ListTasksResponse$: StaticStructureSchema;
|
|
294
|
+
export declare var ListVolumesRequest$: StaticStructureSchema;
|
|
295
|
+
export declare var ListVolumesResponse$: StaticStructureSchema;
|
|
290
296
|
export declare var ListWorkersRequest$: StaticStructureSchema;
|
|
291
297
|
export declare var ListWorkersResponse$: StaticStructureSchema;
|
|
292
298
|
export declare var LogConfiguration$: StaticStructureSchema;
|
|
@@ -298,6 +304,7 @@ export declare var ParameterFilterExpression$: StaticStructureSchema;
|
|
|
298
304
|
export declare var ParameterSortExpression$: StaticStructureSchema;
|
|
299
305
|
export declare var ParameterSpace$: StaticStructureSchema;
|
|
300
306
|
export declare var PathMappingRule$: StaticStructureSchema;
|
|
307
|
+
export declare var PersistentVolumeConfiguration$: StaticStructureSchema;
|
|
301
308
|
export declare var PosixUser$: StaticStructureSchema;
|
|
302
309
|
export declare var PriorityBalancedSchedulingConfiguration$: StaticStructureSchema;
|
|
303
310
|
export declare var PriorityFifoSchedulingConfiguration$: StaticStructureSchema;
|
|
@@ -397,6 +404,7 @@ export declare var UpdateWorkerScheduleResponse$: StaticStructureSchema;
|
|
|
397
404
|
export declare var UserJobsFirst$: StaticStructureSchema;
|
|
398
405
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
399
406
|
export declare var VCpuCountRange$: StaticStructureSchema;
|
|
407
|
+
export declare var VolumeSummary$: StaticStructureSchema;
|
|
400
408
|
export declare var VpcConfiguration$: StaticStructureSchema;
|
|
401
409
|
export declare var WeightedBalancedSchedulingConfiguration$: StaticStructureSchema;
|
|
402
410
|
export declare var WindowsUser$: StaticStructureSchema;
|
|
@@ -467,6 +475,7 @@ export declare var DeleteQueueEnvironment$: StaticOperationSchema;
|
|
|
467
475
|
export declare var DeleteQueueFleetAssociation$: StaticOperationSchema;
|
|
468
476
|
export declare var DeleteQueueLimitAssociation$: StaticOperationSchema;
|
|
469
477
|
export declare var DeleteStorageProfile$: StaticOperationSchema;
|
|
478
|
+
export declare var DeleteVolume$: StaticOperationSchema;
|
|
470
479
|
export declare var DeleteWorker$: StaticOperationSchema;
|
|
471
480
|
export declare var DisassociateMemberFromFarm$: StaticOperationSchema;
|
|
472
481
|
export declare var DisassociateMemberFromFleet$: StaticOperationSchema;
|
|
@@ -491,6 +500,7 @@ export declare var GetStep$: StaticOperationSchema;
|
|
|
491
500
|
export declare var GetStorageProfile$: StaticOperationSchema;
|
|
492
501
|
export declare var GetStorageProfileForQueue$: StaticOperationSchema;
|
|
493
502
|
export declare var GetTask$: StaticOperationSchema;
|
|
503
|
+
export declare var GetVolume$: StaticOperationSchema;
|
|
494
504
|
export declare var GetWorker$: StaticOperationSchema;
|
|
495
505
|
export declare var ListAvailableMeteredProducts$: StaticOperationSchema;
|
|
496
506
|
export declare var ListBudgets$: StaticOperationSchema;
|
|
@@ -520,6 +530,7 @@ export declare var ListStorageProfiles$: StaticOperationSchema;
|
|
|
520
530
|
export declare var ListStorageProfilesForQueue$: StaticOperationSchema;
|
|
521
531
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
522
532
|
export declare var ListTasks$: StaticOperationSchema;
|
|
533
|
+
export declare var ListVolumes$: StaticOperationSchema;
|
|
523
534
|
export declare var ListWorkers$: StaticOperationSchema;
|
|
524
535
|
export declare var PutMeteredProduct$: StaticOperationSchema;
|
|
525
536
|
export declare var SearchJobs$: StaticOperationSchema;
|
|
@@ -181,6 +181,10 @@ import {
|
|
|
181
181
|
DeleteStorageProfileCommandInput,
|
|
182
182
|
DeleteStorageProfileCommandOutput,
|
|
183
183
|
} from "./commands/DeleteStorageProfileCommand";
|
|
184
|
+
import {
|
|
185
|
+
DeleteVolumeCommandInput,
|
|
186
|
+
DeleteVolumeCommandOutput,
|
|
187
|
+
} from "./commands/DeleteVolumeCommand";
|
|
184
188
|
import {
|
|
185
189
|
DeleteWorkerCommandInput,
|
|
186
190
|
DeleteWorkerCommandOutput,
|
|
@@ -277,6 +281,10 @@ import {
|
|
|
277
281
|
GetTaskCommandInput,
|
|
278
282
|
GetTaskCommandOutput,
|
|
279
283
|
} from "./commands/GetTaskCommand";
|
|
284
|
+
import {
|
|
285
|
+
GetVolumeCommandInput,
|
|
286
|
+
GetVolumeCommandOutput,
|
|
287
|
+
} from "./commands/GetVolumeCommand";
|
|
280
288
|
import {
|
|
281
289
|
GetWorkerCommandInput,
|
|
282
290
|
GetWorkerCommandOutput,
|
|
@@ -393,6 +401,10 @@ import {
|
|
|
393
401
|
ListTasksCommandInput,
|
|
394
402
|
ListTasksCommandOutput,
|
|
395
403
|
} from "./commands/ListTasksCommand";
|
|
404
|
+
import {
|
|
405
|
+
ListVolumesCommandInput,
|
|
406
|
+
ListVolumesCommandOutput,
|
|
407
|
+
} from "./commands/ListVolumesCommand";
|
|
396
408
|
import {
|
|
397
409
|
ListWorkersCommandInput,
|
|
398
410
|
ListWorkersCommandOutput,
|
|
@@ -1072,6 +1084,19 @@ export interface Deadline {
|
|
|
1072
1084
|
options: __HttpHandlerOptions,
|
|
1073
1085
|
cb: (err: any, data?: DeleteStorageProfileCommandOutput) => void
|
|
1074
1086
|
): void;
|
|
1087
|
+
deleteVolume(
|
|
1088
|
+
args: DeleteVolumeCommandInput,
|
|
1089
|
+
options?: __HttpHandlerOptions
|
|
1090
|
+
): Promise<DeleteVolumeCommandOutput>;
|
|
1091
|
+
deleteVolume(
|
|
1092
|
+
args: DeleteVolumeCommandInput,
|
|
1093
|
+
cb: (err: any, data?: DeleteVolumeCommandOutput) => void
|
|
1094
|
+
): void;
|
|
1095
|
+
deleteVolume(
|
|
1096
|
+
args: DeleteVolumeCommandInput,
|
|
1097
|
+
options: __HttpHandlerOptions,
|
|
1098
|
+
cb: (err: any, data?: DeleteVolumeCommandOutput) => void
|
|
1099
|
+
): void;
|
|
1075
1100
|
deleteWorker(
|
|
1076
1101
|
args: DeleteWorkerCommandInput,
|
|
1077
1102
|
options?: __HttpHandlerOptions
|
|
@@ -1384,6 +1409,19 @@ export interface Deadline {
|
|
|
1384
1409
|
options: __HttpHandlerOptions,
|
|
1385
1410
|
cb: (err: any, data?: GetTaskCommandOutput) => void
|
|
1386
1411
|
): void;
|
|
1412
|
+
getVolume(
|
|
1413
|
+
args: GetVolumeCommandInput,
|
|
1414
|
+
options?: __HttpHandlerOptions
|
|
1415
|
+
): Promise<GetVolumeCommandOutput>;
|
|
1416
|
+
getVolume(
|
|
1417
|
+
args: GetVolumeCommandInput,
|
|
1418
|
+
cb: (err: any, data?: GetVolumeCommandOutput) => void
|
|
1419
|
+
): void;
|
|
1420
|
+
getVolume(
|
|
1421
|
+
args: GetVolumeCommandInput,
|
|
1422
|
+
options: __HttpHandlerOptions,
|
|
1423
|
+
cb: (err: any, data?: GetVolumeCommandOutput) => void
|
|
1424
|
+
): void;
|
|
1387
1425
|
getWorker(
|
|
1388
1426
|
args: GetWorkerCommandInput,
|
|
1389
1427
|
options?: __HttpHandlerOptions
|
|
@@ -1765,6 +1803,19 @@ export interface Deadline {
|
|
|
1765
1803
|
options: __HttpHandlerOptions,
|
|
1766
1804
|
cb: (err: any, data?: ListTasksCommandOutput) => void
|
|
1767
1805
|
): void;
|
|
1806
|
+
listVolumes(
|
|
1807
|
+
args: ListVolumesCommandInput,
|
|
1808
|
+
options?: __HttpHandlerOptions
|
|
1809
|
+
): Promise<ListVolumesCommandOutput>;
|
|
1810
|
+
listVolumes(
|
|
1811
|
+
args: ListVolumesCommandInput,
|
|
1812
|
+
cb: (err: any, data?: ListVolumesCommandOutput) => void
|
|
1813
|
+
): void;
|
|
1814
|
+
listVolumes(
|
|
1815
|
+
args: ListVolumesCommandInput,
|
|
1816
|
+
options: __HttpHandlerOptions,
|
|
1817
|
+
cb: (err: any, data?: ListVolumesCommandOutput) => void
|
|
1818
|
+
): void;
|
|
1768
1819
|
listWorkers(
|
|
1769
1820
|
args: ListWorkersCommandInput,
|
|
1770
1821
|
options?: __HttpHandlerOptions
|
|
@@ -2305,6 +2356,13 @@ export interface Deadline {
|
|
|
2305
2356
|
Exclude<keyof PaginationConfiguration, "client">
|
|
2306
2357
|
>
|
|
2307
2358
|
): Paginator<ListTasksCommandOutput>;
|
|
2359
|
+
paginateListVolumes(
|
|
2360
|
+
args: ListVolumesCommandInput,
|
|
2361
|
+
paginationConfig?: Pick<
|
|
2362
|
+
PaginationConfiguration,
|
|
2363
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2364
|
+
>
|
|
2365
|
+
): Paginator<ListVolumesCommandOutput>;
|
|
2308
2366
|
paginateListWorkers(
|
|
2309
2367
|
args: ListWorkersCommandInput,
|
|
2310
2368
|
paginationConfig?: Pick<
|
|
@@ -212,6 +212,10 @@ import {
|
|
|
212
212
|
DeleteStorageProfileCommandInput,
|
|
213
213
|
DeleteStorageProfileCommandOutput,
|
|
214
214
|
} from "./commands/DeleteStorageProfileCommand";
|
|
215
|
+
import {
|
|
216
|
+
DeleteVolumeCommandInput,
|
|
217
|
+
DeleteVolumeCommandOutput,
|
|
218
|
+
} from "./commands/DeleteVolumeCommand";
|
|
215
219
|
import {
|
|
216
220
|
DeleteWorkerCommandInput,
|
|
217
221
|
DeleteWorkerCommandOutput,
|
|
@@ -308,6 +312,10 @@ import {
|
|
|
308
312
|
GetTaskCommandInput,
|
|
309
313
|
GetTaskCommandOutput,
|
|
310
314
|
} from "./commands/GetTaskCommand";
|
|
315
|
+
import {
|
|
316
|
+
GetVolumeCommandInput,
|
|
317
|
+
GetVolumeCommandOutput,
|
|
318
|
+
} from "./commands/GetVolumeCommand";
|
|
311
319
|
import {
|
|
312
320
|
GetWorkerCommandInput,
|
|
313
321
|
GetWorkerCommandOutput,
|
|
@@ -424,6 +432,10 @@ import {
|
|
|
424
432
|
ListTasksCommandInput,
|
|
425
433
|
ListTasksCommandOutput,
|
|
426
434
|
} from "./commands/ListTasksCommand";
|
|
435
|
+
import {
|
|
436
|
+
ListVolumesCommandInput,
|
|
437
|
+
ListVolumesCommandOutput,
|
|
438
|
+
} from "./commands/ListVolumesCommand";
|
|
427
439
|
import {
|
|
428
440
|
ListWorkersCommandInput,
|
|
429
441
|
ListWorkersCommandOutput,
|
|
@@ -580,6 +592,7 @@ export type ServiceInputTypes =
|
|
|
580
592
|
| DeleteQueueFleetAssociationCommandInput
|
|
581
593
|
| DeleteQueueLimitAssociationCommandInput
|
|
582
594
|
| DeleteStorageProfileCommandInput
|
|
595
|
+
| DeleteVolumeCommandInput
|
|
583
596
|
| DeleteWorkerCommandInput
|
|
584
597
|
| DisassociateMemberFromFarmCommandInput
|
|
585
598
|
| DisassociateMemberFromFleetCommandInput
|
|
@@ -604,6 +617,7 @@ export type ServiceInputTypes =
|
|
|
604
617
|
| GetStorageProfileCommandInput
|
|
605
618
|
| GetStorageProfileForQueueCommandInput
|
|
606
619
|
| GetTaskCommandInput
|
|
620
|
+
| GetVolumeCommandInput
|
|
607
621
|
| GetWorkerCommandInput
|
|
608
622
|
| ListAvailableMeteredProductsCommandInput
|
|
609
623
|
| ListBudgetsCommandInput
|
|
@@ -633,6 +647,7 @@ export type ServiceInputTypes =
|
|
|
633
647
|
| ListStorageProfilesForQueueCommandInput
|
|
634
648
|
| ListTagsForResourceCommandInput
|
|
635
649
|
| ListTasksCommandInput
|
|
650
|
+
| ListVolumesCommandInput
|
|
636
651
|
| ListWorkersCommandInput
|
|
637
652
|
| PutMeteredProductCommandInput
|
|
638
653
|
| SearchJobsCommandInput
|
|
@@ -704,6 +719,7 @@ export type ServiceOutputTypes =
|
|
|
704
719
|
| DeleteQueueFleetAssociationCommandOutput
|
|
705
720
|
| DeleteQueueLimitAssociationCommandOutput
|
|
706
721
|
| DeleteStorageProfileCommandOutput
|
|
722
|
+
| DeleteVolumeCommandOutput
|
|
707
723
|
| DeleteWorkerCommandOutput
|
|
708
724
|
| DisassociateMemberFromFarmCommandOutput
|
|
709
725
|
| DisassociateMemberFromFleetCommandOutput
|
|
@@ -728,6 +744,7 @@ export type ServiceOutputTypes =
|
|
|
728
744
|
| GetStorageProfileCommandOutput
|
|
729
745
|
| GetStorageProfileForQueueCommandOutput
|
|
730
746
|
| GetTaskCommandOutput
|
|
747
|
+
| GetVolumeCommandOutput
|
|
731
748
|
| GetWorkerCommandOutput
|
|
732
749
|
| ListAvailableMeteredProductsCommandOutput
|
|
733
750
|
| ListBudgetsCommandOutput
|
|
@@ -757,6 +774,7 @@ export type ServiceOutputTypes =
|
|
|
757
774
|
| ListStorageProfilesForQueueCommandOutput
|
|
758
775
|
| ListTagsForResourceCommandOutput
|
|
759
776
|
| ListTasksCommandOutput
|
|
777
|
+
| ListVolumesCommandOutput
|
|
760
778
|
| ListWorkersCommandOutput
|
|
761
779
|
| PutMeteredProductCommandOutput
|
|
762
780
|
| SearchJobsCommandOutput
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeadlineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DeadlineClient";
|
|
8
|
+
import { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteVolumeCommandInput extends DeleteVolumeRequest {}
|
|
12
|
+
export interface DeleteVolumeCommandOutput
|
|
13
|
+
extends DeleteVolumeResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteVolumeCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteVolumeCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteVolumeCommandInput,
|
|
20
|
+
DeleteVolumeCommandOutput,
|
|
21
|
+
DeadlineClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteVolumeCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
DeleteVolumeCommandInput,
|
|
29
|
+
DeleteVolumeCommandOutput,
|
|
30
|
+
DeadlineClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteVolumeCommand extends DeleteVolumeCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: DeleteVolumeRequest;
|
|
42
|
+
output: {};
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: DeleteVolumeCommandInput;
|
|
46
|
+
output: DeleteVolumeCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeadlineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DeadlineClient";
|
|
8
|
+
import { GetVolumeRequest, GetVolumeResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetVolumeCommandInput extends GetVolumeRequest {}
|
|
12
|
+
export interface GetVolumeCommandOutput
|
|
13
|
+
extends GetVolumeResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetVolumeCommand_base: {
|
|
16
|
+
new (input: GetVolumeCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
|
+
GetVolumeCommandInput,
|
|
18
|
+
GetVolumeCommandOutput,
|
|
19
|
+
DeadlineClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (input: GetVolumeCommandInput): import("@smithy/core/client").CommandImpl<
|
|
24
|
+
GetVolumeCommandInput,
|
|
25
|
+
GetVolumeCommandOutput,
|
|
26
|
+
DeadlineClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare class GetVolumeCommand extends GetVolumeCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: GetVolumeRequest;
|
|
38
|
+
output: GetVolumeResponse;
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: GetVolumeCommandInput;
|
|
42
|
+
output: GetVolumeCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DeadlineClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListStepConsumersResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { ListStepConsumersRequest } from "../models/models_0";
|
|
9
|
+
import { ListStepConsumersResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListStepConsumersCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DeadlineClient";
|
|
8
|
-
import { ListStepsRequest, ListStepsResponse } from "../models/
|
|
8
|
+
import { ListStepsRequest, ListStepsResponse } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListStepsCommandInput extends ListStepsRequest {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DeadlineClient";
|
|
8
|
-
import { ListTasksRequest } from "../models/
|
|
9
|
-
import { ListTasksResponse } from "../models/models_1";
|
|
8
|
+
import { ListTasksRequest, ListTasksResponse } from "../models/models_1";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface ListTasksCommandInput extends ListTasksRequest {}
|