@aws-sdk/client-emr-serverless 3.1074.0 → 3.1076.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 +1176 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/EMRServerlessServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -61
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -915
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultEMRServerlessHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "emr-serverless",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultEMRServerlessHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1014 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://emr-serverless-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://emr-serverless-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://emr-serverless.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://emr-serverless.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class EMRServerlessServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, EMRServerlessServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class ConflictException extends EMRServerlessServiceException {
|
|
140
|
+
name = "ConflictException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "ConflictException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class InternalServerException extends EMRServerlessServiceException {
|
|
152
|
+
name = "InternalServerException";
|
|
153
|
+
$fault = "server";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InternalServerException",
|
|
157
|
+
$fault: "server",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ResourceNotFoundException extends EMRServerlessServiceException {
|
|
164
|
+
name = "ResourceNotFoundException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ResourceNotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class ValidationException extends EMRServerlessServiceException {
|
|
176
|
+
name = "ValidationException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "ValidationException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class ServiceQuotaExceededException extends EMRServerlessServiceException {
|
|
188
|
+
name = "ServiceQuotaExceededException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "ServiceQuotaExceededException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const _A = "Application";
|
|
201
|
+
const _AL = "ApplicationList";
|
|
202
|
+
const _AS = "ApplicationSummary";
|
|
203
|
+
const _ASC = "AutoStartConfig";
|
|
204
|
+
const _ASCu = "AutoStopConfig";
|
|
205
|
+
const _C = "Configuration";
|
|
206
|
+
const _CA = "CreateApplication";
|
|
207
|
+
const _CAR = "CreateApplicationRequest";
|
|
208
|
+
const _CARr = "CreateApplicationResponse";
|
|
209
|
+
const _CE = "ConflictException";
|
|
210
|
+
const _CJR = "CancelJobRun";
|
|
211
|
+
const _CJRR = "CancelJobRunRequest";
|
|
212
|
+
const _CJRRa = "CancelJobRunResponse";
|
|
213
|
+
const _CL = "ConfigurationList";
|
|
214
|
+
const _CO = "ConfigurationOverrides";
|
|
215
|
+
const _CWLC = "CloudWatchLoggingConfiguration";
|
|
216
|
+
const _DA = "DeleteApplication";
|
|
217
|
+
const _DAR = "DeleteApplicationRequest";
|
|
218
|
+
const _DARe = "DeleteApplicationResponse";
|
|
219
|
+
const _DEC = "DiskEncryptionConfiguration";
|
|
220
|
+
const _EPA = "EntryPointArgument";
|
|
221
|
+
const _EPAn = "EntryPointArguments";
|
|
222
|
+
const _EPP = "EntryPointPath";
|
|
223
|
+
const _GA = "GetApplication";
|
|
224
|
+
const _GAR = "GetApplicationRequest";
|
|
225
|
+
const _GARe = "GetApplicationResponse";
|
|
226
|
+
const _GDFJR = "GetDashboardForJobRun";
|
|
227
|
+
const _GDFJRR = "GetDashboardForJobRunRequest";
|
|
228
|
+
const _GDFJRRe = "GetDashboardForJobRunResponse";
|
|
229
|
+
const _GJR = "GetJobRun";
|
|
230
|
+
const _GJRR = "GetJobRunRequest";
|
|
231
|
+
const _GJRRe = "GetJobRunResponse";
|
|
232
|
+
const _GRD = "GetResourceDashboard";
|
|
233
|
+
const _GRDR = "GetResourceDashboardRequest";
|
|
234
|
+
const _GRDRe = "GetResourceDashboardResponse";
|
|
235
|
+
const _GS = "GetSession";
|
|
236
|
+
const _GSE = "GetSessionEndpoint";
|
|
237
|
+
const _GSER = "GetSessionEndpointRequest";
|
|
238
|
+
const _GSERe = "GetSessionEndpointResponse";
|
|
239
|
+
const _GSR = "GetSessionRequest";
|
|
240
|
+
const _GSRe = "GetSessionResponse";
|
|
241
|
+
const _H = "Hive";
|
|
242
|
+
const _HCP = "HiveCliParameters";
|
|
243
|
+
const _IC = "ImageConfiguration";
|
|
244
|
+
const _ICC = "IdentityCenterConfiguration";
|
|
245
|
+
const _ICCI = "IdentityCenterConfigurationInput";
|
|
246
|
+
const _ICCM = "InitialCapacityConfigMap";
|
|
247
|
+
const _ICCn = "InitialCapacityConfig";
|
|
248
|
+
const _ICI = "ImageConfigurationInput";
|
|
249
|
+
const _ICn = "InteractiveConfiguration";
|
|
250
|
+
const _ISE = "InternalServerException";
|
|
251
|
+
const _ISP = "InitScriptPath";
|
|
252
|
+
const _JD = "JobDriver";
|
|
253
|
+
const _JLCAC = "JobLevelCostAllocationConfiguration";
|
|
254
|
+
const _JR = "JobRun";
|
|
255
|
+
const _JRA = "JobRunAttempts";
|
|
256
|
+
const _JRAS = "JobRunAttemptSummary";
|
|
257
|
+
const _JREIP = "JobRunExecutionIamPolicy";
|
|
258
|
+
const _JRS = "JobRunSummary";
|
|
259
|
+
const _JRo = "JobRuns";
|
|
260
|
+
const _LA = "ListApplications";
|
|
261
|
+
const _LAR = "ListApplicationsRequest";
|
|
262
|
+
const _LARi = "ListApplicationsResponse";
|
|
263
|
+
const _LJR = "ListJobRuns";
|
|
264
|
+
const _LJRA = "ListJobRunAttempts";
|
|
265
|
+
const _LJRAR = "ListJobRunAttemptsRequest";
|
|
266
|
+
const _LJRARi = "ListJobRunAttemptsResponse";
|
|
267
|
+
const _LJRR = "ListJobRunsRequest";
|
|
268
|
+
const _LJRRi = "ListJobRunsResponse";
|
|
269
|
+
const _LS = "ListSessions";
|
|
270
|
+
const _LSR = "ListSessionsRequest";
|
|
271
|
+
const _LSRi = "ListSessionsResponse";
|
|
272
|
+
const _LTFR = "ListTagsForResource";
|
|
273
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
274
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
275
|
+
const _LTM = "LogTypeMap";
|
|
276
|
+
const _MAR = "MaximumAllowedResources";
|
|
277
|
+
const _MC = "MonitoringConfiguration";
|
|
278
|
+
const _MPMC = "ManagedPersistenceMonitoringConfiguration";
|
|
279
|
+
const _NC = "NetworkConfiguration";
|
|
280
|
+
const _PMC = "PrometheusMonitoringConfiguration";
|
|
281
|
+
const _Q = "Query";
|
|
282
|
+
const _RNFE = "ResourceNotFoundException";
|
|
283
|
+
const _RP = "RetryPolicy";
|
|
284
|
+
const _RU = "ResourceUtilization";
|
|
285
|
+
const _S = "Session";
|
|
286
|
+
const _SA = "StartApplication";
|
|
287
|
+
const _SAR = "StartApplicationRequest";
|
|
288
|
+
const _SARt = "StartApplicationResponse";
|
|
289
|
+
const _SARto = "StopApplicationRequest";
|
|
290
|
+
const _SARtop = "StopApplicationResponse";
|
|
291
|
+
const _SAT = "SessionAuthToken";
|
|
292
|
+
const _SAt = "StopApplication";
|
|
293
|
+
const _SC = "SchedulerConfiguration";
|
|
294
|
+
const _SCO = "SessionConfigurationOverrides";
|
|
295
|
+
const _SJR = "StartJobRun";
|
|
296
|
+
const _SJRR = "StartJobRunRequest";
|
|
297
|
+
const _SJRRt = "StartJobRunResponse";
|
|
298
|
+
const _SMC = "S3MonitoringConfiguration";
|
|
299
|
+
const _SPM = "SensitivePropertiesMap";
|
|
300
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
301
|
+
const _SS = "SessionSummary";
|
|
302
|
+
const _SSP = "SparkSubmitParameters";
|
|
303
|
+
const _SSR = "StartSessionRequest";
|
|
304
|
+
const _SSRt = "StartSessionResponse";
|
|
305
|
+
const _SSp = "SparkSubmit";
|
|
306
|
+
const _SSt = "StartSession";
|
|
307
|
+
const _Se = "Sessions";
|
|
308
|
+
const _TR = "TagResource";
|
|
309
|
+
const _TRR = "TagResourceRequest";
|
|
310
|
+
const _TRRa = "TagResourceResponse";
|
|
311
|
+
const _TRU = "TotalResourceUtilization";
|
|
312
|
+
const _TS = "TerminateSession";
|
|
313
|
+
const _TSR = "TerminateSessionRequest";
|
|
314
|
+
const _TSRe = "TerminateSessionResponse";
|
|
315
|
+
const _UA = "UpdateApplication";
|
|
316
|
+
const _UAR = "UpdateApplicationRequest";
|
|
317
|
+
const _UARp = "UpdateApplicationResponse";
|
|
318
|
+
const _UR = "UntagResource";
|
|
319
|
+
const _URR = "UntagResourceRequest";
|
|
320
|
+
const _URRn = "UntagResourceResponse";
|
|
321
|
+
const _VE = "ValidationException";
|
|
322
|
+
const _WRC = "WorkerResourceConfig";
|
|
323
|
+
const _WTS = "WorkerTypeSpecification";
|
|
324
|
+
const _WTSI = "WorkerTypeSpecificationInput";
|
|
325
|
+
const _WTSIM = "WorkerTypeSpecificationInputMap";
|
|
326
|
+
const _WTSM = "WorkerTypeSpecificationMap";
|
|
327
|
+
const _a = "arn";
|
|
328
|
+
const _aC = "applicationConfiguration";
|
|
329
|
+
const _aCA = "attemptCreatedAt";
|
|
330
|
+
const _aI = "applicationId";
|
|
331
|
+
const _aLDR = "applicationLevelDigestResolution";
|
|
332
|
+
const _aSC = "autoStartConfiguration";
|
|
333
|
+
const _aSCu = "autoStopConfiguration";
|
|
334
|
+
const _aSPL = "accessSystemProfileLogs";
|
|
335
|
+
const _aT = "authToken";
|
|
336
|
+
const _aTEA = "authTokenExpiresAt";
|
|
337
|
+
const _aUA = "attemptUpdatedAt";
|
|
338
|
+
const _ap = "application";
|
|
339
|
+
const _app = "applications";
|
|
340
|
+
const _ar = "architecture";
|
|
341
|
+
const _at = "attempt";
|
|
342
|
+
const _bRU = "billedResourceUtilization";
|
|
343
|
+
const _c = "client";
|
|
344
|
+
const _cA = "createdAt";
|
|
345
|
+
const _cAA = "createdAtAfter";
|
|
346
|
+
const _cAB = "createdAtBefore";
|
|
347
|
+
const _cB = "createdBy";
|
|
348
|
+
const _cO = "configurationOverrides";
|
|
349
|
+
const _cT = "clientToken";
|
|
350
|
+
const _cWLC = "cloudWatchLoggingConfiguration";
|
|
351
|
+
const _cl = "classification";
|
|
352
|
+
const _co = "configurations";
|
|
353
|
+
const _cp = "cpu";
|
|
354
|
+
const _d = "disk";
|
|
355
|
+
const _dEC = "diskEncryptionConfiguration";
|
|
356
|
+
const _dT = "diskType";
|
|
357
|
+
const _e = "error";
|
|
358
|
+
const _eA = "endedAt";
|
|
359
|
+
const _eC = "encryptionContext";
|
|
360
|
+
const _eIP = "executionIamPolicy";
|
|
361
|
+
const _eKA = "encryptionKeyArn";
|
|
362
|
+
const _eP = "entryPoint";
|
|
363
|
+
const _ePA = "entryPointArguments";
|
|
364
|
+
const _eR = "executionRole";
|
|
365
|
+
const _eRA = "executionRoleArn";
|
|
366
|
+
const _eTM = "executionTimeoutMinutes";
|
|
367
|
+
const _en = "enabled";
|
|
368
|
+
const _end = "endpoint";
|
|
369
|
+
const _h = "hive";
|
|
370
|
+
const _hE = "httpError";
|
|
371
|
+
const _hQ = "httpQuery";
|
|
372
|
+
const _ht = "http";
|
|
373
|
+
const _i = "id";
|
|
374
|
+
const _iC = "initialCapacity";
|
|
375
|
+
const _iCAA = "identityCenterApplicationArn";
|
|
376
|
+
const _iCC = "identityCenterConfiguration";
|
|
377
|
+
const _iCIA = "identityCenterInstanceArn";
|
|
378
|
+
const _iCm = "imageConfiguration";
|
|
379
|
+
const _iCn = "interactiveConfiguration";
|
|
380
|
+
const _iQF = "initQueryFile";
|
|
381
|
+
const _iS = "idleSince";
|
|
382
|
+
const _iTM = "idleTimeoutMinutes";
|
|
383
|
+
const _iU = "imageUri";
|
|
384
|
+
const _jCA = "jobCreatedAt";
|
|
385
|
+
const _jD = "jobDriver";
|
|
386
|
+
const _jLCAC = "jobLevelCostAllocationConfiguration";
|
|
387
|
+
const _jR = "jobRun";
|
|
388
|
+
const _jRA = "jobRunAttempts";
|
|
389
|
+
const _jRI = "jobRunId";
|
|
390
|
+
const _jRo = "jobRuns";
|
|
391
|
+
const _lEE = "livyEndpointEnabled";
|
|
392
|
+
const _lGN = "logGroupName";
|
|
393
|
+
const _lSNP = "logStreamNamePrefix";
|
|
394
|
+
const _lT = "logTypes";
|
|
395
|
+
const _lU = "logUri";
|
|
396
|
+
const _m = "message";
|
|
397
|
+
const _mA = "maxAttempts";
|
|
398
|
+
const _mC = "maximumCapacity";
|
|
399
|
+
const _mCR = "maxConcurrentRuns";
|
|
400
|
+
const _mCo = "monitoringConfiguration";
|
|
401
|
+
const _mFAPH = "maxFailedAttemptsPerHour";
|
|
402
|
+
const _mGBH = "memoryGBHour";
|
|
403
|
+
const _mPMC = "managedPersistenceMonitoringConfiguration";
|
|
404
|
+
const _mR = "maxResults";
|
|
405
|
+
const _me = "memory";
|
|
406
|
+
const _mo = "mode";
|
|
407
|
+
const _n = "name";
|
|
408
|
+
const _nC = "networkConfiguration";
|
|
409
|
+
const _nT = "nextToken";
|
|
410
|
+
const _p = "properties";
|
|
411
|
+
const _pA = "policyArns";
|
|
412
|
+
const _pMC = "prometheusMonitoringConfiguration";
|
|
413
|
+
const _pa = "parameters";
|
|
414
|
+
const _po = "policy";
|
|
415
|
+
const _q = "query";
|
|
416
|
+
const _qDM = "queuedDurationMilliseconds";
|
|
417
|
+
const _qTM = "queueTimeoutMinutes";
|
|
418
|
+
const _rA = "resourceArn";
|
|
419
|
+
const _rC = "runtimeConfiguration";
|
|
420
|
+
const _rI = "resourceId";
|
|
421
|
+
const _rID = "resolvedImageDigest";
|
|
422
|
+
const _rL = "releaseLabel";
|
|
423
|
+
const _rP = "retryPolicy";
|
|
424
|
+
const _rT = "resourceType";
|
|
425
|
+
const _rWU = "remoteWriteUrl";
|
|
426
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.emrserverless";
|
|
427
|
+
const _sA = "startedAt";
|
|
428
|
+
const _sC = "schedulerConfiguration";
|
|
429
|
+
const _sD = "stateDetails";
|
|
430
|
+
const _sE = "studioEnabled";
|
|
431
|
+
const _sEe = "sessionEnabled";
|
|
432
|
+
const _sGBH = "storageGBHour";
|
|
433
|
+
const _sGI = "securityGroupIds";
|
|
434
|
+
const _sGPIS = "shutdownGracePeriodInSeconds";
|
|
435
|
+
const _sI = "sessionId";
|
|
436
|
+
const _sIu = "subnetIds";
|
|
437
|
+
const _sMC = "s3MonitoringConfiguration";
|
|
438
|
+
const _sS = "sparkSubmit";
|
|
439
|
+
const _sSP = "sparkSubmitParameters";
|
|
440
|
+
const _se = "server";
|
|
441
|
+
const _ses = "session";
|
|
442
|
+
const _sess = "sessions";
|
|
443
|
+
const _st = "state";
|
|
444
|
+
const _sta = "states";
|
|
445
|
+
const _t = "type";
|
|
446
|
+
const _tEDS = "totalExecutionDurationSeconds";
|
|
447
|
+
const _tK = "tagKeys";
|
|
448
|
+
const _tRU = "totalResourceUtilization";
|
|
449
|
+
const _ta = "tags";
|
|
450
|
+
const _u = "url";
|
|
451
|
+
const _uA = "updatedAt";
|
|
452
|
+
const _uBSE = "userBackgroundSessionsEnabled";
|
|
453
|
+
const _vCPUH = "vCPUHour";
|
|
454
|
+
const _wC = "workerCount";
|
|
455
|
+
const _wCo = "workerConfiguration";
|
|
456
|
+
const _wTS = "workerTypeSpecifications";
|
|
457
|
+
const n0 = "com.amazonaws.emrserverless";
|
|
458
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
459
|
+
var EMRServerlessServiceException$ = [-3, _s, "EMRServerlessServiceException", 0, [], []];
|
|
460
|
+
_s_registry.registerError(EMRServerlessServiceException$, EMRServerlessServiceException);
|
|
461
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
462
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
463
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
464
|
+
[_m],
|
|
465
|
+
[0], 1
|
|
466
|
+
];
|
|
467
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
468
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
469
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
470
|
+
[_m],
|
|
471
|
+
[0], 1
|
|
472
|
+
];
|
|
473
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
474
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
475
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
476
|
+
[_m],
|
|
477
|
+
[0], 1
|
|
478
|
+
];
|
|
479
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
480
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
481
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
482
|
+
[_m],
|
|
483
|
+
[0], 1
|
|
484
|
+
];
|
|
485
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
486
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
487
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
488
|
+
[_m],
|
|
489
|
+
[0], 1
|
|
490
|
+
];
|
|
491
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
492
|
+
const errorTypeRegistries = [
|
|
493
|
+
_s_registry,
|
|
494
|
+
n0_registry,
|
|
495
|
+
];
|
|
496
|
+
var EntryPointArgument = [0, n0, _EPA, 8, 0];
|
|
497
|
+
var EntryPointPath = [0, n0, _EPP, 8, 0];
|
|
498
|
+
var HiveCliParameters = [0, n0, _HCP, 8, 0];
|
|
499
|
+
var InitScriptPath = [0, n0, _ISP, 8, 0];
|
|
500
|
+
var Query = [0, n0, _Q, 8, 0];
|
|
501
|
+
var SessionAuthToken = [0, n0, _SAT, 8, 0];
|
|
502
|
+
var SparkSubmitParameters = [0, n0, _SSP, 8, 0];
|
|
503
|
+
var Application$ = [3, n0, _A,
|
|
504
|
+
0,
|
|
505
|
+
[_aI, _a, _rL, _t, _st, _cA, _uA, _n, _sD, _iC, _mC, _ta, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _rC, _mCo, _dEC, _iCn, _sC, _iCC, _jLCAC],
|
|
506
|
+
[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
|
|
507
|
+
];
|
|
508
|
+
var ApplicationSummary$ = [3, n0, _AS,
|
|
509
|
+
0,
|
|
510
|
+
[_i, _a, _rL, _t, _st, _cA, _uA, _n, _sD, _ar],
|
|
511
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0], 7
|
|
512
|
+
];
|
|
513
|
+
var AutoStartConfig$ = [3, n0, _ASC,
|
|
514
|
+
0,
|
|
515
|
+
[_en],
|
|
516
|
+
[2]
|
|
517
|
+
];
|
|
518
|
+
var AutoStopConfig$ = [3, n0, _ASCu,
|
|
519
|
+
0,
|
|
520
|
+
[_en, _iTM],
|
|
521
|
+
[2, 1]
|
|
522
|
+
];
|
|
523
|
+
var CancelJobRunRequest$ = [3, n0, _CJRR,
|
|
524
|
+
0,
|
|
525
|
+
[_aI, _jRI, _sGPIS],
|
|
526
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _sGPIS }]], 2
|
|
527
|
+
];
|
|
528
|
+
var CancelJobRunResponse$ = [3, n0, _CJRRa,
|
|
529
|
+
0,
|
|
530
|
+
[_aI, _jRI],
|
|
531
|
+
[0, 0], 2
|
|
532
|
+
];
|
|
533
|
+
var CloudWatchLoggingConfiguration$ = [3, n0, _CWLC,
|
|
534
|
+
0,
|
|
535
|
+
[_en, _lGN, _lSNP, _eKA, _lT],
|
|
536
|
+
[2, 0, 0, 0, [2, n0, _LTM, 0, 0, 64 | 0]], 1
|
|
537
|
+
];
|
|
538
|
+
var Configuration$ = [3, n0, _C,
|
|
539
|
+
0,
|
|
540
|
+
[_cl, _p, _co],
|
|
541
|
+
[0, [() => SensitivePropertiesMap, 0], [() => ConfigurationList, 0]], 1
|
|
542
|
+
];
|
|
543
|
+
var ConfigurationOverrides$ = [3, n0, _CO,
|
|
544
|
+
0,
|
|
545
|
+
[_aC, _mCo, _dEC],
|
|
546
|
+
[[() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$]
|
|
547
|
+
];
|
|
548
|
+
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
549
|
+
0,
|
|
550
|
+
[_rL, _t, _n, _cT, _iC, _mC, _ta, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _rC, _mCo, _dEC, _iCn, _sC, _iCC, _jLCAC],
|
|
551
|
+
[0, 0, 0, [0, 4], () => InitialCapacityConfigMap, () => MaximumAllowedResources$, 128 | 0, () => AutoStartConfig$, () => AutoStopConfig$, () => NetworkConfiguration$, 0, () => ImageConfigurationInput$, () => WorkerTypeSpecificationInputMap, [() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$, () => InteractiveConfiguration$, () => SchedulerConfiguration$, () => IdentityCenterConfigurationInput$, () => JobLevelCostAllocationConfiguration$], 2
|
|
552
|
+
];
|
|
553
|
+
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
554
|
+
0,
|
|
555
|
+
[_aI, _a, _n],
|
|
556
|
+
[0, 0, 0], 2
|
|
557
|
+
];
|
|
558
|
+
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
559
|
+
0,
|
|
560
|
+
[_aI],
|
|
561
|
+
[[0, 1]], 1
|
|
562
|
+
];
|
|
563
|
+
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
564
|
+
0,
|
|
565
|
+
[],
|
|
566
|
+
[]
|
|
567
|
+
];
|
|
568
|
+
var DiskEncryptionConfiguration$ = [3, n0, _DEC,
|
|
569
|
+
0,
|
|
570
|
+
[_eC, _eKA],
|
|
571
|
+
[128 | 0, 0]
|
|
572
|
+
];
|
|
573
|
+
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
574
|
+
0,
|
|
575
|
+
[_aI],
|
|
576
|
+
[[0, 1]], 1
|
|
577
|
+
];
|
|
578
|
+
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
579
|
+
0,
|
|
580
|
+
[_ap],
|
|
581
|
+
[[() => Application$, 0]], 1
|
|
582
|
+
];
|
|
583
|
+
var GetDashboardForJobRunRequest$ = [3, n0, _GDFJRR,
|
|
584
|
+
0,
|
|
585
|
+
[_aI, _jRI, _at, _aSPL],
|
|
586
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _at }], [2, { [_hQ]: _aSPL }]], 2
|
|
587
|
+
];
|
|
588
|
+
var GetDashboardForJobRunResponse$ = [3, n0, _GDFJRRe,
|
|
589
|
+
0,
|
|
590
|
+
[_u],
|
|
591
|
+
[0]
|
|
592
|
+
];
|
|
593
|
+
var GetJobRunRequest$ = [3, n0, _GJRR,
|
|
594
|
+
0,
|
|
595
|
+
[_aI, _jRI, _at],
|
|
596
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _at }]], 2
|
|
597
|
+
];
|
|
598
|
+
var GetJobRunResponse$ = [3, n0, _GJRRe,
|
|
599
|
+
0,
|
|
600
|
+
[_jR],
|
|
601
|
+
[[() => JobRun$, 0]], 1
|
|
602
|
+
];
|
|
603
|
+
var GetResourceDashboardRequest$ = [3, n0, _GRDR,
|
|
604
|
+
0,
|
|
605
|
+
[_aI, _rI, _rT],
|
|
606
|
+
[[0, 1], [0, { [_hQ]: _rI }], [0, { [_hQ]: _rT }]], 3
|
|
607
|
+
];
|
|
608
|
+
var GetResourceDashboardResponse$ = [3, n0, _GRDRe,
|
|
609
|
+
0,
|
|
610
|
+
[_u],
|
|
611
|
+
[0]
|
|
612
|
+
];
|
|
613
|
+
var GetSessionEndpointRequest$ = [3, n0, _GSER,
|
|
614
|
+
0,
|
|
615
|
+
[_aI, _sI],
|
|
616
|
+
[[0, 1], [0, 1]], 2
|
|
617
|
+
];
|
|
618
|
+
var GetSessionEndpointResponse$ = [3, n0, _GSERe,
|
|
619
|
+
0,
|
|
620
|
+
[_aI, _sI, _end, _aT, _aTEA],
|
|
621
|
+
[0, 0, 0, [() => SessionAuthToken, 0], 4], 5
|
|
622
|
+
];
|
|
623
|
+
var GetSessionRequest$ = [3, n0, _GSR,
|
|
624
|
+
0,
|
|
625
|
+
[_aI, _sI],
|
|
626
|
+
[[0, 1], [0, 1]], 2
|
|
627
|
+
];
|
|
628
|
+
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
629
|
+
0,
|
|
630
|
+
[_ses],
|
|
631
|
+
[[() => Session$, 0]], 1
|
|
632
|
+
];
|
|
633
|
+
var Hive$ = [3, n0, _H,
|
|
634
|
+
0,
|
|
635
|
+
[_q, _iQF, _pa],
|
|
636
|
+
[[() => Query, 0], [() => InitScriptPath, 0], [() => HiveCliParameters, 0]], 1
|
|
637
|
+
];
|
|
638
|
+
var IdentityCenterConfiguration$ = [3, n0, _ICC,
|
|
639
|
+
0,
|
|
640
|
+
[_iCIA, _iCAA, _uBSE],
|
|
641
|
+
[0, 0, 2]
|
|
642
|
+
];
|
|
643
|
+
var IdentityCenterConfigurationInput$ = [3, n0, _ICCI,
|
|
644
|
+
0,
|
|
645
|
+
[_iCIA, _uBSE],
|
|
646
|
+
[0, 2]
|
|
647
|
+
];
|
|
648
|
+
var ImageConfiguration$ = [3, n0, _IC,
|
|
649
|
+
0,
|
|
650
|
+
[_iU, _rID, _aLDR],
|
|
651
|
+
[0, 0, 2], 1
|
|
652
|
+
];
|
|
653
|
+
var ImageConfigurationInput$ = [3, n0, _ICI,
|
|
654
|
+
0,
|
|
655
|
+
[_iU, _aLDR],
|
|
656
|
+
[0, 2]
|
|
657
|
+
];
|
|
658
|
+
var InitialCapacityConfig$ = [3, n0, _ICCn,
|
|
659
|
+
0,
|
|
660
|
+
[_wC, _wCo],
|
|
661
|
+
[1, () => WorkerResourceConfig$], 1
|
|
662
|
+
];
|
|
663
|
+
var InteractiveConfiguration$ = [3, n0, _ICn,
|
|
664
|
+
0,
|
|
665
|
+
[_sE, _lEE, _sEe],
|
|
666
|
+
[2, 2, 2]
|
|
667
|
+
];
|
|
668
|
+
var JobLevelCostAllocationConfiguration$ = [3, n0, _JLCAC,
|
|
669
|
+
0,
|
|
670
|
+
[_en],
|
|
671
|
+
[2]
|
|
672
|
+
];
|
|
673
|
+
var JobRun$ = [3, n0, _JR,
|
|
674
|
+
0,
|
|
675
|
+
[_aI, _jRI, _a, _cB, _cA, _uA, _eR, _st, _sD, _rL, _jD, _n, _eIP, _cO, _ta, _tRU, _nC, _tEDS, _eTM, _bRU, _mo, _rP, _at, _aCA, _aUA, _sA, _eA, _qDM, _iCm, _wTS],
|
|
676
|
+
[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, () => ImageConfiguration$, () => WorkerTypeSpecificationMap], 11
|
|
677
|
+
];
|
|
678
|
+
var JobRunAttemptSummary$ = [3, n0, _JRAS,
|
|
679
|
+
0,
|
|
680
|
+
[_aI, _i, _a, _cB, _jCA, _cA, _uA, _eR, _st, _sD, _rL, _n, _mo, _t, _at],
|
|
681
|
+
[0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1], 11
|
|
682
|
+
];
|
|
683
|
+
var JobRunExecutionIamPolicy$ = [3, n0, _JREIP,
|
|
684
|
+
0,
|
|
685
|
+
[_po, _pA],
|
|
686
|
+
[0, 64 | 0]
|
|
687
|
+
];
|
|
688
|
+
var JobRunSummary$ = [3, n0, _JRS,
|
|
689
|
+
0,
|
|
690
|
+
[_aI, _i, _a, _cB, _cA, _uA, _eR, _st, _sD, _rL, _n, _mo, _t, _at, _aCA, _aUA],
|
|
691
|
+
[0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4], 10
|
|
692
|
+
];
|
|
693
|
+
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
694
|
+
0,
|
|
695
|
+
[_nT, _mR, _sta],
|
|
696
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _sta }]]
|
|
697
|
+
];
|
|
698
|
+
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
699
|
+
0,
|
|
700
|
+
[_app, _nT],
|
|
701
|
+
[() => ApplicationList, 0], 1
|
|
702
|
+
];
|
|
703
|
+
var ListJobRunAttemptsRequest$ = [3, n0, _LJRAR,
|
|
704
|
+
0,
|
|
705
|
+
[_aI, _jRI, _nT, _mR],
|
|
706
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
707
|
+
];
|
|
708
|
+
var ListJobRunAttemptsResponse$ = [3, n0, _LJRARi,
|
|
709
|
+
0,
|
|
710
|
+
[_jRA, _nT],
|
|
711
|
+
[() => JobRunAttempts, 0], 1
|
|
712
|
+
];
|
|
713
|
+
var ListJobRunsRequest$ = [3, n0, _LJRR,
|
|
714
|
+
0,
|
|
715
|
+
[_aI, _nT, _mR, _cAA, _cAB, _sta, _mo],
|
|
716
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [4, { [_hQ]: _cAA }], [4, { [_hQ]: _cAB }], [64 | 0, { [_hQ]: _sta }], [0, { [_hQ]: _mo }]], 1
|
|
717
|
+
];
|
|
718
|
+
var ListJobRunsResponse$ = [3, n0, _LJRRi,
|
|
719
|
+
0,
|
|
720
|
+
[_jRo, _nT],
|
|
721
|
+
[() => JobRuns, 0], 1
|
|
722
|
+
];
|
|
723
|
+
var ListSessionsRequest$ = [3, n0, _LSR,
|
|
724
|
+
0,
|
|
725
|
+
[_aI, _nT, _mR, _sta, _cAA, _cAB],
|
|
726
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _sta }], [4, { [_hQ]: _cAA }], [4, { [_hQ]: _cAB }]], 1
|
|
727
|
+
];
|
|
728
|
+
var ListSessionsResponse$ = [3, n0, _LSRi,
|
|
729
|
+
0,
|
|
730
|
+
[_sess, _nT],
|
|
731
|
+
[() => Sessions, 0], 1
|
|
732
|
+
];
|
|
733
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
734
|
+
0,
|
|
735
|
+
[_rA],
|
|
736
|
+
[[0, 1]], 1
|
|
737
|
+
];
|
|
738
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
739
|
+
0,
|
|
740
|
+
[_ta],
|
|
741
|
+
[128 | 0]
|
|
742
|
+
];
|
|
743
|
+
var ManagedPersistenceMonitoringConfiguration$ = [3, n0, _MPMC,
|
|
744
|
+
0,
|
|
745
|
+
[_en, _eKA],
|
|
746
|
+
[2, 0]
|
|
747
|
+
];
|
|
748
|
+
var MaximumAllowedResources$ = [3, n0, _MAR,
|
|
749
|
+
0,
|
|
750
|
+
[_cp, _me, _d],
|
|
751
|
+
[0, 0, 0], 2
|
|
752
|
+
];
|
|
753
|
+
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
754
|
+
0,
|
|
755
|
+
[_sMC, _mPMC, _cWLC, _pMC],
|
|
756
|
+
[() => S3MonitoringConfiguration$, () => ManagedPersistenceMonitoringConfiguration$, () => CloudWatchLoggingConfiguration$, () => PrometheusMonitoringConfiguration$]
|
|
757
|
+
];
|
|
758
|
+
var NetworkConfiguration$ = [3, n0, _NC,
|
|
759
|
+
0,
|
|
760
|
+
[_sIu, _sGI],
|
|
761
|
+
[64 | 0, 64 | 0]
|
|
762
|
+
];
|
|
763
|
+
var PrometheusMonitoringConfiguration$ = [3, n0, _PMC,
|
|
764
|
+
0,
|
|
765
|
+
[_rWU],
|
|
766
|
+
[0]
|
|
767
|
+
];
|
|
768
|
+
var ResourceUtilization$ = [3, n0, _RU,
|
|
769
|
+
0,
|
|
770
|
+
[_vCPUH, _mGBH, _sGBH],
|
|
771
|
+
[1, 1, 1]
|
|
772
|
+
];
|
|
773
|
+
var RetryPolicy$ = [3, n0, _RP,
|
|
774
|
+
0,
|
|
775
|
+
[_mA, _mFAPH],
|
|
776
|
+
[1, 1]
|
|
777
|
+
];
|
|
778
|
+
var S3MonitoringConfiguration$ = [3, n0, _SMC,
|
|
779
|
+
0,
|
|
780
|
+
[_lU, _eKA],
|
|
781
|
+
[0, 0]
|
|
782
|
+
];
|
|
783
|
+
var SchedulerConfiguration$ = [3, n0, _SC,
|
|
784
|
+
0,
|
|
785
|
+
[_qTM, _mCR],
|
|
786
|
+
[1, 1]
|
|
787
|
+
];
|
|
788
|
+
var Session$ = [3, n0, _S,
|
|
789
|
+
0,
|
|
790
|
+
[_aI, _sI, _a, _st, _sD, _rL, _eRA, _cB, _cA, _uA, _n, _sA, _eA, _iS, _cO, _nC, _iTM, _ta, _tRU, _bRU, _tEDS],
|
|
791
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 4, 4, [() => SessionConfigurationOverrides$, 0], () => NetworkConfiguration$, 1, 128 | 0, () => TotalResourceUtilization$, () => ResourceUtilization$, 1], 10
|
|
792
|
+
];
|
|
793
|
+
var SessionConfigurationOverrides$ = [3, n0, _SCO,
|
|
794
|
+
0,
|
|
795
|
+
[_rC],
|
|
796
|
+
[[() => ConfigurationList, 0]]
|
|
797
|
+
];
|
|
798
|
+
var SessionSummary$ = [3, n0, _SS,
|
|
799
|
+
0,
|
|
800
|
+
[_aI, _sI, _a, _st, _sD, _rL, _eRA, _cB, _cA, _uA, _n],
|
|
801
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0], 10
|
|
802
|
+
];
|
|
803
|
+
var SparkSubmit$ = [3, n0, _SSp,
|
|
804
|
+
0,
|
|
805
|
+
[_eP, _ePA, _sSP],
|
|
806
|
+
[[() => EntryPointPath, 0], [() => EntryPointArguments, 0], [() => SparkSubmitParameters, 0]], 1
|
|
807
|
+
];
|
|
808
|
+
var StartApplicationRequest$ = [3, n0, _SAR,
|
|
809
|
+
0,
|
|
810
|
+
[_aI],
|
|
811
|
+
[[0, 1]], 1
|
|
812
|
+
];
|
|
813
|
+
var StartApplicationResponse$ = [3, n0, _SARt,
|
|
814
|
+
0,
|
|
815
|
+
[],
|
|
816
|
+
[]
|
|
817
|
+
];
|
|
818
|
+
var StartJobRunRequest$ = [3, n0, _SJRR,
|
|
819
|
+
0,
|
|
820
|
+
[_aI, _eRA, _cT, _eIP, _jD, _cO, _ta, _eTM, _n, _mo, _rP],
|
|
821
|
+
[[0, 1], 0, [0, 4], () => JobRunExecutionIamPolicy$, [() => JobDriver$, 0], [() => ConfigurationOverrides$, 0], 128 | 0, 1, 0, 0, () => RetryPolicy$], 2
|
|
822
|
+
];
|
|
823
|
+
var StartJobRunResponse$ = [3, n0, _SJRRt,
|
|
824
|
+
0,
|
|
825
|
+
[_aI, _jRI, _a],
|
|
826
|
+
[0, 0, 0], 3
|
|
827
|
+
];
|
|
828
|
+
var StartSessionRequest$ = [3, n0, _SSR,
|
|
829
|
+
0,
|
|
830
|
+
[_aI, _eRA, _cT, _cO, _ta, _iTM, _n],
|
|
831
|
+
[[0, 1], 0, [0, 4], [() => SessionConfigurationOverrides$, 0], 128 | 0, 1, 0], 2
|
|
832
|
+
];
|
|
833
|
+
var StartSessionResponse$ = [3, n0, _SSRt,
|
|
834
|
+
0,
|
|
835
|
+
[_aI, _sI, _a],
|
|
836
|
+
[0, 0, 0], 3
|
|
837
|
+
];
|
|
838
|
+
var StopApplicationRequest$ = [3, n0, _SARto,
|
|
839
|
+
0,
|
|
840
|
+
[_aI],
|
|
841
|
+
[[0, 1]], 1
|
|
842
|
+
];
|
|
843
|
+
var StopApplicationResponse$ = [3, n0, _SARtop,
|
|
844
|
+
0,
|
|
845
|
+
[],
|
|
846
|
+
[]
|
|
847
|
+
];
|
|
848
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
849
|
+
0,
|
|
850
|
+
[_rA, _ta],
|
|
851
|
+
[[0, 1], 128 | 0], 2
|
|
852
|
+
];
|
|
853
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
854
|
+
0,
|
|
855
|
+
[],
|
|
856
|
+
[]
|
|
857
|
+
];
|
|
858
|
+
var TerminateSessionRequest$ = [3, n0, _TSR,
|
|
859
|
+
0,
|
|
860
|
+
[_aI, _sI],
|
|
861
|
+
[[0, 1], [0, 1]], 2
|
|
862
|
+
];
|
|
863
|
+
var TerminateSessionResponse$ = [3, n0, _TSRe,
|
|
864
|
+
0,
|
|
865
|
+
[_aI, _sI],
|
|
866
|
+
[0, 0], 2
|
|
867
|
+
];
|
|
868
|
+
var TotalResourceUtilization$ = [3, n0, _TRU,
|
|
869
|
+
0,
|
|
870
|
+
[_vCPUH, _mGBH, _sGBH],
|
|
871
|
+
[1, 1, 1]
|
|
872
|
+
];
|
|
873
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
874
|
+
0,
|
|
875
|
+
[_rA, _tK],
|
|
876
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
877
|
+
];
|
|
878
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
879
|
+
0,
|
|
880
|
+
[],
|
|
881
|
+
[]
|
|
882
|
+
];
|
|
883
|
+
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
884
|
+
0,
|
|
885
|
+
[_aI, _cT, _iC, _mC, _aSC, _aSCu, _nC, _ar, _iCm, _wTS, _iCn, _rL, _rC, _mCo, _dEC, _sC, _iCC, _jLCAC],
|
|
886
|
+
[[0, 1], [0, 4], () => InitialCapacityConfigMap, () => MaximumAllowedResources$, () => AutoStartConfig$, () => AutoStopConfig$, () => NetworkConfiguration$, 0, () => ImageConfigurationInput$, () => WorkerTypeSpecificationInputMap, () => InteractiveConfiguration$, 0, [() => ConfigurationList, 0], () => MonitoringConfiguration$, () => DiskEncryptionConfiguration$, () => SchedulerConfiguration$, () => IdentityCenterConfigurationInput$, () => JobLevelCostAllocationConfiguration$], 1
|
|
887
|
+
];
|
|
888
|
+
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
889
|
+
0,
|
|
890
|
+
[_ap],
|
|
891
|
+
[[() => Application$, 0]], 1
|
|
892
|
+
];
|
|
893
|
+
var WorkerResourceConfig$ = [3, n0, _WRC,
|
|
894
|
+
0,
|
|
895
|
+
[_cp, _me, _d, _dT],
|
|
896
|
+
[0, 0, 0, 0], 2
|
|
897
|
+
];
|
|
898
|
+
var WorkerTypeSpecification$ = [3, n0, _WTS,
|
|
899
|
+
0,
|
|
900
|
+
[_iCm],
|
|
901
|
+
[() => ImageConfiguration$]
|
|
902
|
+
];
|
|
903
|
+
var WorkerTypeSpecificationInput$ = [3, n0, _WTSI,
|
|
904
|
+
0,
|
|
905
|
+
[_iCm],
|
|
906
|
+
[() => ImageConfigurationInput$]
|
|
907
|
+
];
|
|
908
|
+
var ApplicationList = [1, n0, _AL,
|
|
909
|
+
0, () => ApplicationSummary$
|
|
910
|
+
];
|
|
911
|
+
var ConfigurationList = [1, n0, _CL,
|
|
912
|
+
0, [() => Configuration$,
|
|
913
|
+
0]
|
|
914
|
+
];
|
|
915
|
+
var EntryPointArguments = [1, n0, _EPAn,
|
|
916
|
+
0, [() => EntryPointArgument,
|
|
917
|
+
0]
|
|
918
|
+
];
|
|
919
|
+
var JobRunAttempts = [1, n0, _JRA,
|
|
920
|
+
0, () => JobRunAttemptSummary$
|
|
921
|
+
];
|
|
922
|
+
var JobRuns = [1, n0, _JRo,
|
|
923
|
+
0, () => JobRunSummary$
|
|
924
|
+
];
|
|
925
|
+
var Sessions = [1, n0, _Se,
|
|
926
|
+
0, () => SessionSummary$
|
|
927
|
+
];
|
|
928
|
+
var InitialCapacityConfigMap = [2, n0, _ICCM,
|
|
929
|
+
0, 0, () => InitialCapacityConfig$
|
|
930
|
+
];
|
|
931
|
+
var SensitivePropertiesMap = [2, n0, _SPM,
|
|
932
|
+
8, 0, 0
|
|
933
|
+
];
|
|
934
|
+
var WorkerTypeSpecificationInputMap = [2, n0, _WTSIM,
|
|
935
|
+
0, 0, () => WorkerTypeSpecificationInput$
|
|
936
|
+
];
|
|
937
|
+
var WorkerTypeSpecificationMap = [2, n0, _WTSM,
|
|
938
|
+
0, 0, () => WorkerTypeSpecification$
|
|
939
|
+
];
|
|
940
|
+
var JobDriver$ = [4, n0, _JD,
|
|
941
|
+
0,
|
|
942
|
+
[_sS, _h],
|
|
943
|
+
[[() => SparkSubmit$, 0], [() => Hive$, 0]]
|
|
944
|
+
];
|
|
945
|
+
var CancelJobRun$ = [9, n0, _CJR,
|
|
946
|
+
{ [_ht]: ["DELETE", "/applications/{applicationId}/jobruns/{jobRunId}", 200] }, () => CancelJobRunRequest$, () => CancelJobRunResponse$
|
|
947
|
+
];
|
|
948
|
+
var CreateApplication$ = [9, n0, _CA,
|
|
949
|
+
{ [_ht]: ["POST", "/applications", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
950
|
+
];
|
|
951
|
+
var DeleteApplication$ = [9, n0, _DA,
|
|
952
|
+
{ [_ht]: ["DELETE", "/applications/{applicationId}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
953
|
+
];
|
|
954
|
+
var GetApplication$ = [9, n0, _GA,
|
|
955
|
+
{ [_ht]: ["GET", "/applications/{applicationId}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
956
|
+
];
|
|
957
|
+
var GetDashboardForJobRun$ = [9, n0, _GDFJR,
|
|
958
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}/dashboard", 200] }, () => GetDashboardForJobRunRequest$, () => GetDashboardForJobRunResponse$
|
|
959
|
+
];
|
|
960
|
+
var GetJobRun$ = [9, n0, _GJR,
|
|
961
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}", 200] }, () => GetJobRunRequest$, () => GetJobRunResponse$
|
|
962
|
+
];
|
|
963
|
+
var GetResourceDashboard$ = [9, n0, _GRD,
|
|
964
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/dashboard", 200] }, () => GetResourceDashboardRequest$, () => GetResourceDashboardResponse$
|
|
965
|
+
];
|
|
966
|
+
var GetSession$ = [9, n0, _GS,
|
|
967
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
968
|
+
];
|
|
969
|
+
var GetSessionEndpoint$ = [9, n0, _GSE,
|
|
970
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/sessions/{sessionId}/endpoint", 200] }, () => GetSessionEndpointRequest$, () => GetSessionEndpointResponse$
|
|
971
|
+
];
|
|
972
|
+
var ListApplications$ = [9, n0, _LA,
|
|
973
|
+
{ [_ht]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
974
|
+
];
|
|
975
|
+
var ListJobRunAttempts$ = [9, n0, _LJRA,
|
|
976
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns/{jobRunId}/attempts", 200] }, () => ListJobRunAttemptsRequest$, () => ListJobRunAttemptsResponse$
|
|
977
|
+
];
|
|
978
|
+
var ListJobRuns$ = [9, n0, _LJR,
|
|
979
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/jobruns", 200] }, () => ListJobRunsRequest$, () => ListJobRunsResponse$
|
|
980
|
+
];
|
|
981
|
+
var ListSessions$ = [9, n0, _LS,
|
|
982
|
+
{ [_ht]: ["GET", "/applications/{applicationId}/sessions", 200] }, () => ListSessionsRequest$, () => ListSessionsResponse$
|
|
983
|
+
];
|
|
984
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
985
|
+
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
986
|
+
];
|
|
987
|
+
var StartApplication$ = [9, n0, _SA,
|
|
988
|
+
{ [_ht]: ["POST", "/applications/{applicationId}/start", 200] }, () => StartApplicationRequest$, () => StartApplicationResponse$
|
|
989
|
+
];
|
|
990
|
+
var StartJobRun$ = [9, n0, _SJR,
|
|
991
|
+
{ [_ht]: ["POST", "/applications/{applicationId}/jobruns", 200] }, () => StartJobRunRequest$, () => StartJobRunResponse$
|
|
992
|
+
];
|
|
993
|
+
var StartSession$ = [9, n0, _SSt,
|
|
994
|
+
{ [_ht]: ["POST", "/applications/{applicationId}/sessions", 200] }, () => StartSessionRequest$, () => StartSessionResponse$
|
|
995
|
+
];
|
|
996
|
+
var StopApplication$ = [9, n0, _SAt,
|
|
997
|
+
{ [_ht]: ["POST", "/applications/{applicationId}/stop", 200] }, () => StopApplicationRequest$, () => StopApplicationResponse$
|
|
998
|
+
];
|
|
999
|
+
var TagResource$ = [9, n0, _TR,
|
|
1000
|
+
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1001
|
+
];
|
|
1002
|
+
var TerminateSession$ = [9, n0, _TS,
|
|
1003
|
+
{ [_ht]: ["DELETE", "/applications/{applicationId}/sessions/{sessionId}", 200] }, () => TerminateSessionRequest$, () => TerminateSessionResponse$
|
|
1004
|
+
];
|
|
1005
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1006
|
+
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1007
|
+
];
|
|
1008
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
1009
|
+
{ [_ht]: ["PATCH", "/applications/{applicationId}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
1010
|
+
];
|
|
1011
|
+
|
|
1012
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1013
|
+
return {
|
|
1014
|
+
apiVersion: "2021-07-13",
|
|
1015
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1016
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1017
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1018
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1019
|
+
extensions: config?.extensions ?? [],
|
|
1020
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultEMRServerlessHttpAuthSchemeProvider,
|
|
1021
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1022
|
+
{
|
|
1023
|
+
schemeId: "aws.auth#sigv4",
|
|
1024
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1025
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1026
|
+
},
|
|
1027
|
+
],
|
|
1028
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1029
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1030
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1031
|
+
defaultNamespace: "com.amazonaws.emrserverless",
|
|
1032
|
+
errorTypeRegistries,
|
|
1033
|
+
version: "2021-07-13",
|
|
1034
|
+
serviceTarget: "AwsToledoWebService",
|
|
1035
|
+
},
|
|
1036
|
+
serviceId: config?.serviceId ?? "EMR Serverless",
|
|
1037
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1038
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1039
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
|
|
1043
|
+
const getRuntimeConfig = (config) => {
|
|
1044
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1045
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1046
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1047
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1048
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1049
|
+
const loaderConfig = {
|
|
1050
|
+
profile: config?.profile,
|
|
1051
|
+
logger: clientSharedValues.logger,
|
|
1052
|
+
};
|
|
1053
|
+
return {
|
|
1054
|
+
...clientSharedValues,
|
|
1055
|
+
...config,
|
|
1056
|
+
runtime: "node",
|
|
1057
|
+
defaultsMode,
|
|
1058
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1059
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1060
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1061
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1062
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1063
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1064
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1065
|
+
retryMode: config?.retryMode ??
|
|
1066
|
+
loadConfig({
|
|
1067
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1068
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1069
|
+
}, config),
|
|
1070
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1071
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1072
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1073
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1074
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
|
|
34
1078
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1079
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1080
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -459,36 +1503,153 @@ const SessionState = {
|
|
|
459
1503
|
TERMINATING: "TERMINATING",
|
|
460
1504
|
};
|
|
461
1505
|
|
|
1506
|
+
exports.Application$ = Application$;
|
|
462
1507
|
exports.ApplicationState = ApplicationState;
|
|
1508
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
463
1509
|
exports.Architecture = Architecture;
|
|
1510
|
+
exports.AutoStartConfig$ = AutoStartConfig$;
|
|
1511
|
+
exports.AutoStopConfig$ = AutoStopConfig$;
|
|
1512
|
+
exports.CancelJobRun$ = CancelJobRun$;
|
|
464
1513
|
exports.CancelJobRunCommand = CancelJobRunCommand;
|
|
1514
|
+
exports.CancelJobRunRequest$ = CancelJobRunRequest$;
|
|
1515
|
+
exports.CancelJobRunResponse$ = CancelJobRunResponse$;
|
|
1516
|
+
exports.CloudWatchLoggingConfiguration$ = CloudWatchLoggingConfiguration$;
|
|
1517
|
+
exports.Configuration$ = Configuration$;
|
|
1518
|
+
exports.ConfigurationOverrides$ = ConfigurationOverrides$;
|
|
1519
|
+
exports.ConflictException = ConflictException;
|
|
1520
|
+
exports.ConflictException$ = ConflictException$;
|
|
1521
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
465
1522
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1523
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1524
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1525
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
466
1526
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1527
|
+
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1528
|
+
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1529
|
+
exports.DiskEncryptionConfiguration$ = DiskEncryptionConfiguration$;
|
|
467
1530
|
exports.EMRServerless = EMRServerless;
|
|
468
1531
|
exports.EMRServerlessClient = EMRServerlessClient;
|
|
1532
|
+
exports.EMRServerlessServiceException = EMRServerlessServiceException;
|
|
1533
|
+
exports.EMRServerlessServiceException$ = EMRServerlessServiceException$;
|
|
1534
|
+
exports.GetApplication$ = GetApplication$;
|
|
469
1535
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1536
|
+
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1537
|
+
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1538
|
+
exports.GetDashboardForJobRun$ = GetDashboardForJobRun$;
|
|
470
1539
|
exports.GetDashboardForJobRunCommand = GetDashboardForJobRunCommand;
|
|
1540
|
+
exports.GetDashboardForJobRunRequest$ = GetDashboardForJobRunRequest$;
|
|
1541
|
+
exports.GetDashboardForJobRunResponse$ = GetDashboardForJobRunResponse$;
|
|
1542
|
+
exports.GetJobRun$ = GetJobRun$;
|
|
471
1543
|
exports.GetJobRunCommand = GetJobRunCommand;
|
|
1544
|
+
exports.GetJobRunRequest$ = GetJobRunRequest$;
|
|
1545
|
+
exports.GetJobRunResponse$ = GetJobRunResponse$;
|
|
1546
|
+
exports.GetResourceDashboard$ = GetResourceDashboard$;
|
|
472
1547
|
exports.GetResourceDashboardCommand = GetResourceDashboardCommand;
|
|
1548
|
+
exports.GetResourceDashboardRequest$ = GetResourceDashboardRequest$;
|
|
1549
|
+
exports.GetResourceDashboardResponse$ = GetResourceDashboardResponse$;
|
|
1550
|
+
exports.GetSession$ = GetSession$;
|
|
473
1551
|
exports.GetSessionCommand = GetSessionCommand;
|
|
1552
|
+
exports.GetSessionEndpoint$ = GetSessionEndpoint$;
|
|
474
1553
|
exports.GetSessionEndpointCommand = GetSessionEndpointCommand;
|
|
1554
|
+
exports.GetSessionEndpointRequest$ = GetSessionEndpointRequest$;
|
|
1555
|
+
exports.GetSessionEndpointResponse$ = GetSessionEndpointResponse$;
|
|
1556
|
+
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
1557
|
+
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
1558
|
+
exports.Hive$ = Hive$;
|
|
1559
|
+
exports.IdentityCenterConfiguration$ = IdentityCenterConfiguration$;
|
|
1560
|
+
exports.IdentityCenterConfigurationInput$ = IdentityCenterConfigurationInput$;
|
|
1561
|
+
exports.ImageConfiguration$ = ImageConfiguration$;
|
|
1562
|
+
exports.ImageConfigurationInput$ = ImageConfigurationInput$;
|
|
1563
|
+
exports.InitialCapacityConfig$ = InitialCapacityConfig$;
|
|
1564
|
+
exports.InteractiveConfiguration$ = InteractiveConfiguration$;
|
|
1565
|
+
exports.InternalServerException = InternalServerException;
|
|
1566
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1567
|
+
exports.JobDriver$ = JobDriver$;
|
|
1568
|
+
exports.JobLevelCostAllocationConfiguration$ = JobLevelCostAllocationConfiguration$;
|
|
1569
|
+
exports.JobRun$ = JobRun$;
|
|
1570
|
+
exports.JobRunAttemptSummary$ = JobRunAttemptSummary$;
|
|
1571
|
+
exports.JobRunExecutionIamPolicy$ = JobRunExecutionIamPolicy$;
|
|
475
1572
|
exports.JobRunMode = JobRunMode;
|
|
476
1573
|
exports.JobRunState = JobRunState;
|
|
1574
|
+
exports.JobRunSummary$ = JobRunSummary$;
|
|
1575
|
+
exports.ListApplications$ = ListApplications$;
|
|
477
1576
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1577
|
+
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1578
|
+
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1579
|
+
exports.ListJobRunAttempts$ = ListJobRunAttempts$;
|
|
478
1580
|
exports.ListJobRunAttemptsCommand = ListJobRunAttemptsCommand;
|
|
1581
|
+
exports.ListJobRunAttemptsRequest$ = ListJobRunAttemptsRequest$;
|
|
1582
|
+
exports.ListJobRunAttemptsResponse$ = ListJobRunAttemptsResponse$;
|
|
1583
|
+
exports.ListJobRuns$ = ListJobRuns$;
|
|
479
1584
|
exports.ListJobRunsCommand = ListJobRunsCommand;
|
|
1585
|
+
exports.ListJobRunsRequest$ = ListJobRunsRequest$;
|
|
1586
|
+
exports.ListJobRunsResponse$ = ListJobRunsResponse$;
|
|
1587
|
+
exports.ListSessions$ = ListSessions$;
|
|
480
1588
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
1589
|
+
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
1590
|
+
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
1591
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
481
1592
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1593
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1594
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1595
|
+
exports.ManagedPersistenceMonitoringConfiguration$ = ManagedPersistenceMonitoringConfiguration$;
|
|
1596
|
+
exports.MaximumAllowedResources$ = MaximumAllowedResources$;
|
|
1597
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
1598
|
+
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
1599
|
+
exports.PrometheusMonitoringConfiguration$ = PrometheusMonitoringConfiguration$;
|
|
1600
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1601
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
482
1602
|
exports.ResourceType = ResourceType;
|
|
1603
|
+
exports.ResourceUtilization$ = ResourceUtilization$;
|
|
1604
|
+
exports.RetryPolicy$ = RetryPolicy$;
|
|
1605
|
+
exports.S3MonitoringConfiguration$ = S3MonitoringConfiguration$;
|
|
1606
|
+
exports.SchedulerConfiguration$ = SchedulerConfiguration$;
|
|
1607
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1608
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1609
|
+
exports.Session$ = Session$;
|
|
1610
|
+
exports.SessionConfigurationOverrides$ = SessionConfigurationOverrides$;
|
|
483
1611
|
exports.SessionState = SessionState;
|
|
1612
|
+
exports.SessionSummary$ = SessionSummary$;
|
|
1613
|
+
exports.SparkSubmit$ = SparkSubmit$;
|
|
1614
|
+
exports.StartApplication$ = StartApplication$;
|
|
484
1615
|
exports.StartApplicationCommand = StartApplicationCommand;
|
|
1616
|
+
exports.StartApplicationRequest$ = StartApplicationRequest$;
|
|
1617
|
+
exports.StartApplicationResponse$ = StartApplicationResponse$;
|
|
1618
|
+
exports.StartJobRun$ = StartJobRun$;
|
|
485
1619
|
exports.StartJobRunCommand = StartJobRunCommand;
|
|
1620
|
+
exports.StartJobRunRequest$ = StartJobRunRequest$;
|
|
1621
|
+
exports.StartJobRunResponse$ = StartJobRunResponse$;
|
|
1622
|
+
exports.StartSession$ = StartSession$;
|
|
486
1623
|
exports.StartSessionCommand = StartSessionCommand;
|
|
1624
|
+
exports.StartSessionRequest$ = StartSessionRequest$;
|
|
1625
|
+
exports.StartSessionResponse$ = StartSessionResponse$;
|
|
1626
|
+
exports.StopApplication$ = StopApplication$;
|
|
487
1627
|
exports.StopApplicationCommand = StopApplicationCommand;
|
|
1628
|
+
exports.StopApplicationRequest$ = StopApplicationRequest$;
|
|
1629
|
+
exports.StopApplicationResponse$ = StopApplicationResponse$;
|
|
1630
|
+
exports.TagResource$ = TagResource$;
|
|
488
1631
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1632
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1633
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1634
|
+
exports.TerminateSession$ = TerminateSession$;
|
|
489
1635
|
exports.TerminateSessionCommand = TerminateSessionCommand;
|
|
1636
|
+
exports.TerminateSessionRequest$ = TerminateSessionRequest$;
|
|
1637
|
+
exports.TerminateSessionResponse$ = TerminateSessionResponse$;
|
|
1638
|
+
exports.TotalResourceUtilization$ = TotalResourceUtilization$;
|
|
1639
|
+
exports.UntagResource$ = UntagResource$;
|
|
490
1640
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1641
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1642
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1643
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
491
1644
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1645
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1646
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1647
|
+
exports.ValidationException = ValidationException;
|
|
1648
|
+
exports.ValidationException$ = ValidationException$;
|
|
1649
|
+
exports.WorkerResourceConfig$ = WorkerResourceConfig$;
|
|
1650
|
+
exports.WorkerTypeSpecification$ = WorkerTypeSpecification$;
|
|
1651
|
+
exports.WorkerTypeSpecificationInput$ = WorkerTypeSpecificationInput$;
|
|
1652
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
492
1653
|
exports.paginateListApplications = paginateListApplications;
|
|
493
1654
|
exports.paginateListJobRunAttempts = paginateListJobRunAttempts;
|
|
494
1655
|
exports.paginateListJobRuns = paginateListJobRuns;
|