@aws-sdk/client-batch 3.890.0 → 3.891.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/commands/CancelJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateComputeEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/CreateConsumableResourceCommand.d.ts +2 -0
- package/dist-types/commands/CreateJobQueueCommand.d.ts +2 -0
- package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +2 -0
- package/dist-types/commands/CreateServiceEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteComputeEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteConsumableResourceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteJobQueueCommand.d.ts +2 -0
- package/dist-types/commands/DeleteSchedulingPolicyCommand.d.ts +2 -0
- package/dist-types/commands/DeleteServiceEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/DeregisterJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeComputeEnvironmentsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeConsumableResourceCommand.d.ts +2 -0
- package/dist-types/commands/DescribeJobDefinitionsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeJobQueuesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeJobsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeServiceEnvironmentsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeServiceJobCommand.d.ts +2 -0
- package/dist-types/commands/GetJobQueueSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/ListConsumableResourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListJobsByConsumableResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListSchedulingPoliciesCommand.d.ts +2 -0
- package/dist-types/commands/ListServiceJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RegisterJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/SubmitJobCommand.d.ts +2 -0
- package/dist-types/commands/SubmitServiceJobCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/TerminateJobCommand.d.ts +2 -0
- package/dist-types/commands/TerminateServiceJobCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateComputeEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateConsumableResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateJobQueueCommand.d.ts +2 -0
- package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServiceEnvironmentCommand.d.ts +2 -0
- package/package.json +10 -10
|
@@ -45,6 +45,8 @@ declare const CancelJobCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { BatchClient, CancelJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
47
47
|
* // const { BatchClient, CancelJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
48
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
49
|
+
* const config = {}; // type is BatchClientConfig
|
|
48
50
|
* const client = new BatchClient(config);
|
|
49
51
|
* const input = { // CancelJobRequest
|
|
50
52
|
* jobId: "STRING_VALUE", // required
|
|
@@ -127,6 +127,8 @@ declare const CreateComputeEnvironmentCommand_base: {
|
|
|
127
127
|
* ```javascript
|
|
128
128
|
* import { BatchClient, CreateComputeEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
129
129
|
* // const { BatchClient, CreateComputeEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
130
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
131
|
+
* const config = {}; // type is BatchClientConfig
|
|
130
132
|
* const client = new BatchClient(config);
|
|
131
133
|
* const input = { // CreateComputeEnvironmentRequest
|
|
132
134
|
* computeEnvironmentName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateConsumableResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, CreateConsumableResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, CreateConsumableResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // CreateConsumableResourceRequest
|
|
38
40
|
* consumableResourceName: "STRING_VALUE", // required
|
|
@@ -39,6 +39,8 @@ declare const CreateJobQueueCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { BatchClient, CreateJobQueueCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
41
41
|
* // const { BatchClient, CreateJobQueueCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
42
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
43
|
+
* const config = {}; // type is BatchClientConfig
|
|
42
44
|
* const client = new BatchClient(config);
|
|
43
45
|
* const input = { // CreateJobQueueRequest
|
|
44
46
|
* jobQueueName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateSchedulingPolicyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, CreateSchedulingPolicyCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, CreateSchedulingPolicyCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // CreateSchedulingPolicyRequest
|
|
38
40
|
* name: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateServiceEnvironmentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, CreateServiceEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, CreateServiceEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // CreateServiceEnvironmentRequest
|
|
38
40
|
* serviceEnvironmentName: "STRING_VALUE", // required
|
|
@@ -39,6 +39,8 @@ declare const DeleteComputeEnvironmentCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { BatchClient, DeleteComputeEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
41
41
|
* // const { BatchClient, DeleteComputeEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
42
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
43
|
+
* const config = {}; // type is BatchClientConfig
|
|
42
44
|
* const client = new BatchClient(config);
|
|
43
45
|
* const input = { // DeleteComputeEnvironmentRequest
|
|
44
46
|
* computeEnvironment: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteConsumableResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DeleteConsumableResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DeleteConsumableResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DeleteConsumableResourceRequest
|
|
38
40
|
* consumableResource: "STRING_VALUE", // required
|
|
@@ -38,6 +38,8 @@ declare const DeleteJobQueueCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { BatchClient, DeleteJobQueueCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
40
40
|
* // const { BatchClient, DeleteJobQueueCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
41
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
42
|
+
* const config = {}; // type is BatchClientConfig
|
|
41
43
|
* const client = new BatchClient(config);
|
|
42
44
|
* const input = { // DeleteJobQueueRequest
|
|
43
45
|
* jobQueue: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeleteSchedulingPolicyCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { BatchClient, DeleteSchedulingPolicyCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
36
36
|
* // const { BatchClient, DeleteSchedulingPolicyCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
37
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
38
|
+
* const config = {}; // type is BatchClientConfig
|
|
37
39
|
* const client = new BatchClient(config);
|
|
38
40
|
* const input = { // DeleteSchedulingPolicyRequest
|
|
39
41
|
* arn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteServiceEnvironmentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DeleteServiceEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DeleteServiceEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DeleteServiceEnvironmentRequest
|
|
38
40
|
* serviceEnvironment: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeregisterJobDefinitionCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { BatchClient, DeregisterJobDefinitionCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
36
36
|
* // const { BatchClient, DeregisterJobDefinitionCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
37
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
38
|
+
* const config = {}; // type is BatchClientConfig
|
|
37
39
|
* const client = new BatchClient(config);
|
|
38
40
|
* const input = { // DeregisterJobDefinitionRequest
|
|
39
41
|
* jobDefinition: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DescribeComputeEnvironmentsCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { BatchClient, DescribeComputeEnvironmentsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
38
38
|
* // const { BatchClient, DescribeComputeEnvironmentsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
39
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
40
|
+
* const config = {}; // type is BatchClientConfig
|
|
39
41
|
* const client = new BatchClient(config);
|
|
40
42
|
* const input = { // DescribeComputeEnvironmentsRequest
|
|
41
43
|
* computeEnvironments: [ // StringList
|
|
@@ -33,6 +33,8 @@ declare const DescribeConsumableResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeConsumableResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeConsumableResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeConsumableResourceRequest
|
|
38
40
|
* consumableResource: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DescribeJobDefinitionsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { BatchClient, DescribeJobDefinitionsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
36
36
|
* // const { BatchClient, DescribeJobDefinitionsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
37
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
38
|
+
* const config = {}; // type is BatchClientConfig
|
|
37
39
|
* const client = new BatchClient(config);
|
|
38
40
|
* const input = { // DescribeJobDefinitionsRequest
|
|
39
41
|
* jobDefinitions: [ // StringList
|
|
@@ -33,6 +33,8 @@ declare const DescribeJobQueuesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeJobQueuesCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeJobQueuesCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeJobQueuesRequest
|
|
38
40
|
* jobQueues: [ // StringList
|
|
@@ -33,6 +33,8 @@ declare const DescribeJobsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeJobsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeJobsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeJobsRequest
|
|
38
40
|
* jobs: [ // StringList // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeSchedulingPoliciesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeSchedulingPoliciesCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeSchedulingPoliciesCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeSchedulingPoliciesRequest
|
|
38
40
|
* arns: [ // StringList // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeServiceEnvironmentsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeServiceEnvironmentsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeServiceEnvironmentsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeServiceEnvironmentsRequest
|
|
38
40
|
* serviceEnvironments: [ // StringList
|
|
@@ -33,6 +33,8 @@ declare const DescribeServiceJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, DescribeServiceJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, DescribeServiceJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // DescribeServiceJobRequest
|
|
38
40
|
* jobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetJobQueueSnapshotCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, GetJobQueueSnapshotCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, GetJobQueueSnapshotCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // GetJobQueueSnapshotRequest
|
|
38
40
|
* jobQueue: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListConsumableResourcesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, ListConsumableResourcesCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, ListConsumableResourcesCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // ListConsumableResourcesRequest
|
|
38
40
|
* filters: [ // ListConsumableResourcesFilterList
|
|
@@ -33,6 +33,8 @@ declare const ListJobsByConsumableResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, ListJobsByConsumableResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, ListJobsByConsumableResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // ListJobsByConsumableResourceRequest
|
|
38
40
|
* consumableResource: "STRING_VALUE", // required
|
|
@@ -47,6 +47,8 @@ declare const ListJobsCommand_base: {
|
|
|
47
47
|
* ```javascript
|
|
48
48
|
* import { BatchClient, ListJobsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
49
49
|
* // const { BatchClient, ListJobsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
50
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
51
|
+
* const config = {}; // type is BatchClientConfig
|
|
50
52
|
* const client = new BatchClient(config);
|
|
51
53
|
* const input = { // ListJobsRequest
|
|
52
54
|
* jobQueue: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListSchedulingPoliciesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, ListSchedulingPoliciesCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, ListSchedulingPoliciesCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // ListSchedulingPoliciesRequest
|
|
38
40
|
* maxResults: Number("int"),
|
|
@@ -33,6 +33,8 @@ declare const ListServiceJobsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, ListServiceJobsCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, ListServiceJobsCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // ListServiceJobsRequest
|
|
38
40
|
* jobQueue: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { BatchClient, ListTagsForResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
36
36
|
* // const { BatchClient, ListTagsForResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
37
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
38
|
+
* const config = {}; // type is BatchClientConfig
|
|
37
39
|
* const client = new BatchClient(config);
|
|
38
40
|
* const input = { // ListTagsForResourceRequest
|
|
39
41
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const RegisterJobDefinitionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, RegisterJobDefinitionCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, RegisterJobDefinitionCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // RegisterJobDefinitionRequest
|
|
38
40
|
* jobDefinitionName: "STRING_VALUE", // required
|
|
@@ -47,6 +47,8 @@ declare const SubmitJobCommand_base: {
|
|
|
47
47
|
* ```javascript
|
|
48
48
|
* import { BatchClient, SubmitJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
49
49
|
* // const { BatchClient, SubmitJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
50
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
51
|
+
* const config = {}; // type is BatchClientConfig
|
|
50
52
|
* const client = new BatchClient(config);
|
|
51
53
|
* const input = { // SubmitJobRequest
|
|
52
54
|
* jobName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const SubmitServiceJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, SubmitServiceJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, SubmitServiceJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // SubmitServiceJobRequest
|
|
38
40
|
* jobName: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const TagResourceCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { BatchClient, TagResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
39
39
|
* // const { BatchClient, TagResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
40
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
41
|
+
* const config = {}; // type is BatchClientConfig
|
|
40
42
|
* const client = new BatchClient(config);
|
|
41
43
|
* const input = { // TagResourceRequest
|
|
42
44
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const TerminateJobCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { BatchClient, TerminateJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
38
38
|
* // const { BatchClient, TerminateJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
39
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
40
|
+
* const config = {}; // type is BatchClientConfig
|
|
39
41
|
* const client = new BatchClient(config);
|
|
40
42
|
* const input = { // TerminateJobRequest
|
|
41
43
|
* jobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const TerminateServiceJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, TerminateServiceJobCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, TerminateServiceJobCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // TerminateServiceJobRequest
|
|
38
40
|
* jobId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UntagResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UntagResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UntagResourceRequest
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateComputeEnvironmentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UpdateComputeEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UpdateComputeEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UpdateComputeEnvironmentRequest
|
|
38
40
|
* computeEnvironment: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateConsumableResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UpdateConsumableResourceCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UpdateConsumableResourceCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UpdateConsumableResourceRequest
|
|
38
40
|
* consumableResource: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateJobQueueCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UpdateJobQueueCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UpdateJobQueueCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UpdateJobQueueRequest
|
|
38
40
|
* jobQueue: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateSchedulingPolicyCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UpdateSchedulingPolicyCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UpdateSchedulingPolicyCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UpdateSchedulingPolicyRequest
|
|
38
40
|
* arn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateServiceEnvironmentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { BatchClient, UpdateServiceEnvironmentCommand } from "@aws-sdk/client-batch"; // ES Modules import
|
|
35
35
|
* // const { BatchClient, UpdateServiceEnvironmentCommand } = require("@aws-sdk/client-batch"); // CommonJS import
|
|
36
|
+
* // import type { BatchClientConfig } from "@aws-sdk/client-batch";
|
|
37
|
+
* const config = {}; // type is BatchClientConfig
|
|
36
38
|
* const client = new BatchClient(config);
|
|
37
39
|
* const input = { // UpdateServiceEnvironmentRequest
|
|
38
40
|
* serviceEnvironment: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-batch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-batch",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.890.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
40
|
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|