@aws-sdk/client-batch 3.934.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 +163 -162
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +162 -0
- package/dist-es/models/errors.js +25 -0
- package/dist-es/models/models_0.js +1 -187
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +418 -0
- package/dist-types/models/errors.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +1 -446
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +214 -0
- package/dist-types/ts3.4/models/errors.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -226
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,187 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const ArrayJobDependency = {
|
|
3
|
-
N_TO_N: "N_TO_N",
|
|
4
|
-
SEQUENTIAL: "SEQUENTIAL",
|
|
5
|
-
};
|
|
6
|
-
export const AssignPublicIp = {
|
|
7
|
-
DISABLED: "DISABLED",
|
|
8
|
-
ENABLED: "ENABLED",
|
|
9
|
-
};
|
|
10
|
-
export class ClientException extends __BaseException {
|
|
11
|
-
name = "ClientException";
|
|
12
|
-
$fault = "client";
|
|
13
|
-
constructor(opts) {
|
|
14
|
-
super({
|
|
15
|
-
name: "ClientException",
|
|
16
|
-
$fault: "client",
|
|
17
|
-
...opts,
|
|
18
|
-
});
|
|
19
|
-
Object.setPrototypeOf(this, ClientException.prototype);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
export class ServerException extends __BaseException {
|
|
23
|
-
name = "ServerException";
|
|
24
|
-
$fault = "server";
|
|
25
|
-
constructor(opts) {
|
|
26
|
-
super({
|
|
27
|
-
name: "ServerException",
|
|
28
|
-
$fault: "server",
|
|
29
|
-
...opts,
|
|
30
|
-
});
|
|
31
|
-
Object.setPrototypeOf(this, ServerException.prototype);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
export const CRAllocationStrategy = {
|
|
35
|
-
BEST_FIT: "BEST_FIT",
|
|
36
|
-
BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE",
|
|
37
|
-
SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED",
|
|
38
|
-
SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED",
|
|
39
|
-
};
|
|
40
|
-
export const UserdataType = {
|
|
41
|
-
EKS_BOOTSTRAP_SH: "EKS_BOOTSTRAP_SH",
|
|
42
|
-
EKS_NODEADM: "EKS_NODEADM",
|
|
43
|
-
};
|
|
44
|
-
export const CRType = {
|
|
45
|
-
EC2: "EC2",
|
|
46
|
-
FARGATE: "FARGATE",
|
|
47
|
-
FARGATE_SPOT: "FARGATE_SPOT",
|
|
48
|
-
SPOT: "SPOT",
|
|
49
|
-
};
|
|
50
|
-
export const CEState = {
|
|
51
|
-
DISABLED: "DISABLED",
|
|
52
|
-
ENABLED: "ENABLED",
|
|
53
|
-
};
|
|
54
|
-
export const CEType = {
|
|
55
|
-
MANAGED: "MANAGED",
|
|
56
|
-
UNMANAGED: "UNMANAGED",
|
|
57
|
-
};
|
|
58
|
-
export const JobQueueType = {
|
|
59
|
-
ECS: "ECS",
|
|
60
|
-
ECS_FARGATE: "ECS_FARGATE",
|
|
61
|
-
EKS: "EKS",
|
|
62
|
-
SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING",
|
|
63
|
-
};
|
|
64
|
-
export const JobStateTimeLimitActionsAction = {
|
|
65
|
-
CANCEL: "CANCEL",
|
|
66
|
-
TERMINATE: "TERMINATE",
|
|
67
|
-
};
|
|
68
|
-
export const JobStateTimeLimitActionsState = {
|
|
69
|
-
RUNNABLE: "RUNNABLE",
|
|
70
|
-
};
|
|
71
|
-
export const JQState = {
|
|
72
|
-
DISABLED: "DISABLED",
|
|
73
|
-
ENABLED: "ENABLED",
|
|
74
|
-
};
|
|
75
|
-
export const ServiceEnvironmentType = {
|
|
76
|
-
SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING",
|
|
77
|
-
};
|
|
78
|
-
export const ServiceEnvironmentState = {
|
|
79
|
-
DISABLED: "DISABLED",
|
|
80
|
-
ENABLED: "ENABLED",
|
|
81
|
-
};
|
|
82
|
-
export const OrchestrationType = {
|
|
83
|
-
ECS: "ECS",
|
|
84
|
-
EKS: "EKS",
|
|
85
|
-
};
|
|
86
|
-
export const CEStatus = {
|
|
87
|
-
CREATING: "CREATING",
|
|
88
|
-
DELETED: "DELETED",
|
|
89
|
-
DELETING: "DELETING",
|
|
90
|
-
INVALID: "INVALID",
|
|
91
|
-
UPDATING: "UPDATING",
|
|
92
|
-
VALID: "VALID",
|
|
93
|
-
};
|
|
94
|
-
export const DeviceCgroupPermission = {
|
|
95
|
-
MKNOD: "MKNOD",
|
|
96
|
-
READ: "READ",
|
|
97
|
-
WRITE: "WRITE",
|
|
98
|
-
};
|
|
99
|
-
export const LogDriver = {
|
|
100
|
-
AWSFIRELENS: "awsfirelens",
|
|
101
|
-
AWSLOGS: "awslogs",
|
|
102
|
-
FLUENTD: "fluentd",
|
|
103
|
-
GELF: "gelf",
|
|
104
|
-
JOURNALD: "journald",
|
|
105
|
-
JSON_FILE: "json-file",
|
|
106
|
-
SPLUNK: "splunk",
|
|
107
|
-
SYSLOG: "syslog",
|
|
108
|
-
};
|
|
109
|
-
export const ResourceType = {
|
|
110
|
-
GPU: "GPU",
|
|
111
|
-
MEMORY: "MEMORY",
|
|
112
|
-
VCPU: "VCPU",
|
|
113
|
-
};
|
|
114
|
-
export const EFSAuthorizationConfigIAM = {
|
|
115
|
-
DISABLED: "DISABLED",
|
|
116
|
-
ENABLED: "ENABLED",
|
|
117
|
-
};
|
|
118
|
-
export const EFSTransitEncryption = {
|
|
119
|
-
DISABLED: "DISABLED",
|
|
120
|
-
ENABLED: "ENABLED",
|
|
121
|
-
};
|
|
122
|
-
export const FirelensConfigurationType = {
|
|
123
|
-
FLUENTBIT: "fluentbit",
|
|
124
|
-
FLUENTD: "fluentd",
|
|
125
|
-
};
|
|
126
|
-
export const PlatformCapability = {
|
|
127
|
-
EC2: "EC2",
|
|
128
|
-
FARGATE: "FARGATE",
|
|
129
|
-
};
|
|
130
|
-
export const RetryAction = {
|
|
131
|
-
EXIT: "EXIT",
|
|
132
|
-
RETRY: "RETRY",
|
|
133
|
-
};
|
|
134
|
-
export const JQStatus = {
|
|
135
|
-
CREATING: "CREATING",
|
|
136
|
-
DELETED: "DELETED",
|
|
137
|
-
DELETING: "DELETING",
|
|
138
|
-
INVALID: "INVALID",
|
|
139
|
-
UPDATING: "UPDATING",
|
|
140
|
-
VALID: "VALID",
|
|
141
|
-
};
|
|
142
|
-
export const JobStatus = {
|
|
143
|
-
FAILED: "FAILED",
|
|
144
|
-
PENDING: "PENDING",
|
|
145
|
-
RUNNABLE: "RUNNABLE",
|
|
146
|
-
RUNNING: "RUNNING",
|
|
147
|
-
STARTING: "STARTING",
|
|
148
|
-
SUBMITTED: "SUBMITTED",
|
|
149
|
-
SUCCEEDED: "SUCCEEDED",
|
|
150
|
-
};
|
|
151
|
-
export const ServiceEnvironmentStatus = {
|
|
152
|
-
CREATING: "CREATING",
|
|
153
|
-
DELETED: "DELETED",
|
|
154
|
-
DELETING: "DELETING",
|
|
155
|
-
INVALID: "INVALID",
|
|
156
|
-
UPDATING: "UPDATING",
|
|
157
|
-
VALID: "VALID",
|
|
158
|
-
};
|
|
159
|
-
export const ServiceResourceIdName = {
|
|
160
|
-
SAGEMAKER_TRAINING_JOB_ARN: "TrainingJobArn",
|
|
161
|
-
};
|
|
162
|
-
export const ServiceJobRetryAction = {
|
|
163
|
-
EXIT: "EXIT",
|
|
164
|
-
RETRY: "RETRY",
|
|
165
|
-
};
|
|
166
|
-
export const ServiceJobType = {
|
|
167
|
-
SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING",
|
|
168
|
-
};
|
|
169
|
-
export const ServiceJobStatus = {
|
|
170
|
-
FAILED: "FAILED",
|
|
171
|
-
PENDING: "PENDING",
|
|
172
|
-
RUNNABLE: "RUNNABLE",
|
|
173
|
-
RUNNING: "RUNNING",
|
|
174
|
-
SCHEDULED: "SCHEDULED",
|
|
175
|
-
STARTING: "STARTING",
|
|
176
|
-
SUBMITTED: "SUBMITTED",
|
|
177
|
-
SUCCEEDED: "SUCCEEDED",
|
|
178
|
-
};
|
|
179
|
-
export const JobDefinitionType = {
|
|
180
|
-
Container: "container",
|
|
181
|
-
Multinode: "multinode",
|
|
182
|
-
};
|
|
183
|
-
export const CRUpdateAllocationStrategy = {
|
|
184
|
-
BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE",
|
|
185
|
-
SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED",
|
|
186
|
-
SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED",
|
|
187
|
-
};
|
|
1
|
+
export {};
|
|
@@ -569,7 +569,7 @@ const _wF = "weightFactor";
|
|
|
569
569
|
const n0 = "com.amazonaws.batch";
|
|
570
570
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
571
571
|
import { BatchServiceException as __BatchServiceException } from "../models/BatchServiceException";
|
|
572
|
-
import { ClientException as __ClientException, ServerException as __ServerException } from "../models/
|
|
572
|
+
import { ClientException as __ClientException, ServerException as __ServerException } from "../models/errors";
|
|
573
573
|
export var ArrayProperties = [3, n0, _AP, 0, [_s], [1]];
|
|
574
574
|
export var ArrayPropertiesDetail = [3, n0, _APD, 0, [_sS, _s, _i], [128 | 1, 1, 1]];
|
|
575
575
|
export var ArrayPropertiesSummary = [3, n0, _APS, 0, [_s, _i], [1, 1]];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -20,5 +20,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
20
20
|
export type { BatchExtensionConfiguration } from "./extensionConfiguration";
|
|
21
21
|
export * from "./commands";
|
|
22
22
|
export * from "./pagination";
|
|
23
|
-
export * from "./models";
|
|
23
|
+
export * from "./models/enums";
|
|
24
|
+
export * from "./models/errors";
|
|
25
|
+
export type * from "./models/models_0";
|
|
24
26
|
export { BatchServiceException } from "./models/BatchServiceException";
|
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ArrayJobDependency: {
|
|
6
|
+
readonly N_TO_N: "N_TO_N";
|
|
7
|
+
readonly SEQUENTIAL: "SEQUENTIAL";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ArrayJobDependency = (typeof ArrayJobDependency)[keyof typeof ArrayJobDependency];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const AssignPublicIp: {
|
|
18
|
+
readonly DISABLED: "DISABLED";
|
|
19
|
+
readonly ENABLED: "ENABLED";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* @enum
|
|
28
|
+
*/
|
|
29
|
+
export declare const CRAllocationStrategy: {
|
|
30
|
+
readonly BEST_FIT: "BEST_FIT";
|
|
31
|
+
readonly BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE";
|
|
32
|
+
readonly SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED";
|
|
33
|
+
readonly SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type CRAllocationStrategy = (typeof CRAllocationStrategy)[keyof typeof CRAllocationStrategy];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const UserdataType: {
|
|
44
|
+
readonly EKS_BOOTSTRAP_SH: "EKS_BOOTSTRAP_SH";
|
|
45
|
+
readonly EKS_NODEADM: "EKS_NODEADM";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type UserdataType = (typeof UserdataType)[keyof typeof UserdataType];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const CRType: {
|
|
56
|
+
readonly EC2: "EC2";
|
|
57
|
+
readonly FARGATE: "FARGATE";
|
|
58
|
+
readonly FARGATE_SPOT: "FARGATE_SPOT";
|
|
59
|
+
readonly SPOT: "SPOT";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type CRType = (typeof CRType)[keyof typeof CRType];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const CEState: {
|
|
70
|
+
readonly DISABLED: "DISABLED";
|
|
71
|
+
readonly ENABLED: "ENABLED";
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export type CEState = (typeof CEState)[keyof typeof CEState];
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* @enum
|
|
80
|
+
*/
|
|
81
|
+
export declare const CEType: {
|
|
82
|
+
readonly MANAGED: "MANAGED";
|
|
83
|
+
readonly UNMANAGED: "UNMANAGED";
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export type CEType = (typeof CEType)[keyof typeof CEType];
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
* @enum
|
|
92
|
+
*/
|
|
93
|
+
export declare const JobQueueType: {
|
|
94
|
+
readonly ECS: "ECS";
|
|
95
|
+
readonly ECS_FARGATE: "ECS_FARGATE";
|
|
96
|
+
readonly EKS: "EKS";
|
|
97
|
+
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type JobQueueType = (typeof JobQueueType)[keyof typeof JobQueueType];
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
* @enum
|
|
106
|
+
*/
|
|
107
|
+
export declare const JobStateTimeLimitActionsAction: {
|
|
108
|
+
readonly CANCEL: "CANCEL";
|
|
109
|
+
readonly TERMINATE: "TERMINATE";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type JobStateTimeLimitActionsAction = (typeof JobStateTimeLimitActionsAction)[keyof typeof JobStateTimeLimitActionsAction];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const JobStateTimeLimitActionsState: {
|
|
120
|
+
readonly RUNNABLE: "RUNNABLE";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type JobStateTimeLimitActionsState = (typeof JobStateTimeLimitActionsState)[keyof typeof JobStateTimeLimitActionsState];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* @enum
|
|
129
|
+
*/
|
|
130
|
+
export declare const JQState: {
|
|
131
|
+
readonly DISABLED: "DISABLED";
|
|
132
|
+
readonly ENABLED: "ENABLED";
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export type JQState = (typeof JQState)[keyof typeof JQState];
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
* @enum
|
|
141
|
+
*/
|
|
142
|
+
export declare const ServiceEnvironmentType: {
|
|
143
|
+
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
export type ServiceEnvironmentType = (typeof ServiceEnvironmentType)[keyof typeof ServiceEnvironmentType];
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
* @enum
|
|
152
|
+
*/
|
|
153
|
+
export declare const ServiceEnvironmentState: {
|
|
154
|
+
readonly DISABLED: "DISABLED";
|
|
155
|
+
readonly ENABLED: "ENABLED";
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export type ServiceEnvironmentState = (typeof ServiceEnvironmentState)[keyof typeof ServiceEnvironmentState];
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
* @enum
|
|
164
|
+
*/
|
|
165
|
+
export declare const OrchestrationType: {
|
|
166
|
+
readonly ECS: "ECS";
|
|
167
|
+
readonly EKS: "EKS";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type OrchestrationType = (typeof OrchestrationType)[keyof typeof OrchestrationType];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const CEStatus: {
|
|
178
|
+
readonly CREATING: "CREATING";
|
|
179
|
+
readonly DELETED: "DELETED";
|
|
180
|
+
readonly DELETING: "DELETING";
|
|
181
|
+
readonly INVALID: "INVALID";
|
|
182
|
+
readonly UPDATING: "UPDATING";
|
|
183
|
+
readonly VALID: "VALID";
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
export type CEStatus = (typeof CEStatus)[keyof typeof CEStatus];
|
|
189
|
+
/**
|
|
190
|
+
* @public
|
|
191
|
+
* @enum
|
|
192
|
+
*/
|
|
193
|
+
export declare const DeviceCgroupPermission: {
|
|
194
|
+
readonly MKNOD: "MKNOD";
|
|
195
|
+
readonly READ: "READ";
|
|
196
|
+
readonly WRITE: "WRITE";
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export type DeviceCgroupPermission = (typeof DeviceCgroupPermission)[keyof typeof DeviceCgroupPermission];
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
* @enum
|
|
205
|
+
*/
|
|
206
|
+
export declare const LogDriver: {
|
|
207
|
+
readonly AWSFIRELENS: "awsfirelens";
|
|
208
|
+
readonly AWSLOGS: "awslogs";
|
|
209
|
+
readonly FLUENTD: "fluentd";
|
|
210
|
+
readonly GELF: "gelf";
|
|
211
|
+
readonly JOURNALD: "journald";
|
|
212
|
+
readonly JSON_FILE: "json-file";
|
|
213
|
+
readonly SPLUNK: "splunk";
|
|
214
|
+
readonly SYSLOG: "syslog";
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
219
|
+
export type LogDriver = (typeof LogDriver)[keyof typeof LogDriver];
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
* @enum
|
|
223
|
+
*/
|
|
224
|
+
export declare const ResourceType: {
|
|
225
|
+
readonly GPU: "GPU";
|
|
226
|
+
readonly MEMORY: "MEMORY";
|
|
227
|
+
readonly VCPU: "VCPU";
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
233
|
+
/**
|
|
234
|
+
* @public
|
|
235
|
+
* @enum
|
|
236
|
+
*/
|
|
237
|
+
export declare const EFSAuthorizationConfigIAM: {
|
|
238
|
+
readonly DISABLED: "DISABLED";
|
|
239
|
+
readonly ENABLED: "ENABLED";
|
|
240
|
+
};
|
|
241
|
+
/**
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
export type EFSAuthorizationConfigIAM = (typeof EFSAuthorizationConfigIAM)[keyof typeof EFSAuthorizationConfigIAM];
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
* @enum
|
|
248
|
+
*/
|
|
249
|
+
export declare const EFSTransitEncryption: {
|
|
250
|
+
readonly DISABLED: "DISABLED";
|
|
251
|
+
readonly ENABLED: "ENABLED";
|
|
252
|
+
};
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export type EFSTransitEncryption = (typeof EFSTransitEncryption)[keyof typeof EFSTransitEncryption];
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
* @enum
|
|
260
|
+
*/
|
|
261
|
+
export declare const FirelensConfigurationType: {
|
|
262
|
+
readonly FLUENTBIT: "fluentbit";
|
|
263
|
+
readonly FLUENTD: "fluentd";
|
|
264
|
+
};
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
268
|
+
export type FirelensConfigurationType = (typeof FirelensConfigurationType)[keyof typeof FirelensConfigurationType];
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
* @enum
|
|
272
|
+
*/
|
|
273
|
+
export declare const PlatformCapability: {
|
|
274
|
+
readonly EC2: "EC2";
|
|
275
|
+
readonly FARGATE: "FARGATE";
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
280
|
+
export type PlatformCapability = (typeof PlatformCapability)[keyof typeof PlatformCapability];
|
|
281
|
+
/**
|
|
282
|
+
* @public
|
|
283
|
+
* @enum
|
|
284
|
+
*/
|
|
285
|
+
export declare const RetryAction: {
|
|
286
|
+
readonly EXIT: "EXIT";
|
|
287
|
+
readonly RETRY: "RETRY";
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
export type RetryAction = (typeof RetryAction)[keyof typeof RetryAction];
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
* @enum
|
|
296
|
+
*/
|
|
297
|
+
export declare const JQStatus: {
|
|
298
|
+
readonly CREATING: "CREATING";
|
|
299
|
+
readonly DELETED: "DELETED";
|
|
300
|
+
readonly DELETING: "DELETING";
|
|
301
|
+
readonly INVALID: "INVALID";
|
|
302
|
+
readonly UPDATING: "UPDATING";
|
|
303
|
+
readonly VALID: "VALID";
|
|
304
|
+
};
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
308
|
+
export type JQStatus = (typeof JQStatus)[keyof typeof JQStatus];
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
* @enum
|
|
312
|
+
*/
|
|
313
|
+
export declare const JobStatus: {
|
|
314
|
+
readonly FAILED: "FAILED";
|
|
315
|
+
readonly PENDING: "PENDING";
|
|
316
|
+
readonly RUNNABLE: "RUNNABLE";
|
|
317
|
+
readonly RUNNING: "RUNNING";
|
|
318
|
+
readonly STARTING: "STARTING";
|
|
319
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
320
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
321
|
+
};
|
|
322
|
+
/**
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
325
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
* @enum
|
|
329
|
+
*/
|
|
330
|
+
export declare const ServiceEnvironmentStatus: {
|
|
331
|
+
readonly CREATING: "CREATING";
|
|
332
|
+
readonly DELETED: "DELETED";
|
|
333
|
+
readonly DELETING: "DELETING";
|
|
334
|
+
readonly INVALID: "INVALID";
|
|
335
|
+
readonly UPDATING: "UPDATING";
|
|
336
|
+
readonly VALID: "VALID";
|
|
337
|
+
};
|
|
338
|
+
/**
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
export type ServiceEnvironmentStatus = (typeof ServiceEnvironmentStatus)[keyof typeof ServiceEnvironmentStatus];
|
|
342
|
+
/**
|
|
343
|
+
* @public
|
|
344
|
+
* @enum
|
|
345
|
+
*/
|
|
346
|
+
export declare const ServiceResourceIdName: {
|
|
347
|
+
readonly SAGEMAKER_TRAINING_JOB_ARN: "TrainingJobArn";
|
|
348
|
+
};
|
|
349
|
+
/**
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
export type ServiceResourceIdName = (typeof ServiceResourceIdName)[keyof typeof ServiceResourceIdName];
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
* @enum
|
|
356
|
+
*/
|
|
357
|
+
export declare const ServiceJobRetryAction: {
|
|
358
|
+
readonly EXIT: "EXIT";
|
|
359
|
+
readonly RETRY: "RETRY";
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
export type ServiceJobRetryAction = (typeof ServiceJobRetryAction)[keyof typeof ServiceJobRetryAction];
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
* @enum
|
|
368
|
+
*/
|
|
369
|
+
export declare const ServiceJobType: {
|
|
370
|
+
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
371
|
+
};
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
export type ServiceJobType = (typeof ServiceJobType)[keyof typeof ServiceJobType];
|
|
376
|
+
/**
|
|
377
|
+
* @public
|
|
378
|
+
* @enum
|
|
379
|
+
*/
|
|
380
|
+
export declare const ServiceJobStatus: {
|
|
381
|
+
readonly FAILED: "FAILED";
|
|
382
|
+
readonly PENDING: "PENDING";
|
|
383
|
+
readonly RUNNABLE: "RUNNABLE";
|
|
384
|
+
readonly RUNNING: "RUNNING";
|
|
385
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
386
|
+
readonly STARTING: "STARTING";
|
|
387
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
388
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
389
|
+
};
|
|
390
|
+
/**
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
export type ServiceJobStatus = (typeof ServiceJobStatus)[keyof typeof ServiceJobStatus];
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
* @enum
|
|
397
|
+
*/
|
|
398
|
+
export declare const JobDefinitionType: {
|
|
399
|
+
readonly Container: "container";
|
|
400
|
+
readonly Multinode: "multinode";
|
|
401
|
+
};
|
|
402
|
+
/**
|
|
403
|
+
* @public
|
|
404
|
+
*/
|
|
405
|
+
export type JobDefinitionType = (typeof JobDefinitionType)[keyof typeof JobDefinitionType];
|
|
406
|
+
/**
|
|
407
|
+
* @public
|
|
408
|
+
* @enum
|
|
409
|
+
*/
|
|
410
|
+
export declare const CRUpdateAllocationStrategy: {
|
|
411
|
+
readonly BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE";
|
|
412
|
+
readonly SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED";
|
|
413
|
+
readonly SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED";
|
|
414
|
+
};
|
|
415
|
+
/**
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
418
|
+
export type CRUpdateAllocationStrategy = (typeof CRUpdateAllocationStrategy)[keyof typeof CRUpdateAllocationStrategy];
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BatchServiceException as __BaseException } from "./BatchServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>These errors are usually caused by a client action. One example cause is using an action or resource on behalf
|
|
5
|
+
* of a user that doesn't have permissions to use the action or resource. Another cause is specifying an identifier
|
|
6
|
+
* that's not valid.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class ClientException extends __BaseException {
|
|
10
|
+
readonly name: "ClientException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>These errors are usually caused by a server issue.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class ServerException extends __BaseException {
|
|
22
|
+
readonly name: "ServerException";
|
|
23
|
+
readonly $fault: "server";
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
28
|
+
}
|