@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Batch.d.ts +436 -125
- package/dist-types/ts3.4/BatchClient.d.ts +273 -97
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BatchServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1418 -1345
- package/dist-types/ts3.4/pagination/DescribeComputeEnvironmentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeJobDefinitionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeJobQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchedulingPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
+
};
|