@aws-sdk/client-emr-containers 3.201.0 → 3.204.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-cjs/EMRContainers.js +60 -0
- package/dist-cjs/commands/CreateJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/DeleteJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/DescribeJobTemplateCommand.js +46 -0
- package/dist-cjs/commands/ListJobTemplatesCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +102 -26
- package/dist-cjs/pagination/ListJobTemplatesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +424 -1
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/EMRContainers.js +60 -0
- package/dist-es/commands/CreateJobTemplateCommand.js +42 -0
- package/dist-es/commands/DeleteJobTemplateCommand.js +42 -0
- package/dist-es/commands/DescribeJobTemplateCommand.js +42 -0
- package/dist-es/commands/ListJobTemplatesCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +82 -21
- package/dist-es/pagination/ListJobTemplatesPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +415 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/EMRContainers.d.ts +51 -10
- package/dist-types/EMRContainersClient.d.ts +6 -2
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +2 -2
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +3 -2
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +40 -0
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +3 -3
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +40 -0
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +382 -69
- package/dist-types/pagination/ListJobTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/EMRContainers.d.ts +68 -0
- package/dist-types/ts3.4/EMRContainersClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeJobTemplateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +152 -29
- package/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +6 -5
- package/CHANGELOG.md +0 -1258
|
@@ -8,14 +8,18 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
8
8
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
9
9
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
10
10
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand";
|
|
11
|
+
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
|
|
11
12
|
import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "./commands/CreateManagedEndpointCommand";
|
|
12
13
|
import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "./commands/CreateVirtualClusterCommand";
|
|
14
|
+
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "./commands/DeleteJobTemplateCommand";
|
|
13
15
|
import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "./commands/DeleteManagedEndpointCommand";
|
|
14
16
|
import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } from "./commands/DeleteVirtualClusterCommand";
|
|
15
17
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "./commands/DescribeJobRunCommand";
|
|
18
|
+
import { DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput } from "./commands/DescribeJobTemplateCommand";
|
|
16
19
|
import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "./commands/DescribeManagedEndpointCommand";
|
|
17
20
|
import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "./commands/DescribeVirtualClusterCommand";
|
|
18
21
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
22
|
+
import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "./commands/ListJobTemplatesCommand";
|
|
19
23
|
import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "./commands/ListManagedEndpointsCommand";
|
|
20
24
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
21
25
|
import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "./commands/ListVirtualClustersCommand";
|
|
@@ -23,8 +27,8 @@ import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/St
|
|
|
23
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
29
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
26
|
-
export declare type ServiceInputTypes = CancelJobRunCommandInput | CreateManagedEndpointCommandInput | CreateVirtualClusterCommandInput | DeleteManagedEndpointCommandInput | DeleteVirtualClusterCommandInput | DescribeJobRunCommandInput | DescribeManagedEndpointCommandInput | DescribeVirtualClusterCommandInput | ListJobRunsCommandInput | ListManagedEndpointsCommandInput | ListTagsForResourceCommandInput | ListVirtualClustersCommandInput | StartJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
27
|
-
export declare type ServiceOutputTypes = CancelJobRunCommandOutput | CreateManagedEndpointCommandOutput | CreateVirtualClusterCommandOutput | DeleteManagedEndpointCommandOutput | DeleteVirtualClusterCommandOutput | DescribeJobRunCommandOutput | DescribeManagedEndpointCommandOutput | DescribeVirtualClusterCommandOutput | ListJobRunsCommandOutput | ListManagedEndpointsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualClustersCommandOutput | StartJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
30
|
+
export declare type ServiceInputTypes = CancelJobRunCommandInput | CreateJobTemplateCommandInput | CreateManagedEndpointCommandInput | CreateVirtualClusterCommandInput | DeleteJobTemplateCommandInput | DeleteManagedEndpointCommandInput | DeleteVirtualClusterCommandInput | DescribeJobRunCommandInput | DescribeJobTemplateCommandInput | DescribeManagedEndpointCommandInput | DescribeVirtualClusterCommandInput | ListJobRunsCommandInput | ListJobTemplatesCommandInput | ListManagedEndpointsCommandInput | ListTagsForResourceCommandInput | ListVirtualClustersCommandInput | StartJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
31
|
+
export declare type ServiceOutputTypes = CancelJobRunCommandOutput | CreateJobTemplateCommandOutput | CreateManagedEndpointCommandOutput | CreateVirtualClusterCommandOutput | DeleteJobTemplateCommandOutput | DeleteManagedEndpointCommandOutput | DeleteVirtualClusterCommandOutput | DescribeJobRunCommandOutput | DescribeJobTemplateCommandOutput | DescribeManagedEndpointCommandOutput | DescribeVirtualClusterCommandOutput | ListJobRunsCommandOutput | ListJobTemplatesCommandOutput | ListManagedEndpointsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualClustersCommandOutput | StartJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
28
32
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
29
33
|
/**
|
|
30
34
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
|
+
import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0";
|
|
6
|
+
export interface CreateJobTemplateCommandInput extends CreateJobTemplateRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface CreateJobTemplateCommandOutput extends CreateJobTemplateResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Creates a job template. Job template stores values of StartJobRun API request in a
|
|
12
|
+
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
13
|
+
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
14
|
+
* API request.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { EMRContainersClient, CreateJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
19
|
+
* // const { EMRContainersClient, CreateJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
20
|
+
* const client = new EMRContainersClient(config);
|
|
21
|
+
* const command = new CreateJobTemplateCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link CreateJobTemplateCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link CreateJobTemplateCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class CreateJobTemplateCommand extends $Command<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
31
|
+
readonly input: CreateJobTemplateCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: CreateJobTemplateCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -8,8 +8,8 @@ export interface CreateManagedEndpointCommandInput extends CreateManagedEndpoint
|
|
|
8
8
|
export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpointResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Creates a managed endpoint. A managed endpoint is a gateway that connects EMR Studio
|
|
12
|
-
* Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.</p>
|
|
11
|
+
* <p>Creates a managed endpoint. A managed endpoint is a gateway that connects EMR Studio
|
|
12
|
+
* to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
15
|
* ```javascript
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
|
+
import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0";
|
|
6
|
+
export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Deletes a job template. Job template stores values of StartJobRun API request in a
|
|
12
|
+
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
13
|
+
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
14
|
+
* API request.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { EMRContainersClient, DeleteJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
19
|
+
* // const { EMRContainersClient, DeleteJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
20
|
+
* const client = new EMRContainersClient(config);
|
|
21
|
+
* const command = new DeleteJobTemplateCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link DeleteJobTemplateCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link DeleteJobTemplateCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class DeleteJobTemplateCommand extends $Command<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
31
|
+
readonly input: DeleteJobTemplateCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: DeleteJobTemplateCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -8,8 +8,9 @@ export interface DeleteManagedEndpointCommandInput extends DeleteManagedEndpoint
|
|
|
8
8
|
export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpointResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Deletes a managed endpoint. A managed endpoint is a gateway
|
|
12
|
-
* Amazon EMR on EKS so that EMR Studio
|
|
11
|
+
* <p>Deletes a managed endpoint. A managed endpoint is a gateway
|
|
12
|
+
* that connects EMR Studio to Amazon EMR on EKS so that EMR Studio
|
|
13
|
+
* can communicate with your virtual cluster.</p>
|
|
13
14
|
* @example
|
|
14
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
16
|
* ```javascript
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
|
+
import { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_0";
|
|
6
|
+
export interface DescribeJobTemplateCommandInput extends DescribeJobTemplateRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Displays detailed information about a specified job template. Job template stores values
|
|
12
|
+
* of StartJobRun API request in a template and can be used to start a job run. Job template
|
|
13
|
+
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
14
|
+
* certain values in StartJobRun API request.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { EMRContainersClient, DescribeJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
19
|
+
* // const { EMRContainersClient, DescribeJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
20
|
+
* const client = new EMRContainersClient(config);
|
|
21
|
+
* const command = new DescribeJobTemplateCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link DescribeJobTemplateCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link DescribeJobTemplateCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class DescribeJobTemplateCommand extends $Command<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput, EMRContainersClientResolvedConfig> {
|
|
31
|
+
readonly input: DescribeJobTemplateCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: DescribeJobTemplateCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -8,9 +8,9 @@ export interface DescribeManagedEndpointCommandInput extends DescribeManagedEndp
|
|
|
8
8
|
export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEndpointResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Displays detailed information about a managed endpoint. A managed endpoint is
|
|
12
|
-
* that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can
|
|
13
|
-
* virtual cluster.</p>
|
|
11
|
+
* <p>Displays detailed information about a managed endpoint. A managed endpoint is
|
|
12
|
+
* a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can
|
|
13
|
+
* communicate with your virtual cluster.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
5
|
+
import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0";
|
|
6
|
+
export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Lists job templates based on a set of parameters. Job template stores values of
|
|
12
|
+
* StartJobRun API request in a template and can be used to start a job run. Job template
|
|
13
|
+
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
14
|
+
* certain values in StartJobRun API request.</p>
|
|
15
|
+
* @example
|
|
16
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
17
|
+
* ```javascript
|
|
18
|
+
* import { EMRContainersClient, ListJobTemplatesCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
19
|
+
* // const { EMRContainersClient, ListJobTemplatesCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
20
|
+
* const client = new EMRContainersClient(config);
|
|
21
|
+
* const command = new ListJobTemplatesCommand(input);
|
|
22
|
+
* const response = await client.send(command);
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @see {@link ListJobTemplatesCommandInput} for command's `input` shape.
|
|
26
|
+
* @see {@link ListJobTemplatesCommandOutput} for command's `response` shape.
|
|
27
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class ListJobTemplatesCommand extends $Command<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, EMRContainersClientResolvedConfig> {
|
|
31
|
+
readonly input: ListJobTemplatesCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
|
+
constructor(input: ListJobTemplatesCommandInput);
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRContainersClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput>;
|
|
38
|
+
private serialize;
|
|
39
|
+
private deserialize;
|
|
40
|
+
}
|
|
@@ -8,9 +8,9 @@ export interface ListManagedEndpointsCommandInput extends ListManagedEndpointsRe
|
|
|
8
8
|
export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsResponse, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Lists managed endpoints based on a set of parameters. A managed endpoint
|
|
12
|
-
* that connects EMR Studio to Amazon EMR on EKS so that EMR Studio
|
|
13
|
-
* virtual cluster.</p>
|
|
11
|
+
* <p>Lists managed endpoints based on a set of parameters. A managed endpoint
|
|
12
|
+
* is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio
|
|
13
|
+
* can communicate with your virtual cluster.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
export * from "./CancelJobRunCommand";
|
|
2
|
+
export * from "./CreateJobTemplateCommand";
|
|
2
3
|
export * from "./CreateManagedEndpointCommand";
|
|
3
4
|
export * from "./CreateVirtualClusterCommand";
|
|
5
|
+
export * from "./DeleteJobTemplateCommand";
|
|
4
6
|
export * from "./DeleteManagedEndpointCommand";
|
|
5
7
|
export * from "./DeleteVirtualClusterCommand";
|
|
6
8
|
export * from "./DescribeJobRunCommand";
|
|
9
|
+
export * from "./DescribeJobTemplateCommand";
|
|
7
10
|
export * from "./DescribeManagedEndpointCommand";
|
|
8
11
|
export * from "./DescribeVirtualClusterCommand";
|
|
9
12
|
export * from "./ListJobRunsCommand";
|
|
13
|
+
export * from "./ListJobTemplatesCommand";
|
|
10
14
|
export * from "./ListManagedEndpointsCommand";
|
|
11
15
|
export * from "./ListTagsForResourceCommand";
|
|
12
16
|
export * from "./ListVirtualClustersCommand";
|