@aws-sdk/client-emr-serverless 3.169.0 → 3.171.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/EMRServerless.d.ts +242 -75
  3. package/dist-types/ts3.4/EMRServerlessClient.d.ts +189 -87
  4. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/GetJobRunCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/EMRServerlessServiceException.d.ts +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +448 -588
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  25. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
5
- export interface CancelJobRunCommandInput extends CancelJobRunRequest {
6
- }
7
- export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CancelJobRunCommand extends $Command<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: CancelJobRunCommandInput;
12
- constructor(input: CancelJobRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobRunCommandInput, CancelJobRunCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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 { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
14
+ export interface CancelJobRunCommandInput extends CancelJobRunRequest {}
15
+ export interface CancelJobRunCommandOutput
16
+ extends CancelJobRunResponse,
17
+ __MetadataBearer {}
18
+ export declare class CancelJobRunCommand extends $Command<
19
+ CancelJobRunCommandInput,
20
+ CancelJobRunCommandOutput,
21
+ EMRServerlessClientResolvedConfig
22
+ > {
23
+ readonly input: CancelJobRunCommandInput;
24
+ constructor(input: CancelJobRunCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRServerlessClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CancelJobRunCommandInput, CancelJobRunCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
- export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
- }
7
- export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: CreateApplicationCommandInput;
12
- constructor(input: CreateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ CreateApplicationRequest,
15
+ CreateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateApplicationCommandInput
18
+ extends CreateApplicationRequest {}
19
+ export interface CreateApplicationCommandOutput
20
+ extends CreateApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateApplicationCommand extends $Command<
23
+ CreateApplicationCommandInput,
24
+ CreateApplicationCommandOutput,
25
+ EMRServerlessClientResolvedConfig
26
+ > {
27
+ readonly input: CreateApplicationCommandInput;
28
+ constructor(input: CreateApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRServerlessClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
- export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
- }
7
- export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: DeleteApplicationCommandInput;
12
- constructor(input: DeleteApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ DeleteApplicationRequest,
15
+ DeleteApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCommandInput
18
+ extends DeleteApplicationRequest {}
19
+ export interface DeleteApplicationCommandOutput
20
+ extends DeleteApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteApplicationCommand extends $Command<
23
+ DeleteApplicationCommandInput,
24
+ DeleteApplicationCommandOutput,
25
+ EMRServerlessClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteApplicationCommandInput;
28
+ constructor(input: DeleteApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRServerlessClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
5
- export interface GetApplicationCommandInput extends GetApplicationRequest {
6
- }
7
- export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: GetApplicationCommandInput;
12
- constructor(input: GetApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ GetApplicationRequest,
15
+ GetApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetApplicationCommandInput extends GetApplicationRequest {}
18
+ export interface GetApplicationCommandOutput
19
+ extends GetApplicationResponse,
20
+ __MetadataBearer {}
21
+ export declare class GetApplicationCommand extends $Command<
22
+ GetApplicationCommandInput,
23
+ GetApplicationCommandOutput,
24
+ EMRServerlessClientResolvedConfig
25
+ > {
26
+ readonly input: GetApplicationCommandInput;
27
+ constructor(input: GetApplicationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EMRServerlessClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { GetJobRunRequest, GetJobRunResponse } from "../models/models_0";
5
- export interface GetJobRunCommandInput extends GetJobRunRequest {
6
- }
7
- export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetJobRunCommand extends $Command<GetJobRunCommandInput, GetJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: GetJobRunCommandInput;
12
- constructor(input: GetJobRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobRunCommandInput, GetJobRunCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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 { GetJobRunRequest, GetJobRunResponse } from "../models/models_0";
14
+ export interface GetJobRunCommandInput extends GetJobRunRequest {}
15
+ export interface GetJobRunCommandOutput
16
+ extends GetJobRunResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetJobRunCommand extends $Command<
19
+ GetJobRunCommandInput,
20
+ GetJobRunCommandOutput,
21
+ EMRServerlessClientResolvedConfig
22
+ > {
23
+ readonly input: GetJobRunCommandInput;
24
+ constructor(input: GetJobRunCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRServerlessClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetJobRunCommandInput, GetJobRunCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
5
- export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
- }
7
- export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: ListApplicationsCommandInput;
12
- constructor(input: ListApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ ListApplicationsRequest,
15
+ ListApplicationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
18
+ export interface ListApplicationsCommandOutput
19
+ extends ListApplicationsResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListApplicationsCommand extends $Command<
22
+ ListApplicationsCommandInput,
23
+ ListApplicationsCommandOutput,
24
+ EMRServerlessClientResolvedConfig
25
+ > {
26
+ readonly input: ListApplicationsCommandInput;
27
+ constructor(input: ListApplicationsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EMRServerlessClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0";
5
- export interface ListJobRunsCommandInput extends ListJobRunsRequest {
6
- }
7
- export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: ListJobRunsCommandInput;
12
- constructor(input: ListJobRunsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobRunsCommandInput, ListJobRunsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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 { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0";
14
+ export interface ListJobRunsCommandInput extends ListJobRunsRequest {}
15
+ export interface ListJobRunsCommandOutput
16
+ extends ListJobRunsResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListJobRunsCommand extends $Command<
19
+ ListJobRunsCommandInput,
20
+ ListJobRunsCommandOutput,
21
+ EMRServerlessClientResolvedConfig
22
+ > {
23
+ readonly input: ListJobRunsCommandInput;
24
+ constructor(input: ListJobRunsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRServerlessClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListJobRunsCommandInput, ListJobRunsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ EMRServerlessClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRServerlessClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0";
5
- export interface StartApplicationCommandInput extends StartApplicationRequest {
6
- }
7
- export interface StartApplicationCommandOutput extends StartApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartApplicationCommand extends $Command<StartApplicationCommandInput, StartApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: StartApplicationCommandInput;
12
- constructor(input: StartApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ StartApplicationRequest,
15
+ StartApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface StartApplicationCommandInput extends StartApplicationRequest {}
18
+ export interface StartApplicationCommandOutput
19
+ extends StartApplicationResponse,
20
+ __MetadataBearer {}
21
+ export declare class StartApplicationCommand extends $Command<
22
+ StartApplicationCommandInput,
23
+ StartApplicationCommandOutput,
24
+ EMRServerlessClientResolvedConfig
25
+ > {
26
+ readonly input: StartApplicationCommandInput;
27
+ constructor(input: StartApplicationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EMRServerlessClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
5
- export interface StartJobRunCommandInput extends StartJobRunRequest {
6
- }
7
- export interface StartJobRunCommandOutput extends StartJobRunResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: StartJobRunCommandInput;
12
- constructor(input: StartJobRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartJobRunCommandInput, StartJobRunCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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 { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
14
+ export interface StartJobRunCommandInput extends StartJobRunRequest {}
15
+ export interface StartJobRunCommandOutput
16
+ extends StartJobRunResponse,
17
+ __MetadataBearer {}
18
+ export declare class StartJobRunCommand extends $Command<
19
+ StartJobRunCommandInput,
20
+ StartJobRunCommandOutput,
21
+ EMRServerlessClientResolvedConfig
22
+ > {
23
+ readonly input: StartJobRunCommandInput;
24
+ constructor(input: StartJobRunCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRServerlessClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<StartJobRunCommandInput, StartJobRunCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0";
5
- export interface StopApplicationCommandInput extends StopApplicationRequest {
6
- }
7
- export interface StopApplicationCommandOutput extends StopApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopApplicationCommand extends $Command<StopApplicationCommandInput, StopApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: StopApplicationCommandInput;
12
- constructor(input: StopApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopApplicationCommandInput, StopApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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
+ StopApplicationRequest,
15
+ StopApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface StopApplicationCommandInput extends StopApplicationRequest {}
18
+ export interface StopApplicationCommandOutput
19
+ extends StopApplicationResponse,
20
+ __MetadataBearer {}
21
+ export declare class StopApplicationCommand extends $Command<
22
+ StopApplicationCommandInput,
23
+ StopApplicationCommandOutput,
24
+ EMRServerlessClientResolvedConfig
25
+ > {
26
+ readonly input: StopApplicationCommandInput;
27
+ constructor(input: StopApplicationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EMRServerlessClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StopApplicationCommandInput, StopApplicationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EMRServerlessClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ EMRServerlessClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRServerlessClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }