@aws-sdk/client-emr-containers 3.201.0 → 3.204.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 +6 -5
- package/CHANGELOG.md +0 -1258
|
@@ -22,6 +22,52 @@ export declare class ValidationException extends __BaseException {
|
|
|
22
22
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
23
23
|
);
|
|
24
24
|
}
|
|
25
|
+
export interface ParametricCloudWatchMonitoringConfiguration {
|
|
26
|
+
logGroupName?: string;
|
|
27
|
+
logStreamNamePrefix?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface ParametricS3MonitoringConfiguration {
|
|
30
|
+
logUri?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface ParametricMonitoringConfiguration {
|
|
33
|
+
persistentAppUI?: string;
|
|
34
|
+
cloudWatchMonitoringConfiguration?: ParametricCloudWatchMonitoringConfiguration;
|
|
35
|
+
s3MonitoringConfiguration?: ParametricS3MonitoringConfiguration;
|
|
36
|
+
}
|
|
37
|
+
export interface SparkSqlJobDriver {
|
|
38
|
+
entryPoint?: string;
|
|
39
|
+
sparkSqlParameters?: string;
|
|
40
|
+
}
|
|
41
|
+
export interface SparkSubmitJobDriver {
|
|
42
|
+
entryPoint: string | undefined;
|
|
43
|
+
entryPointArguments?: string[];
|
|
44
|
+
sparkSubmitParameters?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface JobDriver {
|
|
47
|
+
sparkSubmitJobDriver?: SparkSubmitJobDriver;
|
|
48
|
+
sparkSqlJobDriver?: SparkSqlJobDriver;
|
|
49
|
+
}
|
|
50
|
+
export declare enum TemplateParameterDataType {
|
|
51
|
+
NUMBER = "NUMBER",
|
|
52
|
+
STRING = "STRING",
|
|
53
|
+
}
|
|
54
|
+
export interface TemplateParameterConfiguration {
|
|
55
|
+
type?: TemplateParameterDataType | string;
|
|
56
|
+
defaultValue?: string;
|
|
57
|
+
}
|
|
58
|
+
export interface CreateJobTemplateResponse {
|
|
59
|
+
id?: string;
|
|
60
|
+
name?: string;
|
|
61
|
+
arn?: string;
|
|
62
|
+
createdAt?: Date;
|
|
63
|
+
}
|
|
64
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
65
|
+
readonly name: "ResourceNotFoundException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
25
71
|
export interface CloudWatchMonitoringConfiguration {
|
|
26
72
|
logGroupName: string | undefined;
|
|
27
73
|
logStreamNamePrefix?: string;
|
|
@@ -44,13 +90,6 @@ export interface CreateManagedEndpointResponse {
|
|
|
44
90
|
arn?: string;
|
|
45
91
|
virtualClusterId?: string;
|
|
46
92
|
}
|
|
47
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
48
|
-
readonly name: "ResourceNotFoundException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
52
|
-
);
|
|
53
|
-
}
|
|
54
93
|
export interface EksInfo {
|
|
55
94
|
namespace?: string;
|
|
56
95
|
}
|
|
@@ -91,6 +130,12 @@ export interface CreateVirtualClusterResponse {
|
|
|
91
130
|
name?: string;
|
|
92
131
|
arn?: string;
|
|
93
132
|
}
|
|
133
|
+
export interface DeleteJobTemplateRequest {
|
|
134
|
+
id: string | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface DeleteJobTemplateResponse {
|
|
137
|
+
id?: string;
|
|
138
|
+
}
|
|
94
139
|
export interface DeleteManagedEndpointRequest {
|
|
95
140
|
id: string | undefined;
|
|
96
141
|
virtualClusterId: string | undefined;
|
|
@@ -115,19 +160,6 @@ export declare enum FailureReason {
|
|
|
115
160
|
USER_ERROR = "USER_ERROR",
|
|
116
161
|
VALIDATION_ERROR = "VALIDATION_ERROR",
|
|
117
162
|
}
|
|
118
|
-
export interface SparkSqlJobDriver {
|
|
119
|
-
entryPoint?: string;
|
|
120
|
-
sparkSqlParameters?: string;
|
|
121
|
-
}
|
|
122
|
-
export interface SparkSubmitJobDriver {
|
|
123
|
-
entryPoint: string | undefined;
|
|
124
|
-
entryPointArguments?: string[];
|
|
125
|
-
sparkSubmitParameters?: string;
|
|
126
|
-
}
|
|
127
|
-
export interface JobDriver {
|
|
128
|
-
sparkSubmitJobDriver?: SparkSubmitJobDriver;
|
|
129
|
-
sparkSqlJobDriver?: SparkSqlJobDriver;
|
|
130
|
-
}
|
|
131
163
|
export declare enum JobRunState {
|
|
132
164
|
CANCELLED = "CANCELLED",
|
|
133
165
|
CANCEL_PENDING = "CANCEL_PENDING",
|
|
@@ -137,6 +169,9 @@ export declare enum JobRunState {
|
|
|
137
169
|
RUNNING = "RUNNING",
|
|
138
170
|
SUBMITTED = "SUBMITTED",
|
|
139
171
|
}
|
|
172
|
+
export interface DescribeJobTemplateRequest {
|
|
173
|
+
id: string | undefined;
|
|
174
|
+
}
|
|
140
175
|
export interface DescribeManagedEndpointRequest {
|
|
141
176
|
id: string | undefined;
|
|
142
177
|
virtualClusterId: string | undefined;
|
|
@@ -182,6 +217,12 @@ export interface ListJobRunsRequest {
|
|
|
182
217
|
maxResults?: number;
|
|
183
218
|
nextToken?: string;
|
|
184
219
|
}
|
|
220
|
+
export interface ListJobTemplatesRequest {
|
|
221
|
+
createdAfter?: Date;
|
|
222
|
+
createdBefore?: Date;
|
|
223
|
+
maxResults?: number;
|
|
224
|
+
nextToken?: string;
|
|
225
|
+
}
|
|
185
226
|
export interface ListManagedEndpointsRequest {
|
|
186
227
|
virtualClusterId: string | undefined;
|
|
187
228
|
createdBefore?: Date;
|
|
@@ -235,6 +276,10 @@ export interface ConfigurationOverrides {
|
|
|
235
276
|
applicationConfiguration?: Configuration[];
|
|
236
277
|
monitoringConfiguration?: MonitoringConfiguration;
|
|
237
278
|
}
|
|
279
|
+
export interface ParametricConfigurationOverrides {
|
|
280
|
+
applicationConfiguration?: Configuration[];
|
|
281
|
+
monitoringConfiguration?: ParametricMonitoringConfiguration;
|
|
282
|
+
}
|
|
238
283
|
export interface CreateManagedEndpointRequest {
|
|
239
284
|
name: string | undefined;
|
|
240
285
|
virtualClusterId: string | undefined;
|
|
@@ -284,15 +329,32 @@ export interface JobRun {
|
|
|
284
329
|
failureReason?: FailureReason | string;
|
|
285
330
|
tags?: Record<string, string>;
|
|
286
331
|
}
|
|
332
|
+
export interface JobTemplateData {
|
|
333
|
+
executionRoleArn: string | undefined;
|
|
334
|
+
releaseLabel: string | undefined;
|
|
335
|
+
configurationOverrides?: ParametricConfigurationOverrides;
|
|
336
|
+
jobDriver: JobDriver | undefined;
|
|
337
|
+
parameterConfiguration?: Record<string, TemplateParameterConfiguration>;
|
|
338
|
+
jobTags?: Record<string, string>;
|
|
339
|
+
}
|
|
287
340
|
export interface StartJobRunRequest {
|
|
288
341
|
name?: string;
|
|
289
342
|
virtualClusterId: string | undefined;
|
|
290
343
|
clientToken?: string;
|
|
291
|
-
executionRoleArn
|
|
292
|
-
releaseLabel
|
|
293
|
-
jobDriver
|
|
344
|
+
executionRoleArn?: string;
|
|
345
|
+
releaseLabel?: string;
|
|
346
|
+
jobDriver?: JobDriver;
|
|
294
347
|
configurationOverrides?: ConfigurationOverrides;
|
|
295
348
|
tags?: Record<string, string>;
|
|
349
|
+
jobTemplateId?: string;
|
|
350
|
+
jobTemplateParameters?: Record<string, string>;
|
|
351
|
+
}
|
|
352
|
+
export interface CreateJobTemplateRequest {
|
|
353
|
+
name: string | undefined;
|
|
354
|
+
clientToken?: string;
|
|
355
|
+
jobTemplateData: JobTemplateData | undefined;
|
|
356
|
+
tags?: Record<string, string>;
|
|
357
|
+
kmsKeyArn?: string;
|
|
296
358
|
}
|
|
297
359
|
export interface DescribeJobRunResponse {
|
|
298
360
|
jobRun?: JobRun;
|
|
@@ -300,6 +362,20 @@ export interface DescribeJobRunResponse {
|
|
|
300
362
|
export interface DescribeManagedEndpointResponse {
|
|
301
363
|
endpoint?: Endpoint;
|
|
302
364
|
}
|
|
365
|
+
export interface JobTemplate {
|
|
366
|
+
name?: string;
|
|
367
|
+
id?: string;
|
|
368
|
+
arn?: string;
|
|
369
|
+
createdAt?: Date;
|
|
370
|
+
createdBy?: string;
|
|
371
|
+
tags?: Record<string, string>;
|
|
372
|
+
jobTemplateData: JobTemplateData | undefined;
|
|
373
|
+
kmsKeyArn?: string;
|
|
374
|
+
decryptionError?: string;
|
|
375
|
+
}
|
|
376
|
+
export interface DescribeJobTemplateResponse {
|
|
377
|
+
jobTemplate?: JobTemplate;
|
|
378
|
+
}
|
|
303
379
|
export interface ListJobRunsResponse {
|
|
304
380
|
jobRuns?: JobRun[];
|
|
305
381
|
nextToken?: string;
|
|
@@ -308,12 +384,38 @@ export interface ListManagedEndpointsResponse {
|
|
|
308
384
|
endpoints?: Endpoint[];
|
|
309
385
|
nextToken?: string;
|
|
310
386
|
}
|
|
387
|
+
export interface ListJobTemplatesResponse {
|
|
388
|
+
templates?: JobTemplate[];
|
|
389
|
+
nextToken?: string;
|
|
390
|
+
}
|
|
311
391
|
export declare const CancelJobRunRequestFilterSensitiveLog: (
|
|
312
392
|
obj: CancelJobRunRequest
|
|
313
393
|
) => any;
|
|
314
394
|
export declare const CancelJobRunResponseFilterSensitiveLog: (
|
|
315
395
|
obj: CancelJobRunResponse
|
|
316
396
|
) => any;
|
|
397
|
+
export declare const ParametricCloudWatchMonitoringConfigurationFilterSensitiveLog: (
|
|
398
|
+
obj: ParametricCloudWatchMonitoringConfiguration
|
|
399
|
+
) => any;
|
|
400
|
+
export declare const ParametricS3MonitoringConfigurationFilterSensitiveLog: (
|
|
401
|
+
obj: ParametricS3MonitoringConfiguration
|
|
402
|
+
) => any;
|
|
403
|
+
export declare const ParametricMonitoringConfigurationFilterSensitiveLog: (
|
|
404
|
+
obj: ParametricMonitoringConfiguration
|
|
405
|
+
) => any;
|
|
406
|
+
export declare const SparkSqlJobDriverFilterSensitiveLog: (
|
|
407
|
+
obj: SparkSqlJobDriver
|
|
408
|
+
) => any;
|
|
409
|
+
export declare const SparkSubmitJobDriverFilterSensitiveLog: (
|
|
410
|
+
obj: SparkSubmitJobDriver
|
|
411
|
+
) => any;
|
|
412
|
+
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
413
|
+
export declare const TemplateParameterConfigurationFilterSensitiveLog: (
|
|
414
|
+
obj: TemplateParameterConfiguration
|
|
415
|
+
) => any;
|
|
416
|
+
export declare const CreateJobTemplateResponseFilterSensitiveLog: (
|
|
417
|
+
obj: CreateJobTemplateResponse
|
|
418
|
+
) => any;
|
|
317
419
|
export declare const CloudWatchMonitoringConfigurationFilterSensitiveLog: (
|
|
318
420
|
obj: CloudWatchMonitoringConfiguration
|
|
319
421
|
) => any;
|
|
@@ -339,6 +441,12 @@ export declare const CreateVirtualClusterRequestFilterSensitiveLog: (
|
|
|
339
441
|
export declare const CreateVirtualClusterResponseFilterSensitiveLog: (
|
|
340
442
|
obj: CreateVirtualClusterResponse
|
|
341
443
|
) => any;
|
|
444
|
+
export declare const DeleteJobTemplateRequestFilterSensitiveLog: (
|
|
445
|
+
obj: DeleteJobTemplateRequest
|
|
446
|
+
) => any;
|
|
447
|
+
export declare const DeleteJobTemplateResponseFilterSensitiveLog: (
|
|
448
|
+
obj: DeleteJobTemplateResponse
|
|
449
|
+
) => any;
|
|
342
450
|
export declare const DeleteManagedEndpointRequestFilterSensitiveLog: (
|
|
343
451
|
obj: DeleteManagedEndpointRequest
|
|
344
452
|
) => any;
|
|
@@ -354,13 +462,9 @@ export declare const DeleteVirtualClusterResponseFilterSensitiveLog: (
|
|
|
354
462
|
export declare const DescribeJobRunRequestFilterSensitiveLog: (
|
|
355
463
|
obj: DescribeJobRunRequest
|
|
356
464
|
) => any;
|
|
357
|
-
export declare const
|
|
358
|
-
obj:
|
|
359
|
-
) => any;
|
|
360
|
-
export declare const SparkSubmitJobDriverFilterSensitiveLog: (
|
|
361
|
-
obj: SparkSubmitJobDriver
|
|
465
|
+
export declare const DescribeJobTemplateRequestFilterSensitiveLog: (
|
|
466
|
+
obj: DescribeJobTemplateRequest
|
|
362
467
|
) => any;
|
|
363
|
-
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
364
468
|
export declare const DescribeManagedEndpointRequestFilterSensitiveLog: (
|
|
365
469
|
obj: DescribeManagedEndpointRequest
|
|
366
470
|
) => any;
|
|
@@ -377,6 +481,9 @@ export declare const DescribeVirtualClusterResponseFilterSensitiveLog: (
|
|
|
377
481
|
export declare const ListJobRunsRequestFilterSensitiveLog: (
|
|
378
482
|
obj: ListJobRunsRequest
|
|
379
483
|
) => any;
|
|
484
|
+
export declare const ListJobTemplatesRequestFilterSensitiveLog: (
|
|
485
|
+
obj: ListJobTemplatesRequest
|
|
486
|
+
) => any;
|
|
380
487
|
export declare const ListManagedEndpointsRequestFilterSensitiveLog: (
|
|
381
488
|
obj: ListManagedEndpointsRequest
|
|
382
489
|
) => any;
|
|
@@ -413,23 +520,39 @@ export declare const ConfigurationFilterSensitiveLog: (
|
|
|
413
520
|
export declare const ConfigurationOverridesFilterSensitiveLog: (
|
|
414
521
|
obj: ConfigurationOverrides
|
|
415
522
|
) => any;
|
|
523
|
+
export declare const ParametricConfigurationOverridesFilterSensitiveLog: (
|
|
524
|
+
obj: ParametricConfigurationOverrides
|
|
525
|
+
) => any;
|
|
416
526
|
export declare const CreateManagedEndpointRequestFilterSensitiveLog: (
|
|
417
527
|
obj: CreateManagedEndpointRequest
|
|
418
528
|
) => any;
|
|
419
529
|
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
420
530
|
export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
|
|
531
|
+
export declare const JobTemplateDataFilterSensitiveLog: (
|
|
532
|
+
obj: JobTemplateData
|
|
533
|
+
) => any;
|
|
421
534
|
export declare const StartJobRunRequestFilterSensitiveLog: (
|
|
422
535
|
obj: StartJobRunRequest
|
|
423
536
|
) => any;
|
|
537
|
+
export declare const CreateJobTemplateRequestFilterSensitiveLog: (
|
|
538
|
+
obj: CreateJobTemplateRequest
|
|
539
|
+
) => any;
|
|
424
540
|
export declare const DescribeJobRunResponseFilterSensitiveLog: (
|
|
425
541
|
obj: DescribeJobRunResponse
|
|
426
542
|
) => any;
|
|
427
543
|
export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (
|
|
428
544
|
obj: DescribeManagedEndpointResponse
|
|
429
545
|
) => any;
|
|
546
|
+
export declare const JobTemplateFilterSensitiveLog: (obj: JobTemplate) => any;
|
|
547
|
+
export declare const DescribeJobTemplateResponseFilterSensitiveLog: (
|
|
548
|
+
obj: DescribeJobTemplateResponse
|
|
549
|
+
) => any;
|
|
430
550
|
export declare const ListJobRunsResponseFilterSensitiveLog: (
|
|
431
551
|
obj: ListJobRunsResponse
|
|
432
552
|
) => any;
|
|
433
553
|
export declare const ListManagedEndpointsResponseFilterSensitiveLog: (
|
|
434
554
|
obj: ListManagedEndpointsResponse
|
|
435
555
|
) => any;
|
|
556
|
+
export declare const ListJobTemplatesResponseFilterSensitiveLog: (
|
|
557
|
+
obj: ListJobTemplatesResponse
|
|
558
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListJobTemplatesCommandInput,
|
|
4
|
+
ListJobTemplatesCommandOutput,
|
|
5
|
+
} from "../commands/ListJobTemplatesCommand";
|
|
6
|
+
import { EMRContainersPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListJobTemplates(
|
|
8
|
+
config: EMRContainersPaginationConfiguration,
|
|
9
|
+
input: ListJobTemplatesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListJobTemplatesCommandOutput>;
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
CancelJobRunCommandInput,
|
|
8
8
|
CancelJobRunCommandOutput,
|
|
9
9
|
} from "../commands/CancelJobRunCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateJobTemplateCommandInput,
|
|
12
|
+
CreateJobTemplateCommandOutput,
|
|
13
|
+
} from "../commands/CreateJobTemplateCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateManagedEndpointCommandInput,
|
|
12
16
|
CreateManagedEndpointCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
CreateVirtualClusterCommandInput,
|
|
16
20
|
CreateVirtualClusterCommandOutput,
|
|
17
21
|
} from "../commands/CreateVirtualClusterCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteJobTemplateCommandInput,
|
|
24
|
+
DeleteJobTemplateCommandOutput,
|
|
25
|
+
} from "../commands/DeleteJobTemplateCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteManagedEndpointCommandInput,
|
|
20
28
|
DeleteManagedEndpointCommandOutput,
|
|
@@ -27,6 +35,10 @@ import {
|
|
|
27
35
|
DescribeJobRunCommandInput,
|
|
28
36
|
DescribeJobRunCommandOutput,
|
|
29
37
|
} from "../commands/DescribeJobRunCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeJobTemplateCommandInput,
|
|
40
|
+
DescribeJobTemplateCommandOutput,
|
|
41
|
+
} from "../commands/DescribeJobTemplateCommand";
|
|
30
42
|
import {
|
|
31
43
|
DescribeManagedEndpointCommandInput,
|
|
32
44
|
DescribeManagedEndpointCommandOutput,
|
|
@@ -39,6 +51,10 @@ import {
|
|
|
39
51
|
ListJobRunsCommandInput,
|
|
40
52
|
ListJobRunsCommandOutput,
|
|
41
53
|
} from "../commands/ListJobRunsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListJobTemplatesCommandInput,
|
|
56
|
+
ListJobTemplatesCommandOutput,
|
|
57
|
+
} from "../commands/ListJobTemplatesCommand";
|
|
42
58
|
import {
|
|
43
59
|
ListManagedEndpointsCommandInput,
|
|
44
60
|
ListManagedEndpointsCommandOutput,
|
|
@@ -67,6 +83,10 @@ export declare const serializeAws_restJson1CancelJobRunCommand: (
|
|
|
67
83
|
input: CancelJobRunCommandInput,
|
|
68
84
|
context: __SerdeContext
|
|
69
85
|
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1CreateJobTemplateCommand: (
|
|
87
|
+
input: CreateJobTemplateCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
70
90
|
export declare const serializeAws_restJson1CreateManagedEndpointCommand: (
|
|
71
91
|
input: CreateManagedEndpointCommandInput,
|
|
72
92
|
context: __SerdeContext
|
|
@@ -75,6 +95,10 @@ export declare const serializeAws_restJson1CreateVirtualClusterCommand: (
|
|
|
75
95
|
input: CreateVirtualClusterCommandInput,
|
|
76
96
|
context: __SerdeContext
|
|
77
97
|
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1DeleteJobTemplateCommand: (
|
|
99
|
+
input: DeleteJobTemplateCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
78
102
|
export declare const serializeAws_restJson1DeleteManagedEndpointCommand: (
|
|
79
103
|
input: DeleteManagedEndpointCommandInput,
|
|
80
104
|
context: __SerdeContext
|
|
@@ -87,6 +111,10 @@ export declare const serializeAws_restJson1DescribeJobRunCommand: (
|
|
|
87
111
|
input: DescribeJobRunCommandInput,
|
|
88
112
|
context: __SerdeContext
|
|
89
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1DescribeJobTemplateCommand: (
|
|
115
|
+
input: DescribeJobTemplateCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
90
118
|
export declare const serializeAws_restJson1DescribeManagedEndpointCommand: (
|
|
91
119
|
input: DescribeManagedEndpointCommandInput,
|
|
92
120
|
context: __SerdeContext
|
|
@@ -99,6 +127,10 @@ export declare const serializeAws_restJson1ListJobRunsCommand: (
|
|
|
99
127
|
input: ListJobRunsCommandInput,
|
|
100
128
|
context: __SerdeContext
|
|
101
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1ListJobTemplatesCommand: (
|
|
131
|
+
input: ListJobTemplatesCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
102
134
|
export declare const serializeAws_restJson1ListManagedEndpointsCommand: (
|
|
103
135
|
input: ListManagedEndpointsCommandInput,
|
|
104
136
|
context: __SerdeContext
|
|
@@ -127,6 +159,10 @@ export declare const deserializeAws_restJson1CancelJobRunCommand: (
|
|
|
127
159
|
output: __HttpResponse,
|
|
128
160
|
context: __SerdeContext
|
|
129
161
|
) => Promise<CancelJobRunCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1CreateJobTemplateCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<CreateJobTemplateCommandOutput>;
|
|
130
166
|
export declare const deserializeAws_restJson1CreateManagedEndpointCommand: (
|
|
131
167
|
output: __HttpResponse,
|
|
132
168
|
context: __SerdeContext
|
|
@@ -135,6 +171,10 @@ export declare const deserializeAws_restJson1CreateVirtualClusterCommand: (
|
|
|
135
171
|
output: __HttpResponse,
|
|
136
172
|
context: __SerdeContext
|
|
137
173
|
) => Promise<CreateVirtualClusterCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_restJson1DeleteJobTemplateCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<DeleteJobTemplateCommandOutput>;
|
|
138
178
|
export declare const deserializeAws_restJson1DeleteManagedEndpointCommand: (
|
|
139
179
|
output: __HttpResponse,
|
|
140
180
|
context: __SerdeContext
|
|
@@ -147,6 +187,10 @@ export declare const deserializeAws_restJson1DescribeJobRunCommand: (
|
|
|
147
187
|
output: __HttpResponse,
|
|
148
188
|
context: __SerdeContext
|
|
149
189
|
) => Promise<DescribeJobRunCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_restJson1DescribeJobTemplateCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<DescribeJobTemplateCommandOutput>;
|
|
150
194
|
export declare const deserializeAws_restJson1DescribeManagedEndpointCommand: (
|
|
151
195
|
output: __HttpResponse,
|
|
152
196
|
context: __SerdeContext
|
|
@@ -159,6 +203,10 @@ export declare const deserializeAws_restJson1ListJobRunsCommand: (
|
|
|
159
203
|
output: __HttpResponse,
|
|
160
204
|
context: __SerdeContext
|
|
161
205
|
) => Promise<ListJobRunsCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_restJson1ListJobTemplatesCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<ListJobTemplatesCommandOutput>;
|
|
162
210
|
export declare const deserializeAws_restJson1ListManagedEndpointsCommand: (
|
|
163
211
|
output: __HttpResponse,
|
|
164
212
|
context: __SerdeContext
|
|
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
5
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
6
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider: (
|
|
12
10
|
input: any
|
|
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
33
31
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
32
|
apiVersion: string;
|
|
35
33
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
logger: import("@aws-sdk/types").Logger;
|
|
38
38
|
serviceId: string;
|
|
@@ -5,8 +5,6 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
5
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
6
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider: (
|
|
12
10
|
input: any
|
|
@@ -33,6 +31,8 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
33
31
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
32
|
apiVersion: string;
|
|
35
33
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
logger: import("@aws-sdk/types").Logger;
|
|
38
38
|
serviceId: string;
|
|
@@ -2,6 +2,8 @@ import { Logger as __Logger } from "@aws-sdk/types";
|
|
|
2
2
|
import { EMRContainersClientConfig } from "./EMRContainersClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
4
4
|
apiVersion: string;
|
|
5
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
6
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
5
7
|
disableHostPrefix: boolean;
|
|
6
8
|
endpointProvider: (
|
|
7
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.204.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.204.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.204.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.204.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.201.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
@@ -41,13 +41,14 @@
|
|
|
41
41
|
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
42
|
"@aws-sdk/types": "3.201.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.201.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.202.0",
|
|
44
45
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
46
|
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
48
|
"@aws-sdk/util-body-length-node": "3.201.0",
|
|
48
49
|
"@aws-sdk/util-defaults-mode-browser": "3.201.0",
|
|
49
50
|
"@aws-sdk/util-defaults-mode-node": "3.201.0",
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.202.0",
|
|
51
52
|
"@aws-sdk/util-user-agent-browser": "3.201.0",
|
|
52
53
|
"@aws-sdk/util-user-agent-node": "3.201.0",
|
|
53
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|