@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/EMRContainers.d.ts +259 -80
- package/dist-types/ts3.4/EMRContainersClient.d.ts +195 -88
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +435 -567
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|