@aws-sdk/client-batch 3.168.0 → 3.170.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 (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Batch.d.ts +436 -125
  3. package/dist-types/ts3.4/BatchClient.d.ts +273 -97
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/BatchServiceException.d.ts +8 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +1418 -1345
  34. package/dist-types/ts3.4/pagination/DescribeComputeEnvironmentsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/DescribeJobDefinitionsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeJobQueuesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  38. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListSchedulingPoliciesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput } from "../commands/DescribeComputeEnvironmentsCommand";
3
- import { BatchPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeComputeEnvironments(config: BatchPaginationConfiguration, input: DescribeComputeEnvironmentsCommandInput, ...additionalArguments: any): Paginator<DescribeComputeEnvironmentsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeComputeEnvironmentsCommandInput,
4
+ DescribeComputeEnvironmentsCommandOutput,
5
+ } from "../commands/DescribeComputeEnvironmentsCommand";
6
+ import { BatchPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeComputeEnvironments(
8
+ config: BatchPaginationConfiguration,
9
+ input: DescribeComputeEnvironmentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeComputeEnvironmentsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput } from "../commands/DescribeJobDefinitionsCommand";
3
- import { BatchPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeJobDefinitions(config: BatchPaginationConfiguration, input: DescribeJobDefinitionsCommandInput, ...additionalArguments: any): Paginator<DescribeJobDefinitionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeJobDefinitionsCommandInput,
4
+ DescribeJobDefinitionsCommandOutput,
5
+ } from "../commands/DescribeJobDefinitionsCommand";
6
+ import { BatchPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeJobDefinitions(
8
+ config: BatchPaginationConfiguration,
9
+ input: DescribeJobDefinitionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeJobDefinitionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput } from "../commands/DescribeJobQueuesCommand";
3
- import { BatchPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeJobQueues(config: BatchPaginationConfiguration, input: DescribeJobQueuesCommandInput, ...additionalArguments: any): Paginator<DescribeJobQueuesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeJobQueuesCommandInput,
4
+ DescribeJobQueuesCommandOutput,
5
+ } from "../commands/DescribeJobQueuesCommand";
6
+ import { BatchPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeJobQueues(
8
+ config: BatchPaginationConfiguration,
9
+ input: DescribeJobQueuesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeJobQueuesCommandOutput>;
@@ -1,6 +1,6 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { Batch } from "../Batch";
3
- import { BatchClient } from "../BatchClient";
4
- export interface BatchPaginationConfiguration extends PaginationConfiguration {
5
- client: Batch | BatchClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { Batch } from "../Batch";
3
+ import { BatchClient } from "../BatchClient";
4
+ export interface BatchPaginationConfiguration extends PaginationConfiguration {
5
+ client: Batch | BatchClient;
6
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
3
- import { BatchPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListJobs(config: BatchPaginationConfiguration, input: ListJobsCommandInput, ...additionalArguments: any): Paginator<ListJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListJobsCommandInput,
4
+ ListJobsCommandOutput,
5
+ } from "../commands/ListJobsCommand";
6
+ import { BatchPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListJobs(
8
+ config: BatchPaginationConfiguration,
9
+ input: ListJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput } from "../commands/ListSchedulingPoliciesCommand";
3
- import { BatchPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSchedulingPolicies(config: BatchPaginationConfiguration, input: ListSchedulingPoliciesCommandInput, ...additionalArguments: any): Paginator<ListSchedulingPoliciesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchedulingPoliciesCommandInput,
4
+ ListSchedulingPoliciesCommandOutput,
5
+ } from "../commands/ListSchedulingPoliciesCommand";
6
+ import { BatchPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchedulingPolicies(
8
+ config: BatchPaginationConfiguration,
9
+ input: ListSchedulingPoliciesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchedulingPoliciesCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./DescribeComputeEnvironmentsPaginator";
2
- export * from "./DescribeJobDefinitionsPaginator";
3
- export * from "./DescribeJobQueuesPaginator";
4
- export * from "./Interfaces";
5
- export * from "./ListJobsPaginator";
6
- export * from "./ListSchedulingPoliciesPaginator";
1
+ export * from "./DescribeComputeEnvironmentsPaginator";
2
+ export * from "./DescribeJobDefinitionsPaginator";
3
+ export * from "./DescribeJobQueuesPaginator";
4
+ export * from "./Interfaces";
5
+ export * from "./ListJobsPaginator";
6
+ export * from "./ListSchedulingPoliciesPaginator";
@@ -1,74 +1,293 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
4
- import { CreateComputeEnvironmentCommandInput, CreateComputeEnvironmentCommandOutput } from "../commands/CreateComputeEnvironmentCommand";
5
- import { CreateJobQueueCommandInput, CreateJobQueueCommandOutput } from "../commands/CreateJobQueueCommand";
6
- import { CreateSchedulingPolicyCommandInput, CreateSchedulingPolicyCommandOutput } from "../commands/CreateSchedulingPolicyCommand";
7
- import { DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput } from "../commands/DeleteComputeEnvironmentCommand";
8
- import { DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput } from "../commands/DeleteJobQueueCommand";
9
- import { DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput } from "../commands/DeleteSchedulingPolicyCommand";
10
- import { DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput } from "../commands/DeregisterJobDefinitionCommand";
11
- import { DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput } from "../commands/DescribeComputeEnvironmentsCommand";
12
- import { DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput } from "../commands/DescribeJobDefinitionsCommand";
13
- import { DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput } from "../commands/DescribeJobQueuesCommand";
14
- import { DescribeJobsCommandInput, DescribeJobsCommandOutput } from "../commands/DescribeJobsCommand";
15
- import { DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput } from "../commands/DescribeSchedulingPoliciesCommand";
16
- import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
17
- import { ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput } from "../commands/ListSchedulingPoliciesCommand";
18
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
19
- import { RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput } from "../commands/RegisterJobDefinitionCommand";
20
- import { SubmitJobCommandInput, SubmitJobCommandOutput } from "../commands/SubmitJobCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
22
- import { TerminateJobCommandInput, TerminateJobCommandOutput } from "../commands/TerminateJobCommand";
23
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
24
- import { UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput } from "../commands/UpdateComputeEnvironmentCommand";
25
- import { UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput } from "../commands/UpdateJobQueueCommand";
26
- import { UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput } from "../commands/UpdateSchedulingPolicyCommand";
27
- export declare const serializeAws_restJson1CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1CreateComputeEnvironmentCommand: (input: CreateComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1CreateJobQueueCommand: (input: CreateJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1CreateSchedulingPolicyCommand: (input: CreateSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DeleteComputeEnvironmentCommand: (input: DeleteComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DeleteJobQueueCommand: (input: DeleteJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DeleteSchedulingPolicyCommand: (input: DeleteSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DeregisterJobDefinitionCommand: (input: DeregisterJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DescribeComputeEnvironmentsCommand: (input: DescribeComputeEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DescribeJobDefinitionsCommand: (input: DescribeJobDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DescribeJobQueuesCommand: (input: DescribeJobQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DescribeJobsCommand: (input: DescribeJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DescribeSchedulingPoliciesCommand: (input: DescribeSchedulingPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1ListSchedulingPoliciesCommand: (input: ListSchedulingPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1RegisterJobDefinitionCommand: (input: RegisterJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1SubmitJobCommand: (input: SubmitJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1TerminateJobCommand: (input: TerminateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1UpdateComputeEnvironmentCommand: (input: UpdateComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1UpdateJobQueueCommand: (input: UpdateJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1UpdateSchedulingPolicyCommand: (input: UpdateSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const deserializeAws_restJson1CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
52
- export declare const deserializeAws_restJson1CreateComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComputeEnvironmentCommandOutput>;
53
- export declare const deserializeAws_restJson1CreateJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobQueueCommandOutput>;
54
- export declare const deserializeAws_restJson1CreateSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchedulingPolicyCommandOutput>;
55
- export declare const deserializeAws_restJson1DeleteComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComputeEnvironmentCommandOutput>;
56
- export declare const deserializeAws_restJson1DeleteJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobQueueCommandOutput>;
57
- export declare const deserializeAws_restJson1DeleteSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchedulingPolicyCommandOutput>;
58
- export declare const deserializeAws_restJson1DeregisterJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterJobDefinitionCommandOutput>;
59
- export declare const deserializeAws_restJson1DescribeComputeEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeComputeEnvironmentsCommandOutput>;
60
- export declare const deserializeAws_restJson1DescribeJobDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobDefinitionsCommandOutput>;
61
- export declare const deserializeAws_restJson1DescribeJobQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobQueuesCommandOutput>;
62
- export declare const deserializeAws_restJson1DescribeJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobsCommandOutput>;
63
- export declare const deserializeAws_restJson1DescribeSchedulingPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSchedulingPoliciesCommandOutput>;
64
- export declare const deserializeAws_restJson1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
65
- export declare const deserializeAws_restJson1ListSchedulingPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchedulingPoliciesCommandOutput>;
66
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
67
- export declare const deserializeAws_restJson1RegisterJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterJobDefinitionCommandOutput>;
68
- export declare const deserializeAws_restJson1SubmitJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitJobCommandOutput>;
69
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
70
- export declare const deserializeAws_restJson1TerminateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateJobCommandOutput>;
71
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
72
- export declare const deserializeAws_restJson1UpdateComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComputeEnvironmentCommandOutput>;
73
- export declare const deserializeAws_restJson1UpdateJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobQueueCommandOutput>;
74
- export declare const deserializeAws_restJson1UpdateSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSchedulingPolicyCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelJobCommandInput,
8
+ CancelJobCommandOutput,
9
+ } from "../commands/CancelJobCommand";
10
+ import {
11
+ CreateComputeEnvironmentCommandInput,
12
+ CreateComputeEnvironmentCommandOutput,
13
+ } from "../commands/CreateComputeEnvironmentCommand";
14
+ import {
15
+ CreateJobQueueCommandInput,
16
+ CreateJobQueueCommandOutput,
17
+ } from "../commands/CreateJobQueueCommand";
18
+ import {
19
+ CreateSchedulingPolicyCommandInput,
20
+ CreateSchedulingPolicyCommandOutput,
21
+ } from "../commands/CreateSchedulingPolicyCommand";
22
+ import {
23
+ DeleteComputeEnvironmentCommandInput,
24
+ DeleteComputeEnvironmentCommandOutput,
25
+ } from "../commands/DeleteComputeEnvironmentCommand";
26
+ import {
27
+ DeleteJobQueueCommandInput,
28
+ DeleteJobQueueCommandOutput,
29
+ } from "../commands/DeleteJobQueueCommand";
30
+ import {
31
+ DeleteSchedulingPolicyCommandInput,
32
+ DeleteSchedulingPolicyCommandOutput,
33
+ } from "../commands/DeleteSchedulingPolicyCommand";
34
+ import {
35
+ DeregisterJobDefinitionCommandInput,
36
+ DeregisterJobDefinitionCommandOutput,
37
+ } from "../commands/DeregisterJobDefinitionCommand";
38
+ import {
39
+ DescribeComputeEnvironmentsCommandInput,
40
+ DescribeComputeEnvironmentsCommandOutput,
41
+ } from "../commands/DescribeComputeEnvironmentsCommand";
42
+ import {
43
+ DescribeJobDefinitionsCommandInput,
44
+ DescribeJobDefinitionsCommandOutput,
45
+ } from "../commands/DescribeJobDefinitionsCommand";
46
+ import {
47
+ DescribeJobQueuesCommandInput,
48
+ DescribeJobQueuesCommandOutput,
49
+ } from "../commands/DescribeJobQueuesCommand";
50
+ import {
51
+ DescribeJobsCommandInput,
52
+ DescribeJobsCommandOutput,
53
+ } from "../commands/DescribeJobsCommand";
54
+ import {
55
+ DescribeSchedulingPoliciesCommandInput,
56
+ DescribeSchedulingPoliciesCommandOutput,
57
+ } from "../commands/DescribeSchedulingPoliciesCommand";
58
+ import {
59
+ ListJobsCommandInput,
60
+ ListJobsCommandOutput,
61
+ } from "../commands/ListJobsCommand";
62
+ import {
63
+ ListSchedulingPoliciesCommandInput,
64
+ ListSchedulingPoliciesCommandOutput,
65
+ } from "../commands/ListSchedulingPoliciesCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "../commands/ListTagsForResourceCommand";
70
+ import {
71
+ RegisterJobDefinitionCommandInput,
72
+ RegisterJobDefinitionCommandOutput,
73
+ } from "../commands/RegisterJobDefinitionCommand";
74
+ import {
75
+ SubmitJobCommandInput,
76
+ SubmitJobCommandOutput,
77
+ } from "../commands/SubmitJobCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ TerminateJobCommandInput,
84
+ TerminateJobCommandOutput,
85
+ } from "../commands/TerminateJobCommand";
86
+ import {
87
+ UntagResourceCommandInput,
88
+ UntagResourceCommandOutput,
89
+ } from "../commands/UntagResourceCommand";
90
+ import {
91
+ UpdateComputeEnvironmentCommandInput,
92
+ UpdateComputeEnvironmentCommandOutput,
93
+ } from "../commands/UpdateComputeEnvironmentCommand";
94
+ import {
95
+ UpdateJobQueueCommandInput,
96
+ UpdateJobQueueCommandOutput,
97
+ } from "../commands/UpdateJobQueueCommand";
98
+ import {
99
+ UpdateSchedulingPolicyCommandInput,
100
+ UpdateSchedulingPolicyCommandOutput,
101
+ } from "../commands/UpdateSchedulingPolicyCommand";
102
+ export declare const serializeAws_restJson1CancelJobCommand: (
103
+ input: CancelJobCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1CreateComputeEnvironmentCommand: (
107
+ input: CreateComputeEnvironmentCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1CreateJobQueueCommand: (
111
+ input: CreateJobQueueCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1CreateSchedulingPolicyCommand: (
115
+ input: CreateSchedulingPolicyCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DeleteComputeEnvironmentCommand: (
119
+ input: DeleteComputeEnvironmentCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DeleteJobQueueCommand: (
123
+ input: DeleteJobQueueCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1DeleteSchedulingPolicyCommand: (
127
+ input: DeleteSchedulingPolicyCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1DeregisterJobDefinitionCommand: (
131
+ input: DeregisterJobDefinitionCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1DescribeComputeEnvironmentsCommand: (
135
+ input: DescribeComputeEnvironmentsCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1DescribeJobDefinitionsCommand: (
139
+ input: DescribeJobDefinitionsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DescribeJobQueuesCommand: (
143
+ input: DescribeJobQueuesCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DescribeJobsCommand: (
147
+ input: DescribeJobsCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DescribeSchedulingPoliciesCommand: (
151
+ input: DescribeSchedulingPoliciesCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListJobsCommand: (
155
+ input: ListJobsCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1ListSchedulingPoliciesCommand: (
159
+ input: ListSchedulingPoliciesCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
163
+ input: ListTagsForResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1RegisterJobDefinitionCommand: (
167
+ input: RegisterJobDefinitionCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1SubmitJobCommand: (
171
+ input: SubmitJobCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1TagResourceCommand: (
175
+ input: TagResourceCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1TerminateJobCommand: (
179
+ input: TerminateJobCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1UntagResourceCommand: (
183
+ input: UntagResourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1UpdateComputeEnvironmentCommand: (
187
+ input: UpdateComputeEnvironmentCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1UpdateJobQueueCommand: (
191
+ input: UpdateJobQueueCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1UpdateSchedulingPolicyCommand: (
195
+ input: UpdateSchedulingPolicyCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const deserializeAws_restJson1CancelJobCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<CancelJobCommandOutput>;
202
+ export declare const deserializeAws_restJson1CreateComputeEnvironmentCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<CreateComputeEnvironmentCommandOutput>;
206
+ export declare const deserializeAws_restJson1CreateJobQueueCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<CreateJobQueueCommandOutput>;
210
+ export declare const deserializeAws_restJson1CreateSchedulingPolicyCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<CreateSchedulingPolicyCommandOutput>;
214
+ export declare const deserializeAws_restJson1DeleteComputeEnvironmentCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<DeleteComputeEnvironmentCommandOutput>;
218
+ export declare const deserializeAws_restJson1DeleteJobQueueCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<DeleteJobQueueCommandOutput>;
222
+ export declare const deserializeAws_restJson1DeleteSchedulingPolicyCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<DeleteSchedulingPolicyCommandOutput>;
226
+ export declare const deserializeAws_restJson1DeregisterJobDefinitionCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<DeregisterJobDefinitionCommandOutput>;
230
+ export declare const deserializeAws_restJson1DescribeComputeEnvironmentsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<DescribeComputeEnvironmentsCommandOutput>;
234
+ export declare const deserializeAws_restJson1DescribeJobDefinitionsCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<DescribeJobDefinitionsCommandOutput>;
238
+ export declare const deserializeAws_restJson1DescribeJobQueuesCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<DescribeJobQueuesCommandOutput>;
242
+ export declare const deserializeAws_restJson1DescribeJobsCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<DescribeJobsCommandOutput>;
246
+ export declare const deserializeAws_restJson1DescribeSchedulingPoliciesCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<DescribeSchedulingPoliciesCommandOutput>;
250
+ export declare const deserializeAws_restJson1ListJobsCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<ListJobsCommandOutput>;
254
+ export declare const deserializeAws_restJson1ListSchedulingPoliciesCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<ListSchedulingPoliciesCommandOutput>;
258
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<ListTagsForResourceCommandOutput>;
262
+ export declare const deserializeAws_restJson1RegisterJobDefinitionCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<RegisterJobDefinitionCommandOutput>;
266
+ export declare const deserializeAws_restJson1SubmitJobCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<SubmitJobCommandOutput>;
270
+ export declare const deserializeAws_restJson1TagResourceCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<TagResourceCommandOutput>;
274
+ export declare const deserializeAws_restJson1TerminateJobCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<TerminateJobCommandOutput>;
278
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<UntagResourceCommandOutput>;
282
+ export declare const deserializeAws_restJson1UpdateComputeEnvironmentCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<UpdateComputeEnvironmentCommandOutput>;
286
+ export declare const deserializeAws_restJson1UpdateJobQueueCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<UpdateJobQueueCommandOutput>;
290
+ export declare const deserializeAws_restJson1UpdateSchedulingPolicyCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<UpdateSchedulingPolicyCommandOutput>;
@@ -1,38 +1,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { BatchClientConfig } from "./BatchClient";
3
-
4
- export declare const getRuntimeConfig: (config: BatchClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { BatchClientConfig } from "./BatchClient";
3
+
4
+ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };