@aws-sdk/client-batch 3.533.0 → 3.535.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-types/Batch.d.ts +6 -1
- package/dist-types/BatchClient.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateComputeEnvironmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateJobQueueCommand.d.ts +2 -1
- package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteComputeEnvironmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteJobQueueCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSchedulingPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeregisterJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeComputeEnvironmentsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeJobDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeJobQueuesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeJobsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +2 -1
- package/dist-types/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListSchedulingPoliciesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/RegisterJobDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/SubmitJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/TerminateJobCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateComputeEnvironmentCommand.d.ts +2 -1
- package/dist-types/commands/UpdateJobQueueCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +680 -680
- package/dist-types/ts3.4/Batch.d.ts +5 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/Batch.d.ts
CHANGED
|
@@ -76,18 +76,21 @@ export interface Batch {
|
|
|
76
76
|
/**
|
|
77
77
|
* @see {@link DescribeComputeEnvironmentsCommand}
|
|
78
78
|
*/
|
|
79
|
+
describeComputeEnvironments(): Promise<DescribeComputeEnvironmentsCommandOutput>;
|
|
79
80
|
describeComputeEnvironments(args: DescribeComputeEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComputeEnvironmentsCommandOutput>;
|
|
80
81
|
describeComputeEnvironments(args: DescribeComputeEnvironmentsCommandInput, cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void): void;
|
|
81
82
|
describeComputeEnvironments(args: DescribeComputeEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void): void;
|
|
82
83
|
/**
|
|
83
84
|
* @see {@link DescribeJobDefinitionsCommand}
|
|
84
85
|
*/
|
|
86
|
+
describeJobDefinitions(): Promise<DescribeJobDefinitionsCommandOutput>;
|
|
85
87
|
describeJobDefinitions(args: DescribeJobDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobDefinitionsCommandOutput>;
|
|
86
88
|
describeJobDefinitions(args: DescribeJobDefinitionsCommandInput, cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void): void;
|
|
87
89
|
describeJobDefinitions(args: DescribeJobDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void): void;
|
|
88
90
|
/**
|
|
89
91
|
* @see {@link DescribeJobQueuesCommand}
|
|
90
92
|
*/
|
|
93
|
+
describeJobQueues(): Promise<DescribeJobQueuesCommandOutput>;
|
|
91
94
|
describeJobQueues(args: DescribeJobQueuesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeJobQueuesCommandOutput>;
|
|
92
95
|
describeJobQueues(args: DescribeJobQueuesCommandInput, cb: (err: any, data?: DescribeJobQueuesCommandOutput) => void): void;
|
|
93
96
|
describeJobQueues(args: DescribeJobQueuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeJobQueuesCommandOutput) => void): void;
|
|
@@ -106,12 +109,14 @@ export interface Batch {
|
|
|
106
109
|
/**
|
|
107
110
|
* @see {@link ListJobsCommand}
|
|
108
111
|
*/
|
|
112
|
+
listJobs(): Promise<ListJobsCommandOutput>;
|
|
109
113
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
110
114
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
111
115
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
112
116
|
/**
|
|
113
117
|
* @see {@link ListSchedulingPoliciesCommand}
|
|
114
118
|
*/
|
|
119
|
+
listSchedulingPolicies(): Promise<ListSchedulingPoliciesCommandOutput>;
|
|
115
120
|
listSchedulingPolicies(args: ListSchedulingPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListSchedulingPoliciesCommandOutput>;
|
|
116
121
|
listSchedulingPolicies(args: ListSchedulingPoliciesCommandInput, cb: (err: any, data?: ListSchedulingPoliciesCommandOutput) => void): void;
|
|
117
122
|
listSchedulingPolicies(args: ListSchedulingPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchedulingPoliciesCommandOutput) => void): void;
|
|
@@ -171,7 +176,6 @@ export interface Batch {
|
|
|
171
176
|
updateSchedulingPolicy(args: UpdateSchedulingPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSchedulingPolicyCommandOutput) => void): void;
|
|
172
177
|
}
|
|
173
178
|
/**
|
|
174
|
-
* @public
|
|
175
179
|
* <fullname>Batch</fullname>
|
|
176
180
|
* <p>Using Batch, you can run batch computing workloads on the Amazon Web Services Cloud. Batch computing is a common means for
|
|
177
181
|
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
|
|
@@ -183,6 +187,7 @@ export interface Batch {
|
|
|
183
187
|
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
|
|
184
188
|
* workloads. With Batch, there's no need to install or manage batch computing software. This means that you can focus
|
|
185
189
|
* on analyzing results and solving your specific problems instead.</p>
|
|
190
|
+
* @public
|
|
186
191
|
*/
|
|
187
192
|
export declare class Batch extends BatchClient implements Batch {
|
|
188
193
|
}
|
|
@@ -175,7 +175,6 @@ export type BatchClientResolvedConfigType = __SmithyResolvedConfiguration<__Http
|
|
|
175
175
|
export interface BatchClientResolvedConfig extends BatchClientResolvedConfigType {
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
|
-
* @public
|
|
179
178
|
* <fullname>Batch</fullname>
|
|
180
179
|
* <p>Using Batch, you can run batch computing workloads on the Amazon Web Services Cloud. Batch computing is a common means for
|
|
181
180
|
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
|
|
@@ -187,6 +186,7 @@ export interface BatchClientResolvedConfig extends BatchClientResolvedConfigType
|
|
|
187
186
|
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
|
|
188
187
|
* workloads. With Batch, there's no need to install or manage batch computing software. This means that you can focus
|
|
189
188
|
* on analyzing results and solving your specific problems instead.</p>
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export declare class BatchClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BatchClientResolvedConfig> {
|
|
192
192
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelJobCommandOutput extends CancelJobResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelJobCommand_base: {
|
|
24
24
|
new (input: CancelJobCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobCommandInput, CancelJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelJobCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobCommandInput, CancelJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Cancels a job in an Batch job queue. Jobs that are in the
|
|
30
30
|
* <code>SUBMITTED</code>
|
|
31
31
|
* or
|
|
@@ -80,6 +80,7 @@ declare const CancelJobCommand_base: {
|
|
|
80
80
|
* @throws {@link BatchServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
* @example To cancel a job
|
|
84
85
|
* ```javascript
|
|
85
86
|
* // This example cancels a job with the specified job ID.
|
|
@@ -22,10 +22,10 @@ export interface CreateComputeEnvironmentCommandOutput extends CreateComputeEnvi
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateComputeEnvironmentCommand_base: {
|
|
24
24
|
new (input: CreateComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateComputeEnvironmentCommandInput, CreateComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<CreateComputeEnvironmentCommandInput, CreateComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an Batch compute environment. You can create <code>MANAGED</code> or
|
|
30
30
|
* <code>UNMANAGED</code> compute environments. <code>MANAGED</code> compute environments can
|
|
31
31
|
* use Amazon EC2 or Fargate resources. <code>UNMANAGED</code> compute environments can only use
|
|
@@ -206,6 +206,7 @@ declare const CreateComputeEnvironmentCommand_base: {
|
|
|
206
206
|
* @throws {@link BatchServiceException}
|
|
207
207
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
208
208
|
*
|
|
209
|
+
* @public
|
|
209
210
|
* @example To create a managed EC2 compute environment
|
|
210
211
|
* ```javascript
|
|
211
212
|
* // This example creates a managed compute environment with specific C4 instance types that are launched on demand. The compute environment is called C4OnDemand.
|
|
@@ -22,10 +22,10 @@ export interface CreateJobQueueCommandOutput extends CreateJobQueueResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateJobQueueCommand_base: {
|
|
24
24
|
new (input: CreateJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobQueueCommandInput, CreateJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobQueueCommandInput, CreateJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an Batch job queue. When you create a job queue, you associate one or more
|
|
30
30
|
* compute environments to the queue and assign an order of preference for the compute
|
|
31
31
|
* environments.</p>
|
|
@@ -88,6 +88,7 @@ declare const CreateJobQueueCommand_base: {
|
|
|
88
88
|
* @throws {@link BatchServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
* @example To create a job queue with a single compute environment
|
|
92
93
|
* ```javascript
|
|
93
94
|
* // This example creates a job queue called LowPriority that uses the M4Spot compute environment.
|
|
@@ -22,10 +22,10 @@ export interface CreateSchedulingPolicyCommandOutput extends CreateSchedulingPol
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateSchedulingPolicyCommand_base: {
|
|
24
24
|
new (input: CreateSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSchedulingPolicyCommandInput, CreateSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSchedulingPolicyCommandInput, CreateSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an Batch scheduling policy.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const CreateSchedulingPolicyCommand_base: {
|
|
|
75
75
|
* @throws {@link BatchServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class CreateSchedulingPolicyCommand extends CreateSchedulingPolicyCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteComputeEnvironmentCommandOutput extends DeleteComputeEnvi
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteComputeEnvironmentCommand_base: {
|
|
24
24
|
new (input: DeleteComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an Batch compute environment.</p>
|
|
30
30
|
* <p>Before you can delete a compute environment, you must set its state to
|
|
31
31
|
* <code>DISABLED</code> with the <a>UpdateComputeEnvironment</a> API operation and
|
|
@@ -65,6 +65,7 @@ declare const DeleteComputeEnvironmentCommand_base: {
|
|
|
65
65
|
* @throws {@link BatchServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
* @example To delete a compute environment
|
|
69
70
|
* ```javascript
|
|
70
71
|
* // This example deletes the P2OnDemand compute environment.
|
|
@@ -22,10 +22,10 @@ export interface DeleteJobQueueCommandOutput extends DeleteJobQueueResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteJobQueueCommand_base: {
|
|
24
24
|
new (input: DeleteJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified job queue. You must first disable submissions for a queue with the
|
|
30
30
|
* <a>UpdateJobQueue</a> operation. All jobs in the queue are eventually terminated
|
|
31
31
|
* when you delete a job queue. The jobs are terminated at a rate of about 16 jobs each
|
|
@@ -64,6 +64,7 @@ declare const DeleteJobQueueCommand_base: {
|
|
|
64
64
|
* @throws {@link BatchServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
* @example To delete a job queue
|
|
68
69
|
* ```javascript
|
|
69
70
|
* // This example deletes the GPGPU job queue.
|
|
@@ -22,10 +22,10 @@ export interface DeleteSchedulingPolicyCommandOutput extends DeleteSchedulingPol
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteSchedulingPolicyCommand_base: {
|
|
24
24
|
new (input: DeleteSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified scheduling policy.</p>
|
|
30
30
|
* <p>You can't delete a scheduling policy that's used in any job queues.</p>
|
|
31
31
|
* @example
|
|
@@ -60,6 +60,7 @@ declare const DeleteSchedulingPolicyCommand_base: {
|
|
|
60
60
|
* @throws {@link BatchServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
62
62
|
*
|
|
63
|
+
* @public
|
|
63
64
|
*/
|
|
64
65
|
export declare class DeleteSchedulingPolicyCommand extends DeleteSchedulingPolicyCommand_base {
|
|
65
66
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeregisterJobDefinitionCommandOutput extends DeregisterJobDefin
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeregisterJobDefinitionCommand_base: {
|
|
24
24
|
new (input: DeregisterJobDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeregisterJobDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deregisters an Batch job definition. Job definitions are permanently deleted after 180
|
|
30
30
|
* days.</p>
|
|
31
31
|
* @example
|
|
@@ -60,6 +60,7 @@ declare const DeregisterJobDefinitionCommand_base: {
|
|
|
60
60
|
* @throws {@link BatchServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
62
62
|
*
|
|
63
|
+
* @public
|
|
63
64
|
* @example To deregister a job definition
|
|
64
65
|
* ```javascript
|
|
65
66
|
* // This example deregisters a job definition called sleep10.
|
|
@@ -22,10 +22,10 @@ export interface DescribeComputeEnvironmentsCommandOutput extends DescribeComput
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeComputeEnvironmentsCommand_base: {
|
|
24
24
|
new (input: DescribeComputeEnvironmentsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeComputeEnvironmentsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes one or more of your compute environments.</p>
|
|
30
30
|
* <p>If you're using an unmanaged compute environment, you can use the
|
|
31
31
|
* <code>DescribeComputeEnvironment</code> operation to determine the
|
|
@@ -131,6 +131,7 @@ declare const DescribeComputeEnvironmentsCommand_base: {
|
|
|
131
131
|
* @throws {@link BatchServiceException}
|
|
132
132
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
133
133
|
*
|
|
134
|
+
* @public
|
|
134
135
|
* @example To describe a compute environment
|
|
135
136
|
* ```javascript
|
|
136
137
|
* // This example describes the P2OnDemand compute environment.
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobDefinitionsCommandOutput extends DescribeJobDefiniti
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobDefinitionsCommand_base: {
|
|
24
24
|
new (input: DescribeJobDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeJobDefinitionsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes a list of job definitions. You can specify a <code>status</code> (such as
|
|
30
30
|
* <code>ACTIVE</code>) to only return job definitions that match that status.</p>
|
|
31
31
|
* @example
|
|
@@ -516,6 +516,7 @@ declare const DescribeJobDefinitionsCommand_base: {
|
|
|
516
516
|
* @throws {@link BatchServiceException}
|
|
517
517
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
518
518
|
*
|
|
519
|
+
* @public
|
|
519
520
|
* @example To describe active job definitions
|
|
520
521
|
* ```javascript
|
|
521
522
|
* // This example describes all of your active job definitions.
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobQueuesCommandOutput extends DescribeJobQueuesRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobQueuesCommand_base: {
|
|
24
24
|
new (input: DescribeJobQueuesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeJobQueuesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes one or more of your job queues.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const DescribeJobQueuesCommand_base: {
|
|
|
93
93
|
* @throws {@link BatchServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
* @example To describe a job queue
|
|
97
98
|
* ```javascript
|
|
98
99
|
* // This example describes the HighPriority job queue.
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobsCommand_base: {
|
|
24
24
|
new (input: DescribeJobsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobsCommandInput, DescribeJobsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeJobsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobsCommandInput, DescribeJobsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes a list of Batch jobs.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -600,6 +600,7 @@ declare const DescribeJobsCommand_base: {
|
|
|
600
600
|
* @throws {@link BatchServiceException}
|
|
601
601
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
602
602
|
*
|
|
603
|
+
* @public
|
|
603
604
|
* @example To describe a specific job
|
|
604
605
|
* ```javascript
|
|
605
606
|
* // This example describes a job with the specified job ID.
|
|
@@ -22,10 +22,10 @@ export interface DescribeSchedulingPoliciesCommandOutput extends DescribeSchedul
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeSchedulingPoliciesCommand_base: {
|
|
24
24
|
new (input: DescribeSchedulingPoliciesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSchedulingPoliciesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes one or more of your scheduling policies.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DescribeSchedulingPoliciesCommand_base: {
|
|
|
81
81
|
* @throws {@link BatchServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DescribeSchedulingPoliciesCommand extends DescribeSchedulingPoliciesCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListJobsCommand_base: {
|
|
24
24
|
new (input: ListJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListJobsCommandInput, ListJobsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListJobsCommandInput, ListJobsCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of Batch jobs.</p>
|
|
30
30
|
* <p>You must specify only one of the following items:</p>
|
|
31
31
|
* <ul>
|
|
@@ -114,6 +114,7 @@ declare const ListJobsCommand_base: {
|
|
|
114
114
|
* @throws {@link BatchServiceException}
|
|
115
115
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
116
116
|
*
|
|
117
|
+
* @public
|
|
117
118
|
* @example To list running jobs
|
|
118
119
|
* ```javascript
|
|
119
120
|
* // This example lists the running jobs in the HighPriority job queue.
|
|
@@ -22,10 +22,10 @@ export interface ListSchedulingPoliciesCommandOutput extends ListSchedulingPolic
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListSchedulingPoliciesCommand_base: {
|
|
24
24
|
new (input: ListSchedulingPoliciesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSchedulingPoliciesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of Batch scheduling policies.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListSchedulingPoliciesCommand_base: {
|
|
|
67
67
|
* @throws {@link BatchServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListSchedulingPoliciesCommand extends ListSchedulingPoliciesCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags for an Batch resource. Batch resources that support tags are compute environments, jobs, job definitions, job queues,
|
|
30
30
|
* and scheduling policies. ARNs for child jobs of array and multi-node parallel (MNP) jobs aren't supported.</p>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link BatchServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
* @example ListTagsForResource Example
|
|
68
69
|
* ```javascript
|
|
69
70
|
* // This demonstrates calling the ListTagsForResource action.
|
|
@@ -22,10 +22,10 @@ export interface RegisterJobDefinitionCommandOutput extends RegisterJobDefinitio
|
|
|
22
22
|
}
|
|
23
23
|
declare const RegisterJobDefinitionCommand_base: {
|
|
24
24
|
new (input: RegisterJobDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RegisterJobDefinitionCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Registers an Batch job definition.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -502,6 +502,7 @@ declare const RegisterJobDefinitionCommand_base: {
|
|
|
502
502
|
* @throws {@link BatchServiceException}
|
|
503
503
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
504
504
|
*
|
|
505
|
+
* @public
|
|
505
506
|
* @example To register a job definition
|
|
506
507
|
* ```javascript
|
|
507
508
|
* // This example registers a job definition for a simple container job.
|
|
@@ -22,10 +22,10 @@ export interface SubmitJobCommandOutput extends SubmitJobResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const SubmitJobCommand_base: {
|
|
24
24
|
new (input: SubmitJobCommandInput): import("@smithy/smithy-client").CommandImpl<SubmitJobCommandInput, SubmitJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SubmitJobCommandInput): import("@smithy/smithy-client").CommandImpl<SubmitJobCommandInput, SubmitJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Submits an Batch job from a job definition. Parameters that are specified during <a>SubmitJob</a> override parameters defined in the job definition. vCPU and memory
|
|
30
30
|
* requirements that are specified in the <code>resourceRequirements</code> objects in the job
|
|
31
31
|
* definition are the exception. They can't be overridden this way using the <code>memory</code>
|
|
@@ -241,6 +241,7 @@ declare const SubmitJobCommand_base: {
|
|
|
241
241
|
* @throws {@link BatchServiceException}
|
|
242
242
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
243
243
|
*
|
|
244
|
+
* @public
|
|
244
245
|
* @example To submit a job to a queue
|
|
245
246
|
* ```javascript
|
|
246
247
|
* // This example submits a simple container job called example to the HighPriority job queue.
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associates the specified tags to a resource with the specified <code>resourceArn</code>.
|
|
30
30
|
* If existing tags on a resource aren't specified in the request parameters, they aren't
|
|
31
31
|
* changed. When a resource is deleted, the tags that are associated with that resource are
|
|
@@ -66,6 +66,7 @@ declare const TagResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link BatchServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
* @example TagResource Example
|
|
70
71
|
* ```javascript
|
|
71
72
|
* // This demonstrates calling the TagResource action.
|
|
@@ -22,10 +22,10 @@ export interface TerminateJobCommandOutput extends TerminateJobResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const TerminateJobCommand_base: {
|
|
24
24
|
new (input: TerminateJobCommandInput): import("@smithy/smithy-client").CommandImpl<TerminateJobCommandInput, TerminateJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TerminateJobCommandInput): import("@smithy/smithy-client").CommandImpl<TerminateJobCommandInput, TerminateJobCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Terminates a job in a job queue. Jobs that are in the <code>STARTING</code> or
|
|
30
30
|
* <code>RUNNING</code> state are terminated, which causes them to transition to
|
|
31
31
|
* <code>FAILED</code>. Jobs that have not progressed to the <code>STARTING</code> state are
|
|
@@ -63,6 +63,7 @@ declare const TerminateJobCommand_base: {
|
|
|
63
63
|
* @throws {@link BatchServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
* @example To terminate a job
|
|
67
68
|
* ```javascript
|
|
68
69
|
* // This example terminates a job with the specified job ID.
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes specified tags from an Batch resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -62,6 +62,7 @@ declare const UntagResourceCommand_base: {
|
|
|
62
62
|
* @throws {@link BatchServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
* @example UntagResource Example
|
|
66
67
|
* ```javascript
|
|
67
68
|
* // This demonstrates calling the UntagResource action.
|
|
@@ -22,10 +22,10 @@ export interface UpdateComputeEnvironmentCommandOutput extends UpdateComputeEnvi
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateComputeEnvironmentCommand_base: {
|
|
24
24
|
new (input: UpdateComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateComputeEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates an Batch compute environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -106,6 +106,7 @@ declare const UpdateComputeEnvironmentCommand_base: {
|
|
|
106
106
|
* @throws {@link BatchServiceException}
|
|
107
107
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
108
108
|
*
|
|
109
|
+
* @public
|
|
109
110
|
* @example To update a compute environment
|
|
110
111
|
* ```javascript
|
|
111
112
|
* // This example disables the P2OnDemand compute environment so it can be deleted.
|
|
@@ -22,10 +22,10 @@ export interface UpdateJobQueueCommandOutput extends UpdateJobQueueResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateJobQueueCommand_base: {
|
|
24
24
|
new (input: UpdateJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateJobQueueCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a job queue.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const UpdateJobQueueCommand_base: {
|
|
|
79
79
|
* @throws {@link BatchServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
* @example To update a job queue
|
|
83
84
|
* ```javascript
|
|
84
85
|
* // This example disables a job queue so that it can be deleted.
|
|
@@ -22,10 +22,10 @@ export interface UpdateSchedulingPolicyCommandOutput extends UpdateSchedulingPol
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateSchedulingPolicyCommand_base: {
|
|
24
24
|
new (input: UpdateSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateSchedulingPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput, BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates a scheduling policy.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UpdateSchedulingPolicyCommand_base: {
|
|
|
69
69
|
* @throws {@link BatchServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Batch service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UpdateSchedulingPolicyCommand extends UpdateSchedulingPolicyCommand_base {
|
|
74
75
|
}
|