@aws-sdk/client-batch 3.952.0 → 3.954.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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +750 -520
  2. package/dist-cjs/runtimeConfig.shared.js +7 -1
  3. package/dist-es/commands/CancelJobCommand.js +2 -2
  4. package/dist-es/commands/CreateComputeEnvironmentCommand.js +2 -2
  5. package/dist-es/commands/CreateConsumableResourceCommand.js +2 -2
  6. package/dist-es/commands/CreateJobQueueCommand.js +2 -2
  7. package/dist-es/commands/CreateSchedulingPolicyCommand.js +2 -2
  8. package/dist-es/commands/CreateServiceEnvironmentCommand.js +2 -2
  9. package/dist-es/commands/DeleteComputeEnvironmentCommand.js +2 -2
  10. package/dist-es/commands/DeleteConsumableResourceCommand.js +2 -2
  11. package/dist-es/commands/DeleteJobQueueCommand.js +2 -2
  12. package/dist-es/commands/DeleteSchedulingPolicyCommand.js +2 -2
  13. package/dist-es/commands/DeleteServiceEnvironmentCommand.js +2 -2
  14. package/dist-es/commands/DeregisterJobDefinitionCommand.js +2 -2
  15. package/dist-es/commands/DescribeComputeEnvironmentsCommand.js +2 -2
  16. package/dist-es/commands/DescribeConsumableResourceCommand.js +2 -2
  17. package/dist-es/commands/DescribeJobDefinitionsCommand.js +2 -2
  18. package/dist-es/commands/DescribeJobQueuesCommand.js +2 -2
  19. package/dist-es/commands/DescribeJobsCommand.js +2 -2
  20. package/dist-es/commands/DescribeSchedulingPoliciesCommand.js +2 -2
  21. package/dist-es/commands/DescribeServiceEnvironmentsCommand.js +2 -2
  22. package/dist-es/commands/DescribeServiceJobCommand.js +2 -2
  23. package/dist-es/commands/GetJobQueueSnapshotCommand.js +2 -2
  24. package/dist-es/commands/ListConsumableResourcesCommand.js +2 -2
  25. package/dist-es/commands/ListJobsByConsumableResourceCommand.js +2 -2
  26. package/dist-es/commands/ListJobsCommand.js +2 -2
  27. package/dist-es/commands/ListSchedulingPoliciesCommand.js +2 -2
  28. package/dist-es/commands/ListServiceJobsCommand.js +2 -2
  29. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  30. package/dist-es/commands/RegisterJobDefinitionCommand.js +2 -2
  31. package/dist-es/commands/SubmitJobCommand.js +2 -2
  32. package/dist-es/commands/SubmitServiceJobCommand.js +2 -2
  33. package/dist-es/commands/TagResourceCommand.js +2 -2
  34. package/dist-es/commands/TerminateJobCommand.js +2 -2
  35. package/dist-es/commands/TerminateServiceJobCommand.js +2 -2
  36. package/dist-es/commands/UntagResourceCommand.js +2 -2
  37. package/dist-es/commands/UpdateComputeEnvironmentCommand.js +2 -2
  38. package/dist-es/commands/UpdateConsumableResourceCommand.js +2 -2
  39. package/dist-es/commands/UpdateJobQueueCommand.js +2 -2
  40. package/dist-es/commands/UpdateSchedulingPolicyCommand.js +2 -2
  41. package/dist-es/commands/UpdateServiceEnvironmentCommand.js +2 -2
  42. package/dist-es/index.js +1 -0
  43. package/dist-es/runtimeConfig.shared.js +7 -1
  44. package/dist-es/schemas/schemas_0.js +492 -490
  45. package/dist-types/BatchClient.d.ts +1 -10
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  48. package/dist-types/runtimeConfig.d.ts +6 -2
  49. package/dist-types/runtimeConfig.native.d.ts +6 -2
  50. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  51. package/dist-types/schemas/schemas_0.d.ts +229 -300
  52. package/dist-types/ts3.4/BatchClient.d.ts +0 -4
  53. package/dist-types/ts3.4/index.d.ts +1 -0
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +228 -300
  59. package/package.json +34 -34
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.batch" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.batch",
32
+ xmlNamespace: "http://batch.amazonaws.com/doc/2016-08-10/",
33
+ version: "2016-08-10",
34
+ serviceTarget: "AWSBatchV20160810",
35
+ },
30
36
  serviceId: config?.serviceId ?? "Batch",
