@aws-sdk/client-emr-serverless 3.295.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/EMRServerless.d.ts +16 -0
- package/dist-types/EMRServerlessClient.d.ts +24 -4
- package/dist-types/commands/CancelJobRunCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetDashboardForJobRunCommand.d.ts +16 -0
- package/dist-types/commands/GetJobRunCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.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/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/EMRServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +130 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListJobRunsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -16,6 +16,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
16
16
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
17
17
|
import { EMRServerlessClient } from "./EMRServerlessClient";
|
|
18
18
|
/**
|
|
19
|
+
* @public
|
|
19
20
|
* <p>Amazon EMR Serverless is a new deployment option for Amazon EMR. EMR Serverless provides
|
|
20
21
|
* a serverless runtime environment that simplifies running analytics applications using the
|
|
21
22
|
* latest open source frameworks such as Apache Spark and Apache Hive. With EMR Serverless,
|
|
@@ -41,18 +42,21 @@ import { EMRServerlessClient } from "./EMRServerlessClient";
|
|
|
41
42
|
*/
|
|
42
43
|
export declare class EMRServerless extends EMRServerlessClient {
|
|
43
44
|
/**
|
|
45
|
+
* @public
|
|
44
46
|
* <p>Cancels a job run.</p>
|
|
45
47
|
*/
|
|
46
48
|
cancelJobRun(args: CancelJobRunCommandInput, options?: __HttpHandlerOptions): Promise<CancelJobRunCommandOutput>;
|
|
47
49
|
cancelJobRun(args: CancelJobRunCommandInput, cb: (err: any, data?: CancelJobRunCommandOutput) => void): void;
|
|
48
50
|
cancelJobRun(args: CancelJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelJobRunCommandOutput) => void): void;
|
|
49
51
|
/**
|
|
52
|
+
* @public
|
|
50
53
|
* <p>Creates an application.</p>
|
|
51
54
|
*/
|
|
52
55
|
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
53
56
|
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
54
57
|
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
55
58
|
/**
|
|
59
|
+
* @public
|
|
56
60
|
* <p>Deletes an application. An application has to be in a stopped or created state in order
|
|
57
61
|
* to be deleted.</p>
|
|
58
62
|
*/
|
|
@@ -60,54 +64,63 @@ export declare class EMRServerless extends EMRServerlessClient {
|
|
|
60
64
|
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
61
65
|
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
62
66
|
/**
|
|
67
|
+
* @public
|
|
63
68
|
* <p>Displays detailed information about a specified application.</p>
|
|
64
69
|
*/
|
|
65
70
|
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
66
71
|
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
67
72
|
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
68
73
|
/**
|
|
74
|
+
* @public
|
|
69
75
|
* <p>Returns a URL to access the job run dashboard.</p>
|
|
70
76
|
*/
|
|
71
77
|
getDashboardForJobRun(args: GetDashboardForJobRunCommandInput, options?: __HttpHandlerOptions): Promise<GetDashboardForJobRunCommandOutput>;
|
|
72
78
|
getDashboardForJobRun(args: GetDashboardForJobRunCommandInput, cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void): void;
|
|
73
79
|
getDashboardForJobRun(args: GetDashboardForJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void): void;
|
|
74
80
|
/**
|
|
81
|
+
* @public
|
|
75
82
|
* <p>Displays detailed information about a job run.</p>
|
|
76
83
|
*/
|
|
77
84
|
getJobRun(args: GetJobRunCommandInput, options?: __HttpHandlerOptions): Promise<GetJobRunCommandOutput>;
|
|
78
85
|
getJobRun(args: GetJobRunCommandInput, cb: (err: any, data?: GetJobRunCommandOutput) => void): void;
|
|
79
86
|
getJobRun(args: GetJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobRunCommandOutput) => void): void;
|
|
80
87
|
/**
|
|
88
|
+
* @public
|
|
81
89
|
* <p>Lists applications based on a set of parameters.</p>
|
|
82
90
|
*/
|
|
83
91
|
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
84
92
|
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
85
93
|
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
86
94
|
/**
|
|
95
|
+
* @public
|
|
87
96
|
* <p>Lists job runs based on a set of parameters.</p>
|
|
88
97
|
*/
|
|
89
98
|
listJobRuns(args: ListJobRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobRunsCommandOutput>;
|
|
90
99
|
listJobRuns(args: ListJobRunsCommandInput, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
91
100
|
listJobRuns(args: ListJobRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobRunsCommandOutput) => void): void;
|
|
92
101
|
/**
|
|
102
|
+
* @public
|
|
93
103
|
* <p>Lists the tags assigned to the resources.</p>
|
|
94
104
|
*/
|
|
95
105
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
96
106
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
97
107
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
98
108
|
/**
|
|
109
|
+
* @public
|
|
99
110
|
* <p>Starts a specified application and initializes initial capacity if configured.</p>
|
|
100
111
|
*/
|
|
101
112
|
startApplication(args: StartApplicationCommandInput, options?: __HttpHandlerOptions): Promise<StartApplicationCommandOutput>;
|
|
102
113
|
startApplication(args: StartApplicationCommandInput, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
103
114
|
startApplication(args: StartApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartApplicationCommandOutput) => void): void;
|
|
104
115
|
/**
|
|
116
|
+
* @public
|
|
105
117
|
* <p>Starts a job run.</p>
|
|
106
118
|
*/
|
|
107
119
|
startJobRun(args: StartJobRunCommandInput, options?: __HttpHandlerOptions): Promise<StartJobRunCommandOutput>;
|
|
108
120
|
startJobRun(args: StartJobRunCommandInput, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
109
121
|
startJobRun(args: StartJobRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobRunCommandOutput) => void): void;
|
|
110
122
|
/**
|
|
123
|
+
* @public
|
|
111
124
|
* <p>Stops a specified application and releases initial capacity if configured. All scheduled
|
|
112
125
|
* and running jobs must be completed or cancelled before stopping an application.</p>
|
|
113
126
|
*/
|
|
@@ -115,6 +128,7 @@ export declare class EMRServerless extends EMRServerlessClient {
|
|
|
115
128
|
stopApplication(args: StopApplicationCommandInput, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
116
129
|
stopApplication(args: StopApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopApplicationCommandOutput) => void): void;
|
|
117
130
|
/**
|
|
131
|
+
* @public
|
|
118
132
|
* <p>Assigns tags to resources. A tag is a label that you assign to an AWS resource. Each tag
|
|
119
133
|
* consists of a key and an optional value, both of which you define. Tags enable you to
|
|
120
134
|
* categorize your AWS resources by attributes such as purpose, owner, or environment. When
|
|
@@ -125,12 +139,14 @@ export declare class EMRServerless extends EMRServerlessClient {
|
|
|
125
139
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
126
140
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
127
141
|
/**
|
|
142
|
+
* @public
|
|
128
143
|
* <p>Removes tags from resources.</p>
|
|
129
144
|
*/
|
|
130
145
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
131
146
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
132
147
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
133
148
|
/**
|
|
149
|
+
* @public
|
|
134
150
|
* <p>Updates a specified application. An application has to be in a stopped or created state
|
|
135
151
|
* in order to be updated.</p>
|
|
136
152
|
*/
|
|
@@ -23,15 +23,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
|
|
|
23
23
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
24
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
25
25
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
26
29
|
export type ServiceInputTypes = CancelJobRunCommandInput | CreateApplicationCommandInput | DeleteApplicationCommandInput | GetApplicationCommandInput | GetDashboardForJobRunCommandInput | GetJobRunCommandInput | ListApplicationsCommandInput | ListJobRunsCommandInput | ListTagsForResourceCommandInput | StartApplicationCommandInput | StartJobRunCommandInput | StopApplicationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput;
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
27
33
|
export type ServiceOutputTypes = CancelJobRunCommandOutput | CreateApplicationCommandOutput | DeleteApplicationCommandOutput | GetApplicationCommandOutput | GetDashboardForJobRunCommandOutput | GetJobRunCommandOutput | ListApplicationsCommandOutput | ListJobRunsCommandOutput | ListTagsForResourceCommandOutput | StartApplicationCommandOutput | StartJobRunCommandOutput | StopApplicationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput;
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
28
37
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
29
38
|
/**
|
|
30
39
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
31
40
|
*/
|
|
32
41
|
requestHandler?: __HttpHandler;
|
|
33
42
|
/**
|
|
34
|
-
* A constructor for a class implementing the {@link
|
|
43
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
35
44
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
36
45
|
* @internal
|
|
37
46
|
*/
|
|
@@ -121,23 +130,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
121
130
|
*/
|
|
122
131
|
logger?: __Logger;
|
|
123
132
|
/**
|
|
124
|
-
* The {@link
|
|
133
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
125
134
|
*/
|
|
126
135
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
127
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
128
140
|
type EMRServerlessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
129
141
|
/**
|
|
130
|
-
*
|
|
142
|
+
* @public
|
|
143
|
+
*
|
|
144
|
+
* The configuration interface of EMRServerlessClient class constructor that set the region, credentials and other options.
|
|
131
145
|
*/
|
|
132
146
|
export interface EMRServerlessClientConfig extends EMRServerlessClientConfigType {
|
|
133
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
134
151
|
type EMRServerlessClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
135
152
|
/**
|
|
136
|
-
*
|
|
153
|
+
* @public
|
|
154
|
+
*
|
|
155
|
+
* The resolved configuration interface of EMRServerlessClient class. This is resolved and normalized from the {@link EMRServerlessClientConfig | constructor configuration interface}.
|
|
137
156
|
*/
|
|
138
157
|
export interface EMRServerlessClientResolvedConfig extends EMRServerlessClientResolvedConfigType {
|
|
139
158
|
}
|
|
140
159
|
/**
|
|
160
|
+
* @public
|
|
141
161
|
* <p>Amazon EMR Serverless is a new deployment option for Amazon EMR. EMR Serverless provides
|
|
142
162
|
* a serverless runtime environment that simplifies running analytics applications using the
|
|
143
163
|
* latest open source frameworks such as Apache Spark and Apache Hive. With EMR Serverless,
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CancelJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CancelJobRunCommandInput extends CancelJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CancelJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Cancels a job run.</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 CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CancelJobRunCommandInput - {@link CancelJobRunCommandInput}
|
|
34
|
+
* @returns {@link CancelJobRunCommandOutput}
|
|
28
35
|
* @see {@link CancelJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CancelJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
43
50
|
export declare class CancelJobRunCommand extends $Command<CancelJobRunCommandInput, CancelJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: CancelJobRunCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: CancelJobRunCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelJobRunCommandInput, CancelJobRunCommandOutput>;
|
|
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 { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateApplicationCommandInput extends CreateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an application.</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 CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
34
|
+
* @returns {@link CreateApplicationCommandOutput}
|
|
28
35
|
* @see {@link CreateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
47
54
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
48
55
|
readonly input: CreateApplicationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: CreateApplicationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an application. An application has to be in a stopped or created state in order
|
|
18
23
|
* to be deleted.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
35
|
+
* @returns {@link DeleteApplicationCommandOutput}
|
|
29
36
|
* @see {@link DeleteApplicationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
44
51
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteApplicationCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteApplicationCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
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 { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a specified application.</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 GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
43
50
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetApplicationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetApplicationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
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 { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { GetDashboardForJobRunRequest, GetDashboardForJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDashboardForJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDashboardForJobRunCommandInput extends GetDashboardForJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDashboardForJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a URL to access the job run dashboard.</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 GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDashboardForJobRunCommandInput - {@link GetDashboardForJobRunCommandInput}
|
|
34
|
+
* @returns {@link GetDashboardForJobRunCommandOutput}
|
|
28
35
|
* @see {@link GetDashboardForJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDashboardForJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetDashboardForJobRunCommandOutput extends GetDashboardForJobRu
|
|
|
43
50
|
export declare class GetDashboardForJobRunCommand extends $Command<GetDashboardForJobRunCommandInput, GetDashboardForJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetDashboardForJobRunCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetDashboardForJobRunCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDashboardForJobRunCommandInput, GetDashboardForJobRunCommandOutput>;
|
|
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 { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { GetJobRunRequest, GetJobRunResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetJobRunCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetJobRunCommandInput extends GetJobRunRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetJobRunCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Displays detailed information about a job run.</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 GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetJobRunCommandInput - {@link GetJobRunCommandInput}
|
|
34
|
+
* @returns {@link GetJobRunCommandOutput}
|
|
28
35
|
* @see {@link GetJobRunCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetJobRunCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetJobRunCommandOutput extends GetJobRunResponse, __MetadataBea
|
|
|
43
50
|
export declare class GetJobRunCommand extends $Command<GetJobRunCommandInput, GetJobRunCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
44
51
|
readonly input: GetJobRunCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetJobRunCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobRunCommandInput, GetJobRunCommandOutput>;
|
|
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 { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
5
5
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists applications based on a set of parameters.</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 ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
40
47
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
41
48
|
readonly input: ListApplicationsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListApplicationsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
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.</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 ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListJobRunsCommandInput - {@link ListJobRunsCommandInput}
|
|
34
|
+
* @returns {@link ListJobRunsCommandOutput}
|
|
28
35
|
* @see {@link ListJobRunsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListJobRunsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
40
47
|
export declare class ListJobRunsCommand extends $Command<ListJobRunsCommandInput, ListJobRunsCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
41
48
|
readonly input: ListJobRunsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListJobRunsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobRunsCommandInput, ListJobRunsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient";
|
|
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 EMRServerlessClientResolvedConfig | config} for EMRServerlessClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EMRServerlessClientResolvedConfig> {
|
|
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: EMRServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|