@aws-sdk/client-emr-containers 3.529.1 → 3.535.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 +3 -1
- package/dist-types/EMRContainersClient.d.ts +1 -1
- package/dist-types/commands/CancelJobRunCommand.d.ts +2 -1
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +2 -1
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +2 -1
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +2 -1
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeJobRunCommand.d.ts +2 -1
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +2 -1
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +2 -1
- package/dist-types/commands/GetManagedEndpointSessionCredentialsCommand.d.ts +2 -1
- package/dist-types/commands/ListJobRunsCommand.d.ts +2 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +2 -1
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +2 -1
- package/dist-types/commands/StartJobRunCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +244 -244
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/EMRContainers.d.ts +2 -0
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeJobTemplateCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetManagedEndpointSessionCredentialsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -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.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
|
@@ -102,6 +102,7 @@ export interface EMRContainers {
|
|
|
102
102
|
/**
|
|
103
103
|
* @see {@link ListJobTemplatesCommand}
|
|
104
104
|
*/
|
|
105
|
+
listJobTemplates(): Promise<ListJobTemplatesCommandOutput>;
|
|
105
106
|
listJobTemplates(args: ListJobTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListJobTemplatesCommandOutput>;
|
|
106
107
|
listJobTemplates(args: ListJobTemplatesCommandInput, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
107
108
|
listJobTemplates(args: ListJobTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobTemplatesCommandOutput) => void): void;
|
|
@@ -120,6 +121,7 @@ export interface EMRContainers {
|
|
|
120
121
|
/**
|
|
121
122
|
* @see {@link ListVirtualClustersCommand}
|
|
122
123
|
*/
|
|
124
|
+
listVirtualClusters(): Promise<ListVirtualClustersCommandOutput>;
|
|
123
125
|
listVirtualClusters(args: ListVirtualClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListVirtualClustersCommandOutput>;
|
|
124
126
|
listVirtualClusters(args: ListVirtualClustersCommandInput, cb: (err: any, data?: ListVirtualClustersCommandOutput) => void): void;
|
|
125
127
|
listVirtualClusters(args: ListVirtualClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVirtualClustersCommandOutput) => void): void;
|
|
@@ -143,7 +145,6 @@ export interface EMRContainers {
|
|
|
143
145
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
144
146
|
}
|
|
145
147
|
/**
|
|
146
|
-
* @public
|
|
147
148
|
* <p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows
|
|
148
149
|
* you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS).
|
|
149
150
|
* With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications.
|
|
@@ -168,6 +169,7 @@ export interface EMRContainers {
|
|
|
168
169
|
* <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/service-quotas.html#service-endpoints">Amazon EMR on EKSService Endpoints</a>.</p>
|
|
169
170
|
* </li>
|
|
170
171
|
* </ul>
|
|
172
|
+
* @public
|
|
171
173
|
*/
|
|
172
174
|
export declare class EMRContainers extends EMRContainersClient implements EMRContainers {
|
|
173
175
|
}
|
|
@@ -171,7 +171,6 @@ export type EMRContainersClientResolvedConfigType = __SmithyResolvedConfiguratio
|
|
|
171
171
|
export interface EMRContainersClientResolvedConfig extends EMRContainersClientResolvedConfigType {
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows
|
|
176
175
|
* you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS).
|
|
177
176
|
* With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications.
|
|
@@ -196,6 +195,7 @@ export interface EMRContainersClientResolvedConfig extends EMRContainersClientRe
|
|
|
196
195
|
* <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/service-quotas.html#service-endpoints">Amazon EMR on EKSService Endpoints</a>.</p>
|
|
197
196
|
* </li>
|
|
198
197
|
* </ul>
|
|
198
|
+
* @public
|
|
199
199
|
*/
|
|
200
200
|
export declare class EMRContainersClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EMRContainersClientResolvedConfig> {
|
|
201
201
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelJobRunCommand_base: {
|
|
24
24
|
new (input: CancelJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Cancels a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
30
30
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
31
31
|
* @example
|
|
@@ -62,6 +62,7 @@ declare const CancelJobRunCommand_base: {
|
|
|
62
62
|
* @throws {@link EMRContainersServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class CancelJobRunCommand extends CancelJobRunCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateJobTemplateCommand_base: {
|
|
24
24
|
new (input: CreateJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a job template. Job template stores values of StartJobRun API request in a
|
|
30
30
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
31
31
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -128,6 +128,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
128
128
|
* @throws {@link EMRContainersServiceException}
|
|
129
129
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
130
130
|
*
|
|
131
|
+
* @public
|
|
131
132
|
*/
|
|
132
133
|
export declare class CreateJobTemplateCommand extends CreateJobTemplateCommand_base {
|
|
133
134
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateManagedEndpointCommand_base: {
|
|
24
24
|
new (input: CreateManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can
|
|
30
30
|
* communicate with your virtual cluster.</p>
|
|
31
31
|
* @example
|
|
@@ -108,6 +108,7 @@ declare const CreateManagedEndpointCommand_base: {
|
|
|
108
108
|
* @throws {@link EMRContainersServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
110
110
|
*
|
|
111
|
+
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class CreateManagedEndpointCommand extends CreateManagedEndpointCommand_base {
|
|
113
114
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateVirtualClusterCommand_base: {
|
|
24
24
|
new (input: CreateVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
30
30
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
31
31
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -80,6 +80,7 @@ declare const CreateVirtualClusterCommand_base: {
|
|
|
80
80
|
* @throws {@link EMRContainersServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class CreateVirtualClusterCommand extends CreateVirtualClusterCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteJobTemplateCommand_base: {
|
|
24
24
|
new (input: DeleteJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a job template. Job template stores values of StartJobRun API request in a
|
|
30
30
|
* template and can be used to start a job run. Job template allows two use cases: avoid
|
|
31
31
|
* repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
|
|
@@ -62,6 +62,7 @@ declare const DeleteJobTemplateCommand_base: {
|
|
|
62
62
|
* @throws {@link EMRContainersServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class DeleteJobTemplateCommand extends DeleteJobTemplateCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteManagedEndpointCommand_base: {
|
|
24
24
|
new (input: DeleteManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can
|
|
30
30
|
* communicate with your virtual cluster.</p>
|
|
31
31
|
* @example
|
|
@@ -62,6 +62,7 @@ declare const DeleteManagedEndpointCommand_base: {
|
|
|
62
62
|
* @throws {@link EMRContainersServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class DeleteManagedEndpointCommand extends DeleteManagedEndpointCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteVirtualClusterCommand_base: {
|
|
24
24
|
new (input: DeleteVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any
|
|
30
30
|
* additional resource in your system. A single virtual cluster maps to a single Kubernetes
|
|
31
31
|
* namespace. Given this relationship, you can model virtual clusters the same way you model
|
|
@@ -62,6 +62,7 @@ declare const DeleteVirtualClusterCommand_base: {
|
|
|
62
62
|
* @throws {@link EMRContainersServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class DeleteVirtualClusterCommand extends DeleteVirtualClusterCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobRunCommand_base: {
|
|
24
24
|
new (input: DescribeJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobRunCommandInput, DescribeJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays detailed information about a job run. A job run is a unit of work, such as a
|
|
30
30
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
31
31
|
* @example
|
|
@@ -133,6 +133,7 @@ declare const DescribeJobRunCommand_base: {
|
|
|
133
133
|
* @throws {@link EMRContainersServiceException}
|
|
134
134
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
135
135
|
*
|
|
136
|
+
* @public
|
|
136
137
|
*/
|
|
137
138
|
export declare class DescribeJobRunCommand extends DescribeJobRunCommand_base {
|
|
138
139
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeJobTemplateCommand_base: {
|
|
24
24
|
new (input: DescribeJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeJobTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays detailed information about a specified job template. Job template stores values
|
|
30
30
|
* of StartJobRun API request in a template and can be used to start a job run. Job template
|
|
31
31
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -131,6 +131,7 @@ declare const DescribeJobTemplateCommand_base: {
|
|
|
131
131
|
* @throws {@link EMRContainersServiceException}
|
|
132
132
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
133
133
|
*
|
|
134
|
+
* @public
|
|
134
135
|
*/
|
|
135
136
|
export declare class DescribeJobTemplateCommand extends DescribeJobTemplateCommand_base {
|
|
136
137
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeManagedEndpointCommand_base: {
|
|
24
24
|
new (input: DescribeManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeManagedEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays detailed information about a managed endpoint. A managed endpoint is a gateway
|
|
30
30
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.</p>
|
|
31
31
|
* @example
|
|
@@ -122,6 +122,7 @@ declare const DescribeManagedEndpointCommand_base: {
|
|
|
122
122
|
* @throws {@link EMRContainersServiceException}
|
|
123
123
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
124
124
|
*
|
|
125
|
+
* @public
|
|
125
126
|
*/
|
|
126
127
|
export declare class DescribeManagedEndpointCommand extends DescribeManagedEndpointCommand_base {
|
|
127
128
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeVirtualClusterCommand_base: {
|
|
24
24
|
new (input: DescribeVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeVirtualClusterCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Displays detailed information about a specified virtual cluster. Virtual cluster is a
|
|
30
30
|
* managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
31
31
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -85,6 +85,7 @@ declare const DescribeVirtualClusterCommand_base: {
|
|
|
85
85
|
* @throws {@link EMRContainersServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class DescribeVirtualClusterCommand extends DescribeVirtualClusterCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetManagedEndpointSessionCredentialsCommandOutput extends GetMa
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetManagedEndpointSessionCredentialsCommand_base: {
|
|
24
24
|
new (input: GetManagedEndpointSessionCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetManagedEndpointSessionCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Generate a session token to connect to a managed endpoint. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const GetManagedEndpointSessionCredentialsCommand_base: {
|
|
|
75
75
|
* @throws {@link EMRContainersServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetManagedEndpointSessionCredentialsCommand extends GetManagedEndpointSessionCredentialsCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListJobRunsCommand_base: {
|
|
24
24
|
new (input: ListJobRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListJobRunsCommandInput): import("@smithy/smithy-client").CommandImpl<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists job runs based on a set of parameters. A job run is a unit of work, such as a
|
|
30
30
|
* Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
31
31
|
* @example
|
|
@@ -140,6 +140,7 @@ declare const ListJobRunsCommand_base: {
|
|
|
140
140
|
* @throws {@link EMRContainersServiceException}
|
|
141
141
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
142
142
|
*
|
|
143
|
+
* @public
|
|
143
144
|
*/
|
|
144
145
|
export declare class ListJobRunsCommand extends ListJobRunsCommand_base {
|
|
145
146
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListJobTemplatesCommand_base: {
|
|
24
24
|
new (input: ListJobTemplatesCommandInput): import("@smithy/smithy-client").CommandImpl<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListJobTemplatesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists job templates based on a set of parameters. Job template stores values of
|
|
30
30
|
* StartJobRun API request in a template and can be used to start a job run. Job template
|
|
31
31
|
* allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing
|
|
@@ -134,6 +134,7 @@ declare const ListJobTemplatesCommand_base: {
|
|
|
134
134
|
* @throws {@link EMRContainersServiceException}
|
|
135
135
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
136
136
|
*
|
|
137
|
+
* @public
|
|
137
138
|
*/
|
|
138
139
|
export declare class ListJobTemplatesCommand extends ListJobTemplatesCommand_base {
|
|
139
140
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListManagedEndpointsCommand_base: {
|
|
24
24
|
new (input: ListManagedEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListManagedEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway
|
|
30
30
|
* that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.</p>
|
|
31
31
|
* @example
|
|
@@ -131,6 +131,7 @@ declare const ListManagedEndpointsCommand_base: {
|
|
|
131
131
|
* @throws {@link EMRContainersServiceException}
|
|
132
132
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
133
133
|
*
|
|
134
|
+
* @public
|
|
134
135
|
*/
|
|
135
136
|
export declare class ListManagedEndpointsCommand extends ListManagedEndpointsCommand_base {
|
|
136
137
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags assigned to the resources.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link EMRContainersServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListVirtualClustersCommand_base: {
|
|
24
24
|
new (input: ListVirtualClustersCommandInput): import("@smithy/smithy-client").CommandImpl<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListVirtualClustersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists information about the specified virtual cluster. Virtual cluster is a managed
|
|
30
30
|
* entity on Amazon EMR on EKS. You can create, describe, list and delete virtual
|
|
31
31
|
* clusters. They do not consume any additional resource in your system. A single virtual
|
|
@@ -93,6 +93,7 @@ declare const ListVirtualClustersCommand_base: {
|
|
|
93
93
|
* @throws {@link EMRContainersServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class ListVirtualClustersCommand extends ListVirtualClustersCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartJobRunCommand_base: {
|
|
24
24
|
new (input: StartJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartJobRunCommandInput, StartJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartJobRunCommandInput): import("@smithy/smithy-client").CommandImpl<StartJobRunCommandInput, StartJobRunCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Starts a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or
|
|
30
30
|
* SparkSQL query, that you submit to Amazon EMR on EKS.</p>
|
|
31
31
|
* @example
|
|
@@ -126,6 +126,7 @@ declare const StartJobRunCommand_base: {
|
|
|
126
126
|
* @throws {@link EMRContainersServiceException}
|
|
127
127
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
128
128
|
*
|
|
129
|
+
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class StartJobRunCommand extends StartJobRunCommand_base {
|
|
131
132
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services
|
|
30
30
|
* resource. Each tag consists of a key and an optional value, both of which you define. Tags
|
|
31
31
|
* enable you to categorize your Amazon Web Services resources by attributes such as purpose,
|
|
@@ -71,6 +71,7 @@ declare const TagResourceCommand_base: {
|
|
|
71
71
|
* @throws {@link EMRContainersServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from resources.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
|
|
|
63
63
|
* @throws {@link EMRContainersServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
68
69
|
}
|