31
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelJob } from "../schemas/schemas_0";
4
+ import { CancelJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CancelJob", {})
13
13
  .n("BatchClient", "CancelJobCommand")
14
- .sc(CancelJob)
14
+ .sc(CancelJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateComputeEnvironment } from "../schemas/schemas_0";
4
+ import { CreateComputeEnvironment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateComputeEnvironmentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateComputeEnvironmentCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CreateComputeEnvironment", {})
13
13
  .n("BatchClient", "CreateComputeEnvironmentCommand")
14
- .sc(CreateComputeEnvironment)
14
+ .sc(CreateComputeEnvironment$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateConsumableResource } from "../schemas/schemas_0";
4
+ import { CreateConsumableResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateConsumableResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateConsumableResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CreateConsumableResource", {})
13
13
  .n("BatchClient", "CreateConsumableResourceCommand")
14
- .sc(CreateConsumableResource)
14
+ .sc(CreateConsumableResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateJobQueue } from "../schemas/schemas_0";
4
+ import { CreateJobQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateJobQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateJobQueueCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CreateJobQueue", {})
13
13
  .n("BatchClient", "CreateJobQueueCommand")
14
- .sc(CreateJobQueue)
14
+ .sc(CreateJobQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSchedulingPolicy } from "../schemas/schemas_0";
4
+ import { CreateSchedulingPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSchedulingPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSchedulingPolicyCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CreateSchedulingPolicy", {})
13
13
  .n("BatchClient", "CreateSchedulingPolicyCommand")
14
- .sc(CreateSchedulingPolicy)
14
+ .sc(CreateSchedulingPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateServiceEnvironment } from "../schemas/schemas_0";
4
+ import { CreateServiceEnvironment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateServiceEnvironmentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateServiceEnvironmentCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "CreateServiceEnvironment", {})
13
13
  .n("BatchClient", "CreateServiceEnvironmentCommand")
14
- .sc(CreateServiceEnvironment)
14
+ .sc(CreateServiceEnvironment$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteComputeEnvironment } from "../schemas/schemas_0";
4
+ import { DeleteComputeEnvironment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteComputeEnvironmentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteComputeEnvironmentCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeleteComputeEnvironment", {})
13
13
  .n("BatchClient", "DeleteComputeEnvironmentCommand")
14
- .sc(DeleteComputeEnvironment)
14
+ .sc(DeleteComputeEnvironment$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteConsumableResource } from "../schemas/schemas_0";
4
+ import { DeleteConsumableResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteConsumableResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteConsumableResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeleteConsumableResource", {})
13
13
  .n("BatchClient", "DeleteConsumableResourceCommand")
14
- .sc(DeleteConsumableResource)
14
+ .sc(DeleteConsumableResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteJobQueue } from "../schemas/schemas_0";
4
+ import { DeleteJobQueue$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteJobQueueCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteJobQueueCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeleteJobQueue", {})
13
13
  .n("BatchClient", "DeleteJobQueueCommand")
14
- .sc(DeleteJobQueue)
14
+ .sc(DeleteJobQueue$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSchedulingPolicy } from "../schemas/schemas_0";
4
+ import { DeleteSchedulingPolicy$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSchedulingPolicyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSchedulingPolicyCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeleteSchedulingPolicy", {})
13
13
  .n("BatchClient", "DeleteSchedulingPolicyCommand")
14
- .sc(DeleteSchedulingPolicy)
14
+ .sc(DeleteSchedulingPolicy$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteServiceEnvironment } from "../schemas/schemas_0";
4
+ import { DeleteServiceEnvironment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteServiceEnvironmentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteServiceEnvironmentCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeleteServiceEnvironment", {})
13
13
  .n("BatchClient", "DeleteServiceEnvironmentCommand")
14
- .sc(DeleteServiceEnvironment)
14
+ .sc(DeleteServiceEnvironment$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeregisterJobDefinition } from "../schemas/schemas_0";
4
+ import { DeregisterJobDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeregisterJobDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeregisterJobDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DeregisterJobDefinition", {})
13
13
  .n("BatchClient", "DeregisterJobDefinitionCommand")
14
- .sc(DeregisterJobDefinition)
14
+ .sc(DeregisterJobDefinition$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeComputeEnvironments } from "../schemas/schemas_0";
4
+ import { DescribeComputeEnvironments$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeComputeEnvironmentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeComputeEnvironmentsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeComputeEnvironments", {})
13
13
  .n("BatchClient", "DescribeComputeEnvironmentsCommand")
14
- .sc(DescribeComputeEnvironments)
14
+ .sc(DescribeComputeEnvironments$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConsumableResource } from "../schemas/schemas_0";
4
+ import { DescribeConsumableResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConsumableResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConsumableResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeConsumableResource", {})
13
13
  .n("BatchClient", "DescribeConsumableResourceCommand")
14
- .sc(DescribeConsumableResource)
14
+ .sc(DescribeConsumableResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeJobDefinitions } from "../schemas/schemas_0";
4
+ import { DescribeJobDefinitions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeJobDefinitionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeJobDefinitionsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeJobDefinitions", {})
13
13
  .n("BatchClient", "DescribeJobDefinitionsCommand")
14
- .sc(DescribeJobDefinitions)
14
+ .sc(DescribeJobDefinitions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeJobQueues } from "../schemas/schemas_0";
4
+ import { DescribeJobQueues$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeJobQueuesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeJobQueuesCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeJobQueues", {})
13
13
  .n("BatchClient", "DescribeJobQueuesCommand")
14
- .sc(DescribeJobQueues)
14
+ .sc(DescribeJobQueues$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeJobs } from "../schemas/schemas_0";
4
+ import { DescribeJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeJobsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeJobs", {})
13
13
  .n("BatchClient", "DescribeJobsCommand")
14
- .sc(DescribeJobs)
14
+ .sc(DescribeJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeSchedulingPolicies } from "../schemas/schemas_0";
4
+ import { DescribeSchedulingPolicies$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeSchedulingPoliciesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeSchedulingPoliciesCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeSchedulingPolicies", {})
13
13
  .n("BatchClient", "DescribeSchedulingPoliciesCommand")
14
- .sc(DescribeSchedulingPolicies)
14
+ .sc(DescribeSchedulingPolicies$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeServiceEnvironments } from "../schemas/schemas_0";
4
+ import { DescribeServiceEnvironments$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeServiceEnvironmentsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeServiceEnvironmentsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeServiceEnvironments", {})
13
13
  .n("BatchClient", "DescribeServiceEnvironmentsCommand")
14
- .sc(DescribeServiceEnvironments)
14
+ .sc(DescribeServiceEnvironments$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeServiceJob } from "../schemas/schemas_0";
4
+ import { DescribeServiceJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeServiceJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeServiceJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "DescribeServiceJob", {})
13
13
  .n("BatchClient", "DescribeServiceJobCommand")
14
- .sc(DescribeServiceJob)
14
+ .sc(DescribeServiceJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetJobQueueSnapshot } from "../schemas/schemas_0";
4
+ import { GetJobQueueSnapshot$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetJobQueueSnapshotCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetJobQueueSnapshotCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "GetJobQueueSnapshot", {})
13
13
  .n("BatchClient", "GetJobQueueSnapshotCommand")
14
- .sc(GetJobQueueSnapshot)
14
+ .sc(GetJobQueueSnapshot$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConsumableResources } from "../schemas/schemas_0";
4
+ import { ListConsumableResources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConsumableResourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConsumableResourcesCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListConsumableResources", {})
13
13
  .n("BatchClient", "ListConsumableResourcesCommand")
14
- .sc(ListConsumableResources)
14
+ .sc(ListConsumableResources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListJobsByConsumableResource } from "../schemas/schemas_0";
4
+ import { ListJobsByConsumableResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListJobsByConsumableResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListJobsByConsumableResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListJobsByConsumableResource", {})
13
13
  .n("BatchClient", "ListJobsByConsumableResourceCommand")
14
- .sc(ListJobsByConsumableResource)
14
+ .sc(ListJobsByConsumableResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListJobs } from "../schemas/schemas_0";
4
+ import { ListJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListJobsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListJobs", {})
13
13
  .n("BatchClient", "ListJobsCommand")
14
- .sc(ListJobs)
14
+ .sc(ListJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSchedulingPolicies } from "../schemas/schemas_0";
4
+ import { ListSchedulingPolicies$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSchedulingPoliciesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSchedulingPoliciesCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListSchedulingPolicies", {})
13
13
  .n("BatchClient", "ListSchedulingPoliciesCommand")
14
- .sc(ListSchedulingPolicies)
14
+ .sc(ListSchedulingPolicies$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListServiceJobs } from "../schemas/schemas_0";
4
+ import { ListServiceJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListServiceJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListServiceJobsCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListServiceJobs", {})
13
13
  .n("BatchClient", "ListServiceJobsCommand")
14
- .sc(ListServiceJobs)
14
+ .sc(ListServiceJobs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "ListTagsForResource", {})
13
13
  .n("BatchClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterJobDefinition } from "../schemas/schemas_0";
4
+ import { RegisterJobDefinition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterJobDefinitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterJobDefinitionCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "RegisterJobDefinition", {})
13
13
  .n("BatchClient", "RegisterJobDefinitionCommand")
14
- .sc(RegisterJobDefinition)
14
+ .sc(RegisterJobDefinition$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SubmitJob } from "../schemas/schemas_0";
4
+ import { SubmitJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SubmitJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SubmitJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "SubmitJob", {})
13
13
  .n("BatchClient", "SubmitJobCommand")
14
- .sc(SubmitJob)
14
+ .sc(SubmitJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { SubmitServiceJob } from "../schemas/schemas_0";
4
+ import { SubmitServiceJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class SubmitServiceJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class SubmitServiceJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "SubmitServiceJob", {})
13
13
  .n("BatchClient", "SubmitServiceJobCommand")
14
- .sc(SubmitServiceJob)
14
+ .sc(SubmitServiceJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "TagResource", {})
13
13
  .n("BatchClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TerminateJob } from "../schemas/schemas_0";
4
+ import { TerminateJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TerminateJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TerminateJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "TerminateJob", {})
13
13
  .n("BatchClient", "TerminateJobCommand")
14
- .sc(TerminateJob)
14
+ .sc(TerminateJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TerminateServiceJob } from "../schemas/schemas_0";
4
+ import { TerminateServiceJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TerminateServiceJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TerminateServiceJobCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "TerminateServiceJob", {})
13
13
  .n("BatchClient", "TerminateServiceJobCommand")
14
- .sc(TerminateServiceJob)
14
+ .sc(TerminateServiceJob$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "UntagResource", {})
13
13
  .n("BatchClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateComputeEnvironment } from "../schemas/schemas_0";
4
+ import { UpdateComputeEnvironment$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateComputeEnvironmentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateComputeEnvironmentCommand extends $Command
11
11
  })
12
12
  .s("AWSBatchV20160810", "UpdateComputeEnvironment", {})
13
13
  .n("BatchClient", "UpdateComputeEnvironmentCommand")
14
- .sc(UpdateComputeEnvironment)
14
+ .sc(UpdateComputeEnvironment$)
15
15
  .build() {
16
16
  }