@aws-sdk/client-emr-serverless 3.1086.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/EMRServerless.d.ts +76 -93
- package/dist-types/ts3.4/EMRServerlessClient.d.ts +11 -36
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDashboardForJobRunCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetJobRunCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetResourceDashboardCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetSessionEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListJobRunAttemptsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +39 -39
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./EMRServerlessClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
EMRServerlessClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CancelJobRunCommandInput extends CancelJobRunRequest {}
|
|
5
|
-
export interface CancelJobRunCommandOutput
|
|
6
|
-
extends CancelJobRunResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __MetadataBearer {}
|
|
8
6
|
declare const CancelJobRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CancelJobRunCommandInput
|
|
8
|
+
input: CancelJobRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CancelJobRunCommandInput,
|
|
13
11
|
CancelJobRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CancelJobRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CancelJobRunCommandInput
|
|
17
|
+
input: CancelJobRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CancelJobRunCommandInput,
|
|
22
20
|
CancelJobRunCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateApplicationRequest,
|
|
4
|
-
CreateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateApplicationCommandInput
|
|
8
|
-
extends CreateApplicationRequest {}
|
|
4
|
+
export interface CreateApplicationCommandInput extends CreateApplicationRequest {}
|
|
9
5
|
export interface CreateApplicationCommandOutput
|
|
10
|
-
extends CreateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateApplicationCommandInput
|
|
9
|
+
input: CreateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateApplicationCommandInput,
|
|
17
12
|
CreateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateApplicationCommandInput
|
|
18
|
+
input: CreateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateApplicationCommandInput,
|
|
26
21
|
CreateApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteApplicationRequest,
|
|
4
|
-
DeleteApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteApplicationCommandInput
|
|
8
|
-
extends DeleteApplicationRequest {}
|
|
4
|
+
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {}
|
|
9
5
|
export interface DeleteApplicationCommandOutput
|
|
10
|
-
extends DeleteApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteApplicationCommandInput
|
|
9
|
+
input: DeleteApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteApplicationCommandInput,
|
|
17
12
|
DeleteApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteApplicationCommandInput
|
|
18
|
+
input: DeleteApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteApplicationCommandInput,
|
|
26
21
|
DeleteApplicationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetApplicationRequest,
|
|
4
|
-
GetApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
8
|
-
export interface GetApplicationCommandOutput
|
|
9
|
-
extends GetApplicationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetApplicationCommandInput
|
|
8
|
+
input: GetApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetApplicationCommandInput,
|
|
16
11
|
GetApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetApplicationCommandInput
|
|
17
|
+
input: GetApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetApplicationCommandInput,
|
|
25
20
|
GetApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDashboardForJobRunRequest,
|
|
4
|
-
GetDashboardForJobRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDashboardForJobRunRequest, GetDashboardForJobRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDashboardForJobRunCommandInput
|
|
8
|
-
extends GetDashboardForJobRunRequest {}
|
|
4
|
+
export interface GetDashboardForJobRunCommandInput extends GetDashboardForJobRunRequest {}
|
|
9
5
|
export interface GetDashboardForJobRunCommandOutput
|
|
10
|
-
extends GetDashboardForJobRunResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDashboardForJobRunResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDashboardForJobRunCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDashboardForJobRunCommandInput
|
|
9
|
+
input: GetDashboardForJobRunCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDashboardForJobRunCommandInput,
|
|
17
12
|
GetDashboardForJobRunCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDashboardForJobRunCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDashboardForJobRunCommandInput
|
|
18
|
+
input: GetDashboardForJobRunCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDashboardForJobRunCommandInput,
|
|
26
21
|
GetDashboardForJobRunCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetJobRunRequest, GetJobRunResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetJobRunCommandInput extends GetJobRunRequest {}
|
|
5
|
-
export interface GetJobRunCommandOutput
|
|
6
|
-
extends GetJobRunResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetJobRunCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetJobRunCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetJobRunCommandInput,
|
|
11
11
|
GetJobRunCommandOutput,
|
|
12
12
|
import("..").EMRServerlessClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetJobRunCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetJobRunCommandInput,
|
|
18
20
|
GetJobRunCommandOutput,
|
|
19
21
|
import("..").EMRServerlessClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetResourceDashboardRequest,
|
|
4
|
-
GetResourceDashboardResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetResourceDashboardRequest, GetResourceDashboardResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetResourceDashboardCommandInput
|
|
8
|
-
extends GetResourceDashboardRequest {}
|
|
4
|
+
export interface GetResourceDashboardCommandInput extends GetResourceDashboardRequest {}
|
|
9
5
|
export interface GetResourceDashboardCommandOutput
|
|
10
|
-
extends GetResourceDashboardResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetResourceDashboardResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetResourceDashboardCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetResourceDashboardCommandInput
|
|
9
|
+
input: GetResourceDashboardCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetResourceDashboardCommandInput,
|
|
17
12
|
GetResourceDashboardCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetResourceDashboardCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetResourceDashboardCommandInput
|
|
18
|
+
input: GetResourceDashboardCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetResourceDashboardCommandInput,
|
|
26
21
|
GetResourceDashboardCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetSessionCommandInput extends GetSessionRequest {}
|
|
5
|
-
export interface GetSessionCommandOutput
|
|
6
|
-
extends GetSessionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetSessionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetSessionCommandInput
|
|
8
|
+
input: GetSessionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetSessionCommandInput,
|
|
13
11
|
GetSessionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetSessionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetSessionCommandInput
|
|
17
|
+
input: GetSessionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetSessionCommandInput,
|
|
22
20
|
GetSessionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSessionEndpointRequest,
|
|
4
|
-
GetSessionEndpointResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSessionEndpointRequest, GetSessionEndpointResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSessionEndpointCommandInput
|
|
8
|
-
extends GetSessionEndpointRequest {}
|
|
4
|
+
export interface GetSessionEndpointCommandInput extends GetSessionEndpointRequest {}
|
|
9
5
|
export interface GetSessionEndpointCommandOutput
|
|
10
|
-
extends GetSessionEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSessionEndpointResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetSessionEndpointCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSessionEndpointCommandInput
|
|
9
|
+
input: GetSessionEndpointCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSessionEndpointCommandInput,
|
|
17
12
|
GetSessionEndpointCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSessionEndpointCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSessionEndpointCommandInput
|
|
18
|
+
input: GetSessionEndpointCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSessionEndpointCommandInput,
|
|
26
21
|
GetSessionEndpointCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListApplicationsRequest,
|
|
4
|
-
ListApplicationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
8
|
-
export interface ListApplicationsCommandOutput
|
|
9
|
-
extends ListApplicationsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListApplicationsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListApplicationsCommandInput
|
|
8
|
+
input: ListApplicationsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListApplicationsCommandInput,
|
|
16
11
|
ListApplicationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListJobRunAttemptsRequest,
|
|
4
|
-
ListJobRunAttemptsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListJobRunAttemptsRequest, ListJobRunAttemptsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListJobRunAttemptsCommandInput
|
|
8
|
-
extends ListJobRunAttemptsRequest {}
|
|
4
|
+
export interface ListJobRunAttemptsCommandInput extends ListJobRunAttemptsRequest {}
|
|
9
5
|
export interface ListJobRunAttemptsCommandOutput
|
|
10
|
-
extends ListJobRunAttemptsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListJobRunAttemptsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListJobRunAttemptsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListJobRunAttemptsCommandInput
|
|
9
|
+
input: ListJobRunAttemptsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListJobRunAttemptsCommandInput,
|
|
17
12
|
ListJobRunAttemptsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListJobRunAttemptsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListJobRunAttemptsCommandInput
|
|
18
|
+
input: ListJobRunAttemptsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListJobRunAttemptsCommandInput,
|
|
26
21
|
ListJobRunAttemptsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListJobRunsCommandInput extends ListJobRunsRequest {}
|
|
5
|
-
export interface ListJobRunsCommandOutput
|
|
6
|
-
extends ListJobRunsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListJobRunsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListJobRunsCommandInput
|
|
8
|
+
input: ListJobRunsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListJobRunsCommandInput,
|
|
13
11
|
ListJobRunsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListJobRunsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListJobRunsCommandInput
|
|
17
|
+
input: ListJobRunsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListJobRunsCommandInput,
|
|
22
20
|
ListJobRunsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListSessionsCommandInput extends ListSessionsRequest {}
|
|
5
|
-
export interface ListSessionsCommandOutput
|
|
6
|
-
extends ListSessionsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSessionsCommandOutput extends ListSessionsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListSessionsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListSessionsCommandInput
|
|
8
|
+
input: ListSessionsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListSessionsCommandInput,
|
|
13
11
|
ListSessionsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListSessionsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListSessionsCommandInput
|
|
17
|
+
input: ListSessionsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListSessionsCommandInput,
|
|
22
20
|
ListSessionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartApplicationRequest,
|
|
4
|
-
StartApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartApplicationCommandInput extends StartApplicationRequest {}
|
|
8
|
-
export interface StartApplicationCommandOutput
|
|
9
|
-
extends StartApplicationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartApplicationCommandOutput extends StartApplicationResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartApplicationCommandInput
|
|
8
|
+
input: StartApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartApplicationCommandInput,
|
|
16
11
|
StartApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartApplicationCommandInput
|
|
17
|
+
input: StartApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartApplicationCommandInput,
|
|
25
20
|
StartApplicationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartJobRunCommandInput extends StartJobRunRequest {}
|
|
5
|
-
export interface StartJobRunCommandOutput
|
|
6
|
-
extends StartJobRunResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartJobRunCommandOutput extends StartJobRunResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartJobRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartJobRunCommandInput
|
|
8
|
+
input: StartJobRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartJobRunCommandInput,
|
|
13
11
|
StartJobRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartJobRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartJobRunCommandInput
|
|
17
|
+
input: StartJobRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartJobRunCommandInput,
|
|
22
20
|
StartJobRunCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartSessionRequest, StartSessionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartSessionCommandInput extends StartSessionRequest {}
|
|
5
|
-
export interface StartSessionCommandOutput
|
|
6
|
-
extends StartSessionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartSessionCommandOutput extends StartSessionResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartSessionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartSessionCommandInput
|
|
8
|
+
input: StartSessionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartSessionCommandInput,
|
|
13
11
|
StartSessionCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartSessionCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartSessionCommandInput
|
|
17
|
+
input: StartSessionCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartSessionCommandInput,
|
|
22
20
|
StartSessionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopApplicationRequest,
|
|
4
|
-
StopApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StopApplicationCommandInput extends StopApplicationRequest {}
|
|
8
|
-
export interface StopApplicationCommandOutput
|
|
9
|
-
extends StopApplicationResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopApplicationCommandOutput extends StopApplicationResponse, __MetadataBearer {}
|
|
11
6
|
declare const StopApplicationCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StopApplicationCommandInput
|
|
8
|
+
input: StopApplicationCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StopApplicationCommandInput,
|
|
16
11
|
StopApplicationCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StopApplicationCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StopApplicationCommandInput
|
|
17
|
+
input: StopApplicationCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StopApplicationCommandInput,
|
|
25
20
|
StopApplicationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
TerminateSessionRequest,
|
|
4
|
-
TerminateSessionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { TerminateSessionRequest, TerminateSessionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface TerminateSessionCommandInput extends TerminateSessionRequest {}
|
|
8
|
-
export interface TerminateSessionCommandOutput
|
|
9
|
-
extends TerminateSessionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TerminateSessionCommandOutput extends TerminateSessionResponse, __MetadataBearer {}
|
|
11
6
|
declare const TerminateSessionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: TerminateSessionCommandInput
|
|
8
|
+
input: TerminateSessionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
TerminateSessionCommandInput,
|
|
16
11
|
TerminateSessionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const TerminateSessionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: TerminateSessionCommandInput
|
|
17
|
+
input: TerminateSessionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
TerminateSessionCommandInput,
|
|
25
20
|
TerminateSessionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateApplicationRequest,
|
|
4
|
-
UpdateApplicationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateApplicationCommandInput
|
|
8
|
-
extends UpdateApplicationRequest {}
|
|
4
|
+
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {}
|
|
9
5
|
export interface UpdateApplicationCommandOutput
|
|
10
|
-
extends UpdateApplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateApplicationResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateApplicationCommandInput
|
|
9
|
+
input: UpdateApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateApplicationCommandInput,
|
|
17
12
|
UpdateApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateApplicationCommandInput
|
|
18
|
+
input: UpdateApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateApplicationCommandInput,
|
|
26
21
|
UpdateApplicationCommandOutput,
|