@aws-sdk/client-emr-containers 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/EMRContainers.d.ts +20 -0
- package/dist-types/EMRContainersClient.d.ts +24 -4
- package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +16 -0
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/EMRContainersServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +165 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListManagedEndpointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVirtualClustersPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobTemplateCommandInput extends DescribeJobTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a specified job template. Job template stores values
|
|
18
23
|
* of StartJobRun API request in a template and can be used to start a job run. Job template
|
|
19
24
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -28,6 +33,8 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeJobTemplateCommandInput - {@link DescribeJobTemplateCommandInput}
|
|
37
|
+
* @returns {@link DescribeJobTemplateCommandOutput}
|
|
31
38
|
* @see {@link DescribeJobTemplateCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeJobTemplateCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
|
|
|
46
53
|
export declare class DescribeJobTemplateCommand extends $Command<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
47
54
|
readonly input: DescribeJobTemplateCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DescribeJobTemplateCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DescribeManagedEndpointRequest, DescribeManagedEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeManagedEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeManagedEndpointCommandInput extends DescribeManagedEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeManagedEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a managed endpoint. A managed endpoint is a gateway
|
|
18
23
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with
|
|
19
24
|
* your virtual cluster.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeManagedEndpointCommandInput - {@link DescribeManagedEndpointCommandInput}
|
|
36
|
+
* @returns {@link DescribeManagedEndpointCommandOutput}
|
|
30
37
|
* @see {@link DescribeManagedEndpointCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeManagedEndpointCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
|
|
|
45
52
|
export declare class DescribeManagedEndpointCommand extends $Command<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput, EMRContainersClientResolvedConfig> {
|
|
46
53
|
readonly input: DescribeManagedEndpointCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: DescribeManagedEndpointCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { DescribeVirtualClusterRequest, DescribeVirtualClusterResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeVirtualClusterCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeVirtualClusterCommandInput extends DescribeVirtualClusterRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeVirtualClusterCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClusterResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a specified virtual cluster. Virtual cluster is a
|
|
18
23
|
* managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
19
24
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -30,6 +35,8 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DescribeVirtualClusterCommandInput - {@link DescribeVirtualClusterCommandInput}
|
|
39
|
+
* @returns {@link DescribeVirtualClusterCommandOutput}
|
|
33
40
|
* @see {@link DescribeVirtualClusterCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DescribeVirtualClusterCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
|
|
|
48
55
|
export declare class DescribeVirtualClusterCommand extends $Command<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput, EMRContainersClientResolvedConfig> {
|
|
49
56
|
readonly input: DescribeVirtualClusterCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DescribeVirtualClusterCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListJobRunsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListJobRunsCommandInput extends ListJobRunsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListJobRunsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists job runs based on a set of parameters. A job run is a unit of work, such as a
|
|
18
23
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListJobRunsCommandInput - {@link ListJobRunsCommandInput}
|
|
35
|
+
* @returns {@link ListJobRunsCommandOutput}
|
|
29
36
|
* @see {@link ListJobRunsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListJobRunsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
41
48
|
export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRContainersClientResolvedConfig> {
|
|
42
49
|
readonly input: ListJobRunsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListJobRunsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobRunsCommandInput, ListJobRunsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListJobTemplatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListJobTemplatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists job templates based on a set of parameters. Job template stores values of
|
|
18
23
|
* StartJobRun API request in a template and can be used to start a job run. Job template
|
|
19
24
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -28,6 +33,8 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListJobTemplatesCommandInput - {@link ListJobTemplatesCommandInput}
|
|
37
|
+
* @returns {@link ListJobTemplatesCommandOutput}
|
|
31
38
|
* @see {@link ListJobTemplatesCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListJobTemplatesCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
|
|
|
43
50
|
export declare class ListJobTemplatesCommand extends $Command<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, EMRContainersClientResolvedConfig> {
|
|
44
51
|
readonly input: ListJobTemplatesCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListJobTemplatesCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { ListManagedEndpointsRequest, ListManagedEndpointsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListManagedEndpointsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListManagedEndpointsCommandInput extends ListManagedEndpointsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListManagedEndpointsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway
|
|
18
23
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with
|
|
19
24
|
* your virtual cluster.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListManagedEndpointsCommandInput - {@link ListManagedEndpointsCommandInput}
|
|
36
|
+
* @returns {@link ListManagedEndpointsCommandOutput}
|
|
30
37
|
* @see {@link ListManagedEndpointsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListManagedEndpointsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
|
|
|
42
49
|
export declare class ListManagedEndpointsCommand extends $Command<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput, EMRContainersClientResolvedConfig> {
|
|
43
50
|
readonly input: ListManagedEndpointsCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: ListManagedEndpointsCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags assigned to the resources.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRContainersClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { ListVirtualClustersRequest, ListVirtualClustersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListVirtualClustersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListVirtualClustersCommandInput extends ListVirtualClustersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListVirtualClustersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListVirtualClustersCommandOutput extends ListVirtualClustersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists information about the specified virtual cluster. Virtual cluster is a managed
|
|
18
23
|
* entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
19
24
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -30,6 +35,8 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListVirtualClustersCommandInput - {@link ListVirtualClustersCommandInput}
|
|
39
|
+
* @returns {@link ListVirtualClustersCommandOutput}
|
|
33
40
|
* @see {@link ListVirtualClustersCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListVirtualClustersCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
|
|
|
45
52
|
export declare class ListVirtualClustersCommand extends $Command<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput, EMRContainersClientResolvedConfig> {
|
|
46
53
|
readonly input: ListVirtualClustersCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListVirtualClustersCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartJobRunCommandInput extends StartJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartJobRunCommandOutput extends StartJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
18
23
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartJobRunCommandInput - {@link StartJobRunCommandInput}
|
|
35
|
+
* @returns {@link StartJobRunCommandOutput}
|
|
29
36
|
* @see {@link StartJobRunCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartJobRunCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
44
51
|
export declare class StartJobRunCommand extends $Command<StartJobRunCommandInput, StartJobRunCommandOutput, EMRContainersClientResolvedConfig> {
|
|
45
52
|
readonly input: StartJobRunCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: StartJobRunCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartJobRunCommandInput, StartJobRunCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag
|
|
18
23
|
* consists of a key and an optional value, both of which you define. Tags enable you to
|
|
19
24
|
* categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When
|
|
@@ -32,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
41
|
+
* @returns {@link TagResourceCommandOutput}
|
|
35
42
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EMRContainersClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from resources.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
43
50
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EMRContainersClientResolvedConfig> {
|
|
44
51
|
readonly input: UntagResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UntagResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from EMRContainers service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class EMRContainersServiceException extends __ServiceException {
|