@aws-sdk/client-emr-serverless 3.296.0 → 3.298.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/commands/CancelJobRunCommand.js +2 -3
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetDashboardForJobRunCommand.js +2 -3
- package/dist-cjs/commands/GetJobRunCommand.js +1 -1
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/ListJobRunsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/StartApplicationCommand.js +2 -3
- package/dist-cjs/commands/StartJobRunCommand.js +1 -1
- package/dist-cjs/commands/StopApplicationCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -182
- package/dist-es/commands/CancelJobRunCommand.js +2 -3
- package/dist-es/commands/CreateApplicationCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -3
- package/dist-es/commands/GetDashboardForJobRunCommand.js +2 -3
- package/dist-es/commands/GetJobRunCommand.js +2 -2
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/ListJobRunsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/StartApplicationCommand.js +2 -3
- package/dist-es/commands/StartJobRunCommand.js +2 -2
- package/dist-es/commands/StopApplicationCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -135
- package/dist-types/EMRServerless.d.ts +16 -0
- package/dist-types/EMRServerlessClient.d.ts +24 -4
- package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +16 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/EMRServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +130 -180
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -133
- package/package.json +4 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
|
|
3
3
|
import { EMRServerlessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListJobRuns(config: EMRServerlessPaginationConfiguration, input: ListJobRunsCommandInput, ...additionalArguments: any): Paginator<ListJobRunsCommandOutput>;
|
|
@@ -349,142 +349,9 @@ export interface StartJobRunRequest {
|
|
|
349
349
|
export interface GetJobRunResponse {
|
|
350
350
|
jobRun: JobRun | undefined;
|
|
351
351
|
}
|
|
352
|
-
export declare const AutoStartConfigFilterSensitiveLog: (
|
|
353
|
-
obj: AutoStartConfig
|
|
354
|
-
) => any;
|
|
355
|
-
export declare const AutoStopConfigFilterSensitiveLog: (
|
|
356
|
-
obj: AutoStopConfig
|
|
357
|
-
) => any;
|
|
358
|
-
export declare const ImageConfigurationFilterSensitiveLog: (
|
|
359
|
-
obj: ImageConfiguration
|
|
360
|
-
) => any;
|
|
361
|
-
export declare const WorkerResourceConfigFilterSensitiveLog: (
|
|
362
|
-
obj: WorkerResourceConfig
|
|
363
|
-
) => any;
|
|
364
|
-
export declare const InitialCapacityConfigFilterSensitiveLog: (
|
|
365
|
-
obj: InitialCapacityConfig
|
|
366
|
-
) => any;
|
|
367
|
-
export declare const MaximumAllowedResourcesFilterSensitiveLog: (
|
|
368
|
-
obj: MaximumAllowedResources
|
|
369
|
-
) => any;
|
|
370
|
-
export declare const NetworkConfigurationFilterSensitiveLog: (
|
|
371
|
-
obj: NetworkConfiguration
|
|
372
|
-
) => any;
|
|
373
|
-
export declare const WorkerTypeSpecificationFilterSensitiveLog: (
|
|
374
|
-
obj: WorkerTypeSpecification
|
|
375
|
-
) => any;
|
|
376
|
-
export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
|
|
377
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (
|
|
378
|
-
obj: ApplicationSummary
|
|
379
|
-
) => any;
|
|
380
|
-
export declare const ImageConfigurationInputFilterSensitiveLog: (
|
|
381
|
-
obj: ImageConfigurationInput
|
|
382
|
-
) => any;
|
|
383
|
-
export declare const WorkerTypeSpecificationInputFilterSensitiveLog: (
|
|
384
|
-
obj: WorkerTypeSpecificationInput
|
|
385
|
-
) => any;
|
|
386
|
-
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
387
|
-
obj: CreateApplicationRequest
|
|
388
|
-
) => any;
|
|
389
|
-
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
390
|
-
obj: CreateApplicationResponse
|
|
391
|
-
) => any;
|
|
392
|
-
export declare const DeleteApplicationRequestFilterSensitiveLog: (
|
|
393
|
-
obj: DeleteApplicationRequest
|
|
394
|
-
) => any;
|
|
395
|
-
export declare const DeleteApplicationResponseFilterSensitiveLog: (
|
|
396
|
-
obj: DeleteApplicationResponse
|
|
397
|
-
) => any;
|
|
398
|
-
export declare const GetApplicationRequestFilterSensitiveLog: (
|
|
399
|
-
obj: GetApplicationRequest
|
|
400
|
-
) => any;
|
|
401
|
-
export declare const GetApplicationResponseFilterSensitiveLog: (
|
|
402
|
-
obj: GetApplicationResponse
|
|
403
|
-
) => any;
|
|
404
|
-
export declare const ListApplicationsRequestFilterSensitiveLog: (
|
|
405
|
-
obj: ListApplicationsRequest
|
|
406
|
-
) => any;
|
|
407
|
-
export declare const ListApplicationsResponseFilterSensitiveLog: (
|
|
408
|
-
obj: ListApplicationsResponse
|
|
409
|
-
) => any;
|
|
410
|
-
export declare const StartApplicationRequestFilterSensitiveLog: (
|
|
411
|
-
obj: StartApplicationRequest
|
|
412
|
-
) => any;
|
|
413
|
-
export declare const StartApplicationResponseFilterSensitiveLog: (
|
|
414
|
-
obj: StartApplicationResponse
|
|
415
|
-
) => any;
|
|
416
|
-
export declare const StopApplicationRequestFilterSensitiveLog: (
|
|
417
|
-
obj: StopApplicationRequest
|
|
418
|
-
) => any;
|
|
419
|
-
export declare const StopApplicationResponseFilterSensitiveLog: (
|
|
420
|
-
obj: StopApplicationResponse
|
|
421
|
-
) => any;
|
|
422
|
-
export declare const UpdateApplicationRequestFilterSensitiveLog: (
|
|
423
|
-
obj: UpdateApplicationRequest
|
|
424
|
-
) => any;
|
|
425
|
-
export declare const UpdateApplicationResponseFilterSensitiveLog: (
|
|
426
|
-
obj: UpdateApplicationResponse
|
|
427
|
-
) => any;
|
|
428
|
-
export declare const CancelJobRunRequestFilterSensitiveLog: (
|
|
429
|
-
obj: CancelJobRunRequest
|
|
430
|
-
) => any;
|
|
431
|
-
export declare const CancelJobRunResponseFilterSensitiveLog: (
|
|
432
|
-
obj: CancelJobRunResponse
|
|
433
|
-
) => any;
|
|
434
|
-
export declare const GetDashboardForJobRunRequestFilterSensitiveLog: (
|
|
435
|
-
obj: GetDashboardForJobRunRequest
|
|
436
|
-
) => any;
|
|
437
|
-
export declare const GetDashboardForJobRunResponseFilterSensitiveLog: (
|
|
438
|
-
obj: GetDashboardForJobRunResponse
|
|
439
|
-
) => any;
|
|
440
|
-
export declare const GetJobRunRequestFilterSensitiveLog: (
|
|
441
|
-
obj: GetJobRunRequest
|
|
442
|
-
) => any;
|
|
443
|
-
export declare const ManagedPersistenceMonitoringConfigurationFilterSensitiveLog: (
|
|
444
|
-
obj: ManagedPersistenceMonitoringConfiguration
|
|
445
|
-
) => any;
|
|
446
|
-
export declare const S3MonitoringConfigurationFilterSensitiveLog: (
|
|
447
|
-
obj: S3MonitoringConfiguration
|
|
448
|
-
) => any;
|
|
449
|
-
export declare const MonitoringConfigurationFilterSensitiveLog: (
|
|
450
|
-
obj: MonitoringConfiguration
|
|
451
|
-
) => any;
|
|
452
352
|
export declare const HiveFilterSensitiveLog: (obj: Hive) => any;
|
|
453
353
|
export declare const SparkSubmitFilterSensitiveLog: (obj: SparkSubmit) => any;
|
|
454
354
|
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
455
|
-
export declare const TotalResourceUtilizationFilterSensitiveLog: (
|
|
456
|
-
obj: TotalResourceUtilization
|
|
457
|
-
) => any;
|
|
458
|
-
export declare const ListJobRunsRequestFilterSensitiveLog: (
|
|
459
|
-
obj: ListJobRunsRequest
|
|
460
|
-
) => any;
|
|
461
|
-
export declare const JobRunSummaryFilterSensitiveLog: (
|
|
462
|
-
obj: JobRunSummary
|
|
463
|
-
) => any;
|
|
464
|
-
export declare const ListJobRunsResponseFilterSensitiveLog: (
|
|
465
|
-
obj: ListJobRunsResponse
|
|
466
|
-
) => any;
|
|
467
|
-
export declare const StartJobRunResponseFilterSensitiveLog: (
|
|
468
|
-
obj: StartJobRunResponse
|
|
469
|
-
) => any;
|
|
470
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
471
|
-
obj: ListTagsForResourceRequest
|
|
472
|
-
) => any;
|
|
473
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
474
|
-
obj: ListTagsForResourceResponse
|
|
475
|
-
) => any;
|
|
476
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
477
|
-
obj: TagResourceRequest
|
|
478
|
-
) => any;
|
|
479
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
480
|
-
obj: TagResourceResponse
|
|
481
|
-
) => any;
|
|
482
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
483
|
-
obj: UntagResourceRequest
|
|
484
|
-
) => any;
|
|
485
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
486
|
-
obj: UntagResourceResponse
|
|
487
|
-
) => any;
|
|
488
355
|
export declare const ConfigurationFilterSensitiveLog: (
|
|
489
356
|
obj: Configuration
|
|
490
357
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.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",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo emr-serverless"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|