@aws-sdk/client-emr-containers 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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/EMRContainers.d.ts +259 -80
  3. package/dist-types/ts3.4/EMRContainersClient.d.ts +195 -88
  4. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +435 -567
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  26. package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  35. 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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
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, EMRContainersClientResolvedConfig> {
11
- readonly input: CancelJobRunCommandInput;
12
- constructor(input: CancelJobRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, 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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
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
+ EMRContainersClientResolvedConfig
22
+ > {
23
+ readonly input: CancelJobRunCommandInput;
24
+ constructor(input: CancelJobRunCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRContainersClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CancelJobRunCommandInput, CancelJobRunCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { CreateManagedEndpointRequest, CreateManagedEndpointResponse } from "../models/models_0";
5
- export interface CreateManagedEndpointCommandInput extends CreateManagedEndpointRequest {
6
- }
7
- export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpointResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateManagedEndpointCommand extends $Command<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: CreateManagedEndpointCommandInput;
12
- constructor(input: CreateManagedEndpointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ CreateManagedEndpointRequest,
15
+ CreateManagedEndpointResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateManagedEndpointCommandInput
18
+ extends CreateManagedEndpointRequest {}
19
+ export interface CreateManagedEndpointCommandOutput
20
+ extends CreateManagedEndpointResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateManagedEndpointCommand extends $Command<
23
+ CreateManagedEndpointCommandInput,
24
+ CreateManagedEndpointCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: CreateManagedEndpointCommandInput;
28
+ constructor(input: CreateManagedEndpointCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateManagedEndpointCommandInput,
35
+ CreateManagedEndpointCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { CreateVirtualClusterRequest, CreateVirtualClusterResponse } from "../models/models_0";
5
- export interface CreateVirtualClusterCommandInput extends CreateVirtualClusterRequest {
6
- }
7
- export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateVirtualClusterCommand extends $Command<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: CreateVirtualClusterCommandInput;
12
- constructor(input: CreateVirtualClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ CreateVirtualClusterRequest,
15
+ CreateVirtualClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateVirtualClusterCommandInput
18
+ extends CreateVirtualClusterRequest {}
19
+ export interface CreateVirtualClusterCommandOutput
20
+ extends CreateVirtualClusterResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateVirtualClusterCommand extends $Command<
23
+ CreateVirtualClusterCommandInput,
24
+ CreateVirtualClusterCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: CreateVirtualClusterCommandInput;
28
+ constructor(input: CreateVirtualClusterCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ CreateVirtualClusterCommandInput,
35
+ CreateVirtualClusterCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { DeleteManagedEndpointRequest, DeleteManagedEndpointResponse } from "../models/models_0";
5
- export interface DeleteManagedEndpointCommandInput extends DeleteManagedEndpointRequest {
6
- }
7
- export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpointResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteManagedEndpointCommand extends $Command<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: DeleteManagedEndpointCommandInput;
12
- constructor(input: DeleteManagedEndpointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ DeleteManagedEndpointRequest,
15
+ DeleteManagedEndpointResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteManagedEndpointCommandInput
18
+ extends DeleteManagedEndpointRequest {}
19
+ export interface DeleteManagedEndpointCommandOutput
20
+ extends DeleteManagedEndpointResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteManagedEndpointCommand extends $Command<
23
+ DeleteManagedEndpointCommandInput,
24
+ DeleteManagedEndpointCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteManagedEndpointCommandInput;
28
+ constructor(input: DeleteManagedEndpointCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteManagedEndpointCommandInput,
35
+ DeleteManagedEndpointCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { DeleteVirtualClusterRequest, DeleteVirtualClusterResponse } from "../models/models_0";
5
- export interface DeleteVirtualClusterCommandInput extends DeleteVirtualClusterRequest {
6
- }
7
- export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteVirtualClusterCommand extends $Command<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: DeleteVirtualClusterCommandInput;
12
- constructor(input: DeleteVirtualClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ DeleteVirtualClusterRequest,
15
+ DeleteVirtualClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteVirtualClusterCommandInput
18
+ extends DeleteVirtualClusterRequest {}
19
+ export interface DeleteVirtualClusterCommandOutput
20
+ extends DeleteVirtualClusterResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteVirtualClusterCommand extends $Command<
23
+ DeleteVirtualClusterCommandInput,
24
+ DeleteVirtualClusterCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteVirtualClusterCommandInput;
28
+ constructor(input: DeleteVirtualClusterCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteVirtualClusterCommandInput,
35
+ DeleteVirtualClusterCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0";
5
- export interface DescribeJobRunCommandInput extends DescribeJobRunRequest {
6
- }
7
- export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobRunCommand extends $Command<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: DescribeJobRunCommandInput;
12
- constructor(input: DescribeJobRunCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobRunCommandInput, DescribeJobRunCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ DescribeJobRunRequest,
15
+ DescribeJobRunResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeJobRunCommandInput extends DescribeJobRunRequest {}
18
+ export interface DescribeJobRunCommandOutput
19
+ extends DescribeJobRunResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeJobRunCommand extends $Command<
22
+ DescribeJobRunCommandInput,
23
+ DescribeJobRunCommandOutput,
24
+ EMRContainersClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeJobRunCommandInput;
27
+ constructor(input: DescribeJobRunCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EMRContainersClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeJobRunCommandInput, DescribeJobRunCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { DescribeManagedEndpointRequest, DescribeManagedEndpointResponse } from "../models/models_0";
5
- export interface DescribeManagedEndpointCommandInput extends DescribeManagedEndpointRequest {
6
- }
7
- export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEndpointResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeManagedEndpointCommand extends $Command<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: DescribeManagedEndpointCommandInput;
12
- constructor(input: DescribeManagedEndpointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ DescribeManagedEndpointRequest,
15
+ DescribeManagedEndpointResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeManagedEndpointCommandInput
18
+ extends DescribeManagedEndpointRequest {}
19
+ export interface DescribeManagedEndpointCommandOutput
20
+ extends DescribeManagedEndpointResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeManagedEndpointCommand extends $Command<
23
+ DescribeManagedEndpointCommandInput,
24
+ DescribeManagedEndpointCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeManagedEndpointCommandInput;
28
+ constructor(input: DescribeManagedEndpointCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeManagedEndpointCommandInput,
35
+ DescribeManagedEndpointCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { DescribeVirtualClusterRequest, DescribeVirtualClusterResponse } from "../models/models_0";
5
- export interface DescribeVirtualClusterCommandInput extends DescribeVirtualClusterRequest {
6
- }
7
- export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeVirtualClusterCommand extends $Command<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: DescribeVirtualClusterCommandInput;
12
- constructor(input: DescribeVirtualClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ DescribeVirtualClusterRequest,
15
+ DescribeVirtualClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeVirtualClusterCommandInput
18
+ extends DescribeVirtualClusterRequest {}
19
+ export interface DescribeVirtualClusterCommandOutput
20
+ extends DescribeVirtualClusterResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeVirtualClusterCommand extends $Command<
23
+ DescribeVirtualClusterCommandInput,
24
+ DescribeVirtualClusterCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeVirtualClusterCommandInput;
28
+ constructor(input: DescribeVirtualClusterCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeVirtualClusterCommandInput,
35
+ DescribeVirtualClusterCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
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, EMRContainersClientResolvedConfig> {
11
- readonly input: ListJobRunsCommandInput;
12
- constructor(input: ListJobRunsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, 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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
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
+ EMRContainersClientResolvedConfig
22
+ > {
23
+ readonly input: ListJobRunsCommandInput;
24
+ constructor(input: ListJobRunsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EMRContainersClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListJobRunsCommandInput, ListJobRunsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
4
- import { ListManagedEndpointsRequest, ListManagedEndpointsResponse } from "../models/models_0";
5
- export interface ListManagedEndpointsCommandInput extends ListManagedEndpointsRequest {
6
- }
7
- export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListManagedEndpointsCommand extends $Command<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput, EMRContainersClientResolvedConfig> {
11
- readonly input: ListManagedEndpointsCommandInput;
12
- constructor(input: ListManagedEndpointsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput>;
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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
13
+ import {
14
+ ListManagedEndpointsRequest,
15
+ ListManagedEndpointsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListManagedEndpointsCommandInput
18
+ extends ListManagedEndpointsRequest {}
19
+ export interface ListManagedEndpointsCommandOutput
20
+ extends ListManagedEndpointsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListManagedEndpointsCommand extends $Command<
23
+ ListManagedEndpointsCommandInput,
24
+ ListManagedEndpointsCommandOutput,
25
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: ListManagedEndpointsCommandInput;
28
+ constructor(input: ListManagedEndpointsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListManagedEndpointsCommandInput,
35
+ ListManagedEndpointsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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 { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
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, EMRContainersClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, 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
+ EMRContainersClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EMRContainersClient";
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
+ EMRContainersClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EMRContainersClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }