@aws-sdk/client-emr-serverless 3.179.0 → 3.181.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 +28 -0
- package/dist-cjs/EMRServerless.js +15 -0
- package/dist-cjs/commands/GetDashboardForJobRunCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +18 -0
- package/dist-cjs/models/models_0.js +10 -2
- package/dist-cjs/protocols/Aws_restJson1.js +82 -23
- package/dist-es/EMRServerless.js +15 -0
- package/dist-es/commands/GetDashboardForJobRunCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +18 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +116 -21
- package/dist-types/EMRServerless.d.ts +7 -0
- package/dist-types/EMRServerlessClient.d.ts +3 -2
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +68 -22
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/EMRServerless.d.ts +17 -0
- package/dist-types/ts3.4/EMRServerlessClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetDashboardForJobRunCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +6 -6
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EMRServerlessClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EMRServerlessClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDashboardForJobRunRequest,
|
|
15
|
+
GetDashboardForJobRunResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDashboardForJobRunCommandInput
|
|
18
|
+
extends GetDashboardForJobRunRequest {}
|
|
19
|
+
export interface GetDashboardForJobRunCommandOutput
|
|
20
|
+
extends GetDashboardForJobRunResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetDashboardForJobRunCommand extends $Command<
|
|
23
|
+
GetDashboardForJobRunCommandInput,
|
|
24
|
+
GetDashboardForJobRunCommandOutput,
|
|
25
|
+
EMRServerlessClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetDashboardForJobRunCommandInput;
|
|
28
|
+
constructor(input: GetDashboardForJobRunCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: EMRServerlessClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetDashboardForJobRunCommandInput,
|
|
35
|
+
GetDashboardForJobRunCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./CancelJobRunCommand";
|
|
|
2
2
|
export * from "./CreateApplicationCommand";
|
|
3
3
|
export * from "./DeleteApplicationCommand";
|
|
4
4
|
export * from "./GetApplicationCommand";
|
|
5
|
+
export * from "./GetDashboardForJobRunCommand";
|
|
5
6
|
export * from "./GetJobRunCommand";
|
|
6
7
|
export * from "./ListApplicationsCommand";
|
|
7
8
|
export * from "./ListJobRunsCommand";
|
|
@@ -159,6 +159,13 @@ export interface CancelJobRunResponse {
|
|
|
159
159
|
applicationId: string | undefined;
|
|
160
160
|
jobRunId: string | undefined;
|
|
161
161
|
}
|
|
162
|
+
export interface GetDashboardForJobRunRequest {
|
|
163
|
+
applicationId: string | undefined;
|
|
164
|
+
jobRunId: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
export interface GetDashboardForJobRunResponse {
|
|
167
|
+
url?: string;
|
|
168
|
+
}
|
|
162
169
|
export interface GetJobRunRequest {
|
|
163
170
|
applicationId: string | undefined;
|
|
164
171
|
jobRunId: string | undefined;
|
|
@@ -385,6 +392,12 @@ export declare const CancelJobRunRequestFilterSensitiveLog: (
|
|
|
385
392
|
export declare const CancelJobRunResponseFilterSensitiveLog: (
|
|
386
393
|
obj: CancelJobRunResponse
|
|
387
394
|
) => any;
|
|
395
|
+
export declare const GetDashboardForJobRunRequestFilterSensitiveLog: (
|
|
396
|
+
obj: GetDashboardForJobRunRequest
|
|
397
|
+
) => any;
|
|
398
|
+
export declare const GetDashboardForJobRunResponseFilterSensitiveLog: (
|
|
399
|
+
obj: GetDashboardForJobRunResponse
|
|
400
|
+
) => any;
|
|
388
401
|
export declare const GetJobRunRequestFilterSensitiveLog: (
|
|
389
402
|
obj: GetJobRunRequest
|
|
390
403
|
) => any;
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
GetApplicationCommandInput,
|
|
20
20
|
GetApplicationCommandOutput,
|
|
21
21
|
} from "../commands/GetApplicationCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetDashboardForJobRunCommandInput,
|
|
24
|
+
GetDashboardForJobRunCommandOutput,
|
|
25
|
+
} from "../commands/GetDashboardForJobRunCommand";
|
|
22
26
|
import {
|
|
23
27
|
GetJobRunCommandInput,
|
|
24
28
|
GetJobRunCommandOutput,
|
|
@@ -75,6 +79,10 @@ export declare const serializeAws_restJson1GetApplicationCommand: (
|
|
|
75
79
|
input: GetApplicationCommandInput,
|
|
76
80
|
context: __SerdeContext
|
|
77
81
|
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1GetDashboardForJobRunCommand: (
|
|
83
|
+
input: GetDashboardForJobRunCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
78
86
|
export declare const serializeAws_restJson1GetJobRunCommand: (
|
|
79
87
|
input: GetJobRunCommandInput,
|
|
80
88
|
context: __SerdeContext
|
|
@@ -131,6 +139,10 @@ export declare const deserializeAws_restJson1GetApplicationCommand: (
|
|
|
131
139
|
output: __HttpResponse,
|
|
132
140
|
context: __SerdeContext
|
|
133
141
|
) => Promise<GetApplicationCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1GetDashboardForJobRunCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetDashboardForJobRunCommandOutput>;
|
|
134
146
|
export declare const deserializeAws_restJson1GetJobRunCommand: (
|
|
135
147
|
output: __HttpResponse,
|
|
136
148
|
context: __SerdeContext
|
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.181.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,9 +19,9 @@
|
|
|
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.181.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.181.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.178.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
38
|
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
39
|
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
+
"@aws-sdk/smithy-client": "3.180.0",
|
|
41
41
|
"@aws-sdk/types": "3.178.0",
|
|
42
42
|
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.180.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.180.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
50
|
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|