@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
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
export declare const AcceleratorName: {
|
|
2
|
+
readonly A10G: "a10g";
|
|
3
|
+
readonly L4: "l4";
|
|
4
|
+
readonly L40S: "l40s";
|
|
5
|
+
readonly T4: "t4";
|
|
6
|
+
};
|
|
7
|
+
export type AcceleratorName =
|
|
8
|
+
(typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
9
|
+
export declare const AcceleratorType: {
|
|
10
|
+
readonly GPU: "gpu";
|
|
11
|
+
};
|
|
12
|
+
export type AcceleratorType =
|
|
13
|
+
(typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
14
|
+
export declare const MembershipLevel: {
|
|
15
|
+
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
16
|
+
readonly MANAGER: "MANAGER";
|
|
17
|
+
readonly OWNER: "OWNER";
|
|
18
|
+
readonly VIEWER: "VIEWER";
|
|
19
|
+
};
|
|
20
|
+
export type MembershipLevel =
|
|
21
|
+
(typeof MembershipLevel)[keyof typeof MembershipLevel];
|
|
22
|
+
export declare const DeadlinePrincipalType: {
|
|
23
|
+
readonly GROUP: "GROUP";
|
|
24
|
+
readonly USER: "USER";
|
|
25
|
+
};
|
|
26
|
+
export type DeadlinePrincipalType =
|
|
27
|
+
(typeof DeadlinePrincipalType)[keyof typeof DeadlinePrincipalType];
|
|
28
|
+
export declare const ServiceQuotaExceededExceptionReason: {
|
|
29
|
+
readonly DEPENDENCY_LIMIT_EXCEEDED: "DEPENDENCY_LIMIT_EXCEEDED";
|
|
30
|
+
readonly KMS_KEY_LIMIT_EXCEEDED: "KMS_KEY_LIMIT_EXCEEDED";
|
|
31
|
+
readonly SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION";
|
|
32
|
+
};
|
|
33
|
+
export type ServiceQuotaExceededExceptionReason =
|
|
34
|
+
(typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
|
|
35
|
+
export declare const ValidationExceptionReason: {
|
|
36
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
37
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
38
|
+
readonly OTHER: "OTHER";
|
|
39
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
40
|
+
};
|
|
41
|
+
export type ValidationExceptionReason =
|
|
42
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
43
|
+
export declare const ConflictExceptionReason: {
|
|
44
|
+
readonly CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION";
|
|
45
|
+
readonly CONFLICT_EXCEPTION: "CONFLICT_EXCEPTION";
|
|
46
|
+
readonly RESOURCE_ALREADY_EXISTS: "RESOURCE_ALREADY_EXISTS";
|
|
47
|
+
readonly RESOURCE_IN_USE: "RESOURCE_IN_USE";
|
|
48
|
+
readonly STATUS_CONFLICT: "STATUS_CONFLICT";
|
|
49
|
+
};
|
|
50
|
+
export type ConflictExceptionReason =
|
|
51
|
+
(typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
52
|
+
export declare const JobAttachmentsFileSystem: {
|
|
53
|
+
readonly COPIED: "COPIED";
|
|
54
|
+
readonly VIRTUAL: "VIRTUAL";
|
|
55
|
+
};
|
|
56
|
+
export type JobAttachmentsFileSystem =
|
|
57
|
+
(typeof JobAttachmentsFileSystem)[keyof typeof JobAttachmentsFileSystem];
|
|
58
|
+
export declare const PathFormat: {
|
|
59
|
+
readonly POSIX: "posix";
|
|
60
|
+
readonly WINDOWS: "windows";
|
|
61
|
+
};
|
|
62
|
+
export type PathFormat = (typeof PathFormat)[keyof typeof PathFormat];
|
|
63
|
+
export declare const AutoScalingMode: {
|
|
64
|
+
readonly EVENT_BASED_AUTO_SCALING: "EVENT_BASED_AUTO_SCALING";
|
|
65
|
+
readonly NO_SCALING: "NO_SCALING";
|
|
66
|
+
};
|
|
67
|
+
export type AutoScalingMode =
|
|
68
|
+
(typeof AutoScalingMode)[keyof typeof AutoScalingMode];
|
|
69
|
+
export declare const AutoScalingStatus: {
|
|
70
|
+
readonly GROWING: "GROWING";
|
|
71
|
+
readonly SHRINKING: "SHRINKING";
|
|
72
|
+
readonly STEADY: "STEADY";
|
|
73
|
+
};
|
|
74
|
+
export type AutoScalingStatus =
|
|
75
|
+
(typeof AutoScalingStatus)[keyof typeof AutoScalingStatus];
|
|
76
|
+
export declare const RunAs: {
|
|
77
|
+
readonly QUEUE_CONFIGURED_USER: "QUEUE_CONFIGURED_USER";
|
|
78
|
+
readonly WORKER_AGENT_USER: "WORKER_AGENT_USER";
|
|
79
|
+
};
|
|
80
|
+
export type RunAs = (typeof RunAs)[keyof typeof RunAs];
|
|
81
|
+
export declare const JobEntityErrorCode: {
|
|
82
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
83
|
+
readonly ConflictException: "ConflictException";
|
|
84
|
+
readonly InternalServerException: "InternalServerException";
|
|
85
|
+
readonly MaxPayloadSizeExceeded: "MaxPayloadSizeExceeded";
|
|
86
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
87
|
+
readonly ValidationException: "ValidationException";
|
|
88
|
+
};
|
|
89
|
+
export type JobEntityErrorCode =
|
|
90
|
+
(typeof JobEntityErrorCode)[keyof typeof JobEntityErrorCode];
|
|
91
|
+
export declare const BudgetActionType: {
|
|
92
|
+
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
93
|
+
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
94
|
+
};
|
|
95
|
+
export type BudgetActionType =
|
|
96
|
+
(typeof BudgetActionType)[keyof typeof BudgetActionType];
|
|
97
|
+
export declare const BudgetStatus: {
|
|
98
|
+
readonly ACTIVE: "ACTIVE";
|
|
99
|
+
readonly INACTIVE: "INACTIVE";
|
|
100
|
+
};
|
|
101
|
+
export type BudgetStatus = (typeof BudgetStatus)[keyof typeof BudgetStatus];
|
|
102
|
+
export declare const ComparisonOperator: {
|
|
103
|
+
readonly EQUAL: "EQUAL";
|
|
104
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
105
|
+
readonly GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO";
|
|
106
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
107
|
+
readonly LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO";
|
|
108
|
+
readonly NOT_EQUAL: "NOT_EQUAL";
|
|
109
|
+
};
|
|
110
|
+
export type ComparisonOperator =
|
|
111
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
112
|
+
export declare const CompletedStatus: {
|
|
113
|
+
readonly CANCELED: "CANCELED";
|
|
114
|
+
readonly FAILED: "FAILED";
|
|
115
|
+
readonly INTERRUPTED: "INTERRUPTED";
|
|
116
|
+
readonly NEVER_ATTEMPTED: "NEVER_ATTEMPTED";
|
|
117
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
118
|
+
};
|
|
119
|
+
export type CompletedStatus =
|
|
120
|
+
(typeof CompletedStatus)[keyof typeof CompletedStatus];
|
|
121
|
+
export declare const JobTemplateType: {
|
|
122
|
+
readonly JSON: "JSON";
|
|
123
|
+
readonly YAML: "YAML";
|
|
124
|
+
};
|
|
125
|
+
export type JobTemplateType =
|
|
126
|
+
(typeof JobTemplateType)[keyof typeof JobTemplateType];
|
|
127
|
+
export declare const CpuArchitectureType: {
|
|
128
|
+
readonly ARM64: "arm64";
|
|
129
|
+
readonly X86_64: "x86_64";
|
|
130
|
+
};
|
|
131
|
+
export type CpuArchitectureType =
|
|
132
|
+
(typeof CpuArchitectureType)[keyof typeof CpuArchitectureType];
|
|
133
|
+
export declare const TagPropagationMode: {
|
|
134
|
+
readonly NO_PROPAGATION: "NO_PROPAGATION";
|
|
135
|
+
readonly PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH: "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH";
|
|
136
|
+
};
|
|
137
|
+
export type TagPropagationMode =
|
|
138
|
+
(typeof TagPropagationMode)[keyof typeof TagPropagationMode];
|
|
139
|
+
export declare const CustomerManagedFleetOperatingSystemFamily: {
|
|
140
|
+
readonly LINUX: "LINUX";
|
|
141
|
+
readonly MACOS: "MACOS";
|
|
142
|
+
readonly WINDOWS: "WINDOWS";
|
|
143
|
+
};
|
|
144
|
+
export type CustomerManagedFleetOperatingSystemFamily =
|
|
145
|
+
(typeof CustomerManagedFleetOperatingSystemFamily)[keyof typeof CustomerManagedFleetOperatingSystemFamily];
|
|
146
|
+
export declare const ServiceManagedFleetOperatingSystemFamily: {
|
|
147
|
+
readonly LINUX: "LINUX";
|
|
148
|
+
readonly WINDOWS: "WINDOWS";
|
|
149
|
+
};
|
|
150
|
+
export type ServiceManagedFleetOperatingSystemFamily =
|
|
151
|
+
(typeof ServiceManagedFleetOperatingSystemFamily)[keyof typeof ServiceManagedFleetOperatingSystemFamily];
|
|
152
|
+
export declare const Ec2MarketType: {
|
|
153
|
+
readonly ON_DEMAND: "on-demand";
|
|
154
|
+
readonly SPOT: "spot";
|
|
155
|
+
readonly WAIT_AND_SAVE: "wait-and-save";
|
|
156
|
+
};
|
|
157
|
+
export type Ec2MarketType = (typeof Ec2MarketType)[keyof typeof Ec2MarketType];
|
|
158
|
+
export declare const CreateJobTargetTaskRunStatus: {
|
|
159
|
+
readonly READY: "READY";
|
|
160
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
161
|
+
};
|
|
162
|
+
export type CreateJobTargetTaskRunStatus =
|
|
163
|
+
(typeof CreateJobTargetTaskRunStatus)[keyof typeof CreateJobTargetTaskRunStatus];
|
|
164
|
+
export declare const DefaultQueueBudgetAction: {
|
|
165
|
+
readonly NONE: "NONE";
|
|
166
|
+
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
167
|
+
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
168
|
+
};
|
|
169
|
+
export type DefaultQueueBudgetAction =
|
|
170
|
+
(typeof DefaultQueueBudgetAction)[keyof typeof DefaultQueueBudgetAction];
|
|
171
|
+
export declare const EnvironmentTemplateType: {
|
|
172
|
+
readonly JSON: "JSON";
|
|
173
|
+
readonly YAML: "YAML";
|
|
174
|
+
};
|
|
175
|
+
export type EnvironmentTemplateType =
|
|
176
|
+
(typeof EnvironmentTemplateType)[keyof typeof EnvironmentTemplateType];
|
|
177
|
+
export declare const FileSystemLocationType: {
|
|
178
|
+
readonly LOCAL: "LOCAL";
|
|
179
|
+
readonly SHARED: "SHARED";
|
|
180
|
+
};
|
|
181
|
+
export type FileSystemLocationType =
|
|
182
|
+
(typeof FileSystemLocationType)[keyof typeof FileSystemLocationType];
|
|
183
|
+
export declare const StorageProfileOperatingSystemFamily: {
|
|
184
|
+
readonly LINUX: "LINUX";
|
|
185
|
+
readonly MACOS: "MACOS";
|
|
186
|
+
readonly WINDOWS: "WINDOWS";
|
|
187
|
+
};
|
|
188
|
+
export type StorageProfileOperatingSystemFamily =
|
|
189
|
+
(typeof StorageProfileOperatingSystemFamily)[keyof typeof StorageProfileOperatingSystemFamily];
|
|
190
|
+
export declare const FleetStatus: {
|
|
191
|
+
readonly ACTIVE: "ACTIVE";
|
|
192
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
193
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
194
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
195
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
196
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
197
|
+
};
|
|
198
|
+
export type FleetStatus = (typeof FleetStatus)[keyof typeof FleetStatus];
|
|
199
|
+
export declare const WorkerStatus: {
|
|
200
|
+
readonly CREATED: "CREATED";
|
|
201
|
+
readonly IDLE: "IDLE";
|
|
202
|
+
readonly NOT_COMPATIBLE: "NOT_COMPATIBLE";
|
|
203
|
+
readonly NOT_RESPONDING: "NOT_RESPONDING";
|
|
204
|
+
readonly RUNNING: "RUNNING";
|
|
205
|
+
readonly STARTED: "STARTED";
|
|
206
|
+
readonly STOPPED: "STOPPED";
|
|
207
|
+
readonly STOPPING: "STOPPING";
|
|
208
|
+
};
|
|
209
|
+
export type WorkerStatus = (typeof WorkerStatus)[keyof typeof WorkerStatus];
|
|
210
|
+
export declare const SessionLifecycleStatus: {
|
|
211
|
+
readonly ENDED: "ENDED";
|
|
212
|
+
readonly STARTED: "STARTED";
|
|
213
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
214
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
215
|
+
readonly UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED";
|
|
216
|
+
};
|
|
217
|
+
export type SessionLifecycleStatus =
|
|
218
|
+
(typeof SessionLifecycleStatus)[keyof typeof SessionLifecycleStatus];
|
|
219
|
+
export declare const SessionLifecycleTargetStatus: {
|
|
220
|
+
readonly ENDED: "ENDED";
|
|
221
|
+
};
|
|
222
|
+
export type SessionLifecycleTargetStatus =
|
|
223
|
+
(typeof SessionLifecycleTargetStatus)[keyof typeof SessionLifecycleTargetStatus];
|
|
224
|
+
export declare const UpdatedWorkerStatus: {
|
|
225
|
+
readonly STARTED: "STARTED";
|
|
226
|
+
readonly STOPPED: "STOPPED";
|
|
227
|
+
readonly STOPPING: "STOPPING";
|
|
228
|
+
};
|
|
229
|
+
export type UpdatedWorkerStatus =
|
|
230
|
+
(typeof UpdatedWorkerStatus)[keyof typeof UpdatedWorkerStatus];
|
|
231
|
+
export declare const DesiredWorkerStatus: {
|
|
232
|
+
readonly STOPPED: "STOPPED";
|
|
233
|
+
};
|
|
234
|
+
export type DesiredWorkerStatus =
|
|
235
|
+
(typeof DesiredWorkerStatus)[keyof typeof DesiredWorkerStatus];
|
|
236
|
+
export declare const QueueBlockedReason: {
|
|
237
|
+
readonly BUDGET_THRESHOLD_REACHED: "BUDGET_THRESHOLD_REACHED";
|
|
238
|
+
readonly NO_BUDGET_CONFIGURED: "NO_BUDGET_CONFIGURED";
|
|
239
|
+
};
|
|
240
|
+
export type QueueBlockedReason =
|
|
241
|
+
(typeof QueueBlockedReason)[keyof typeof QueueBlockedReason];
|
|
242
|
+
export declare const QueueStatus: {
|
|
243
|
+
readonly IDLE: "IDLE";
|
|
244
|
+
readonly SCHEDULING: "SCHEDULING";
|
|
245
|
+
readonly SCHEDULING_BLOCKED: "SCHEDULING_BLOCKED";
|
|
246
|
+
};
|
|
247
|
+
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
248
|
+
export declare const JobLifecycleStatus: {
|
|
249
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
250
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
251
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
252
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
253
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
254
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
255
|
+
readonly UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED";
|
|
256
|
+
readonly UPLOAD_FAILED: "UPLOAD_FAILED";
|
|
257
|
+
readonly UPLOAD_IN_PROGRESS: "UPLOAD_IN_PROGRESS";
|
|
258
|
+
};
|
|
259
|
+
export type JobLifecycleStatus =
|
|
260
|
+
(typeof JobLifecycleStatus)[keyof typeof JobLifecycleStatus];
|
|
261
|
+
export declare const JobTargetTaskRunStatus: {
|
|
262
|
+
readonly CANCELED: "CANCELED";
|
|
263
|
+
readonly FAILED: "FAILED";
|
|
264
|
+
readonly PENDING: "PENDING";
|
|
265
|
+
readonly READY: "READY";
|
|
266
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
267
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
268
|
+
};
|
|
269
|
+
export type JobTargetTaskRunStatus =
|
|
270
|
+
(typeof JobTargetTaskRunStatus)[keyof typeof JobTargetTaskRunStatus];
|
|
271
|
+
export declare const TaskRunStatus: {
|
|
272
|
+
readonly ASSIGNED: "ASSIGNED";
|
|
273
|
+
readonly CANCELED: "CANCELED";
|
|
274
|
+
readonly FAILED: "FAILED";
|
|
275
|
+
readonly INTERRUPTING: "INTERRUPTING";
|
|
276
|
+
readonly NOT_COMPATIBLE: "NOT_COMPATIBLE";
|
|
277
|
+
readonly PENDING: "PENDING";
|
|
278
|
+
readonly READY: "READY";
|
|
279
|
+
readonly RUNNING: "RUNNING";
|
|
280
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
281
|
+
readonly STARTING: "STARTING";
|
|
282
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
283
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
284
|
+
};
|
|
285
|
+
export type TaskRunStatus = (typeof TaskRunStatus)[keyof typeof TaskRunStatus];
|
|
286
|
+
export declare const SessionActionStatus: {
|
|
287
|
+
readonly ASSIGNED: "ASSIGNED";
|
|
288
|
+
readonly CANCELED: "CANCELED";
|
|
289
|
+
readonly CANCELING: "CANCELING";
|
|
290
|
+
readonly FAILED: "FAILED";
|
|
291
|
+
readonly INTERRUPTED: "INTERRUPTED";
|
|
292
|
+
readonly NEVER_ATTEMPTED: "NEVER_ATTEMPTED";
|
|
293
|
+
readonly RECLAIMED: "RECLAIMED";
|
|
294
|
+
readonly RECLAIMING: "RECLAIMING";
|
|
295
|
+
readonly RUNNING: "RUNNING";
|
|
296
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
297
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
298
|
+
};
|
|
299
|
+
export type SessionActionStatus =
|
|
300
|
+
(typeof SessionActionStatus)[keyof typeof SessionActionStatus];
|
|
301
|
+
export declare const StepLifecycleStatus: {
|
|
302
|
+
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
|
303
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
304
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
305
|
+
readonly UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED";
|
|
306
|
+
};
|
|
307
|
+
export type StepLifecycleStatus =
|
|
308
|
+
(typeof StepLifecycleStatus)[keyof typeof StepLifecycleStatus];
|
|
309
|
+
export declare const StepParameterType: {
|
|
310
|
+
readonly CHUNK_INT: "CHUNK_INT";
|
|
311
|
+
readonly FLOAT: "FLOAT";
|
|
312
|
+
readonly INT: "INT";
|
|
313
|
+
readonly PATH: "PATH";
|
|
314
|
+
readonly STRING: "STRING";
|
|
315
|
+
};
|
|
316
|
+
export type StepParameterType =
|
|
317
|
+
(typeof StepParameterType)[keyof typeof StepParameterType];
|
|
318
|
+
export declare const StepTargetTaskRunStatus: {
|
|
319
|
+
readonly CANCELED: "CANCELED";
|
|
320
|
+
readonly FAILED: "FAILED";
|
|
321
|
+
readonly PENDING: "PENDING";
|
|
322
|
+
readonly READY: "READY";
|
|
323
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
324
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
325
|
+
};
|
|
326
|
+
export type StepTargetTaskRunStatus =
|
|
327
|
+
(typeof StepTargetTaskRunStatus)[keyof typeof StepTargetTaskRunStatus];
|
|
328
|
+
export declare const TaskTargetRunStatus: {
|
|
329
|
+
readonly CANCELED: "CANCELED";
|
|
330
|
+
readonly FAILED: "FAILED";
|
|
331
|
+
readonly PENDING: "PENDING";
|
|
332
|
+
readonly READY: "READY";
|
|
333
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
334
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
335
|
+
};
|
|
336
|
+
export type TaskTargetRunStatus =
|
|
337
|
+
(typeof TaskTargetRunStatus)[keyof typeof TaskTargetRunStatus];
|
|
338
|
+
export declare const DependencyConsumerResolutionStatus: {
|
|
339
|
+
readonly RESOLVED: "RESOLVED";
|
|
340
|
+
readonly UNRESOLVED: "UNRESOLVED";
|
|
341
|
+
};
|
|
342
|
+
export type DependencyConsumerResolutionStatus =
|
|
343
|
+
(typeof DependencyConsumerResolutionStatus)[keyof typeof DependencyConsumerResolutionStatus];
|
|
344
|
+
export declare const UpdateJobLifecycleStatus: {
|
|
345
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
346
|
+
};
|
|
347
|
+
export type UpdateJobLifecycleStatus =
|
|
348
|
+
(typeof UpdateJobLifecycleStatus)[keyof typeof UpdateJobLifecycleStatus];
|
|
349
|
+
export declare const QueueFleetAssociationStatus: {
|
|
350
|
+
readonly ACTIVE: "ACTIVE";
|
|
351
|
+
readonly STOPPED: "STOPPED";
|
|
352
|
+
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
353
|
+
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
354
|
+
};
|
|
355
|
+
export type QueueFleetAssociationStatus =
|
|
356
|
+
(typeof QueueFleetAssociationStatus)[keyof typeof QueueFleetAssociationStatus];
|
|
357
|
+
export declare const QueueLimitAssociationStatus: {
|
|
358
|
+
readonly ACTIVE: "ACTIVE";
|
|
359
|
+
readonly STOPPED: "STOPPED";
|
|
360
|
+
readonly STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS";
|
|
361
|
+
readonly STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS";
|
|
362
|
+
};
|
|
363
|
+
export type QueueLimitAssociationStatus =
|
|
364
|
+
(typeof QueueLimitAssociationStatus)[keyof typeof QueueLimitAssociationStatus];
|
|
365
|
+
export declare const UsageType: {
|
|
366
|
+
readonly COMPUTE: "COMPUTE";
|
|
367
|
+
readonly LICENSE: "LICENSE";
|
|
368
|
+
};
|
|
369
|
+
export type UsageType = (typeof UsageType)[keyof typeof UsageType];
|
|
370
|
+
export declare const SessionsStatisticsAggregationStatus: {
|
|
371
|
+
readonly COMPLETED: "COMPLETED";
|
|
372
|
+
readonly FAILED: "FAILED";
|
|
373
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
374
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
375
|
+
};
|
|
376
|
+
export type SessionsStatisticsAggregationStatus =
|
|
377
|
+
(typeof SessionsStatisticsAggregationStatus)[keyof typeof SessionsStatisticsAggregationStatus];
|
|
378
|
+
export declare const LicenseEndpointStatus: {
|
|
379
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
380
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
381
|
+
readonly NOT_READY: "NOT_READY";
|
|
382
|
+
readonly READY: "READY";
|
|
383
|
+
};
|
|
384
|
+
export type LicenseEndpointStatus =
|
|
385
|
+
(typeof LicenseEndpointStatus)[keyof typeof LicenseEndpointStatus];
|
|
386
|
+
export declare const SearchTermMatchingType: {
|
|
387
|
+
readonly CONTAINS: "CONTAINS";
|
|
388
|
+
readonly FUZZY_MATCH: "FUZZY_MATCH";
|
|
389
|
+
};
|
|
390
|
+
export type SearchTermMatchingType =
|
|
391
|
+
(typeof SearchTermMatchingType)[keyof typeof SearchTermMatchingType];
|
|
392
|
+
export declare const LogicalOperator: {
|
|
393
|
+
readonly AND: "AND";
|
|
394
|
+
readonly OR: "OR";
|
|
395
|
+
};
|
|
396
|
+
export type LogicalOperator =
|
|
397
|
+
(typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
398
|
+
export declare const SortOrder: {
|
|
399
|
+
readonly ASCENDING: "ASCENDING";
|
|
400
|
+
readonly DESCENDING: "DESCENDING";
|
|
401
|
+
};
|
|
402
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
403
|
+
export declare const UsageGroupByField: {
|
|
404
|
+
readonly FLEET_ID: "FLEET_ID";
|
|
405
|
+
readonly INSTANCE_TYPE: "INSTANCE_TYPE";
|
|
406
|
+
readonly JOB_ID: "JOB_ID";
|
|
407
|
+
readonly LICENSE_PRODUCT: "LICENSE_PRODUCT";
|
|
408
|
+
readonly QUEUE_ID: "QUEUE_ID";
|
|
409
|
+
readonly USAGE_TYPE: "USAGE_TYPE";
|
|
410
|
+
readonly USER_ID: "USER_ID";
|
|
411
|
+
};
|
|
412
|
+
export type UsageGroupByField =
|
|
413
|
+
(typeof UsageGroupByField)[keyof typeof UsageGroupByField];
|
|
414
|
+
export declare const Period: {
|
|
415
|
+
readonly DAILY: "DAILY";
|
|
416
|
+
readonly HOURLY: "HOURLY";
|
|
417
|
+
readonly MONTHLY: "MONTHLY";
|
|
418
|
+
readonly WEEKLY: "WEEKLY";
|
|
419
|
+
};
|
|
420
|
+
export type Period = (typeof Period)[keyof typeof Period];
|
|
421
|
+
export declare const UsageStatistic: {
|
|
422
|
+
readonly AVG: "AVG";
|
|
423
|
+
readonly MAX: "MAX";
|
|
424
|
+
readonly MIN: "MIN";
|
|
425
|
+
readonly SUM: "SUM";
|
|
426
|
+
};
|
|
427
|
+
export type UsageStatistic =
|
|
428
|
+
(typeof UsageStatistic)[keyof typeof UsageStatistic];
|
|
429
|
+
export declare const UpdateQueueFleetAssociationStatus: {
|
|
430
|
+
readonly ACTIVE: "ACTIVE";
|
|
431
|
+
readonly STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS";
|
|
432
|
+
readonly STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS";
|
|
433
|
+
};
|
|
434
|
+
export type UpdateQueueFleetAssociationStatus =
|
|
435
|
+
(typeof UpdateQueueFleetAssociationStatus)[keyof typeof UpdateQueueFleetAssociationStatus];
|
|
436
|
+
export declare const UpdateQueueLimitAssociationStatus: {
|
|
437
|
+
readonly ACTIVE: "ACTIVE";
|
|
438
|
+
readonly STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS";
|
|
439
|
+
readonly STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS";
|
|
440
|
+
};
|
|
441
|
+
export type UpdateQueueLimitAssociationStatus =
|
|
442
|
+
(typeof UpdateQueueLimitAssociationStatus)[keyof typeof UpdateQueueLimitAssociationStatus];
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DeadlineServiceException as __BaseException } from "./DeadlineServiceException";
|
|
3
|
+
import {
|
|
4
|
+
ConflictExceptionReason,
|
|
5
|
+
ServiceQuotaExceededExceptionReason,
|
|
6
|
+
ValidationExceptionReason,
|
|
7
|
+
} from "./enums";
|
|
8
|
+
import { ValidationExceptionField } from "./models_0";
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
context?: Record<string, string> | undefined;
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerErrorException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
$retryable: {};
|
|
21
|
+
retryAfterSeconds?: number | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
readonly name: "ResourceNotFoundException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
resourceId: string | undefined;
|
|
30
|
+
resourceType: string | undefined;
|
|
31
|
+
context?: Record<string, string> | undefined;
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
37
|
+
readonly name: "ServiceQuotaExceededException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
reason: ServiceQuotaExceededExceptionReason | undefined;
|
|
40
|
+
resourceType: string | undefined;
|
|
41
|
+
serviceCode: string | undefined;
|
|
42
|
+
quotaCode: string | undefined;
|
|
43
|
+
resourceId?: string | undefined;
|
|
44
|
+
context?: Record<string, string> | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
export declare class ThrottlingException extends __BaseException {
|
|
50
|
+
readonly name: "ThrottlingException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
$retryable: {
|
|
53
|
+
throttling: boolean;
|
|
54
|
+
};
|
|
55
|
+
serviceCode?: string | undefined;
|
|
56
|
+
quotaCode?: string | undefined;
|
|
57
|
+
retryAfterSeconds?: number | undefined;
|
|
58
|
+
context?: Record<string, string> | undefined;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class ValidationException extends __BaseException {
|
|
64
|
+
readonly name: "ValidationException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
reason: ValidationExceptionReason | undefined;
|
|
67
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
68
|
+
context?: Record<string, string> | undefined;
|
|
69
|
+
constructor(
|
|
70
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
export declare class ConflictException extends __BaseException {
|
|
74
|
+
readonly name: "ConflictException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
reason: ConflictExceptionReason | undefined;
|
|
77
|
+
resourceId: string | undefined;
|
|
78
|
+
resourceType: string | undefined;
|
|
79
|
+
context?: Record<string, string> | undefined;
|
|
80
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
81
|
+
}
|