@aws-sdk/client-emr-containers 3.202.0 → 3.208.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/EMRContainers.js +60 -0
- package/dist-cjs/commands/CreateJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/DeleteJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/DescribeJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/ListJobTemplatesCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +102 -26
- package/dist-cjs/pagination/ListJobTemplatesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +424 -1
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/EMRContainers.js +60 -0
- package/dist-es/commands/CreateJobTemplateCommand.js +42 -0
- package/dist-es/commands/DeleteJobTemplateCommand.js +42 -0
- package/dist-es/commands/DescribeJobTemplateCommand.js +42 -0
- package/dist-es/commands/ListJobTemplatesCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +82 -21
- package/dist-es/pagination/ListJobTemplatesPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +415 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/EMRContainers.d.ts +51 -10
- package/dist-types/EMRContainersClient.d.ts +6 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +2 -2
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +3 -2
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +3 -3
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +40 -0
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +382 -69
- package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/EMRContainers.d.ts +68 -0
- package/dist-types/ts3.4/EMRContainersClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +152 -29
- package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +35 -34
- package/CHANGELOG.md +0 -1266
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "../commands/CancelJobRunCommand";
|
|
4
|
+
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "../commands/CreateJobTemplateCommand";
|
|
4
5
|
import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "../commands/CreateManagedEndpointCommand";
|
|
5
6
|
import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "../commands/CreateVirtualClusterCommand";
|
|
7
|
+
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "../commands/DeleteJobTemplateCommand";
|
|
6
8
|
import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "../commands/DeleteManagedEndpointCommand";
|
|
7
9
|
import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } from "../commands/DeleteVirtualClusterCommand";
|
|
8
10
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "../commands/DescribeJobRunCommand";
|
|
11
|
+
import { DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput } from "../commands/DescribeJobTemplateCommand";
|
|
9
12
|
import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "../commands/DescribeManagedEndpointCommand";
|
|
10
13
|
import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "../commands/DescribeVirtualClusterCommand";
|
|
11
14
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
|
|
15
|
+
import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "../commands/ListJobTemplatesCommand";
|
|
12
16
|
import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
|
|
13
17
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
18
|
import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
|
|
@@ -16,14 +20,18 @@ import { StartJobRunCommandInput, StartJobRunCommandOutput } from "../commands/S
|
|
|
16
20
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
21
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
22
|
export declare const serializeAws_restJson1CancelJobRunCommand: (input: CancelJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1CreateJobTemplateCommand: (input: CreateJobTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
24
|
export declare const serializeAws_restJson1CreateManagedEndpointCommand: (input: CreateManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
25
|
export declare const serializeAws_restJson1CreateVirtualClusterCommand: (input: CreateVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1DeleteJobTemplateCommand: (input: DeleteJobTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
27
|
export declare const serializeAws_restJson1DeleteManagedEndpointCommand: (input: DeleteManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
28
|
export declare const serializeAws_restJson1DeleteVirtualClusterCommand: (input: DeleteVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
29
|
export declare const serializeAws_restJson1DescribeJobRunCommand: (input: DescribeJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_restJson1DescribeJobTemplateCommand: (input: DescribeJobTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
31
|
export declare const serializeAws_restJson1DescribeManagedEndpointCommand: (input: DescribeManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
32
|
export declare const serializeAws_restJson1DescribeVirtualClusterCommand: (input: DescribeVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
33
|
export declare const serializeAws_restJson1ListJobRunsCommand: (input: ListJobRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_restJson1ListJobTemplatesCommand: (input: ListJobTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
35
|
export declare const serializeAws_restJson1ListManagedEndpointsCommand: (input: ListManagedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
36
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
37
|
export declare const serializeAws_restJson1ListVirtualClustersCommand: (input: ListVirtualClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -31,14 +39,18 @@ export declare const serializeAws_restJson1StartJobRunCommand: (input: StartJobR
|
|
|
31
39
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
40
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
41
|
export declare const deserializeAws_restJson1CancelJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobRunCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_restJson1CreateJobTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobTemplateCommandOutput>;
|
|
34
43
|
export declare const deserializeAws_restJson1CreateManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateManagedEndpointCommandOutput>;
|
|
35
44
|
export declare const deserializeAws_restJson1CreateVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVirtualClusterCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_restJson1DeleteJobTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobTemplateCommandOutput>;
|
|
36
46
|
export declare const deserializeAws_restJson1DeleteManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteManagedEndpointCommandOutput>;
|
|
37
47
|
export declare const deserializeAws_restJson1DeleteVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVirtualClusterCommandOutput>;
|
|
38
48
|
export declare const deserializeAws_restJson1DescribeJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobRunCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_restJson1DescribeJobTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobTemplateCommandOutput>;
|
|
39
50
|
export declare const deserializeAws_restJson1DescribeManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeManagedEndpointCommandOutput>;
|
|
40
51
|
export declare const deserializeAws_restJson1DescribeVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVirtualClusterCommandOutput>;
|
|
41
52
|
export declare const deserializeAws_restJson1ListJobRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobRunsCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_restJson1ListJobTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobTemplatesCommandOutput>;
|
|
42
54
|
export declare const deserializeAws_restJson1ListManagedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedEndpointsCommandOutput>;
|
|
43
55
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
44
56
|
export declare const deserializeAws_restJson1ListVirtualClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVirtualClustersCommandOutput>;
|
|
@@ -6,8 +6,6 @@ import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
23
21
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
22
|
apiVersion: string;
|
|
25
23
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
@@ -6,8 +6,6 @@ import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
@@ -23,6 +21,8 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
23
21
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
22
|
apiVersion: string;
|
|
25
23
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
@@ -5,6 +5,8 @@ import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
10
|
disableHostPrefix: boolean;
|
|
9
11
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
12
|
logger?: __Logger | undefined;
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
CancelJobRunCommandInput,
|
|
4
4
|
CancelJobRunCommandOutput,
|
|
5
5
|
} from "./commands/CancelJobRunCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateJobTemplateCommandInput,
|
|
8
|
+
CreateJobTemplateCommandOutput,
|
|
9
|
+
} from "./commands/CreateJobTemplateCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateManagedEndpointCommandInput,
|
|
8
12
|
CreateManagedEndpointCommandOutput,
|
|
@@ -11,6 +15,10 @@ import {
|
|
|
11
15
|
CreateVirtualClusterCommandInput,
|
|
12
16
|
CreateVirtualClusterCommandOutput,
|
|
13
17
|
} from "./commands/CreateVirtualClusterCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteJobTemplateCommandInput,
|
|
20
|
+
DeleteJobTemplateCommandOutput,
|
|
21
|
+
} from "./commands/DeleteJobTemplateCommand";
|
|
14
22
|
import {
|
|
15
23
|
DeleteManagedEndpointCommandInput,
|
|
16
24
|
DeleteManagedEndpointCommandOutput,
|
|
@@ -23,6 +31,10 @@ import {
|
|
|
23
31
|
DescribeJobRunCommandInput,
|
|
24
32
|
DescribeJobRunCommandOutput,
|
|
25
33
|
} from "./commands/DescribeJobRunCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeJobTemplateCommandInput,
|
|
36
|
+
DescribeJobTemplateCommandOutput,
|
|
37
|
+
} from "./commands/DescribeJobTemplateCommand";
|
|
26
38
|
import {
|
|
27
39
|
DescribeManagedEndpointCommandInput,
|
|
28
40
|
DescribeManagedEndpointCommandOutput,
|
|
@@ -35,6 +47,10 @@ import {
|
|
|
35
47
|
ListJobRunsCommandInput,
|
|
36
48
|
ListJobRunsCommandOutput,
|
|
37
49
|
} from "./commands/ListJobRunsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListJobTemplatesCommandInput,
|
|
52
|
+
ListJobTemplatesCommandOutput,
|
|
53
|
+
} from "./commands/ListJobTemplatesCommand";
|
|
38
54
|
import {
|
|
39
55
|
ListManagedEndpointsCommandInput,
|
|
40
56
|
ListManagedEndpointsCommandOutput,
|
|
@@ -74,6 +90,19 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
74
90
|
options: __HttpHandlerOptions,
|
|
75
91
|
cb: (err: any, data?: CancelJobRunCommandOutput) => void
|
|
76
92
|
): void;
|
|
93
|
+
createJobTemplate(
|
|
94
|
+
args: CreateJobTemplateCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<CreateJobTemplateCommandOutput>;
|
|
97
|
+
createJobTemplate(
|
|
98
|
+
args: CreateJobTemplateCommandInput,
|
|
99
|
+
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
createJobTemplate(
|
|
102
|
+
args: CreateJobTemplateCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void
|
|
105
|
+
): void;
|
|
77
106
|
createManagedEndpoint(
|
|
78
107
|
args: CreateManagedEndpointCommandInput,
|
|
79
108
|
options?: __HttpHandlerOptions
|
|
@@ -100,6 +129,19 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
100
129
|
options: __HttpHandlerOptions,
|
|
101
130
|
cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void
|
|
102
131
|
): void;
|
|
132
|
+
deleteJobTemplate(
|
|
133
|
+
args: DeleteJobTemplateCommandInput,
|
|
134
|
+
options?: __HttpHandlerOptions
|
|
135
|
+
): Promise<DeleteJobTemplateCommandOutput>;
|
|
136
|
+
deleteJobTemplate(
|
|
137
|
+
args: DeleteJobTemplateCommandInput,
|
|
138
|
+
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
deleteJobTemplate(
|
|
141
|
+
args: DeleteJobTemplateCommandInput,
|
|
142
|
+
options: __HttpHandlerOptions,
|
|
143
|
+
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void
|
|
144
|
+
): void;
|
|
103
145
|
deleteManagedEndpoint(
|
|
104
146
|
args: DeleteManagedEndpointCommandInput,
|
|
105
147
|
options?: __HttpHandlerOptions
|
|
@@ -139,6 +181,19 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
139
181
|
options: __HttpHandlerOptions,
|
|
140
182
|
cb: (err: any, data?: DescribeJobRunCommandOutput) => void
|
|
141
183
|
): void;
|
|
184
|
+
describeJobTemplate(
|
|
185
|
+
args: DescribeJobTemplateCommandInput,
|
|
186
|
+
options?: __HttpHandlerOptions
|
|
187
|
+
): Promise<DescribeJobTemplateCommandOutput>;
|
|
188
|
+
describeJobTemplate(
|
|
189
|
+
args: DescribeJobTemplateCommandInput,
|
|
190
|
+
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
describeJobTemplate(
|
|
193
|
+
args: DescribeJobTemplateCommandInput,
|
|
194
|
+
options: __HttpHandlerOptions,
|
|
195
|
+
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void
|
|
196
|
+
): void;
|
|
142
197
|
describeManagedEndpoint(
|
|
143
198
|
args: DescribeManagedEndpointCommandInput,
|
|
144
199
|
options?: __HttpHandlerOptions
|
|
@@ -178,6 +233,19 @@ export declare class EMRContainers extends EMRContainersClient {
|
|
|
178
233
|
options: __HttpHandlerOptions,
|
|
179
234
|
cb: (err: any, data?: ListJobRunsCommandOutput) => void
|
|
180
235
|
): void;
|
|
236
|
+
listJobTemplates(
|
|
237
|
+
args: ListJobTemplatesCommandInput,
|
|
238
|
+
options?: __HttpHandlerOptions
|
|
239
|
+
): Promise<ListJobTemplatesCommandOutput>;
|
|
240
|
+
listJobTemplates(
|
|
241
|
+
args: ListJobTemplatesCommandInput,
|
|
242
|
+
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void
|
|
243
|
+
): void;
|
|
244
|
+
listJobTemplates(
|
|
245
|
+
args: ListJobTemplatesCommandInput,
|
|
246
|
+
options: __HttpHandlerOptions,
|
|
247
|
+
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void
|
|
248
|
+
): void;
|
|
181
249
|
listManagedEndpoints(
|
|
182
250
|
args: ListManagedEndpointsCommandInput,
|
|
183
251
|
options?: __HttpHandlerOptions
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
CancelJobRunCommandInput,
|
|
48
48
|
CancelJobRunCommandOutput,
|
|
49
49
|
} from "./commands/CancelJobRunCommand";
|
|
50
|
+
import {
|
|
51
|
+
CreateJobTemplateCommandInput,
|
|
52
|
+
CreateJobTemplateCommandOutput,
|
|
53
|
+
} from "./commands/CreateJobTemplateCommand";
|
|
50
54
|
import {
|
|
51
55
|
CreateManagedEndpointCommandInput,
|
|
52
56
|
CreateManagedEndpointCommandOutput,
|
|
@@ -55,6 +59,10 @@ import {
|
|
|
55
59
|
CreateVirtualClusterCommandInput,
|
|
56
60
|
CreateVirtualClusterCommandOutput,
|
|
57
61
|
} from "./commands/CreateVirtualClusterCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteJobTemplateCommandInput,
|
|
64
|
+
DeleteJobTemplateCommandOutput,
|
|
65
|
+
} from "./commands/DeleteJobTemplateCommand";
|
|
58
66
|
import {
|
|
59
67
|
DeleteManagedEndpointCommandInput,
|
|
60
68
|
DeleteManagedEndpointCommandOutput,
|
|
@@ -67,6 +75,10 @@ import {
|
|
|
67
75
|
DescribeJobRunCommandInput,
|
|
68
76
|
DescribeJobRunCommandOutput,
|
|
69
77
|
} from "./commands/DescribeJobRunCommand";
|
|
78
|
+
import {
|
|
79
|
+
DescribeJobTemplateCommandInput,
|
|
80
|
+
DescribeJobTemplateCommandOutput,
|
|
81
|
+
} from "./commands/DescribeJobTemplateCommand";
|
|
70
82
|
import {
|
|
71
83
|
DescribeManagedEndpointCommandInput,
|
|
72
84
|
DescribeManagedEndpointCommandOutput,
|
|
@@ -79,6 +91,10 @@ import {
|
|
|
79
91
|
ListJobRunsCommandInput,
|
|
80
92
|
ListJobRunsCommandOutput,
|
|
81
93
|
} from "./commands/ListJobRunsCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListJobTemplatesCommandInput,
|
|
96
|
+
ListJobTemplatesCommandOutput,
|
|
97
|
+
} from "./commands/ListJobTemplatesCommand";
|
|
82
98
|
import {
|
|
83
99
|
ListManagedEndpointsCommandInput,
|
|
84
100
|
ListManagedEndpointsCommandOutput,
|
|
@@ -110,14 +126,18 @@ import {
|
|
|
110
126
|
} from "./endpoint/EndpointParameters";
|
|
111
127
|
export declare type ServiceInputTypes =
|
|
112
128
|
| CancelJobRunCommandInput
|
|
129
|
+
| CreateJobTemplateCommandInput
|
|
113
130
|
| CreateManagedEndpointCommandInput
|
|
114
131
|
| CreateVirtualClusterCommandInput
|
|
132
|
+
| DeleteJobTemplateCommandInput
|
|
115
133
|
| DeleteManagedEndpointCommandInput
|
|
116
134
|
| DeleteVirtualClusterCommandInput
|
|
117
135
|
| DescribeJobRunCommandInput
|
|
136
|
+
| DescribeJobTemplateCommandInput
|
|
118
137
|
| DescribeManagedEndpointCommandInput
|
|
119
138
|
| DescribeVirtualClusterCommandInput
|
|
120
139
|
| ListJobRunsCommandInput
|
|
140
|
+
| ListJobTemplatesCommandInput
|
|
121
141
|
| ListManagedEndpointsCommandInput
|
|
122
142
|
| ListTagsForResourceCommandInput
|
|
123
143
|
| ListVirtualClustersCommandInput
|
|
@@ -126,14 +146,18 @@ export declare type ServiceInputTypes =
|
|
|
126
146
|
| UntagResourceCommandInput;
|
|
127
147
|
export declare type ServiceOutputTypes =
|
|
128
148
|
| CancelJobRunCommandOutput
|
|
149
|
+
| CreateJobTemplateCommandOutput
|
|
129
150
|
| CreateManagedEndpointCommandOutput
|
|
130
151
|
| CreateVirtualClusterCommandOutput
|
|
152
|
+
| DeleteJobTemplateCommandOutput
|
|
131
153
|
| DeleteManagedEndpointCommandOutput
|
|
132
154
|
| DeleteVirtualClusterCommandOutput
|
|
133
155
|
| DescribeJobRunCommandOutput
|
|
156
|
+
| DescribeJobTemplateCommandOutput
|
|
134
157
|
| DescribeManagedEndpointCommandOutput
|
|
135
158
|
| DescribeVirtualClusterCommandOutput
|
|
136
159
|
| ListJobRunsCommandOutput
|
|
160
|
+
| ListJobTemplatesCommandOutput
|
|
137
161
|
| ListManagedEndpointsCommandOutput
|
|
138
162
|
| ListTagsForResourceCommandOutput
|
|
139
163
|
| ListVirtualClustersCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EMRContainersClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EMRContainersClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateJobTemplateRequest,
|
|
16
|
+
CreateJobTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateJobTemplateCommandInput
|
|
19
|
+
extends CreateJobTemplateRequest {}
|
|
20
|
+
export interface CreateJobTemplateCommandOutput
|
|
21
|
+
extends CreateJobTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateJobTemplateCommand extends $Command<
|
|
24
|
+
CreateJobTemplateCommandInput,
|
|
25
|
+
CreateJobTemplateCommandOutput,
|
|
26
|
+
EMRContainersClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateJobTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateJobTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EMRContainersClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EMRContainersClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteJobTemplateRequest,
|
|
16
|
+
DeleteJobTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteJobTemplateCommandInput
|
|
19
|
+
extends DeleteJobTemplateRequest {}
|
|
20
|
+
export interface DeleteJobTemplateCommandOutput
|
|
21
|
+
extends DeleteJobTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteJobTemplateCommand extends $Command<
|
|
24
|
+
DeleteJobTemplateCommandInput,
|
|
25
|
+
DeleteJobTemplateCommandOutput,
|
|
26
|
+
EMRContainersClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteJobTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteJobTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EMRContainersClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EMRContainersClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeJobTemplateRequest,
|
|
16
|
+
DescribeJobTemplateResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DescribeJobTemplateCommandInput
|
|
19
|
+
extends DescribeJobTemplateRequest {}
|
|
20
|
+
export interface DescribeJobTemplateCommandOutput
|
|
21
|
+
extends DescribeJobTemplateResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeJobTemplateCommand extends $Command<
|
|
24
|
+
DescribeJobTemplateCommandInput,
|
|
25
|
+
DescribeJobTemplateCommandOutput,
|
|
26
|
+
EMRContainersClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeJobTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeJobTemplateCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
EMRContainersClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EMRContainersClient";
|
|
14
|
+
import {
|
|
15
|
+
ListJobTemplatesRequest,
|
|
16
|
+
ListJobTemplatesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {}
|
|
19
|
+
export interface ListJobTemplatesCommandOutput
|
|
20
|
+
extends ListJobTemplatesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListJobTemplatesCommand extends $Command<
|
|
23
|
+
ListJobTemplatesCommandInput,
|
|
24
|
+
ListJobTemplatesCommandOutput,
|
|
25
|
+
EMRContainersClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListJobTemplatesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ListJobTemplatesCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
export * from "./CancelJobRunCommand";
|
|
2
|
+
export * from "./CreateJobTemplateCommand";
|
|
2
3
|
export * from "./CreateManagedEndpointCommand";
|
|
3
4
|
export * from "./CreateVirtualClusterCommand";
|
|
5
|
+
export * from "./DeleteJobTemplateCommand";
|
|
4
6
|
export * from "./DeleteManagedEndpointCommand";
|
|
5
7
|
export * from "./DeleteVirtualClusterCommand";
|
|
6
8
|
export * from "./DescribeJobRunCommand";
|
|
9
|
+
export * from "./DescribeJobTemplateCommand";
|
|
7
10
|
export * from "./DescribeManagedEndpointCommand";
|
|
8
11
|
export * from "./DescribeVirtualClusterCommand";
|
|
9
12
|
export * from "./ListJobRunsCommand";
|
|
13
|
+
export * from "./ListJobTemplatesCommand";
|
|
10
14
|
export * from "./ListManagedEndpointsCommand";
|
|
11
15
|
export * from "./ListTagsForResourceCommand";
|
|
12
16
|
export * from "./ListVirtualClustersCommand";
|