@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,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
|
+
ListVirtualClustersRequest,
|
|
15
|
+
ListVirtualClustersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListVirtualClustersCommandInput
|
|
18
|
+
extends ListVirtualClustersRequest {}
|
|
19
|
+
export interface ListVirtualClustersCommandOutput
|
|
20
|
+
extends ListVirtualClustersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListVirtualClustersCommand extends $Command<
|
|
23
|
+
ListVirtualClustersCommandInput,
|
|
24
|
+
ListVirtualClustersCommandOutput,
|
|
25
|
+
EMRContainersClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListVirtualClustersCommandInput;
|
|
28
|
+
constructor(input: ListVirtualClustersCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -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 { 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
|
+
EMRContainersClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: StartJobRunCommandInput;
|
|
24
|
+
constructor(input: StartJobRunCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<StartJobRunCommandInput, StartJobRunCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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 { 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
|
+
EMRContainersClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
EMRContainersClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: EMRContainersClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from "./CancelJobRunCommand";
|
|
2
|
-
export * from "./CreateManagedEndpointCommand";
|
|
3
|
-
export * from "./CreateVirtualClusterCommand";
|
|
4
|
-
export * from "./DeleteManagedEndpointCommand";
|
|
5
|
-
export * from "./DeleteVirtualClusterCommand";
|
|
6
|
-
export * from "./DescribeJobRunCommand";
|
|
7
|
-
export * from "./DescribeManagedEndpointCommand";
|
|
8
|
-
export * from "./DescribeVirtualClusterCommand";
|
|
9
|
-
export * from "./ListJobRunsCommand";
|
|
10
|
-
export * from "./ListManagedEndpointsCommand";
|
|
11
|
-
export * from "./ListTagsForResourceCommand";
|
|
12
|
-
export * from "./ListVirtualClustersCommand";
|
|
13
|
-
export * from "./StartJobRunCommand";
|
|
14
|
-
export * from "./TagResourceCommand";
|
|
15
|
-
export * from "./UntagResourceCommand";
|
|
1
|
+
export * from "./CancelJobRunCommand";
|
|
2
|
+
export * from "./CreateManagedEndpointCommand";
|
|
3
|
+
export * from "./CreateVirtualClusterCommand";
|
|
4
|
+
export * from "./DeleteManagedEndpointCommand";
|
|
5
|
+
export * from "./DeleteVirtualClusterCommand";
|
|
6
|
+
export * from "./DescribeJobRunCommand";
|
|
7
|
+
export * from "./DescribeManagedEndpointCommand";
|
|
8
|
+
export * from "./DescribeVirtualClusterCommand";
|
|
9
|
+
export * from "./ListJobRunsCommand";
|
|
10
|
+
export * from "./ListManagedEndpointsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./ListVirtualClustersCommand";
|
|
13
|
+
export * from "./StartJobRunCommand";
|
|
14
|
+
export * from "./TagResourceCommand";
|
|
15
|
+
export * from "./UntagResourceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./EMRContainers";
|
|
2
|
-
export * from "./EMRContainersClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { EMRContainersServiceException } from "./models/EMRContainersServiceException";
|
|
1
|
+
export * from "./EMRContainers";
|
|
2
|
+
export * from "./EMRContainersClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { EMRContainersServiceException } from "./models/EMRContainersServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class EMRContainersServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|