@aws-sdk/client-emr-serverless 3.986.0 → 3.988.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 +35 -854
- package/dist-cjs/models/EMRServerlessServiceException.js +12 -0
- package/dist-cjs/models/errors.js +69 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +699 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +60 -54
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var EMRServerlessServiceException = require('./models/EMRServerlessServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,749 +113,6 @@ class EMRServerlessClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class EMRServerlessServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, EMRServerlessServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConflictException extends EMRServerlessServiceException {
|
|
121
|
-
name = "ConflictException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ConflictException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends EMRServerlessServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends EMRServerlessServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ValidationException extends EMRServerlessServiceException {
|
|
157
|
-
name = "ValidationException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ValidationException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ServiceQuotaExceededException extends EMRServerlessServiceException {
|
|
169
|
-
name = "ServiceQuotaExceededException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ServiceQuotaExceededException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
const _A = "Application";
|
|
182
|
-
const _AL = "ApplicationList";
|
|
183
|
-
const _AS = "ApplicationSummary";
|
|
184
|
-
const _ASC = "AutoStartConfig";
|
|
185
|
-
const _ASCu = "AutoStopConfig";
|
|
186
|
-
const _C = "Configuration";
|
|
187
|
-
const _CA = "CreateApplication";
|
|
188
|
-
const _CAR = "CreateApplicationRequest";
|
|
189
|
-
const _CARr = "CreateApplicationResponse";
|
|
190
|
-
const _CE = "ConflictException";
|
|
191
|
-
const _CJR = "CancelJobRun";
|
|
192
|
-
const _CJRR = "CancelJobRunRequest";
|
|
193
|
-
const _CJRRa = "CancelJobRunResponse";
|
|
194
|
-
const _CL = "ConfigurationList";
|
|
195
|
-
const _CO = "ConfigurationOverrides";
|
|
196
|
-
const _CWLC = "CloudWatchLoggingConfiguration";
|
|
197
|
-
const _DA = "DeleteApplication";
|
|
198
|
-
const _DAR = "DeleteApplicationRequest";
|
|
199
|
-
const _DARe = "DeleteApplicationResponse";
|
|
200
|
-
const _DEC = "DiskEncryptionConfiguration";
|
|
201
|
-
const _EPA = "EntryPointArgument";
|
|
202
|
-
const _EPAn = "EntryPointArguments";
|
|
203
|
-
const _EPP = "EntryPointPath";
|
|
204
|
-
const _GA = "GetApplication";
|
|
205
|
-
const _GAR = "GetApplicationRequest";
|
|
206
|
-
const _GARe = "GetApplicationResponse";
|
|
207
|
-
const _GDFJR = "GetDashboardForJobRun";
|
|
208
|
-
const _GDFJRR = "GetDashboardForJobRunRequest";
|
|
209
|
-
const _GDFJRRe = "GetDashboardForJobRunResponse";
|
|
210
|
-
const _GJR = "GetJobRun";
|
|
211
|
-
const _GJRR = "GetJobRunRequest";
|
|
212
|
-
const _GJRRe = "GetJobRunResponse";
|
|
213
|
-
const _H = "Hive";
|
|
214
|
-
const _HCP = "HiveCliParameters";
|
|
215
|
-
const _IC = "ImageConfiguration";
|
|
216
|
-
const _ICC = "IdentityCenterConfiguration";
|
|
217
|
-
const _ICCI = "IdentityCenterConfigurationInput";
|
|
218
|
-
const _ICCM = "InitialCapacityConfigMap";
|
|
219
|
-
const _ICCn = "InitialCapacityConfig";
|
|
220
|
-
const _ICI = "ImageConfigurationInput";
|
|
221
|
-
const _ICn = "InteractiveConfiguration";
|
|
222
|
-
const _ISE = "InternalServerException";
|
|
223
|
-
const _ISP = "InitScriptPath";
|
|
224
|
-
const _JD = "JobDriver";
|
|
225
|
-
const _JLCAC = "JobLevelCostAllocationConfiguration";
|
|
226
|
-
const _JR = "JobRun";
|
|
227
|
-
const _JRA = "JobRunAttempts";
|
|
228
|
-
const _JRAS = "JobRunAttemptSummary";
|
|
229
|
-
const _JREIP = "JobRunExecutionIamPolicy";
|
|
230
|
-
const _JRS = "JobRunSummary";
|
|
231
|
-
const _JRo = "JobRuns";
|
|
232
|
-
const _LA = "ListApplications";
|
|
233
|
-
const _LAR = "ListApplicationsRequest";
|
|
234
|
-
const _LARi = "ListApplicationsResponse";
|
|
235
|
-
const _LJR = "ListJobRuns";
|
|
236
|
-
const _LJRA = "ListJobRunAttempts";
|
|
237
|
-
const _LJRAR = "ListJobRunAttemptsRequest";
|
|
238
|
-
const _LJRARi = "ListJobRunAttemptsResponse";
|
|
239
|
-
const _LJRR = "ListJobRunsRequest";
|
|
240
|
-
const _LJRRi = "ListJobRunsResponse";
|
|
241
|
-
const _LTFR = "ListTagsForResource";
|
|
242
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
243
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
244
|
-
const _LTM = "LogTypeMap";
|
|
245
|
-
const _MAR = "MaximumAllowedResources";
|
|
246
|
-
const _MC = "MonitoringConfiguration";
|
|
247
|
-
const _MPMC = "ManagedPersistenceMonitoringConfiguration";
|
|
248
|
-
const _NC = "NetworkConfiguration";
|
|
249
|
-
const _PMC = "PrometheusMonitoringConfiguration";
|
|
250
|
-
const _Q = "Query";
|
|
251
|
-
const _RNFE = "ResourceNotFoundException";
|
|
252
|
-
const _RP = "RetryPolicy";
|
|
253
|
-
const _RU = "ResourceUtilization";
|
|
254
|
-
const _SA = "StartApplication";
|
|
255
|
-
const _SAR = "StartApplicationRequest";
|
|
256
|
-
const _SARt = "StartApplicationResponse";
|
|
257
|
-
const _SARto = "StopApplicationRequest";
|
|
258
|
-
const _SARtop = "StopApplicationResponse";
|
|
259
|
-
const _SAt = "StopApplication";
|
|
260
|
-
const _SC = "SchedulerConfiguration";
|
|
261
|
-
const _SJR = "StartJobRun";
|
|
262
|
-
const _SJRR = "StartJobRunRequest";
|
|
263
|
-
const _SJRRt = "StartJobRunResponse";
|
|
264
|
-
const _SMC = "S3MonitoringConfiguration";
|
|
265
|
-
const _SPM = "SensitivePropertiesMap";
|
|
266
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
267
|
-
const _SS = "SparkSubmit";
|
|
268
|
-
const _SSP = "SparkSubmitParameters";
|
|
269
|
-
const _TR = "TagResource";
|
|
270
|
-
const _TRR = "TagResourceRequest";
|
|
271
|
-
const _TRRa = "TagResourceResponse";
|
|
272
|
-
const _TRU = "TotalResourceUtilization";
|
|
273
|
-
const _UA = "UpdateApplication";
|
|
274
|
-
const _UAR = "UpdateApplicationRequest";
|
|
275
|
-
const _UARp = "UpdateApplicationResponse";
|
|
276
|
-
const _UR = "UntagResource";
|
|
277
|
-
const _URR = "UntagResourceRequest";
|
|
278
|
-
const _URRn = "UntagResourceResponse";
|
|
279
|
-
const _VE = "ValidationException";
|
|
280
|
-
const _WRC = "WorkerResourceConfig";
|
|
281
|
-
const _WTS = "WorkerTypeSpecification";
|
|
282
|
-
const _WTSI = "WorkerTypeSpecificationInput";
|
|
283
|
-
const _WTSIM = "WorkerTypeSpecificationInputMap";
|
|
284
|
-
const _WTSM = "WorkerTypeSpecificationMap";
|
|
285
|
-
const _a = "arn";
|
|
286
|
-
const _aC = "applicationConfiguration";
|
|
287
|
-
const _aCA = "attemptCreatedAt";
|
|
288
|
-
const _aI = "applicationId";
|
|
289
|
-
const _aSC = "autoStartConfiguration";
|
|
290
|
-
const _aSCu = "autoStopConfiguration";
|
|
291
|
-
const _aSPL = "accessSystemProfileLogs";
|
|
292
|
-
const _aUA = "attemptUpdatedAt";
|
|
293
|
-
const _ap = "application";
|
|
294
|
-
const _app = "applications";
|
|
295
|
-
const _ar = "architecture";
|
|
296
|
-
const _at = "attempt";
|
|
297
|
-
const _bRU = "billedResourceUtilization";
|
|
298
|
-
const _c = "classification";
|
|
299
|
-
const _cA = "createdAt";
|
|
300
|
-
const _cAA = "createdAtAfter";
|
|
301
|
-
const _cAB = "createdAtBefore";
|
|
302
|
-
const _cB = "createdBy";
|
|
303
|
-
const _cO = "configurationOverrides";
|
|
304
|
-
const _cT = "clientToken";
|
|
305
|
-
const _cWLC = "cloudWatchLoggingConfiguration";
|
|
306
|
-
const _cl = "client";
|
|
307
|
-
const _co = "configurations";
|
|
308
|
-
const _cp = "cpu";
|
|
309
|
-
const _d = "disk";
|
|
310
|
-
const _dEC = "diskEncryptionConfiguration";
|
|
311
|
-
const _dT = "diskType";
|
|
312
|
-
const _e = "enabled";
|
|
313
|
-
const _eA = "endedAt";
|
|
314
|
-
const _eC = "encryptionContext";
|
|
315
|
-
const _eIP = "executionIamPolicy";
|
|
316
|
-
const _eKA = "encryptionKeyArn";
|
|
317
|
-
const _eP = "entryPoint";
|
|
318
|
-
const _ePA = "entryPointArguments";
|
|
319
|
-
const _eR = "executionRole";
|
|
320
|
-
const _eRA = "executionRoleArn";
|
|
321
|
-
const _eTM = "executionTimeoutMinutes";
|
|
322
|
-
const _er = "error";
|
|
323
|
-
const _h = "hive";
|
|
324
|
-
const _hE = "httpError";
|
|
325
|
-
const _hQ = "httpQuery";
|
|
326
|
-
const _ht = "http";
|
|
327
|
-
const _i = "id";
|
|
328
|
-
const _iC = "initialCapacity";
|
|
329
|
-
const _iCAA = "identityCenterApplicationArn";
|
|
330
|
-
const _iCC = "identityCenterConfiguration";
|
|
331
|
-
const _iCIA = "identityCenterInstanceArn";
|
|
332
|
-
const _iCm = "imageConfiguration";
|
|
333
|
-
const _iCn = "interactiveConfiguration";
|
|
334
|
-
const _iQF = "initQueryFile";
|
|
335
|
-
const _iTM = "idleTimeoutMinutes";
|
|
336
|
-
const _iU = "imageUri";
|
|
337
|
-
const _jCA = "jobCreatedAt";
|
|
338
|
-
const _jD = "jobDriver";
|
|
339
|
-
const _jLCAC = "jobLevelCostAllocationConfiguration";
|
|
340
|
-
const _jR = "jobRun";
|
|
341
|
-
const _jRA = "jobRunAttempts";
|
|
342
|
-
const _jRI = "jobRunId";
|
|
343
|
-
const _jRo = "jobRuns";
|
|
344
|
-
const _lEE = "livyEndpointEnabled";
|
|
345
|
-
const _lGN = "logGroupName";
|
|
346
|
-
const _lSNP = "logStreamNamePrefix";
|
|
347
|
-
const _lT = "logTypes";
|
|
348
|
-
const _lU = "logUri";
|
|
349
|
-
const _m = "message";
|
|
350
|
-
const _mA = "maxAttempts";
|
|
351
|
-
const _mC = "maximumCapacity";
|
|
352
|
-
const _mCR = "maxConcurrentRuns";
|
|
353
|
-
const _mCo = "monitoringConfiguration";
|
|
354
|
-
const _mFAPH = "maxFailedAttemptsPerHour";
|
|
355
|
-
const _mGBH = "memoryGBHour";
|
|
356
|
-
const _mPMC = "managedPersistenceMonitoringConfiguration";
|
|
357
|
-
const _mR = "maxResults";
|
|
358
|
-
const _me = "memory";
|
|
359
|
-
const _mo = "mode";
|
|
360
|
-
const _n = "name";
|
|
361
|
-
const _nC = "networkConfiguration";
|
|
362
|
-
const _nT = "nextToken";
|
|
363
|
-
const _p = "properties";
|
|
364
|
-
const _pA = "policyArns";
|
|
365
|
-
const _pMC = "prometheusMonitoringConfiguration";
|
|
366
|
-
const _pa = "parameters";
|
|
367
|
-
const _po = "policy";
|
|
368
|
-
const _q = "query";
|
|
369
|
-
const _qDM = "queuedDurationMilliseconds";
|
|
370
|
-
const _qTM = "queueTimeoutMinutes";
|
|
371
|
-
const _rA = "resourceArn";
|
|
372
|
-
const _rC = "runtimeConfiguration";
|
|
373
|
-
const _rID = "resolvedImageDigest";
|
|
374
|
-
const _rL = "releaseLabel";
|
|
375
|
-
const _rP = "retryPolicy";
|
|
376
|
-
const _rWU = "remoteWriteUrl";
|
|
377
|
-
const _s = "state";
|
|
378
|
-
const _sA = "startedAt";
|
|
379
|
-
const _sC = "schedulerConfiguration";
|
|
380
|
-
const _sD = "stateDetails";
|
|
381
|
-
const _sE = "studioEnabled";
|
|
382
|
-
const _sGBH = "storageGBHour";
|
|
383
|
-
const _sGI = "securityGroupIds";
|
|
384
|
-
const _sGPIS = "shutdownGracePeriodInSeconds";
|
|
385
|
-
const _sI = "subnetIds";
|
|
386
|
-
const _sMC = "s3MonitoringConfiguration";
|
|
387
|
-
const _sS = "sparkSubmit";
|
|
388
|
-
const _sSP = "sparkSubmitParameters";
|
|
389
|
-
const _se = "server";
|
|
390
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.emrserverless";
|
|
391
|
-
const _st = "states";
|
|
392
|
-
const _t = "type";
|
|
393
|
-
const _tEDS = "totalExecutionDurationSeconds";
|
|
394
|
-
const _tK = "tagKeys";
|
|
395
|
-
const _tRU = "totalResourceUtilization";
|
|
396
|
-
const _ta = "tags";
|
|
397
|
-
const _u = "url";
|
|
398
|
-
const _uA = "updatedAt";
|
|
399
|
-
const _uBSE = "userBackgroundSessionsEnabled";
|
|
400
|
-
const _vCPUH = "vCPUHour";
|
|
401
|
-
const _wC = "workerCount";
|
|
402
|
-
const _wCo = "workerConfiguration";
|
|
403
|
-
const _wTS = "workerTypeSpecifications";
|
|
404
|
-
const n0 = "com.amazonaws.emrserverless";
|
|
405
|
-
var EntryPointArgument = [0, n0, _EPA, 8, 0];
|
|
406
|
-
var EntryPointPath = [0, n0, _EPP, 8, 0];
|
|
407
|
-
var HiveCliParameters = [0, n0, _HCP, 8, 0];
|
|
408
|
-
var InitScriptPath = [0, n0, _ISP, 8, 0];
|
|
409
|
-
var Query = [0, n0, _Q, 8, 0];
|
|
410
|
-
var SparkSubmitParameters = [0, n0, _SSP, 8, 0];
|
|
411
|
-
var Application$ = [3, n0, _A,
|
|
412
|
-
0,
|
|
413
|
-
[_aI, _a, _rL, _t, _s, _cA, _uA, _n, _sD, _iC, _mC, _ta, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _rC, _mCo, _dEC, _iCn, _sC, _iCC, _jLCAC],
|
|
414
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, () => InitialCapacityConfigMap, () => MaximumAllowedResources$, 128 | 0, () => AutoStartConfig$, () => AutoStopConfig$, () => NetworkConfiguration$, 0, () => ImageConfiguration$, () => WorkerTypeSpecificationMap, [() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$, () => InteractiveConfiguration$, () => SchedulerConfiguration$, () => IdentityCenterConfiguration$, () => JobLevelCostAllocationConfiguration$], 7
|
|
415
|
-
];
|
|
416
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
417
|
-
0,
|
|
418
|
-
[_i, _a, _rL, _t, _s, _cA, _uA, _n, _sD, _ar],
|
|
419
|
-
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0], 7
|
|
420
|
-
];
|
|
421
|
-
var AutoStartConfig$ = [3, n0, _ASC,
|
|
422
|
-
0,
|
|
423
|
-
[_e],
|
|
424
|
-
[2]
|
|
425
|
-
];
|
|
426
|
-
var AutoStopConfig$ = [3, n0, _ASCu,
|
|
427
|
-
0,
|
|
428
|
-
[_e, _iTM],
|
|
429
|
-
[2, 1]
|
|
430
|
-
];
|
|
431
|
-
var CancelJobRunRequest$ = [3, n0, _CJRR,
|
|
432
|
-
0,
|
|
433
|
-
[_aI, _jRI, _sGPIS],
|
|
434
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _sGPIS }]], 2
|
|
435
|
-
];
|
|
436
|
-
var CancelJobRunResponse$ = [3, n0, _CJRRa,
|
|
437
|
-
0,
|
|
438
|
-
[_aI, _jRI],
|
|
439
|
-
[0, 0], 2
|
|
440
|
-
];
|
|
441
|
-
var CloudWatchLoggingConfiguration$ = [3, n0, _CWLC,
|
|
442
|
-
0,
|
|
443
|
-
[_e, _lGN, _lSNP, _eKA, _lT],
|
|
444
|
-
[2, 0, 0, 0, [2, n0, _LTM, 0, 0, 64 | 0]], 1
|
|
445
|
-
];
|
|
446
|
-
var Configuration$ = [3, n0, _C,
|
|
447
|
-
0,
|
|
448
|
-
[_c, _p, _co],
|
|
449
|
-
[0, [() => SensitivePropertiesMap, 0], [() => ConfigurationList, 0]], 1
|
|
450
|
-
];
|
|
451
|
-
var ConfigurationOverrides$ = [3, n0, _CO,
|
|
452
|
-
0,
|
|
453
|
-
[_aC, _mCo, _dEC],
|
|
454
|
-
[[() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$]
|
|
455
|
-
];
|
|
456
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
457
|
-
{ [_er]: _cl, [_hE]: 409 },
|
|
458
|
-
[_m],
|
|
459
|
-
[0], 1
|
|
460
|
-
];
|
|
461
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
462
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
463
|
-
0,
|
|
464
|
-
[_rL, _t, _n, _cT, _iC, _mC, _ta, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _rC, _mCo, _dEC, _iCn, _sC, _iCC, _jLCAC],
|
|
465
|
-
[0, 0, 0, [0, 4], () => InitialCapacityConfigMap, () => MaximumAllowedResources$, 128 | 0, () => AutoStartConfig$, () => AutoStopConfig$, () => NetworkConfiguration$, 0, () => ImageConfigurationInput$, () => WorkerTypeSpecificationInputMap, [() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$, () => InteractiveConfiguration$, () => SchedulerConfiguration$, () => IdentityCenterConfigurationInput$, () => JobLevelCostAllocationConfiguration$], 2
|
|
466
|
-
];
|
|
467
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
468
|
-
0,
|
|
469
|
-
[_aI, _a, _n],
|
|
470
|
-
[0, 0, 0], 2
|
|
471
|
-
];
|
|
472
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
473
|
-
0,
|
|
474
|
-
[_aI],
|
|
475
|
-
[[0, 1]], 1
|
|
476
|
-
];
|
|
477
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
478
|
-
0,
|
|
479
|
-
[],
|
|
480
|
-
[]
|
|
481
|
-
];
|
|
482
|
-
var DiskEncryptionConfiguration$ = [3, n0, _DEC,
|
|
483
|
-
0,
|
|
484
|
-
[_eC, _eKA],
|
|
485
|
-
[128 | 0, 0]
|
|
486
|
-
];
|
|
487
|
-
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
488
|
-
0,
|
|
489
|
-
[_aI],
|
|
490
|
-
[[0, 1]], 1
|
|
491
|
-
];
|
|
492
|
-
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
493
|
-
0,
|
|
494
|
-
[_ap],
|
|
495
|
-
[[() => Application$, 0]], 1
|
|
496
|
-
];
|
|
497
|
-
var GetDashboardForJobRunRequest$ = [3, n0, _GDFJRR,
|
|
498
|
-
0,
|
|
499
|
-
[_aI, _jRI, _at, _aSPL],
|
|
500
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _at }], [2, { [_hQ]: _aSPL }]], 2
|
|
501
|
-
];
|
|
502
|
-
var GetDashboardForJobRunResponse$ = [3, n0, _GDFJRRe,
|
|
503
|
-
0,
|
|
504
|
-
[_u],
|
|
505
|
-
[0]
|
|
506
|
-
];
|
|
507
|
-
var GetJobRunRequest$ = [3, n0, _GJRR,
|
|
508
|
-
0,
|
|
509
|
-
[_aI, _jRI, _at],
|
|
510
|
-
[[0, 1], [0, 1], [1, { [_hQ]: _at }]], 2
|
|
511
|
-
];
|
|
512
|
-
var GetJobRunResponse$ = [3, n0, _GJRRe,
|
|
513
|
-
0,
|
|
514
|
-
[_jR],
|
|
515
|
-
[[() => JobRun$, 0]], 1
|
|
516
|
-
];
|
|
517
|
-
var Hive$ = [3, n0, _H,
|
|
518
|
-
0,
|
|
519
|
-
[_q, _iQF, _pa],
|
|
520
|
-
[[() => Query, 0], [() => InitScriptPath, 0], [() => HiveCliParameters, 0]], 1
|
|
521
|
-
];
|
|
522
|
-
var IdentityCenterConfiguration$ = [3, n0, _ICC,
|
|
523
|
-
0,
|
|
524
|
-
[_iCIA, _iCAA, _uBSE],
|
|
525
|
-
[0, 0, 2]
|
|
526
|
-
];
|
|
527
|
-
var IdentityCenterConfigurationInput$ = [3, n0, _ICCI,
|
|
528
|
-
0,
|
|
529
|
-
[_iCIA, _uBSE],
|
|
530
|
-
[0, 2]
|
|
531
|
-
];
|
|
532
|
-
var ImageConfiguration$ = [3, n0, _IC,
|
|
533
|
-
0,
|
|
534
|
-
[_iU, _rID],
|
|
535
|
-
[0, 0], 1
|
|
536
|
-
];
|
|
537
|
-
var ImageConfigurationInput$ = [3, n0, _ICI,
|
|
538
|
-
0,
|
|
539
|
-
[_iU],
|
|
540
|
-
[0]
|
|
541
|
-
];
|
|
542
|
-
var InitialCapacityConfig$ = [3, n0, _ICCn,
|
|
543
|
-
0,
|
|
544
|
-
[_wC, _wCo],
|
|
545
|
-
[1, () => WorkerResourceConfig$], 1
|
|
546
|
-
];
|
|
547
|
-
var InteractiveConfiguration$ = [3, n0, _ICn,
|
|
548
|
-
0,
|
|
549
|
-
[_sE, _lEE],
|
|
550
|
-
[2, 2]
|
|
551
|
-
];
|
|
552
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
553
|
-
{ [_er]: _se, [_hE]: 500 },
|
|
554
|
-
[_m],
|
|
555
|
-
[0], 1
|
|
556
|
-
];
|
|
557
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
558
|
-
var JobLevelCostAllocationConfiguration$ = [3, n0, _JLCAC,
|
|
559
|
-
0,
|
|
560
|
-
[_e],
|
|
561
|
-
[2]
|
|
562
|
-
];
|
|
563
|
-
var JobRun$ = [3, n0, _JR,
|
|
564
|
-
0,
|
|
565
|
-
[_aI, _jRI, _a, _cB, _cA, _uA, _eR, _s, _sD, _rL, _jD, _n, _eIP, _cO, _ta, _tRU, _nC, _tEDS, _eTM, _bRU, _mo, _rP, _at, _aCA, _aUA, _sA, _eA, _qDM],
|
|
566
|
-
[0, 0, 0, 0, 4, 4, 0, 0, 0, 0, [() => JobDriver$, 0], 0, () => JobRunExecutionIamPolicy$, [() => ConfigurationOverrides$, 0], 128 | 0, () => TotalResourceUtilization$, () => NetworkConfiguration$, 1, 1, () => ResourceUtilization$, 0, () => RetryPolicy$, 1, 4, 4, 4, 4, 1], 11
|
|
567
|
-
];
|
|
568
|
-
var JobRunAttemptSummary$ = [3, n0, _JRAS,
|
|
569
|
-
0,
|
|
570
|
-
[_aI, _i, _a, _cB, _jCA, _cA, _uA, _eR, _s, _sD, _rL, _n, _mo, _t, _at],
|
|
571
|
-
[0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1], 11
|
|
572
|
-
];
|
|
573
|
-
var JobRunExecutionIamPolicy$ = [3, n0, _JREIP,
|
|
574
|
-
0,
|
|
575
|
-
[_po, _pA],
|
|
576
|
-
[0, 64 | 0]
|
|
577
|
-
];
|
|
578
|
-
var JobRunSummary$ = [3, n0, _JRS,
|
|
579
|
-
0,
|
|
580
|
-
[_aI, _i, _a, _cB, _cA, _uA, _eR, _s, _sD, _rL, _n, _mo, _t, _at, _aCA, _aUA],
|
|
581
|
-
[0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4], 10
|
|
582
|
-
];
|
|
583
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
584
|
-
0,
|
|
585
|
-
[_nT, _mR, _st],
|
|
586
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _st }]]
|
|
587
|
-
];
|
|
588
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
589
|
-
0,
|
|
590
|
-
[_app, _nT],
|
|
591
|
-
[() => ApplicationList, 0], 1
|
|
592
|
-
];
|
|
593
|
-
var ListJobRunAttemptsRequest$ = [3, n0, _LJRAR,
|
|
594
|
-
0,
|
|
595
|
-
[_aI, _jRI, _nT, _mR],
|
|
596
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
597
|
-
];
|
|
598
|
-
var ListJobRunAttemptsResponse$ = [3, n0, _LJRARi,
|
|
599
|
-
0,
|
|
600
|
-
[_jRA, _nT],
|
|
601
|
-
[() => JobRunAttempts, 0], 1
|
|
602
|
-
];
|
|
603
|
-
var ListJobRunsRequest$ = [3, n0, _LJRR,
|
|
604
|
-
0,
|
|
605
|
-
[_aI, _nT, _mR, _cAA, _cAB, _st, _mo],
|
|
606
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [4, { [_hQ]: _cAA }], [4, { [_hQ]: _cAB }], [64 | 0, { [_hQ]: _st }], [0, { [_hQ]: _mo }]], 1
|
|
607
|
-
];
|
|
608
|
-
var ListJobRunsResponse$ = [3, n0, _LJRRi,
|
|
609
|
-
0,
|
|
610
|
-
[_jRo, _nT],
|
|
611
|
-
[() => JobRuns, 0], 1
|
|
612
|
-
];
|
|
613
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
614
|
-
0,
|
|
615
|
-
[_rA],
|
|
616
|
-
[[0, 1]], 1
|
|
617
|
-
];
|
|
618
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
619
|
-
0,
|
|
620
|
-
[_ta],
|
|
621
|
-
[128 | 0]
|
|
622
|
-
];
|
|
623
|
-
var ManagedPersistenceMonitoringConfiguration$ = [3, n0, _MPMC,
|
|
624
|
-
0,
|
|
625
|
-
[_e, _eKA],
|
|
626
|
-
[2, 0]
|
|
627
|
-
];
|
|
628
|
-
var MaximumAllowedResources$ = [3, n0, _MAR,
|
|
629
|
-
0,
|
|
630
|
-
[_cp, _me, _d],
|
|
631
|
-
[0, 0, 0], 2
|
|
632
|
-
];
|
|
633
|
-
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
634
|
-
0,
|
|
635
|
-
[_sMC, _mPMC, _cWLC, _pMC],
|
|
636
|
-
[() => S3MonitoringConfiguration$, () => ManagedPersistenceMonitoringConfiguration$, () => CloudWatchLoggingConfiguration$, () => PrometheusMonitoringConfiguration$]
|
|
637
|
-
];
|
|
638
|
-
var NetworkConfiguration$ = [3, n0, _NC,
|
|
639
|
-
0,
|
|
640
|
-
[_sI, _sGI],
|
|
641
|
-
[64 | 0, 64 | 0]
|
|
642
|
-
];
|
|
643
|
-
var PrometheusMonitoringConfiguration$ = [3, n0, _PMC,
|
|
644
|
-
0,
|
|
645
|
-
[_rWU],
|
|
646
|
-
[0]
|
|
647
|
-
];
|
|
648
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
649
|
-
{ [_er]: _cl, [_hE]: 404 },
|
|
650
|
-
[_m],
|
|
651
|
-
[0], 1
|
|
652
|
-
];
|
|
653
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
654
|
-
var ResourceUtilization$ = [3, n0, _RU,
|
|
655
|
-
0,
|
|
656
|
-
[_vCPUH, _mGBH, _sGBH],
|
|
657
|
-
[1, 1, 1]
|
|
658
|
-
];
|
|
659
|
-
var RetryPolicy$ = [3, n0, _RP,
|
|
660
|
-
0,
|
|
661
|
-
[_mA, _mFAPH],
|
|
662
|
-
[1, 1]
|
|
663
|
-
];
|
|
664
|
-
var S3MonitoringConfiguration$ = [3, n0, _SMC,
|
|
665
|
-
0,
|
|
666
|
-
[_lU, _eKA],
|
|
667
|
-
[0, 0]
|
|
668
|
-
];
|
|
669
|
-
var SchedulerConfiguration$ = [3, n0, _SC,
|
|
670
|
-
0,
|
|
671
|
-
[_qTM, _mCR],
|
|
672
|
-
[1, 1]
|
|
673
|
-
];
|
|
674
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
675
|
-
{ [_er]: _cl, [_hE]: 402 },
|
|
676
|
-
[_m],
|
|
677
|
-
[0], 1
|
|
678
|
-
];
|
|
679
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
680
|
-
var SparkSubmit$ = [3, n0, _SS,
|
|
681
|
-
0,
|
|
682
|
-
[_eP, _ePA, _sSP],
|
|
683
|
-
[[() => EntryPointPath, 0], [() => EntryPointArguments, 0], [() => SparkSubmitParameters, 0]], 1
|
|
684
|
-
];
|
|
685
|
-
var StartApplicationRequest$ = [3, n0, _SAR,
|
|
686
|
-
0,
|
|
687
|
-
[_aI],
|
|
688
|
-
[[0, 1]], 1
|
|
689
|
-
];
|
|
690
|
-
var StartApplicationResponse$ = [3, n0, _SARt,
|
|
691
|
-
0,
|
|
692
|
-
[],
|
|
693
|
-
[]
|
|
694
|
-
];
|
|
695
|
-
var StartJobRunRequest$ = [3, n0, _SJRR,
|
|
696
|
-
0,
|
|
697
|
-
[_aI, _eRA, _cT, _eIP, _jD, _cO, _ta, _eTM, _n, _mo, _rP],
|
|
698
|
-
[[0, 1], 0, [0, 4], () => JobRunExecutionIamPolicy$, [() => JobDriver$, 0], [() => ConfigurationOverrides$, 0], 128 | 0, 1, 0, 0, () => RetryPolicy$], 2
|
|
699
|
-
];
|
|
700
|
-
var StartJobRunResponse$ = [3, n0, _SJRRt,
|
|
701
|
-
0,
|
|
702
|
-
[_aI, _jRI, _a],
|
|
703
|
-
[0, 0, 0], 3
|
|
704
|
-
];
|
|
705
|
-
var StopApplicationRequest$ = [3, n0, _SARto,
|
|
706
|
-
0,
|
|
707
|
-
[_aI],
|
|
708
|
-
[[0, 1]], 1
|
|
709
|
-
];
|
|
710
|
-
var StopApplicationResponse$ = [3, n0, _SARtop,
|
|
711
|
-
0,
|
|
712
|
-
[],
|
|
713
|
-
[]
|
|
714
|
-
];
|
|
715
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
716
|
-
0,
|
|
717
|
-
[_rA, _ta],
|
|
718
|
-
[[0, 1], 128 | 0], 2
|
|
719
|
-
];
|
|
720
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
721
|
-
0,
|
|
722
|
-
[],
|
|
723
|
-
[]
|
|
724
|
-
];
|
|
725
|
-
var TotalResourceUtilization$ = [3, n0, _TRU,
|
|
726
|
-
0,
|
|
727
|
-
[_vCPUH, _mGBH, _sGBH],
|
|
728
|
-
[1, 1, 1]
|
|
729
|
-
];
|
|
730
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
731
|
-
0,
|
|
732
|
-
[_rA, _tK],
|
|
733
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
734
|
-
];
|
|
735
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
736
|
-
0,
|
|
737
|
-
[],
|
|
738
|
-
[]
|
|
739
|
-
];
|
|
740
|
-
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
741
|
-
0,
|
|
742
|
-
[_aI, _cT, _iC, _mC, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _iCn, _rL, _rC, _mCo, _dEC, _sC, _iCC, _jLCAC],
|
|
743
|
-
[[0, 1], [0, 4], () => InitialCapacityConfigMap, () => MaximumAllowedResources$, () => AutoStartConfig$, () => AutoStopConfig$, () => NetworkConfiguration$, 0, () => ImageConfigurationInput$, () => WorkerTypeSpecificationInputMap, () => InteractiveConfiguration$, 0, [() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$, () => SchedulerConfiguration$, () => IdentityCenterConfigurationInput$, () => JobLevelCostAllocationConfiguration$], 1
|
|
744
|
-
];
|
|
745
|
-
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
746
|
-
0,
|
|
747
|
-
[_ap],
|
|
748
|
-
[[() => Application$, 0]], 1
|
|
749
|
-
];
|
|
750
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
751
|
-
{ [_er]: _cl, [_hE]: 400 },
|
|
752
|
-
[_m],
|
|
753
|
-
[0], 1
|
|
754
|
-
];
|
|
755
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
756
|
-
var WorkerResourceConfig$ = [3, n0, _WRC,
|
|
757
|
-
0,
|
|
758
|
-
[_cp, _me, _d, _dT],
|
|
759
|
-
[0, 0, 0, 0], 2
|
|
760
|
-
];
|
|
761
|
-
var WorkerTypeSpecification$ = [3, n0, _WTS,
|
|
762
|
-
0,
|
|
763
|
-
[_iCm],
|
|
764
|
-
[() => ImageConfiguration$]
|
|
765
|
-
];
|
|
766
|
-
var WorkerTypeSpecificationInput$ = [3, n0, _WTSI,
|
|
767
|
-
0,
|
|
768
|
-
[_iCm],
|
|
769
|
-
[() => ImageConfigurationInput$]
|
|
770
|
-
];
|
|
771
|
-
var EMRServerlessServiceException$ = [-3, _sm, "EMRServerlessServiceException", 0, [], []];
|
|
772
|
-
schema.TypeRegistry.for(_sm).registerError(EMRServerlessServiceException$, EMRServerlessServiceException);
|
|
773
|
-
var ApplicationList = [1, n0, _AL,
|
|
774
|
-
0, () => ApplicationSummary$
|
|
775
|
-
];
|
|
776
|
-
var ConfigurationList = [1, n0, _CL,
|
|
777
|
-
0, [() => Configuration$,
|
|
778
|
-
0]
|
|
779
|
-
];
|
|
780
|
-
var EntryPointArguments = [1, n0, _EPAn,
|
|
781
|
-
0, [() => EntryPointArgument,
|
|
782
|
-
0]
|
|
783
|
-
];
|
|
784
|
-
var JobRunAttempts = [1, n0, _JRA,
|
|
785
|
-
0, () => JobRunAttemptSummary$
|
|
786
|
-
];
|
|
787
|
-
var JobRuns = [1, n0, _JRo,
|
|
788
|
-
0, () => JobRunSummary$
|
|
789
|
-
];
|
|
790
|
-
var InitialCapacityConfigMap = [2, n0, _ICCM,
|
|
791
|
-
0, 0, () => InitialCapacityConfig$
|
|
792
|
-
];
|
|
793
|
-
var SensitivePropertiesMap = [2, n0, _SPM,
|
|
794
|
-
8, 0, 0
|
|
795
|
-
];
|
|
796
|
-
var WorkerTypeSpecificationInputMap = [2, n0, _WTSIM,
|
|
797
|
-
0, 0, () => WorkerTypeSpecificationInput$
|
|
798
|
-
];
|
|
799
|
-
var WorkerTypeSpecificationMap = [2, n0, _WTSM,
|
|
800
|
-
0, 0, () => WorkerTypeSpecification$
|
|
801
|
-
];
|
|
802
|
-
var JobDriver$ = [4, n0, _JD,
|
|
803
|
-
0,
|
|
804
|
-
[_sS, _h],
|
|
805
|
-
[[() => SparkSubmit$, 0], [() => Hive$, 0]]
|
|
806
|
-
];
|
|
807
|
-
var CancelJobRun$ = [9, n0, _CJR,
|
|
808
|
-
{ [_ht]: ["DELETE", "/applications/{applicationId}/jobruns/{jobRunId}", 200] }, () => CancelJobRunRequest$, () => CancelJobRunResponse$
|
|
809
|
-
];
|
|
810
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
811
|
-
{ [_ht]: ["POST", "/applications", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
812
|
-
];
|
|
813
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
814
|
-
{ [_ht]: ["DELETE", "/applications/{applicationId}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
815
|
-
];
|
|
816
|
-
var GetApplication$ = [9, n0, _GA,
|
|
817
|
-
{ [_ht]: ["GET", "/applications/{applicationId}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
818
|
-
];
|
|
819
|
-
var GetDashboardForJobRun$ = [9, n0, _GDFJR,
|
|
820
|
-
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}/dashboard", 200] }, () => GetDashboardForJobRunRequest$, () => GetDashboardForJobRunResponse$
|
|
821
|
-
];
|
|
822
|
-
var GetJobRun$ = [9, n0, _GJR,
|
|
823
|
-
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}", 200] }, () => GetJobRunRequest$, () => GetJobRunResponse$
|
|
824
|
-
];
|
|
825
|
-
var ListApplications$ = [9, n0, _LA,
|
|
826
|
-
{ [_ht]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
827
|
-
];
|
|
828
|
-
var ListJobRunAttempts$ = [9, n0, _LJRA,
|
|
829
|
-
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}/attempts", 200] }, () => ListJobRunAttemptsRequest$, () => ListJobRunAttemptsResponse$
|
|
830
|
-
];
|
|
831
|
-
var ListJobRuns$ = [9, n0, _LJR,
|
|
832
|
-
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns", 200] }, () => ListJobRunsRequest$, () => ListJobRunsResponse$
|
|
833
|
-
];
|
|
834
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
835
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
836
|
-
];
|
|
837
|
-
var StartApplication$ = [9, n0, _SA,
|
|
838
|
-
{ [_ht]: ["POST", "/applications/{applicationId}/start", 200] }, () => StartApplicationRequest$, () => StartApplicationResponse$
|
|
839
|
-
];
|
|
840
|
-
var StartJobRun$ = [9, n0, _SJR,
|
|
841
|
-
{ [_ht]: ["POST", "/applications/{applicationId}/jobruns", 200] }, () => StartJobRunRequest$, () => StartJobRunResponse$
|
|
842
|
-
];
|
|
843
|
-
var StopApplication$ = [9, n0, _SAt,
|
|
844
|
-
{ [_ht]: ["POST", "/applications/{applicationId}/stop", 200] }, () => StopApplicationRequest$, () => StopApplicationResponse$
|
|
845
|
-
];
|
|
846
|
-
var TagResource$ = [9, n0, _TR,
|
|
847
|
-
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
848
|
-
];
|
|
849
|
-
var UntagResource$ = [9, n0, _UR,
|
|
850
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
851
|
-
];
|
|
852
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
853
|
-
{ [_ht]: ["PATCH", "/applications/{applicationId}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
854
|
-
];
|
|
855
|
-
|
|
856
116
|
class CancelJobRunCommand extends smithyClient.Command
|
|
857
117
|
.classBuilder()
|
|
858
118
|
.ep(commonParams)
|
|
@@ -861,7 +121,7 @@ class CancelJobRunCommand extends smithyClient.Command
|
|
|
861
121
|
})
|
|
862
122
|
.s("AwsToledoWebService", "CancelJobRun", {})
|
|
863
123
|
.n("EMRServerlessClient", "CancelJobRunCommand")
|
|
864
|
-
.sc(CancelJobRun$)
|
|
124
|
+
.sc(schemas_0.CancelJobRun$)
|
|
865
125
|
.build() {
|
|
866
126
|
}
|
|
867
127
|
|
|
@@ -873,7 +133,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
873
133
|
})
|
|
874
134
|
.s("AwsToledoWebService", "CreateApplication", {})
|
|
875
135
|
.n("EMRServerlessClient", "CreateApplicationCommand")
|
|
876
|
-
.sc(CreateApplication$)
|
|
136
|
+
.sc(schemas_0.CreateApplication$)
|
|
877
137
|
.build() {
|
|
878
138
|
}
|
|
879
139
|
|
|
@@ -885,7 +145,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
885
145
|
})
|
|
886
146
|
.s("AwsToledoWebService", "DeleteApplication", {})
|
|
887
147
|
.n("EMRServerlessClient", "DeleteApplicationCommand")
|
|
888
|
-
.sc(DeleteApplication$)
|
|
148
|
+
.sc(schemas_0.DeleteApplication$)
|
|
889
149
|
.build() {
|
|
890
150
|
}
|
|
891
151
|
|
|
@@ -897,7 +157,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
897
157
|
})
|
|
898
158
|
.s("AwsToledoWebService", "GetApplication", {})
|
|
899
159
|
.n("EMRServerlessClient", "GetApplicationCommand")
|
|
900
|
-
.sc(GetApplication$)
|
|
160
|
+
.sc(schemas_0.GetApplication$)
|
|
901
161
|
.build() {
|
|
902
162
|
}
|
|
903
163
|
|
|
@@ -909,7 +169,7 @@ class GetDashboardForJobRunCommand extends smithyClient.Command
|
|
|
909
169
|
})
|
|
910
170
|
.s("AwsToledoWebService", "GetDashboardForJobRun", {})
|
|
911
171
|
.n("EMRServerlessClient", "GetDashboardForJobRunCommand")
|
|
912
|
-
.sc(GetDashboardForJobRun$)
|
|
172
|
+
.sc(schemas_0.GetDashboardForJobRun$)
|
|
913
173
|
.build() {
|
|
914
174
|
}
|
|
915
175
|
|
|
@@ -921,7 +181,7 @@ class GetJobRunCommand extends smithyClient.Command
|
|
|
921
181
|
})
|
|
922
182
|
.s("AwsToledoWebService", "GetJobRun", {})
|
|
923
183
|
.n("EMRServerlessClient", "GetJobRunCommand")
|
|
924
|
-
.sc(GetJobRun$)
|
|
184
|
+
.sc(schemas_0.GetJobRun$)
|
|
925
185
|
.build() {
|
|
926
186
|
}
|
|
927
187
|
|
|
@@ -933,7 +193,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
933
193
|
})
|
|
934
194
|
.s("AwsToledoWebService", "ListApplications", {})
|
|
935
195
|
.n("EMRServerlessClient", "ListApplicationsCommand")
|
|
936
|
-
.sc(ListApplications$)
|
|
196
|
+
.sc(schemas_0.ListApplications$)
|
|
937
197
|
.build() {
|
|
938
198
|
}
|
|
939
199
|
|
|
@@ -945,7 +205,7 @@ class ListJobRunAttemptsCommand extends smithyClient.Command
|
|
|
945
205
|
})
|
|
946
206
|
.s("AwsToledoWebService", "ListJobRunAttempts", {})
|
|
947
207
|
.n("EMRServerlessClient", "ListJobRunAttemptsCommand")
|
|
948
|
-
.sc(ListJobRunAttempts$)
|
|
208
|
+
.sc(schemas_0.ListJobRunAttempts$)
|
|
949
209
|
.build() {
|
|
950
210
|
}
|
|
951
211
|
|
|
@@ -957,7 +217,7 @@ class ListJobRunsCommand extends smithyClient.Command
|
|
|
957
217
|
})
|
|
958
218
|
.s("AwsToledoWebService", "ListJobRuns", {})
|
|
959
219
|
.n("EMRServerlessClient", "ListJobRunsCommand")
|
|
960
|
-
.sc(ListJobRuns$)
|
|
220
|
+
.sc(schemas_0.ListJobRuns$)
|
|
961
221
|
.build() {
|
|
962
222
|
}
|
|
963
223
|
|
|
@@ -969,7 +229,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
969
229
|
})
|
|
970
230
|
.s("AwsToledoWebService", "ListTagsForResource", {})
|
|
971
231
|
.n("EMRServerlessClient", "ListTagsForResourceCommand")
|
|
972
|
-
.sc(ListTagsForResource$)
|
|
232
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
973
233
|
.build() {
|
|
974
234
|
}
|
|
975
235
|
|
|
@@ -981,7 +241,7 @@ class StartApplicationCommand extends smithyClient.Command
|
|
|
981
241
|
})
|
|
982
242
|
.s("AwsToledoWebService", "StartApplication", {})
|
|
983
243
|
.n("EMRServerlessClient", "StartApplicationCommand")
|
|
984
|
-
.sc(StartApplication$)
|
|
244
|
+
.sc(schemas_0.StartApplication$)
|
|
985
245
|
.build() {
|
|
986
246
|
}
|
|
987
247
|
|
|
@@ -993,7 +253,7 @@ class StartJobRunCommand extends smithyClient.Command
|
|
|
993
253
|
})
|
|
994
254
|
.s("AwsToledoWebService", "StartJobRun", {})
|
|
995
255
|
.n("EMRServerlessClient", "StartJobRunCommand")
|
|
996
|
-
.sc(StartJobRun$)
|
|
256
|
+
.sc(schemas_0.StartJobRun$)
|
|
997
257
|
.build() {
|
|
998
258
|
}
|
|
999
259
|
|
|
@@ -1005,7 +265,7 @@ class StopApplicationCommand extends smithyClient.Command
|
|
|
1005
265
|
})
|
|
1006
266
|
.s("AwsToledoWebService", "StopApplication", {})
|
|
1007
267
|
.n("EMRServerlessClient", "StopApplicationCommand")
|
|
1008
|
-
.sc(StopApplication$)
|
|
268
|
+
.sc(schemas_0.StopApplication$)
|
|
1009
269
|
.build() {
|
|
1010
270
|
}
|
|
1011
271
|
|
|
@@ -1017,7 +277,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1017
277
|
})
|
|
1018
278
|
.s("AwsToledoWebService", "TagResource", {})
|
|
1019
279
|
.n("EMRServerlessClient", "TagResourceCommand")
|
|
1020
|
-
.sc(TagResource$)
|
|
280
|
+
.sc(schemas_0.TagResource$)
|
|
1021
281
|
.build() {
|
|
1022
282
|
}
|
|
1023
283
|
|
|
@@ -1029,7 +289,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1029
289
|
})
|
|
1030
290
|
.s("AwsToledoWebService", "UntagResource", {})
|
|
1031
291
|
.n("EMRServerlessClient", "UntagResourceCommand")
|
|
1032
|
-
.sc(UntagResource$)
|
|
292
|
+
.sc(schemas_0.UntagResource$)
|
|
1033
293
|
.build() {
|
|
1034
294
|
}
|
|
1035
295
|
|
|
@@ -1041,7 +301,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1041
301
|
})
|
|
1042
302
|
.s("AwsToledoWebService", "UpdateApplication", {})
|
|
1043
303
|
.n("EMRServerlessClient", "UpdateApplicationCommand")
|
|
1044
|
-
.sc(UpdateApplication$)
|
|
304
|
+
.sc(schemas_0.UpdateApplication$)
|
|
1045
305
|
.build() {
|
|
1046
306
|
}
|
|
1047
307
|
|
|
@@ -1115,123 +375,44 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1115
375
|
enumerable: true,
|
|
1116
376
|
get: function () { return smithyClient.Client; }
|
|
1117
377
|
});
|
|
1118
|
-
exports
|
|
378
|
+
Object.defineProperty(exports, "EMRServerlessServiceException", {
|
|
379
|
+
enumerable: true,
|
|
380
|
+
get: function () { return EMRServerlessServiceException.EMRServerlessServiceException; }
|
|
381
|
+
});
|
|
1119
382
|
exports.ApplicationState = ApplicationState;
|
|
1120
|
-
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
1121
383
|
exports.Architecture = Architecture;
|
|
1122
|
-
exports.AutoStartConfig$ = AutoStartConfig$;
|
|
1123
|
-
exports.AutoStopConfig$ = AutoStopConfig$;
|
|
1124
|
-
exports.CancelJobRun$ = CancelJobRun$;
|
|
1125
384
|
exports.CancelJobRunCommand = CancelJobRunCommand;
|
|
1126
|
-
exports.CancelJobRunRequest$ = CancelJobRunRequest$;
|
|
1127
|
-
exports.CancelJobRunResponse$ = CancelJobRunResponse$;
|
|
1128
|
-
exports.CloudWatchLoggingConfiguration$ = CloudWatchLoggingConfiguration$;
|
|
1129
|
-
exports.Configuration$ = Configuration$;
|
|
1130
|
-
exports.ConfigurationOverrides$ = ConfigurationOverrides$;
|
|
1131
|
-
exports.ConflictException = ConflictException;
|
|
1132
|
-
exports.ConflictException$ = ConflictException$;
|
|
1133
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1134
385
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1135
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1136
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1137
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1138
386
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1139
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1140
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1141
|
-
exports.DiskEncryptionConfiguration$ = DiskEncryptionConfiguration$;
|
|
1142
387
|
exports.EMRServerless = EMRServerless;
|
|
1143
388
|
exports.EMRServerlessClient = EMRServerlessClient;
|
|
1144
|
-
exports.EMRServerlessServiceException = EMRServerlessServiceException;
|
|
1145
|
-
exports.EMRServerlessServiceException$ = EMRServerlessServiceException$;
|
|
1146
|
-
exports.GetApplication$ = GetApplication$;
|
|
1147
389
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1148
|
-
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1149
|
-
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1150
|
-
exports.GetDashboardForJobRun$ = GetDashboardForJobRun$;
|
|
1151
390
|
exports.GetDashboardForJobRunCommand = GetDashboardForJobRunCommand;
|
|
1152
|
-
exports.GetDashboardForJobRunRequest$ = GetDashboardForJobRunRequest$;
|
|
1153
|
-
exports.GetDashboardForJobRunResponse$ = GetDashboardForJobRunResponse$;
|
|
1154
|
-
exports.GetJobRun$ = GetJobRun$;
|
|
1155
391
|
exports.GetJobRunCommand = GetJobRunCommand;
|
|
1156
|
-
exports.GetJobRunRequest$ = GetJobRunRequest$;
|
|
1157
|
-
exports.GetJobRunResponse$ = GetJobRunResponse$;
|
|
1158
|
-
exports.Hive$ = Hive$;
|
|
1159
|
-
exports.IdentityCenterConfiguration$ = IdentityCenterConfiguration$;
|
|
1160
|
-
exports.IdentityCenterConfigurationInput$ = IdentityCenterConfigurationInput$;
|
|
1161
|
-
exports.ImageConfiguration$ = ImageConfiguration$;
|
|
1162
|
-
exports.ImageConfigurationInput$ = ImageConfigurationInput$;
|
|
1163
|
-
exports.InitialCapacityConfig$ = InitialCapacityConfig$;
|
|
1164
|
-
exports.InteractiveConfiguration$ = InteractiveConfiguration$;
|
|
1165
|
-
exports.InternalServerException = InternalServerException;
|
|
1166
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1167
|
-
exports.JobDriver$ = JobDriver$;
|
|
1168
|
-
exports.JobLevelCostAllocationConfiguration$ = JobLevelCostAllocationConfiguration$;
|
|
1169
|
-
exports.JobRun$ = JobRun$;
|
|
1170
|
-
exports.JobRunAttemptSummary$ = JobRunAttemptSummary$;
|
|
1171
|
-
exports.JobRunExecutionIamPolicy$ = JobRunExecutionIamPolicy$;
|
|
1172
392
|
exports.JobRunMode = JobRunMode;
|
|
1173
393
|
exports.JobRunState = JobRunState;
|
|
1174
|
-
exports.JobRunSummary$ = JobRunSummary$;
|
|
1175
|
-
exports.ListApplications$ = ListApplications$;
|
|
1176
394
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1177
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1178
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1179
|
-
exports.ListJobRunAttempts$ = ListJobRunAttempts$;
|
|
1180
395
|
exports.ListJobRunAttemptsCommand = ListJobRunAttemptsCommand;
|
|
1181
|
-
exports.ListJobRunAttemptsRequest$ = ListJobRunAttemptsRequest$;
|
|
1182
|
-
exports.ListJobRunAttemptsResponse$ = ListJobRunAttemptsResponse$;
|
|
1183
|
-
exports.ListJobRuns$ = ListJobRuns$;
|
|
1184
396
|
exports.ListJobRunsCommand = ListJobRunsCommand;
|
|
1185
|
-
exports.ListJobRunsRequest$ = ListJobRunsRequest$;
|
|
1186
|
-
exports.ListJobRunsResponse$ = ListJobRunsResponse$;
|
|
1187
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1188
397
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1189
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1190
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1191
|
-
exports.ManagedPersistenceMonitoringConfiguration$ = ManagedPersistenceMonitoringConfiguration$;
|
|
1192
|
-
exports.MaximumAllowedResources$ = MaximumAllowedResources$;
|
|
1193
|
-
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
1194
|
-
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
1195
|
-
exports.PrometheusMonitoringConfiguration$ = PrometheusMonitoringConfiguration$;
|
|
1196
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1197
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1198
|
-
exports.ResourceUtilization$ = ResourceUtilization$;
|
|
1199
|
-
exports.RetryPolicy$ = RetryPolicy$;
|
|
1200
|
-
exports.S3MonitoringConfiguration$ = S3MonitoringConfiguration$;
|
|
1201
|
-
exports.SchedulerConfiguration$ = SchedulerConfiguration$;
|
|
1202
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1203
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1204
|
-
exports.SparkSubmit$ = SparkSubmit$;
|
|
1205
|
-
exports.StartApplication$ = StartApplication$;
|
|
1206
398
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
1207
|
-
exports.StartApplicationRequest$ = StartApplicationRequest$;
|
|
1208
|
-
exports.StartApplicationResponse$ = StartApplicationResponse$;
|
|
1209
|
-
exports.StartJobRun$ = StartJobRun$;
|
|
1210
399
|
exports.StartJobRunCommand = StartJobRunCommand;
|
|
1211
|
-
exports.StartJobRunRequest$ = StartJobRunRequest$;
|
|
1212
|
-
exports.StartJobRunResponse$ = StartJobRunResponse$;
|
|
1213
|
-
exports.StopApplication$ = StopApplication$;
|
|
1214
400
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
1215
|
-
exports.StopApplicationRequest$ = StopApplicationRequest$;
|
|
1216
|
-
exports.StopApplicationResponse$ = StopApplicationResponse$;
|
|
1217
|
-
exports.TagResource$ = TagResource$;
|
|
1218
401
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1219
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1220
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1221
|
-
exports.TotalResourceUtilization$ = TotalResourceUtilization$;
|
|
1222
|
-
exports.UntagResource$ = UntagResource$;
|
|
1223
402
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1224
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1225
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1226
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
1227
403
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1228
|
-
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1229
|
-
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1230
|
-
exports.ValidationException = ValidationException;
|
|
1231
|
-
exports.ValidationException$ = ValidationException$;
|
|
1232
|
-
exports.WorkerResourceConfig$ = WorkerResourceConfig$;
|
|
1233
|
-
exports.WorkerTypeSpecification$ = WorkerTypeSpecification$;
|
|
1234
|
-
exports.WorkerTypeSpecificationInput$ = WorkerTypeSpecificationInput$;
|
|
1235
404
|
exports.paginateListApplications = paginateListApplications;
|
|
1236
405
|
exports.paginateListJobRunAttempts = paginateListJobRunAttempts;
|
|
1237
406
|
exports.paginateListJobRuns = paginateListJobRuns;
|
|
407
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
408
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
409
|
+
enumerable: true,
|
|
410
|
+
get: function () { return schemas_0[k]; }
|
|
411
|
+
});
|
|
412
|
+
});
|
|
413
|
+
Object.keys(errors).forEach(function (k) {
|
|
414
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
415
|
+
enumerable: true,
|
|
416
|
+
get: function () { return errors[k]; }
|
|
417
|
+
});
|
|
418
|
+
});
|