@aws-sdk/client-emr-serverless 3.1087.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/EMRServerless.d.ts +76 -93
- package/dist-types/ts3.4/EMRServerlessClient.d.ts +11 -36
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDashboardForJobRunCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetJobRunCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetResourceDashboardCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetSessionEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListJobRunAttemptsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- package/dist-types/ts3.4/models/models_0.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -23,18 +23,12 @@ import {
|
|
|
23
23
|
GetDashboardForJobRunCommandInput,
|
|
24
24
|
GetDashboardForJobRunCommandOutput,
|
|
25
25
|
} from "./commands/GetDashboardForJobRunCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetJobRunCommandInput,
|
|
28
|
-
GetJobRunCommandOutput,
|
|
29
|
-
} from "./commands/GetJobRunCommand";
|
|
26
|
+
import { GetJobRunCommandInput, GetJobRunCommandOutput } from "./commands/GetJobRunCommand";
|
|
30
27
|
import {
|
|
31
28
|
GetResourceDashboardCommandInput,
|
|
32
29
|
GetResourceDashboardCommandOutput,
|
|
33
30
|
} from "./commands/GetResourceDashboardCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetSessionCommandInput,
|
|
36
|
-
GetSessionCommandOutput,
|
|
37
|
-
} from "./commands/GetSessionCommand";
|
|
31
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
38
32
|
import {
|
|
39
33
|
GetSessionEndpointCommandInput,
|
|
40
34
|
GetSessionEndpointCommandOutput,
|
|
@@ -47,10 +41,7 @@ import {
|
|
|
47
41
|
ListJobRunAttemptsCommandInput,
|
|
48
42
|
ListJobRunAttemptsCommandOutput,
|
|
49
43
|
} from "./commands/ListJobRunAttemptsCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListJobRunsCommandInput,
|
|
52
|
-
ListJobRunsCommandOutput,
|
|
53
|
-
} from "./commands/ListJobRunsCommand";
|
|
44
|
+
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
54
45
|
import {
|
|
55
46
|
ListSessionsCommandInput,
|
|
56
47
|
ListSessionsCommandOutput,
|
|
@@ -63,10 +54,7 @@ import {
|
|
|
63
54
|
StartApplicationCommandInput,
|
|
64
55
|
StartApplicationCommandOutput,
|
|
65
56
|
} from "./commands/StartApplicationCommand";
|
|
66
|
-
import {
|
|
67
|
-
StartJobRunCommandInput,
|
|
68
|
-
StartJobRunCommandOutput,
|
|
69
|
-
} from "./commands/StartJobRunCommand";
|
|
57
|
+
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
70
58
|
import {
|
|
71
59
|
StartSessionCommandInput,
|
|
72
60
|
StartSessionCommandOutput,
|
|
@@ -75,10 +63,7 @@ import {
|
|
|
75
63
|
StopApplicationCommandInput,
|
|
76
64
|
StopApplicationCommandOutput,
|
|
77
65
|
} from "./commands/StopApplicationCommand";
|
|
78
|
-
import {
|
|
79
|
-
TagResourceCommandInput,
|
|
80
|
-
TagResourceCommandOutput,
|
|
81
|
-
} from "./commands/TagResourceCommand";
|
|
66
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
82
67
|
import {
|
|
83
68
|
TerminateSessionCommandInput,
|
|
84
69
|
TerminateSessionCommandOutput,
|
|
@@ -95,320 +80,318 @@ import { EMRServerlessClient } from "./EMRServerlessClient";
|
|
|
95
80
|
export interface EMRServerless {
|
|
96
81
|
cancelJobRun(
|
|
97
82
|
args: CancelJobRunCommandInput,
|
|
98
|
-
options?: __HttpHandlerOptions
|
|
83
|
+
options?: __HttpHandlerOptions,
|
|
99
84
|
): Promise<CancelJobRunCommandOutput>;
|
|
100
85
|
cancelJobRun(
|
|
101
86
|
args: CancelJobRunCommandInput,
|
|
102
|
-
cb: (err: any, data?: CancelJobRunCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: CancelJobRunCommandOutput) => void,
|
|
103
88
|
): void;
|
|
104
89
|
cancelJobRun(
|
|
105
90
|
args: CancelJobRunCommandInput,
|
|
106
91
|
options: __HttpHandlerOptions,
|
|
107
|
-
cb: (err: any, data?: CancelJobRunCommandOutput) => void
|
|
92
|
+
cb: (err: any, data?: CancelJobRunCommandOutput) => void,
|
|
108
93
|
): void;
|
|
109
94
|
createApplication(
|
|
110
95
|
args: CreateApplicationCommandInput,
|
|
111
|
-
options?: __HttpHandlerOptions
|
|
96
|
+
options?: __HttpHandlerOptions,
|
|
112
97
|
): Promise<CreateApplicationCommandOutput>;
|
|
113
98
|
createApplication(
|
|
114
99
|
args: CreateApplicationCommandInput,
|
|
115
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
116
101
|
): void;
|
|
117
102
|
createApplication(
|
|
118
103
|
args: CreateApplicationCommandInput,
|
|
119
104
|
options: __HttpHandlerOptions,
|
|
120
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
105
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
121
106
|
): void;
|
|
122
107
|
deleteApplication(
|
|
123
108
|
args: DeleteApplicationCommandInput,
|
|
124
|
-
options?: __HttpHandlerOptions
|
|
109
|
+
options?: __HttpHandlerOptions,
|
|
125
110
|
): Promise<DeleteApplicationCommandOutput>;
|
|
126
111
|
deleteApplication(
|
|
127
112
|
args: DeleteApplicationCommandInput,
|
|
128
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
129
114
|
): void;
|
|
130
115
|
deleteApplication(
|
|
131
116
|
args: DeleteApplicationCommandInput,
|
|
132
117
|
options: __HttpHandlerOptions,
|
|
133
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
118
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
134
119
|
): void;
|
|
135
120
|
getApplication(
|
|
136
121
|
args: GetApplicationCommandInput,
|
|
137
|
-
options?: __HttpHandlerOptions
|
|
122
|
+
options?: __HttpHandlerOptions,
|
|
138
123
|
): Promise<GetApplicationCommandOutput>;
|
|
139
124
|
getApplication(
|
|
140
125
|
args: GetApplicationCommandInput,
|
|
141
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
142
127
|
): void;
|
|
143
128
|
getApplication(
|
|
144
129
|
args: GetApplicationCommandInput,
|
|
145
130
|
options: __HttpHandlerOptions,
|
|
146
|
-
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
131
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void,
|
|
147
132
|
): void;
|
|
148
133
|
getDashboardForJobRun(
|
|
149
134
|
args: GetDashboardForJobRunCommandInput,
|
|
150
|
-
options?: __HttpHandlerOptions
|
|
135
|
+
options?: __HttpHandlerOptions,
|
|
151
136
|
): Promise<GetDashboardForJobRunCommandOutput>;
|
|
152
137
|
getDashboardForJobRun(
|
|
153
138
|
args: GetDashboardForJobRunCommandInput,
|
|
154
|
-
cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void,
|
|
155
140
|
): void;
|
|
156
141
|
getDashboardForJobRun(
|
|
157
142
|
args: GetDashboardForJobRunCommandInput,
|
|
158
143
|
options: __HttpHandlerOptions,
|
|
159
|
-
cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void
|
|
144
|
+
cb: (err: any, data?: GetDashboardForJobRunCommandOutput) => void,
|
|
160
145
|
): void;
|
|
161
146
|
getJobRun(
|
|
162
147
|
args: GetJobRunCommandInput,
|
|
163
|
-
options?: __HttpHandlerOptions
|
|
148
|
+
options?: __HttpHandlerOptions,
|
|
164
149
|
): Promise<GetJobRunCommandOutput>;
|
|
165
150
|
getJobRun(
|
|
166
151
|
args: GetJobRunCommandInput,
|
|
167
|
-
cb: (err: any, data?: GetJobRunCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: GetJobRunCommandOutput) => void,
|
|
168
153
|
): void;
|
|
169
154
|
getJobRun(
|
|
170
155
|
args: GetJobRunCommandInput,
|
|
171
156
|
options: __HttpHandlerOptions,
|
|
172
|
-
cb: (err: any, data?: GetJobRunCommandOutput) => void
|
|
157
|
+
cb: (err: any, data?: GetJobRunCommandOutput) => void,
|
|
173
158
|
): void;
|
|
174
159
|
getResourceDashboard(
|
|
175
160
|
args: GetResourceDashboardCommandInput,
|
|
176
|
-
options?: __HttpHandlerOptions
|
|
161
|
+
options?: __HttpHandlerOptions,
|
|
177
162
|
): Promise<GetResourceDashboardCommandOutput>;
|
|
178
163
|
getResourceDashboard(
|
|
179
164
|
args: GetResourceDashboardCommandInput,
|
|
180
|
-
cb: (err: any, data?: GetResourceDashboardCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: GetResourceDashboardCommandOutput) => void,
|
|
181
166
|
): void;
|
|
182
167
|
getResourceDashboard(
|
|
183
168
|
args: GetResourceDashboardCommandInput,
|
|
184
169
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (err: any, data?: GetResourceDashboardCommandOutput) => void
|
|
170
|
+
cb: (err: any, data?: GetResourceDashboardCommandOutput) => void,
|
|
186
171
|
): void;
|
|
187
172
|
getSession(
|
|
188
173
|
args: GetSessionCommandInput,
|
|
189
|
-
options?: __HttpHandlerOptions
|
|
174
|
+
options?: __HttpHandlerOptions,
|
|
190
175
|
): Promise<GetSessionCommandOutput>;
|
|
191
176
|
getSession(
|
|
192
177
|
args: GetSessionCommandInput,
|
|
193
|
-
cb: (err: any, data?: GetSessionCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: GetSessionCommandOutput) => void,
|
|
194
179
|
): void;
|
|
195
180
|
getSession(
|
|
196
181
|
args: GetSessionCommandInput,
|
|
197
182
|
options: __HttpHandlerOptions,
|
|
198
|
-
cb: (err: any, data?: GetSessionCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: GetSessionCommandOutput) => void,
|
|
199
184
|
): void;
|
|
200
185
|
getSessionEndpoint(
|
|
201
186
|
args: GetSessionEndpointCommandInput,
|
|
202
|
-
options?: __HttpHandlerOptions
|
|
187
|
+
options?: __HttpHandlerOptions,
|
|
203
188
|
): Promise<GetSessionEndpointCommandOutput>;
|
|
204
189
|
getSessionEndpoint(
|
|
205
190
|
args: GetSessionEndpointCommandInput,
|
|
206
|
-
cb: (err: any, data?: GetSessionEndpointCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: GetSessionEndpointCommandOutput) => void,
|
|
207
192
|
): void;
|
|
208
193
|
getSessionEndpoint(
|
|
209
194
|
args: GetSessionEndpointCommandInput,
|
|
210
195
|
options: __HttpHandlerOptions,
|
|
211
|
-
cb: (err: any, data?: GetSessionEndpointCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: GetSessionEndpointCommandOutput) => void,
|
|
212
197
|
): void;
|
|
213
198
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
214
199
|
listApplications(
|
|
215
200
|
args: ListApplicationsCommandInput,
|
|
216
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
217
202
|
): Promise<ListApplicationsCommandOutput>;
|
|
218
203
|
listApplications(
|
|
219
204
|
args: ListApplicationsCommandInput,
|
|
220
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
221
206
|
): void;
|
|
222
207
|
listApplications(
|
|
223
208
|
args: ListApplicationsCommandInput,
|
|
224
209
|
options: __HttpHandlerOptions,
|
|
225
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
226
211
|
): void;
|
|
227
212
|
listJobRunAttempts(
|
|
228
213
|
args: ListJobRunAttemptsCommandInput,
|
|
229
|
-
options?: __HttpHandlerOptions
|
|
214
|
+
options?: __HttpHandlerOptions,
|
|
230
215
|
): Promise<ListJobRunAttemptsCommandOutput>;
|
|
231
216
|
listJobRunAttempts(
|
|
232
217
|
args: ListJobRunAttemptsCommandInput,
|
|
233
|
-
cb: (err: any, data?: ListJobRunAttemptsCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: ListJobRunAttemptsCommandOutput) => void,
|
|
234
219
|
): void;
|
|
235
220
|
listJobRunAttempts(
|
|
236
221
|
args: ListJobRunAttemptsCommandInput,
|
|
237
222
|
options: __HttpHandlerOptions,
|
|
238
|
-
cb: (err: any, data?: ListJobRunAttemptsCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: ListJobRunAttemptsCommandOutput) => void,
|
|
239
224
|
): void;
|
|
240
225
|
listJobRuns(
|
|
241
226
|
args: ListJobRunsCommandInput,
|
|
242
|
-
options?: __HttpHandlerOptions
|
|
227
|
+
options?: __HttpHandlerOptions,
|
|
243
228
|
): Promise<ListJobRunsCommandOutput>;
|
|
244
229
|
listJobRuns(
|
|
245
230
|
args: ListJobRunsCommandInput,
|
|
246
|
-
cb: (err: any, data?: ListJobRunsCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: ListJobRunsCommandOutput) => void,
|
|
247
232
|
): void;
|
|
248
233
|
listJobRuns(
|
|
249
234
|
args: ListJobRunsCommandInput,
|
|
250
235
|
options: __HttpHandlerOptions,
|
|
251
|
-
cb: (err: any, data?: ListJobRunsCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: ListJobRunsCommandOutput) => void,
|
|
252
237
|
): void;
|
|
253
238
|
listSessions(
|
|
254
239
|
args: ListSessionsCommandInput,
|
|
255
|
-
options?: __HttpHandlerOptions
|
|
240
|
+
options?: __HttpHandlerOptions,
|
|
256
241
|
): Promise<ListSessionsCommandOutput>;
|
|
257
242
|
listSessions(
|
|
258
243
|
args: ListSessionsCommandInput,
|
|
259
|
-
cb: (err: any, data?: ListSessionsCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: ListSessionsCommandOutput) => void,
|
|
260
245
|
): void;
|
|
261
246
|
listSessions(
|
|
262
247
|
args: ListSessionsCommandInput,
|
|
263
248
|
options: __HttpHandlerOptions,
|
|
264
|
-
cb: (err: any, data?: ListSessionsCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: ListSessionsCommandOutput) => void,
|
|
265
250
|
): void;
|
|
266
251
|
listTagsForResource(
|
|
267
252
|
args: ListTagsForResourceCommandInput,
|
|
268
|
-
options?: __HttpHandlerOptions
|
|
253
|
+
options?: __HttpHandlerOptions,
|
|
269
254
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
270
255
|
listTagsForResource(
|
|
271
256
|
args: ListTagsForResourceCommandInput,
|
|
272
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
273
258
|
): void;
|
|
274
259
|
listTagsForResource(
|
|
275
260
|
args: ListTagsForResourceCommandInput,
|
|
276
261
|
options: __HttpHandlerOptions,
|
|
277
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
278
263
|
): void;
|
|
279
264
|
startApplication(
|
|
280
265
|
args: StartApplicationCommandInput,
|
|
281
|
-
options?: __HttpHandlerOptions
|
|
266
|
+
options?: __HttpHandlerOptions,
|
|
282
267
|
): Promise<StartApplicationCommandOutput>;
|
|
283
268
|
startApplication(
|
|
284
269
|
args: StartApplicationCommandInput,
|
|
285
|
-
cb: (err: any, data?: StartApplicationCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: StartApplicationCommandOutput) => void,
|
|
286
271
|
): void;
|
|
287
272
|
startApplication(
|
|
288
273
|
args: StartApplicationCommandInput,
|
|
289
274
|
options: __HttpHandlerOptions,
|
|
290
|
-
cb: (err: any, data?: StartApplicationCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: StartApplicationCommandOutput) => void,
|
|
291
276
|
): void;
|
|
292
277
|
startJobRun(
|
|
293
278
|
args: StartJobRunCommandInput,
|
|
294
|
-
options?: __HttpHandlerOptions
|
|
279
|
+
options?: __HttpHandlerOptions,
|
|
295
280
|
): Promise<StartJobRunCommandOutput>;
|
|
296
281
|
startJobRun(
|
|
297
282
|
args: StartJobRunCommandInput,
|
|
298
|
-
cb: (err: any, data?: StartJobRunCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: StartJobRunCommandOutput) => void,
|
|
299
284
|
): void;
|
|
300
285
|
startJobRun(
|
|
301
286
|
args: StartJobRunCommandInput,
|
|
302
287
|
options: __HttpHandlerOptions,
|
|
303
|
-
cb: (err: any, data?: StartJobRunCommandOutput) => void
|
|
288
|
+
cb: (err: any, data?: StartJobRunCommandOutput) => void,
|
|
304
289
|
): void;
|
|
305
290
|
startSession(
|
|
306
291
|
args: StartSessionCommandInput,
|
|
307
|
-
options?: __HttpHandlerOptions
|
|
292
|
+
options?: __HttpHandlerOptions,
|
|
308
293
|
): Promise<StartSessionCommandOutput>;
|
|
309
294
|
startSession(
|
|
310
295
|
args: StartSessionCommandInput,
|
|
311
|
-
cb: (err: any, data?: StartSessionCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: StartSessionCommandOutput) => void,
|
|
312
297
|
): void;
|
|
313
298
|
startSession(
|
|
314
299
|
args: StartSessionCommandInput,
|
|
315
300
|
options: __HttpHandlerOptions,
|
|
316
|
-
cb: (err: any, data?: StartSessionCommandOutput) => void
|
|
301
|
+
cb: (err: any, data?: StartSessionCommandOutput) => void,
|
|
317
302
|
): void;
|
|
318
303
|
stopApplication(
|
|
319
304
|
args: StopApplicationCommandInput,
|
|
320
|
-
options?: __HttpHandlerOptions
|
|
305
|
+
options?: __HttpHandlerOptions,
|
|
321
306
|
): Promise<StopApplicationCommandOutput>;
|
|
322
307
|
stopApplication(
|
|
323
308
|
args: StopApplicationCommandInput,
|
|
324
|
-
cb: (err: any, data?: StopApplicationCommandOutput) => void
|
|
309
|
+
cb: (err: any, data?: StopApplicationCommandOutput) => void,
|
|
325
310
|
): void;
|
|
326
311
|
stopApplication(
|
|
327
312
|
args: StopApplicationCommandInput,
|
|
328
313
|
options: __HttpHandlerOptions,
|
|
329
|
-
cb: (err: any, data?: StopApplicationCommandOutput) => void
|
|
314
|
+
cb: (err: any, data?: StopApplicationCommandOutput) => void,
|
|
330
315
|
): void;
|
|
331
316
|
tagResource(
|
|
332
317
|
args: TagResourceCommandInput,
|
|
333
|
-
options?: __HttpHandlerOptions
|
|
318
|
+
options?: __HttpHandlerOptions,
|
|
334
319
|
): Promise<TagResourceCommandOutput>;
|
|
335
320
|
tagResource(
|
|
336
321
|
args: TagResourceCommandInput,
|
|
337
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
338
323
|
): void;
|
|
339
324
|
tagResource(
|
|
340
325
|
args: TagResourceCommandInput,
|
|
341
326
|
options: __HttpHandlerOptions,
|
|
342
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
343
328
|
): void;
|
|
344
329
|
terminateSession(
|
|
345
330
|
args: TerminateSessionCommandInput,
|
|
346
|
-
options?: __HttpHandlerOptions
|
|
331
|
+
options?: __HttpHandlerOptions,
|
|
347
332
|
): Promise<TerminateSessionCommandOutput>;
|
|
348
333
|
terminateSession(
|
|
349
334
|
args: TerminateSessionCommandInput,
|
|
350
|
-
cb: (err: any, data?: TerminateSessionCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: TerminateSessionCommandOutput) => void,
|
|
351
336
|
): void;
|
|
352
337
|
terminateSession(
|
|
353
338
|
args: TerminateSessionCommandInput,
|
|
354
339
|
options: __HttpHandlerOptions,
|
|
355
|
-
cb: (err: any, data?: TerminateSessionCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: TerminateSessionCommandOutput) => void,
|
|
356
341
|
): void;
|
|
357
342
|
untagResource(
|
|
358
343
|
args: UntagResourceCommandInput,
|
|
359
|
-
options?: __HttpHandlerOptions
|
|
344
|
+
options?: __HttpHandlerOptions,
|
|
360
345
|
): Promise<UntagResourceCommandOutput>;
|
|
361
346
|
untagResource(
|
|
362
347
|
args: UntagResourceCommandInput,
|
|
363
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
364
349
|
): void;
|
|
365
350
|
untagResource(
|
|
366
351
|
args: UntagResourceCommandInput,
|
|
367
352
|
options: __HttpHandlerOptions,
|
|
368
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
353
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
369
354
|
): void;
|
|
370
355
|
updateApplication(
|
|
371
356
|
args: UpdateApplicationCommandInput,
|
|
372
|
-
options?: __HttpHandlerOptions
|
|
357
|
+
options?: __HttpHandlerOptions,
|
|
373
358
|
): Promise<UpdateApplicationCommandOutput>;
|
|
374
359
|
updateApplication(
|
|
375
360
|
args: UpdateApplicationCommandInput,
|
|
376
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
361
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
377
362
|
): void;
|
|
378
363
|
updateApplication(
|
|
379
364
|
args: UpdateApplicationCommandInput,
|
|
380
365
|
options: __HttpHandlerOptions,
|
|
381
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
366
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
382
367
|
): void;
|
|
383
368
|
paginateListApplications(
|
|
384
369
|
args?: ListApplicationsCommandInput,
|
|
385
370
|
paginationConfig?: Pick<
|
|
386
371
|
PaginationConfiguration,
|
|
387
372
|
Exclude<keyof PaginationConfiguration, "client">
|
|
388
|
-
|
|
373
|
+
>,
|
|
389
374
|
): Paginator<ListApplicationsCommandOutput>;
|
|
390
375
|
paginateListJobRunAttempts(
|
|
391
376
|
args: ListJobRunAttemptsCommandInput,
|
|
392
377
|
paginationConfig?: Pick<
|
|
393
378
|
PaginationConfiguration,
|
|
394
379
|
Exclude<keyof PaginationConfiguration, "client">
|
|
395
|
-
|
|
380
|
+
>,
|
|
396
381
|
): Paginator<ListJobRunAttemptsCommandOutput>;
|
|
397
382
|
paginateListJobRuns(
|
|
398
383
|
args: ListJobRunsCommandInput,
|
|
399
384
|
paginationConfig?: Pick<
|
|
400
385
|
PaginationConfiguration,
|
|
401
386
|
Exclude<keyof PaginationConfiguration, "client">
|
|
402
|
-
|
|
387
|
+
>,
|
|
403
388
|
): Paginator<ListJobRunsCommandOutput>;
|
|
404
389
|
paginateListSessions(
|
|
405
390
|
args: ListSessionsCommandInput,
|
|
406
391
|
paginationConfig?: Pick<
|
|
407
392
|
PaginationConfiguration,
|
|
408
393
|
Exclude<keyof PaginationConfiguration, "client">
|
|
409
|
-
|
|
394
|
+
>,
|
|
410
395
|
): Paginator<ListSessionsCommandOutput>;
|
|
411
396
|
}
|
|
412
|
-
export declare class EMRServerless
|
|
413
|
-
extends EMRServerlessClient
|
|
414
|
-
implements EMRServerless {}
|
|
397
|
+
export declare class EMRServerless extends EMRServerlessClient implements EMRServerless {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -56,18 +53,12 @@ import {
|
|
|
56
53
|
GetDashboardForJobRunCommandInput,
|
|
57
54
|
GetDashboardForJobRunCommandOutput,
|
|
58
55
|
} from "./commands/GetDashboardForJobRunCommand";
|
|
59
|
-
import {
|
|
60
|
-
GetJobRunCommandInput,
|
|
61
|
-
GetJobRunCommandOutput,
|
|
62
|
-
} from "./commands/GetJobRunCommand";
|
|
56
|
+
import { GetJobRunCommandInput, GetJobRunCommandOutput } from "./commands/GetJobRunCommand";
|
|
63
57
|
import {
|
|
64
58
|
GetResourceDashboardCommandInput,
|
|
65
59
|
GetResourceDashboardCommandOutput,
|
|
66
60
|
} from "./commands/GetResourceDashboardCommand";
|
|
67
|
-
import {
|
|
68
|
-
GetSessionCommandInput,
|
|
69
|
-
GetSessionCommandOutput,
|
|
70
|
-
} from "./commands/GetSessionCommand";
|
|
61
|
+
import { GetSessionCommandInput, GetSessionCommandOutput } from "./commands/GetSessionCommand";
|
|
71
62
|
import {
|
|
72
63
|
GetSessionEndpointCommandInput,
|
|
73
64
|
GetSessionEndpointCommandOutput,
|
|
@@ -80,10 +71,7 @@ import {
|
|
|
80
71
|
ListJobRunAttemptsCommandInput,
|
|
81
72
|
ListJobRunAttemptsCommandOutput,
|
|
82
73
|
} from "./commands/ListJobRunAttemptsCommand";
|
|
83
|
-
import {
|
|
84
|
-
ListJobRunsCommandInput,
|
|
85
|
-
ListJobRunsCommandOutput,
|
|
86
|
-
} from "./commands/ListJobRunsCommand";
|
|
74
|
+
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
87
75
|
import {
|
|
88
76
|
ListSessionsCommandInput,
|
|
89
77
|
ListSessionsCommandOutput,
|
|
@@ -96,10 +84,7 @@ import {
|
|
|
96
84
|
StartApplicationCommandInput,
|
|
97
85
|
StartApplicationCommandOutput,
|
|
98
86
|
} from "./commands/StartApplicationCommand";
|
|
99
|
-
import {
|
|
100
|
-
StartJobRunCommandInput,
|
|
101
|
-
StartJobRunCommandOutput,
|
|
102
|
-
} from "./commands/StartJobRunCommand";
|
|
87
|
+
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
103
88
|
import {
|
|
104
89
|
StartSessionCommandInput,
|
|
105
90
|
StartSessionCommandOutput,
|
|
@@ -108,10 +93,7 @@ import {
|
|
|
108
93
|
StopApplicationCommandInput,
|
|
109
94
|
StopApplicationCommandOutput,
|
|
110
95
|
} from "./commands/StopApplicationCommand";
|
|
111
|
-
import {
|
|
112
|
-
TagResourceCommandInput,
|
|
113
|
-
TagResourceCommandOutput,
|
|
114
|
-
} from "./commands/TagResourceCommand";
|
|
96
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
115
97
|
import {
|
|
116
98
|
TerminateSessionCommandInput,
|
|
117
99
|
TerminateSessionCommandOutput,
|
|
@@ -177,8 +159,7 @@ export type ServiceOutputTypes =
|
|
|
177
159
|
| TerminateSessionCommandOutput
|
|
178
160
|
| UntagResourceCommandOutput
|
|
179
161
|
| UpdateApplicationCommandOutput;
|
|
180
|
-
export interface ClientDefaults
|
|
181
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
162
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
182
163
|
requestHandler?: __HttpHandlerUserInput;
|
|
183
164
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
184
165
|
urlParser?: __UrlParser;
|
|
@@ -203,9 +184,7 @@ export interface ClientDefaults
|
|
|
203
184
|
extensions?: RuntimeExtension[];
|
|
204
185
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
205
186
|
}
|
|
206
|
-
export type EMRServerlessClientConfigType = Partial<
|
|
207
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
208
|
-
> &
|
|
187
|
+
export type EMRServerlessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
209
188
|
ClientDefaults &
|
|
210
189
|
UserAgentInputConfig &
|
|
211
190
|
RetryInputConfig &
|
|
@@ -214,8 +193,7 @@ export type EMRServerlessClientConfigType = Partial<
|
|
|
214
193
|
EndpointInputConfig<EndpointParameters> &
|
|
215
194
|
HttpAuthSchemeInputConfig &
|
|
216
195
|
ClientInputEndpointParameters;
|
|
217
|
-
export interface EMRServerlessClientConfig
|
|
218
|
-
extends EMRServerlessClientConfigType {}
|
|
196
|
+
export interface EMRServerlessClientConfig extends EMRServerlessClientConfigType {}
|
|
219
197
|
export type EMRServerlessClientResolvedConfigType =
|
|
220
198
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
221
199
|
Required<ClientDefaults> &
|
|
@@ -227,8 +205,7 @@ export type EMRServerlessClientResolvedConfigType =
|
|
|
227
205
|
EndpointResolvedConfig<EndpointParameters> &
|
|
228
206
|
HttpAuthSchemeResolvedConfig &
|
|
229
207
|
ClientResolvedEndpointParameters;
|
|
230
|
-
export interface EMRServerlessClientResolvedConfig
|
|
231
|
-
extends EMRServerlessClientResolvedConfigType {}
|
|
208
|
+
export interface EMRServerlessClientResolvedConfig extends EMRServerlessClientResolvedConfigType {}
|
|
232
209
|
export declare class EMRServerlessClient extends __Client<
|
|
233
210
|
__HttpHandlerOptions,
|
|
234
211
|
ServiceInputTypes,
|
|
@@ -236,8 +213,6 @@ export declare class EMRServerlessClient extends __Client<
|
|
|
236
213
|
EMRServerlessClientResolvedConfig
|
|
237
214
|
> {
|
|
238
215
|
readonly config: EMRServerlessClientResolvedConfig;
|
|
239
|
-
constructor(
|
|
240
|
-
...[configuration]: __CheckOptionalClientConfig<EMRServerlessClientConfig>
|
|
241
|
-
);
|
|
216
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<EMRServerlessClientConfig>);
|
|
242
217
|
destroy(): void;
|
|
243
218
|
}
|
|
@@ -7,17 +7,10 @@ import { EMRServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: EMRServerlessHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: EMRServerlessHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): EMRServerlessHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { EMRServerlessClientResolvedConfig } from "../EMRServerlessClient";
|
|
15
|
-
export interface EMRServerlessHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface EMRServerlessHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface EMRServerlessHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface EMRServerlessHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
EMRServerlessClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
EMRServerlessHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultEMRServerlessHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: EMRServerlessClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<EMRServerlessHttpAuthSchemeParameters>;
|
|
31
|
-
export interface EMRServerlessHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<EMRServerlessHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface EMRServerlessHttpAuthSchemeProvider extends HttpAuthSchemeProvider<EMRServerlessHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultEMRServerlessHttpAuthSchemeProvider: EMRServerlessHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: EMRServerlessHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: EMRServerlessHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|