@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,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BatchServiceException as __BaseException } from "./BatchServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const ArrayJobDependency: {
|
|
8
|
-
readonly N_TO_N: "N_TO_N";
|
|
9
|
-
readonly SEQUENTIAL: "SEQUENTIAL";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type ArrayJobDependency = (typeof ArrayJobDependency)[keyof typeof ArrayJobDependency];
|
|
1
|
+
import { ArrayJobDependency, AssignPublicIp, CEState, CEStatus, CEType, CRAllocationStrategy, CRType, CRUpdateAllocationStrategy, DeviceCgroupPermission, EFSAuthorizationConfigIAM, EFSTransitEncryption, FirelensConfigurationType, JobDefinitionType, JobQueueType, JobStateTimeLimitActionsAction, JobStateTimeLimitActionsState, JobStatus, JQState, JQStatus, LogDriver, OrchestrationType, PlatformCapability, ResourceType, RetryAction, ServiceEnvironmentState, ServiceEnvironmentStatus, ServiceEnvironmentType, ServiceJobRetryAction, ServiceJobStatus, ServiceJobType, ServiceResourceIdName, UserdataType } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* <p>An object that represents an Batch array job.</p>
|
|
17
4
|
* @public
|
|
@@ -63,18 +50,6 @@ export interface ArrayPropertiesSummary {
|
|
|
63
50
|
*/
|
|
64
51
|
index?: number | undefined;
|
|
65
52
|
}
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
* @enum
|
|
69
|
-
*/
|
|
70
|
-
export declare const AssignPublicIp: {
|
|
71
|
-
readonly DISABLED: "DISABLED";
|
|
72
|
-
readonly ENABLED: "ENABLED";
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
78
53
|
/**
|
|
79
54
|
* <p>An object that represents the elastic network interface for a multi-node parallel job
|
|
80
55
|
* node.</p>
|
|
@@ -252,46 +227,6 @@ export interface CancelJobRequest {
|
|
|
252
227
|
*/
|
|
253
228
|
export interface CancelJobResponse {
|
|
254
229
|
}
|
|
255
|
-
/**
|
|
256
|
-
* <p>These errors are usually caused by a client action. One example cause is using an action or resource on behalf
|
|
257
|
-
* of a user that doesn't have permissions to use the action or resource. Another cause is specifying an identifier
|
|
258
|
-
* that's not valid.</p>
|
|
259
|
-
* @public
|
|
260
|
-
*/
|
|
261
|
-
export declare class ClientException extends __BaseException {
|
|
262
|
-
readonly name: "ClientException";
|
|
263
|
-
readonly $fault: "client";
|
|
264
|
-
/**
|
|
265
|
-
* @internal
|
|
266
|
-
*/
|
|
267
|
-
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
268
|
-
}
|
|
269
|
-
/**
|
|
270
|
-
* <p>These errors are usually caused by a server issue.</p>
|
|
271
|
-
* @public
|
|
272
|
-
*/
|
|
273
|
-
export declare class ServerException extends __BaseException {
|
|
274
|
-
readonly name: "ServerException";
|
|
275
|
-
readonly $fault: "server";
|
|
276
|
-
/**
|
|
277
|
-
* @internal
|
|
278
|
-
*/
|
|
279
|
-
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
280
|
-
}
|
|
281
|
-
/**
|
|
282
|
-
* @public
|
|
283
|
-
* @enum
|
|
284
|
-
*/
|
|
285
|
-
export declare const CRAllocationStrategy: {
|
|
286
|
-
readonly BEST_FIT: "BEST_FIT";
|
|
287
|
-
readonly BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE";
|
|
288
|
-
readonly SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED";
|
|
289
|
-
readonly SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED";
|
|
290
|
-
};
|
|
291
|
-
/**
|
|
292
|
-
* @public
|
|
293
|
-
*/
|
|
294
|
-
export type CRAllocationStrategy = (typeof CRAllocationStrategy)[keyof typeof CRAllocationStrategy];
|
|
295
230
|
/**
|
|
296
231
|
* <p>Provides information used to select Amazon Machine Images (AMIs) for instances in the
|
|
297
232
|
* compute environment. If <code>Ec2Configuration</code> isn't specified, the default is
|
|
@@ -428,18 +363,6 @@ export interface Ec2Configuration {
|
|
|
428
363
|
*/
|
|
429
364
|
imageKubernetesVersion?: string | undefined;
|
|
430
365
|
}
|
|
431
|
-
/**
|
|
432
|
-
* @public
|
|
433
|
-
* @enum
|
|
434
|
-
*/
|
|
435
|
-
export declare const UserdataType: {
|
|
436
|
-
readonly EKS_BOOTSTRAP_SH: "EKS_BOOTSTRAP_SH";
|
|
437
|
-
readonly EKS_NODEADM: "EKS_NODEADM";
|
|
438
|
-
};
|
|
439
|
-
/**
|
|
440
|
-
* @public
|
|
441
|
-
*/
|
|
442
|
-
export type UserdataType = (typeof UserdataType)[keyof typeof UserdataType];
|
|
443
366
|
/**
|
|
444
367
|
* <p>An object that represents a launch template to use in place of the default launch template. You must specify either the launch template ID or launch template name in the request, but not
|
|
445
368
|
* both.</p>
|
|
@@ -592,20 +515,6 @@ export interface LaunchTemplateSpecification {
|
|
|
592
515
|
*/
|
|
593
516
|
userdataType?: UserdataType | undefined;
|
|
594
517
|
}
|
|
595
|
-
/**
|
|
596
|
-
* @public
|
|
597
|
-
* @enum
|
|
598
|
-
*/
|
|
599
|
-
export declare const CRType: {
|
|
600
|
-
readonly EC2: "EC2";
|
|
601
|
-
readonly FARGATE: "FARGATE";
|
|
602
|
-
readonly FARGATE_SPOT: "FARGATE_SPOT";
|
|
603
|
-
readonly SPOT: "SPOT";
|
|
604
|
-
};
|
|
605
|
-
/**
|
|
606
|
-
* @public
|
|
607
|
-
*/
|
|
608
|
-
export type CRType = (typeof CRType)[keyof typeof CRType];
|
|
609
518
|
/**
|
|
610
519
|
* <p>An object that represents an Batch compute resource. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html">Compute environments</a> in
|
|
611
520
|
* the <i>Batch User Guide</i>.</p>
|
|
@@ -942,30 +851,6 @@ export interface EksConfiguration {
|
|
|
942
851
|
*/
|
|
943
852
|
kubernetesNamespace: string | undefined;
|
|
944
853
|
}
|
|
945
|
-
/**
|
|
946
|
-
* @public
|
|
947
|
-
* @enum
|
|
948
|
-
*/
|
|
949
|
-
export declare const CEState: {
|
|
950
|
-
readonly DISABLED: "DISABLED";
|
|
951
|
-
readonly ENABLED: "ENABLED";
|
|
952
|
-
};
|
|
953
|
-
/**
|
|
954
|
-
* @public
|
|
955
|
-
*/
|
|
956
|
-
export type CEState = (typeof CEState)[keyof typeof CEState];
|
|
957
|
-
/**
|
|
958
|
-
* @public
|
|
959
|
-
* @enum
|
|
960
|
-
*/
|
|
961
|
-
export declare const CEType: {
|
|
962
|
-
readonly MANAGED: "MANAGED";
|
|
963
|
-
readonly UNMANAGED: "UNMANAGED";
|
|
964
|
-
};
|
|
965
|
-
/**
|
|
966
|
-
* @public
|
|
967
|
-
*/
|
|
968
|
-
export type CEType = (typeof CEType)[keyof typeof CEType];
|
|
969
854
|
/**
|
|
970
855
|
* <p>Contains the parameters for <code>CreateComputeEnvironment</code>.</p>
|
|
971
856
|
* @public
|
|
@@ -1174,43 +1059,6 @@ export interface ComputeEnvironmentOrder {
|
|
|
1174
1059
|
*/
|
|
1175
1060
|
computeEnvironment: string | undefined;
|
|
1176
1061
|
}
|
|
1177
|
-
/**
|
|
1178
|
-
* @public
|
|
1179
|
-
* @enum
|
|
1180
|
-
*/
|
|
1181
|
-
export declare const JobQueueType: {
|
|
1182
|
-
readonly ECS: "ECS";
|
|
1183
|
-
readonly ECS_FARGATE: "ECS_FARGATE";
|
|
1184
|
-
readonly EKS: "EKS";
|
|
1185
|
-
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
1186
|
-
};
|
|
1187
|
-
/**
|
|
1188
|
-
* @public
|
|
1189
|
-
*/
|
|
1190
|
-
export type JobQueueType = (typeof JobQueueType)[keyof typeof JobQueueType];
|
|
1191
|
-
/**
|
|
1192
|
-
* @public
|
|
1193
|
-
* @enum
|
|
1194
|
-
*/
|
|
1195
|
-
export declare const JobStateTimeLimitActionsAction: {
|
|
1196
|
-
readonly CANCEL: "CANCEL";
|
|
1197
|
-
readonly TERMINATE: "TERMINATE";
|
|
1198
|
-
};
|
|
1199
|
-
/**
|
|
1200
|
-
* @public
|
|
1201
|
-
*/
|
|
1202
|
-
export type JobStateTimeLimitActionsAction = (typeof JobStateTimeLimitActionsAction)[keyof typeof JobStateTimeLimitActionsAction];
|
|
1203
|
-
/**
|
|
1204
|
-
* @public
|
|
1205
|
-
* @enum
|
|
1206
|
-
*/
|
|
1207
|
-
export declare const JobStateTimeLimitActionsState: {
|
|
1208
|
-
readonly RUNNABLE: "RUNNABLE";
|
|
1209
|
-
};
|
|
1210
|
-
/**
|
|
1211
|
-
* @public
|
|
1212
|
-
*/
|
|
1213
|
-
export type JobStateTimeLimitActionsState = (typeof JobStateTimeLimitActionsState)[keyof typeof JobStateTimeLimitActionsState];
|
|
1214
1062
|
/**
|
|
1215
1063
|
* <p>Specifies an action that Batch will take after the job has remained at the head of the queue in the specified state for longer than the specified time.</p>
|
|
1216
1064
|
* @public
|
|
@@ -1255,18 +1103,6 @@ export interface ServiceEnvironmentOrder {
|
|
|
1255
1103
|
*/
|
|
1256
1104
|
serviceEnvironment: string | undefined;
|
|
1257
1105
|
}
|
|
1258
|
-
/**
|
|
1259
|
-
* @public
|
|
1260
|
-
* @enum
|
|
1261
|
-
*/
|
|
1262
|
-
export declare const JQState: {
|
|
1263
|
-
readonly DISABLED: "DISABLED";
|
|
1264
|
-
readonly ENABLED: "ENABLED";
|
|
1265
|
-
};
|
|
1266
|
-
/**
|
|
1267
|
-
* @public
|
|
1268
|
-
*/
|
|
1269
|
-
export type JQState = (typeof JQState)[keyof typeof JQState];
|
|
1270
1106
|
/**
|
|
1271
1107
|
* <p>Contains the parameters for <code>CreateJobQueue</code>.</p>
|
|
1272
1108
|
* @public
|
|
@@ -1497,29 +1333,6 @@ export interface CapacityLimit {
|
|
|
1497
1333
|
*/
|
|
1498
1334
|
capacityUnit?: string | undefined;
|
|
1499
1335
|
}
|
|
1500
|
-
/**
|
|
1501
|
-
* @public
|
|
1502
|
-
* @enum
|
|
1503
|
-
*/
|
|
1504
|
-
export declare const ServiceEnvironmentType: {
|
|
1505
|
-
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
1506
|
-
};
|
|
1507
|
-
/**
|
|
1508
|
-
* @public
|
|
1509
|
-
*/
|
|
1510
|
-
export type ServiceEnvironmentType = (typeof ServiceEnvironmentType)[keyof typeof ServiceEnvironmentType];
|
|
1511
|
-
/**
|
|
1512
|
-
* @public
|
|
1513
|
-
* @enum
|
|
1514
|
-
*/
|
|
1515
|
-
export declare const ServiceEnvironmentState: {
|
|
1516
|
-
readonly DISABLED: "DISABLED";
|
|
1517
|
-
readonly ENABLED: "ENABLED";
|
|
1518
|
-
};
|
|
1519
|
-
/**
|
|
1520
|
-
* @public
|
|
1521
|
-
*/
|
|
1522
|
-
export type ServiceEnvironmentState = (typeof ServiceEnvironmentState)[keyof typeof ServiceEnvironmentState];
|
|
1523
1336
|
/**
|
|
1524
1337
|
* @public
|
|
1525
1338
|
*/
|
|
@@ -1696,34 +1509,6 @@ export interface DescribeComputeEnvironmentsRequest {
|
|
|
1696
1509
|
*/
|
|
1697
1510
|
nextToken?: string | undefined;
|
|
1698
1511
|
}
|
|
1699
|
-
/**
|
|
1700
|
-
* @public
|
|
1701
|
-
* @enum
|
|
1702
|
-
*/
|
|
1703
|
-
export declare const OrchestrationType: {
|
|
1704
|
-
readonly ECS: "ECS";
|
|
1705
|
-
readonly EKS: "EKS";
|
|
1706
|
-
};
|
|
1707
|
-
/**
|
|
1708
|
-
* @public
|
|
1709
|
-
*/
|
|
1710
|
-
export type OrchestrationType = (typeof OrchestrationType)[keyof typeof OrchestrationType];
|
|
1711
|
-
/**
|
|
1712
|
-
* @public
|
|
1713
|
-
* @enum
|
|
1714
|
-
*/
|
|
1715
|
-
export declare const CEStatus: {
|
|
1716
|
-
readonly CREATING: "CREATING";
|
|
1717
|
-
readonly DELETED: "DELETED";
|
|
1718
|
-
readonly DELETING: "DELETING";
|
|
1719
|
-
readonly INVALID: "INVALID";
|
|
1720
|
-
readonly UPDATING: "UPDATING";
|
|
1721
|
-
readonly VALID: "VALID";
|
|
1722
|
-
};
|
|
1723
|
-
/**
|
|
1724
|
-
* @public
|
|
1725
|
-
*/
|
|
1726
|
-
export type CEStatus = (typeof CEStatus)[keyof typeof CEStatus];
|
|
1727
1512
|
/**
|
|
1728
1513
|
* <p>Specifies the infrastructure update policy for the Amazon EC2 compute environment. For more information
|
|
1729
1514
|
* about infrastructure updates, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html">Updating compute environments</a> in the
|
|
@@ -2073,19 +1858,6 @@ export interface FargatePlatformConfiguration {
|
|
|
2073
1858
|
*/
|
|
2074
1859
|
platformVersion?: string | undefined;
|
|
2075
1860
|
}
|
|
2076
|
-
/**
|
|
2077
|
-
* @public
|
|
2078
|
-
* @enum
|
|
2079
|
-
*/
|
|
2080
|
-
export declare const DeviceCgroupPermission: {
|
|
2081
|
-
readonly MKNOD: "MKNOD";
|
|
2082
|
-
readonly READ: "READ";
|
|
2083
|
-
readonly WRITE: "WRITE";
|
|
2084
|
-
};
|
|
2085
|
-
/**
|
|
2086
|
-
* @public
|
|
2087
|
-
*/
|
|
2088
|
-
export type DeviceCgroupPermission = (typeof DeviceCgroupPermission)[keyof typeof DeviceCgroupPermission];
|
|
2089
1861
|
/**
|
|
2090
1862
|
* <p>An object that represents a container instance host device.</p>
|
|
2091
1863
|
* <note>
|
|
@@ -2258,24 +2030,6 @@ export interface LinuxParameters {
|
|
|
2258
2030
|
*/
|
|
2259
2031
|
swappiness?: number | undefined;
|
|
2260
2032
|
}
|
|
2261
|
-
/**
|
|
2262
|
-
* @public
|
|
2263
|
-
* @enum
|
|
2264
|
-
*/
|
|
2265
|
-
export declare const LogDriver: {
|
|
2266
|
-
readonly AWSFIRELENS: "awsfirelens";
|
|
2267
|
-
readonly AWSLOGS: "awslogs";
|
|
2268
|
-
readonly FLUENTD: "fluentd";
|
|
2269
|
-
readonly GELF: "gelf";
|
|
2270
|
-
readonly JOURNALD: "journald";
|
|
2271
|
-
readonly JSON_FILE: "json-file";
|
|
2272
|
-
readonly SPLUNK: "splunk";
|
|
2273
|
-
readonly SYSLOG: "syslog";
|
|
2274
|
-
};
|
|
2275
|
-
/**
|
|
2276
|
-
* @public
|
|
2277
|
-
*/
|
|
2278
|
-
export type LogDriver = (typeof LogDriver)[keyof typeof LogDriver];
|
|
2279
2033
|
/**
|
|
2280
2034
|
* <p>An object that represents the secret to expose to your container. Secrets can be exposed to
|
|
2281
2035
|
* a container in the following ways:</p>
|
|
@@ -2459,19 +2213,6 @@ export interface RepositoryCredentials {
|
|
|
2459
2213
|
*/
|
|
2460
2214
|
credentialsParameter: string | undefined;
|
|
2461
2215
|
}
|
|
2462
|
-
/**
|
|
2463
|
-
* @public
|
|
2464
|
-
* @enum
|
|
2465
|
-
*/
|
|
2466
|
-
export declare const ResourceType: {
|
|
2467
|
-
readonly GPU: "GPU";
|
|
2468
|
-
readonly MEMORY: "MEMORY";
|
|
2469
|
-
readonly VCPU: "VCPU";
|
|
2470
|
-
};
|
|
2471
|
-
/**
|
|
2472
|
-
* @public
|
|
2473
|
-
*/
|
|
2474
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
2475
2216
|
/**
|
|
2476
2217
|
* <p>The type and amount of a resource to assign to a container. The supported resources include
|
|
2477
2218
|
* <code>GPU</code>, <code>MEMORY</code>, and <code>VCPU</code>.</p>
|
|
@@ -2726,18 +2467,6 @@ export interface Ulimit {
|
|
|
2726
2467
|
*/
|
|
2727
2468
|
softLimit: number | undefined;
|
|
2728
2469
|
}
|
|
2729
|
-
/**
|
|
2730
|
-
* @public
|
|
2731
|
-
* @enum
|
|
2732
|
-
*/
|
|
2733
|
-
export declare const EFSAuthorizationConfigIAM: {
|
|
2734
|
-
readonly DISABLED: "DISABLED";
|
|
2735
|
-
readonly ENABLED: "ENABLED";
|
|
2736
|
-
};
|
|
2737
|
-
/**
|
|
2738
|
-
* @public
|
|
2739
|
-
*/
|
|
2740
|
-
export type EFSAuthorizationConfigIAM = (typeof EFSAuthorizationConfigIAM)[keyof typeof EFSAuthorizationConfigIAM];
|
|
2741
2470
|
/**
|
|
2742
2471
|
* <p>The authorization configuration details for the Amazon EFS file system.</p>
|
|
2743
2472
|
* @public
|
|
@@ -2765,18 +2494,6 @@ export interface EFSAuthorizationConfig {
|
|
|
2765
2494
|
*/
|
|
2766
2495
|
iam?: EFSAuthorizationConfigIAM | undefined;
|
|
2767
2496
|
}
|
|
2768
|
-
/**
|
|
2769
|
-
* @public
|
|
2770
|
-
* @enum
|
|
2771
|
-
*/
|
|
2772
|
-
export declare const EFSTransitEncryption: {
|
|
2773
|
-
readonly DISABLED: "DISABLED";
|
|
2774
|
-
readonly ENABLED: "ENABLED";
|
|
2775
|
-
};
|
|
2776
|
-
/**
|
|
2777
|
-
* @public
|
|
2778
|
-
*/
|
|
2779
|
-
export type EFSTransitEncryption = (typeof EFSTransitEncryption)[keyof typeof EFSTransitEncryption];
|
|
2780
2497
|
/**
|
|
2781
2498
|
* <p>This is used when you're using an Amazon Elastic File System file system for job storage. For more
|
|
2782
2499
|
* information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/efs-volumes.html">Amazon EFS
|
|
@@ -3175,18 +2892,6 @@ export interface TaskContainerDependency {
|
|
|
3175
2892
|
*/
|
|
3176
2893
|
condition?: string | undefined;
|
|
3177
2894
|
}
|
|
3178
|
-
/**
|
|
3179
|
-
* @public
|
|
3180
|
-
* @enum
|
|
3181
|
-
*/
|
|
3182
|
-
export declare const FirelensConfigurationType: {
|
|
3183
|
-
readonly FLUENTBIT: "fluentbit";
|
|
3184
|
-
readonly FLUENTD: "fluentd";
|
|
3185
|
-
};
|
|
3186
|
-
/**
|
|
3187
|
-
* @public
|
|
3188
|
-
*/
|
|
3189
|
-
export type FirelensConfigurationType = (typeof FirelensConfigurationType)[keyof typeof FirelensConfigurationType];
|
|
3190
2895
|
/**
|
|
3191
2896
|
* <p>The FireLens configuration for the container. This is used to specify and configure a
|
|
3192
2897
|
* log router for container logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html">Custom log</a> routing in the <i>Amazon Elastic Container Service Developer
|
|
@@ -4231,30 +3936,6 @@ export interface NodeProperties {
|
|
|
4231
3936
|
*/
|
|
4232
3937
|
nodeRangeProperties: NodeRangeProperty[] | undefined;
|
|
4233
3938
|
}
|
|
4234
|
-
/**
|
|
4235
|
-
* @public
|
|
4236
|
-
* @enum
|
|
4237
|
-
*/
|
|
4238
|
-
export declare const PlatformCapability: {
|
|
4239
|
-
readonly EC2: "EC2";
|
|
4240
|
-
readonly FARGATE: "FARGATE";
|
|
4241
|
-
};
|
|
4242
|
-
/**
|
|
4243
|
-
* @public
|
|
4244
|
-
*/
|
|
4245
|
-
export type PlatformCapability = (typeof PlatformCapability)[keyof typeof PlatformCapability];
|
|
4246
|
-
/**
|
|
4247
|
-
* @public
|
|
4248
|
-
* @enum
|
|
4249
|
-
*/
|
|
4250
|
-
export declare const RetryAction: {
|
|
4251
|
-
readonly EXIT: "EXIT";
|
|
4252
|
-
readonly RETRY: "RETRY";
|
|
4253
|
-
};
|
|
4254
|
-
/**
|
|
4255
|
-
* @public
|
|
4256
|
-
*/
|
|
4257
|
-
export type RetryAction = (typeof RetryAction)[keyof typeof RetryAction];
|
|
4258
3939
|
/**
|
|
4259
3940
|
* <p>Specifies an array of up to 5 conditions to be met, and an action to take
|
|
4260
3941
|
* (<code>RETRY</code> or <code>EXIT</code>) if all conditions are met. If none of the
|
|
@@ -4517,22 +4198,6 @@ export interface DescribeJobQueuesRequest {
|
|
|
4517
4198
|
*/
|
|
4518
4199
|
nextToken?: string | undefined;
|
|
4519
4200
|
}
|
|
4520
|
-
/**
|
|
4521
|
-
* @public
|
|
4522
|
-
* @enum
|
|
4523
|
-
*/
|
|
4524
|
-
export declare const JQStatus: {
|
|
4525
|
-
readonly CREATING: "CREATING";
|
|
4526
|
-
readonly DELETED: "DELETED";
|
|
4527
|
-
readonly DELETING: "DELETING";
|
|
4528
|
-
readonly INVALID: "INVALID";
|
|
4529
|
-
readonly UPDATING: "UPDATING";
|
|
4530
|
-
readonly VALID: "VALID";
|
|
4531
|
-
};
|
|
4532
|
-
/**
|
|
4533
|
-
* @public
|
|
4534
|
-
*/
|
|
4535
|
-
export type JQStatus = (typeof JQStatus)[keyof typeof JQStatus];
|
|
4536
4201
|
/**
|
|
4537
4202
|
* <p>An object that represents the details for an Batch job queue.</p>
|
|
4538
4203
|
* @public
|
|
@@ -5560,23 +5225,6 @@ export interface NodeDetails {
|
|
|
5560
5225
|
*/
|
|
5561
5226
|
isMainNode?: boolean | undefined;
|
|
5562
5227
|
}
|
|
5563
|
-
/**
|
|
5564
|
-
* @public
|
|
5565
|
-
* @enum
|
|
5566
|
-
*/
|
|
5567
|
-
export declare const JobStatus: {
|
|
5568
|
-
readonly FAILED: "FAILED";
|
|
5569
|
-
readonly PENDING: "PENDING";
|
|
5570
|
-
readonly RUNNABLE: "RUNNABLE";
|
|
5571
|
-
readonly RUNNING: "RUNNING";
|
|
5572
|
-
readonly STARTING: "STARTING";
|
|
5573
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
5574
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
5575
|
-
};
|
|
5576
|
-
/**
|
|
5577
|
-
* @public
|
|
5578
|
-
*/
|
|
5579
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
5580
5228
|
/**
|
|
5581
5229
|
* <p>An object that represents an Batch job.</p>
|
|
5582
5230
|
* @public
|
|
@@ -5868,22 +5516,6 @@ export interface DescribeServiceEnvironmentsRequest {
|
|
|
5868
5516
|
*/
|
|
5869
5517
|
nextToken?: string | undefined;
|
|
5870
5518
|
}
|
|
5871
|
-
/**
|
|
5872
|
-
* @public
|
|
5873
|
-
* @enum
|
|
5874
|
-
*/
|
|
5875
|
-
export declare const ServiceEnvironmentStatus: {
|
|
5876
|
-
readonly CREATING: "CREATING";
|
|
5877
|
-
readonly DELETED: "DELETED";
|
|
5878
|
-
readonly DELETING: "DELETING";
|
|
5879
|
-
readonly INVALID: "INVALID";
|
|
5880
|
-
readonly UPDATING: "UPDATING";
|
|
5881
|
-
readonly VALID: "VALID";
|
|
5882
|
-
};
|
|
5883
|
-
/**
|
|
5884
|
-
* @public
|
|
5885
|
-
*/
|
|
5886
|
-
export type ServiceEnvironmentStatus = (typeof ServiceEnvironmentStatus)[keyof typeof ServiceEnvironmentStatus];
|
|
5887
5519
|
/**
|
|
5888
5520
|
* <p>Detailed information about a service environment, including its configuration, state, and capacity limits.</p>
|
|
5889
5521
|
* @public
|
|
@@ -5950,17 +5582,6 @@ export interface DescribeServiceJobRequest {
|
|
|
5950
5582
|
*/
|
|
5951
5583
|
jobId: string | undefined;
|
|
5952
5584
|
}
|
|
5953
|
-
/**
|
|
5954
|
-
* @public
|
|
5955
|
-
* @enum
|
|
5956
|
-
*/
|
|
5957
|
-
export declare const ServiceResourceIdName: {
|
|
5958
|
-
readonly SAGEMAKER_TRAINING_JOB_ARN: "TrainingJobArn";
|
|
5959
|
-
};
|
|
5960
|
-
/**
|
|
5961
|
-
* @public
|
|
5962
|
-
*/
|
|
5963
|
-
export type ServiceResourceIdName = (typeof ServiceResourceIdName)[keyof typeof ServiceResourceIdName];
|
|
5964
5585
|
/**
|
|
5965
5586
|
* <p>The Batch unique identifier.</p>
|
|
5966
5587
|
* @public
|
|
@@ -6014,18 +5635,6 @@ export interface LatestServiceJobAttempt {
|
|
|
6014
5635
|
*/
|
|
6015
5636
|
serviceResourceId?: ServiceResourceId | undefined;
|
|
6016
5637
|
}
|
|
6017
|
-
/**
|
|
6018
|
-
* @public
|
|
6019
|
-
* @enum
|
|
6020
|
-
*/
|
|
6021
|
-
export declare const ServiceJobRetryAction: {
|
|
6022
|
-
readonly EXIT: "EXIT";
|
|
6023
|
-
readonly RETRY: "RETRY";
|
|
6024
|
-
};
|
|
6025
|
-
/**
|
|
6026
|
-
* @public
|
|
6027
|
-
*/
|
|
6028
|
-
export type ServiceJobRetryAction = (typeof ServiceJobRetryAction)[keyof typeof ServiceJobRetryAction];
|
|
6029
5638
|
/**
|
|
6030
5639
|
* <p>Specifies conditions for when to exit or retry a service job based on the exit status or status reason.</p>
|
|
6031
5640
|
* @public
|
|
@@ -6058,35 +5667,6 @@ export interface ServiceJobRetryStrategy {
|
|
|
6058
5667
|
*/
|
|
6059
5668
|
evaluateOnExit?: ServiceJobEvaluateOnExit[] | undefined;
|
|
6060
5669
|
}
|
|
6061
|
-
/**
|
|
6062
|
-
* @public
|
|
6063
|
-
* @enum
|
|
6064
|
-
*/
|
|
6065
|
-
export declare const ServiceJobType: {
|
|
6066
|
-
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
6067
|
-
};
|
|
6068
|
-
/**
|
|
6069
|
-
* @public
|
|
6070
|
-
*/
|
|
6071
|
-
export type ServiceJobType = (typeof ServiceJobType)[keyof typeof ServiceJobType];
|
|
6072
|
-
/**
|
|
6073
|
-
* @public
|
|
6074
|
-
* @enum
|
|
6075
|
-
*/
|
|
6076
|
-
export declare const ServiceJobStatus: {
|
|
6077
|
-
readonly FAILED: "FAILED";
|
|
6078
|
-
readonly PENDING: "PENDING";
|
|
6079
|
-
readonly RUNNABLE: "RUNNABLE";
|
|
6080
|
-
readonly RUNNING: "RUNNING";
|
|
6081
|
-
readonly SCHEDULED: "SCHEDULED";
|
|
6082
|
-
readonly STARTING: "STARTING";
|
|
6083
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
6084
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
6085
|
-
};
|
|
6086
|
-
/**
|
|
6087
|
-
* @public
|
|
6088
|
-
*/
|
|
6089
|
-
export type ServiceJobStatus = (typeof ServiceJobStatus)[keyof typeof ServiceJobStatus];
|
|
6090
5670
|
/**
|
|
6091
5671
|
* <p>The timeout configuration for service jobs. </p>
|
|
6092
5672
|
* @public
|
|
@@ -7016,18 +6596,6 @@ export interface ListTagsForResourceResponse {
|
|
|
7016
6596
|
*/
|
|
7017
6597
|
tags?: Record<string, string> | undefined;
|
|
7018
6598
|
}
|
|
7019
|
-
/**
|
|
7020
|
-
* @public
|
|
7021
|
-
* @enum
|
|
7022
|
-
*/
|
|
7023
|
-
export declare const JobDefinitionType: {
|
|
7024
|
-
readonly Container: "container";
|
|
7025
|
-
readonly Multinode: "multinode";
|
|
7026
|
-
};
|
|
7027
|
-
/**
|
|
7028
|
-
* @public
|
|
7029
|
-
*/
|
|
7030
|
-
export type JobDefinitionType = (typeof JobDefinitionType)[keyof typeof JobDefinitionType];
|
|
7031
6599
|
/**
|
|
7032
6600
|
* <p>Contains the parameters for <code>RegisterJobDefinition</code>.</p>
|
|
7033
6601
|
* @public
|
|
@@ -7827,19 +7395,6 @@ export interface UntagResourceRequest {
|
|
|
7827
7395
|
*/
|
|
7828
7396
|
export interface UntagResourceResponse {
|
|
7829
7397
|
}
|
|
7830
|
-
/**
|
|
7831
|
-
* @public
|
|
7832
|
-
* @enum
|
|
7833
|
-
*/
|
|
7834
|
-
export declare const CRUpdateAllocationStrategy: {
|
|
7835
|
-
readonly BEST_FIT_PROGRESSIVE: "BEST_FIT_PROGRESSIVE";
|
|
7836
|
-
readonly SPOT_CAPACITY_OPTIMIZED: "SPOT_CAPACITY_OPTIMIZED";
|
|
7837
|
-
readonly SPOT_PRICE_CAPACITY_OPTIMIZED: "SPOT_PRICE_CAPACITY_OPTIMIZED";
|
|
7838
|
-
};
|
|
7839
|
-
/**
|
|
7840
|
-
* @public
|
|
7841
|
-
*/
|
|
7842
|
-
export type CRUpdateAllocationStrategy = (typeof CRUpdateAllocationStrategy)[keyof typeof CRUpdateAllocationStrategy];
|
|
7843
7398
|
/**
|
|
7844
7399
|
* <p>An object that represents the attributes of a compute environment that can be updated. For
|
|
7845
7400
|
* more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html">Updating compute environments</a> in the
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { BatchExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { BatchServiceException } from "./models/BatchServiceException";
|