@aws-sdk/client-emr-containers 3.1075.0 → 3.1077.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 +1159 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -52
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/EMRContainersServiceException.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 -885
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultEMRContainersHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "emr-containers",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultEMRContainersHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,996 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const m = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [h]],
|
|
80
|
+
[c, l],
|
|
81
|
+
["aws.partition", l, d],
|
|
82
|
+
[e, [{ [m]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [m]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
|
|
86
|
+
[g, [j, "us-gov-east-1"]],
|
|
87
|
+
[g, [j, "us-gov-west-1"]]
|
|
88
|
+
],
|
|
89
|
+
results: [
|
|
90
|
+
[a],
|
|
91
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
92
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
93
|
+
[h, k],
|
|
94
|
+
["https://emr-containers-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
95
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
96
|
+
["https://emr-containers.us-gov-east-1.amazonaws.com", k],
|
|
97
|
+
["https://emr-containers.us-gov-west-1.amazonaws.com", k],
|
|
98
|
+
["https://emr-containers-fips.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
99
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
100
|
+
["https://emr-containers.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
|
|
101
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
102
|
+
["https://emr-containers.{Region}.{PartitionResult#dnsSuffix}", k],
|
|
103
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
104
|
+
]
|
|
105
|
+
};
|
|
106
|
+
const root = 2;
|
|
107
|
+
const r = 100_000_000;
|
|
108
|
+
const nodes = new Int32Array([
|
|
109
|
+
-1, 1, -1,
|
|
110
|
+
0, 14, 3,
|
|
111
|
+
1, 4, r + 13,
|
|
112
|
+
2, 5, r + 13,
|
|
113
|
+
3, 8, 6,
|
|
114
|
+
4, 7, r + 12,
|
|
115
|
+
5, r + 10, r + 11,
|
|
116
|
+
4, 12, 9,
|
|
117
|
+
6, 10, r + 9,
|
|
118
|
+
7, r + 6, 11,
|
|
119
|
+
8, r + 7, r + 8,
|
|
120
|
+
5, 13, r + 5,
|
|
121
|
+
6, r + 4, r + 5,
|
|
122
|
+
3, r + 1, 15,
|
|
123
|
+
4, r + 2, r + 3,
|
|
124
|
+
]);
|
|
125
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
126
|
+
|
|
127
|
+
const cache = new EndpointCache({
|
|
128
|
+
size: 50,
|
|
129
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
130
|
+
});
|
|
131
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
132
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
133
|
+
endpointParams: endpointParams,
|
|
134
|
+
logger: context.logger,
|
|
135
|
+
}));
|
|
136
|
+
};
|
|
137
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
138
|
+
|
|
139
|
+
class EMRContainersServiceException extends ServiceException {
|
|
140
|
+
constructor(options) {
|
|
141
|
+
super(options);
|
|
142
|
+
Object.setPrototypeOf(this, EMRContainersServiceException.prototype);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
class InternalServerException extends EMRContainersServiceException {
|
|
147
|
+
name = "InternalServerException";
|
|
148
|
+
$fault = "server";
|
|
149
|
+
constructor(opts) {
|
|
150
|
+
super({
|
|
151
|
+
name: "InternalServerException",
|
|
152
|
+
$fault: "server",
|
|
153
|
+
...opts,
|
|
154
|
+
});
|
|
155
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
class ValidationException extends EMRContainersServiceException {
|
|
159
|
+
name = "ValidationException";
|
|
160
|
+
$fault = "client";
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ValidationException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
class ResourceNotFoundException extends EMRContainersServiceException {
|
|
171
|
+
name = "ResourceNotFoundException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "ResourceNotFoundException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class EKSRequestThrottledException extends EMRContainersServiceException {
|
|
183
|
+
name = "EKSRequestThrottledException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "EKSRequestThrottledException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, EKSRequestThrottledException.prototype);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class RequestThrottledException extends EMRContainersServiceException {
|
|
195
|
+
name = "RequestThrottledException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "RequestThrottledException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, RequestThrottledException.prototype);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
const _AC = "AuthorizationConfiguration";
|
|
208
|
+
const _C = "Certificate";
|
|
209
|
+
const _CI = "ContainerInfo";
|
|
210
|
+
const _CJR = "CancelJobRun";
|
|
211
|
+
const _CJRR = "CancelJobRunRequest";
|
|
212
|
+
const _CJRRa = "CancelJobRunResponse";
|
|
213
|
+
const _CJT = "CreateJobTemplate";
|
|
214
|
+
const _CJTR = "CreateJobTemplateRequest";
|
|
215
|
+
const _CJTRr = "CreateJobTemplateResponse";
|
|
216
|
+
const _CL = "ConfigurationList";
|
|
217
|
+
const _CLRC = "ContainerLogRotationConfiguration";
|
|
218
|
+
const _CME = "CreateManagedEndpoint";
|
|
219
|
+
const _CMER = "CreateManagedEndpointRequest";
|
|
220
|
+
const _CMERr = "CreateManagedEndpointResponse";
|
|
221
|
+
const _CO = "ConfigurationOverrides";
|
|
222
|
+
const _CP = "ContainerProvider";
|
|
223
|
+
const _CSC = "CreateSecurityConfiguration";
|
|
224
|
+
const _CSCR = "CreateSecurityConfigurationRequest";
|
|
225
|
+
const _CSCRr = "CreateSecurityConfigurationResponse";
|
|
226
|
+
const _CVC = "CreateVirtualCluster";
|
|
227
|
+
const _CVCR = "CreateVirtualClusterRequest";
|
|
228
|
+
const _CVCRr = "CreateVirtualClusterResponse";
|
|
229
|
+
const _CWMC = "CloudWatchMonitoringConfiguration";
|
|
230
|
+
const _Co = "Configuration";
|
|
231
|
+
const _Cr = "Credentials";
|
|
232
|
+
const _DJR = "DescribeJobRun";
|
|
233
|
+
const _DJRR = "DescribeJobRunRequest";
|
|
234
|
+
const _DJRRe = "DescribeJobRunResponse";
|
|
235
|
+
const _DJT = "DeleteJobTemplate";
|
|
236
|
+
const _DJTR = "DeleteJobTemplateRequest";
|
|
237
|
+
const _DJTRe = "DeleteJobTemplateResponse";
|
|
238
|
+
const _DJTRes = "DescribeJobTemplateRequest";
|
|
239
|
+
const _DJTResc = "DescribeJobTemplateResponse";
|
|
240
|
+
const _DJTe = "DescribeJobTemplate";
|
|
241
|
+
const _DME = "DeleteManagedEndpoint";
|
|
242
|
+
const _DMER = "DeleteManagedEndpointRequest";
|
|
243
|
+
const _DMERe = "DeleteManagedEndpointResponse";
|
|
244
|
+
const _DMERes = "DescribeManagedEndpointRequest";
|
|
245
|
+
const _DMEResc = "DescribeManagedEndpointResponse";
|
|
246
|
+
const _DMEe = "DescribeManagedEndpoint";
|
|
247
|
+
const _DSC = "DescribeSecurityConfiguration";
|
|
248
|
+
const _DSCR = "DescribeSecurityConfigurationRequest";
|
|
249
|
+
const _DSCRe = "DescribeSecurityConfigurationResponse";
|
|
250
|
+
const _DVC = "DeleteVirtualCluster";
|
|
251
|
+
const _DVCR = "DeleteVirtualClusterRequest";
|
|
252
|
+
const _DVCRe = "DeleteVirtualClusterResponse";
|
|
253
|
+
const _DVCRes = "DescribeVirtualClusterRequest";
|
|
254
|
+
const _DVCResc = "DescribeVirtualClusterResponse";
|
|
255
|
+
const _DVCe = "DescribeVirtualCluster";
|
|
256
|
+
const _E = "Endpoint";
|
|
257
|
+
const _EC = "EncryptionConfiguration";
|
|
258
|
+
const _EI = "EksInfo";
|
|
259
|
+
const _EKSRTE = "EKSRequestThrottledException";
|
|
260
|
+
const _EPA = "EntryPointArgument";
|
|
261
|
+
const _EPAn = "EntryPointArguments";
|
|
262
|
+
const _EPP = "EntryPointPath";
|
|
263
|
+
const _En = "Endpoints";
|
|
264
|
+
const _GMESC = "GetManagedEndpointSessionCredentials";
|
|
265
|
+
const _GMESCR = "GetManagedEndpointSessionCredentialsRequest";
|
|
266
|
+
const _GMESCRe = "GetManagedEndpointSessionCredentialsResponse";
|
|
267
|
+
const _ISE = "InternalServerException";
|
|
268
|
+
const _ITEC = "InTransitEncryptionConfiguration";
|
|
269
|
+
const _JD = "JobDriver";
|
|
270
|
+
const _JR = "JobRun";
|
|
271
|
+
const _JRo = "JobRuns";
|
|
272
|
+
const _JT = "JobTemplate";
|
|
273
|
+
const _JTD = "JobTemplateData";
|
|
274
|
+
const _JTo = "JobTemplates";
|
|
275
|
+
const _LFC = "LakeFormationConfiguration";
|
|
276
|
+
const _LJR = "ListJobRuns";
|
|
277
|
+
const _LJRR = "ListJobRunsRequest";
|
|
278
|
+
const _LJRRi = "ListJobRunsResponse";
|
|
279
|
+
const _LJT = "ListJobTemplates";
|
|
280
|
+
const _LJTR = "ListJobTemplatesRequest";
|
|
281
|
+
const _LJTRi = "ListJobTemplatesResponse";
|
|
282
|
+
const _LME = "ListManagedEndpoints";
|
|
283
|
+
const _LMER = "ListManagedEndpointsRequest";
|
|
284
|
+
const _LMERi = "ListManagedEndpointsResponse";
|
|
285
|
+
const _LSC = "ListSecurityConfigurations";
|
|
286
|
+
const _LSCR = "ListSecurityConfigurationsRequest";
|
|
287
|
+
const _LSCRi = "ListSecurityConfigurationsResponse";
|
|
288
|
+
const _LTFR = "ListTagsForResource";
|
|
289
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
290
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
291
|
+
const _LVC = "ListVirtualClusters";
|
|
292
|
+
const _LVCR = "ListVirtualClustersRequest";
|
|
293
|
+
const _LVCRi = "ListVirtualClustersResponse";
|
|
294
|
+
const _MC = "MonitoringConfiguration";
|
|
295
|
+
const _ML = "ManagedLogs";
|
|
296
|
+
const _PCO = "ParametricConfigurationOverrides";
|
|
297
|
+
const _PCWMC = "ParametricCloudWatchMonitoringConfiguration";
|
|
298
|
+
const _PMC = "ParametricMonitoringConfiguration";
|
|
299
|
+
const _PSMC = "ParametricS3MonitoringConfiguration";
|
|
300
|
+
const _RNFE = "ResourceNotFoundException";
|
|
301
|
+
const _RPC = "RetryPolicyConfiguration";
|
|
302
|
+
const _RPE = "RetryPolicyExecution";
|
|
303
|
+
const _RTE = "RequestThrottledException";
|
|
304
|
+
const _SC = "SecurityConfiguration";
|
|
305
|
+
const _SCD = "SecurityConfigurationData";
|
|
306
|
+
const _SCe = "SecurityConfigurations";
|
|
307
|
+
const _SJR = "StartJobRun";
|
|
308
|
+
const _SJRR = "StartJobRunRequest";
|
|
309
|
+
const _SJRRt = "StartJobRunResponse";
|
|
310
|
+
const _SMC = "S3MonitoringConfiguration";
|
|
311
|
+
const _SNI = "SecureNamespaceInfo";
|
|
312
|
+
const _SPM = "SensitivePropertiesMap";
|
|
313
|
+
const _SSJD = "SparkSqlJobDriver";
|
|
314
|
+
const _SSJDp = "SparkSubmitJobDriver";
|
|
315
|
+
const _SSP = "SparkSqlParameters";
|
|
316
|
+
const _SSPp = "SparkSubmitParameters";
|
|
317
|
+
const _T = "Token";
|
|
318
|
+
const _TLSCC = "TLSCertificateConfiguration";
|
|
319
|
+
const _TPC = "TemplateParameterConfiguration";
|
|
320
|
+
const _TPCM = "TemplateParameterConfigurationMap";
|
|
321
|
+
const _TR = "TagResource";
|
|
322
|
+
const _TRR = "TagResourceRequest";
|
|
323
|
+
const _TRRa = "TagResourceResponse";
|
|
324
|
+
const _UR = "UntagResource";
|
|
325
|
+
const _URR = "UntagResourceRequest";
|
|
326
|
+
const _URRn = "UntagResourceResponse";
|
|
327
|
+
const _VC = "VirtualCluster";
|
|
328
|
+
const _VCi = "VirtualClusters";
|
|
329
|
+
const _VE = "ValidationException";
|
|
330
|
+
const _a = "arn";
|
|
331
|
+
const _aAWSTRL = "allowAWSToRetainLogs";
|
|
332
|
+
const _aC = "applicationConfiguration";
|
|
333
|
+
const _aCu = "authorizationConfiguration";
|
|
334
|
+
const _aSTV = "authorizedSessionTagValue";
|
|
335
|
+
const _c = "client";
|
|
336
|
+
const _cA = "certificateArn";
|
|
337
|
+
const _cAC = "currentAttemptCount";
|
|
338
|
+
const _cAe = "certificateAuthority";
|
|
339
|
+
const _cAr = "createdAt";
|
|
340
|
+
const _cAre = "createdAfter";
|
|
341
|
+
const _cB = "createdBy";
|
|
342
|
+
const _cBr = "createdBefore";
|
|
343
|
+
const _cD = "certificateData";
|
|
344
|
+
const _cI = "clusterId";
|
|
345
|
+
const _cLRC = "containerLogRotationConfiguration";
|
|
346
|
+
const _cO = "configurationOverrides";
|
|
347
|
+
const _cP = "containerProvider";
|
|
348
|
+
const _cPI = "containerProviderId";
|
|
349
|
+
const _cPT = "containerProviderType";
|
|
350
|
+
const _cPTe = "certificateProviderType";
|
|
351
|
+
const _cT = "clientToken";
|
|
352
|
+
const _cTr = "credentialType";
|
|
353
|
+
const _cWMC = "cloudWatchMonitoringConfiguration";
|
|
354
|
+
const _cl = "classification";
|
|
355
|
+
const _co = "configurations";
|
|
356
|
+
const _cr = "credentials";
|
|
357
|
+
const _dE = "decryptionError";
|
|
358
|
+
const _dIS = "durationInSeconds";
|
|
359
|
+
const _dV = "defaultValue";
|
|
360
|
+
const _e = "error";
|
|
361
|
+
const _eA = "expiresAt";
|
|
362
|
+
const _eAEI = "eksAccessEntryIntegrated";
|
|
363
|
+
const _eC = "encryptionConfiguration";
|
|
364
|
+
const _eI = "endpointIdentifier";
|
|
365
|
+
const _eIk = "eksInfo";
|
|
366
|
+
const _eKA = "encryptionKeyArn";
|
|
367
|
+
const _eP = "entryPoint";
|
|
368
|
+
const _ePA = "entryPointArguments";
|
|
369
|
+
const _eRA = "executionRoleArn";
|
|
370
|
+
const _en = "endpoint";
|
|
371
|
+
const _end = "endpoints";
|
|
372
|
+
const _fA = "finishedAt";
|
|
373
|
+
const _fR = "failureReason";
|
|
374
|
+
const _h = "http";
|
|
375
|
+
const _hE = "httpError";
|
|
376
|
+
const _hQ = "httpQuery";
|
|
377
|
+
const _i = "id";
|
|
378
|
+
const _iTEC = "inTransitEncryptionConfiguration";
|
|
379
|
+
const _in = "info";
|
|
380
|
+
const _jD = "jobDriver";
|
|
381
|
+
const _jR = "jobRun";
|
|
382
|
+
const _jRo = "jobRuns";
|
|
383
|
+
const _jT = "jobTemplate";
|
|
384
|
+
const _jTD = "jobTemplateData";
|
|
385
|
+
const _jTI = "jobTemplateId";
|
|
386
|
+
const _jTP = "jobTemplateParameters";
|
|
387
|
+
const _jTo = "jobTags";
|
|
388
|
+
const _kKA = "kmsKeyArn";
|
|
389
|
+
const _lC = "logContext";
|
|
390
|
+
const _lFC = "lakeFormationConfiguration";
|
|
391
|
+
const _lGN = "logGroupName";
|
|
392
|
+
const _lSNP = "logStreamNamePrefix";
|
|
393
|
+
const _lU = "logUri";
|
|
394
|
+
const _m = "message";
|
|
395
|
+
const _mA = "maxAttempts";
|
|
396
|
+
const _mC = "monitoringConfiguration";
|
|
397
|
+
const _mFTK = "maxFilesToKeep";
|
|
398
|
+
const _mL = "managedLogs";
|
|
399
|
+
const _mR = "maxResults";
|
|
400
|
+
const _n = "name";
|
|
401
|
+
const _nL = "nodeLabel";
|
|
402
|
+
const _nT = "nextToken";
|
|
403
|
+
const _na = "namespace";
|
|
404
|
+
const _p = "properties";
|
|
405
|
+
const _pAUI = "persistentAppUI";
|
|
406
|
+
const _pC = "parameterConfiguration";
|
|
407
|
+
const _pCSA = "publicCertificateSecretArn";
|
|
408
|
+
const _pCSAr = "privateCertificateSecretArn";
|
|
409
|
+
const _qERA = "queryEngineRoleArn";
|
|
410
|
+
const _rA = "resourceArn";
|
|
411
|
+
const _rL = "releaseLabel";
|
|
412
|
+
const _rPC = "retryPolicyConfiguration";
|
|
413
|
+
const _rPE = "retryPolicyExecution";
|
|
414
|
+
const _rS = "rotationSize";
|
|
415
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.emrcontainers";
|
|
416
|
+
const _sC = "securityConfiguration";
|
|
417
|
+
const _sCD = "securityConfigurationData";
|
|
418
|
+
const _sCI = "securityConfigurationId";
|
|
419
|
+
const _sCe = "securityConfigurations";
|
|
420
|
+
const _sD = "stateDetails";
|
|
421
|
+
const _sG = "securityGroup";
|
|
422
|
+
const _sI = "subnetIds";
|
|
423
|
+
const _sMC = "s3MonitoringConfiguration";
|
|
424
|
+
const _sNI = "secureNamespaceInfo";
|
|
425
|
+
const _sSJD = "sparkSubmitJobDriver";
|
|
426
|
+
const _sSJDp = "sparkSqlJobDriver";
|
|
427
|
+
const _sSP = "sparkSqlParameters";
|
|
428
|
+
const _sSPp = "sparkSubmitParameters";
|
|
429
|
+
const _sU = "serverUrl";
|
|
430
|
+
const _se = "server";
|
|
431
|
+
const _st = "state";
|
|
432
|
+
const _sta = "states";
|
|
433
|
+
const _t = "type";
|
|
434
|
+
const _tCC = "tlsCertificateConfiguration";
|
|
435
|
+
const _tK = "tagKeys";
|
|
436
|
+
const _ta = "tags";
|
|
437
|
+
const _te = "templates";
|
|
438
|
+
const _to = "token";
|
|
439
|
+
const _ty = "types";
|
|
440
|
+
const _vC = "virtualCluster";
|
|
441
|
+
const _vCI = "virtualClusterId";
|
|
442
|
+
const _vCIi = "virtualClusterIdentifier";
|
|
443
|
+
const _vCi = "virtualClusters";
|
|
444
|
+
const n0 = "com.amazonaws.emrcontainers";
|
|
445
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
446
|
+
var EMRContainersServiceException$ = [-3, _s, "EMRContainersServiceException", 0, [], []];
|
|
447
|
+
_s_registry.registerError(EMRContainersServiceException$, EMRContainersServiceException);
|
|
448
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
449
|
+
var EKSRequestThrottledException$ = [-3, n0, _EKSRTE,
|
|
450
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
451
|
+
[_m],
|
|
452
|
+
[0]
|
|
453
|
+
];
|
|
454
|
+
n0_registry.registerError(EKSRequestThrottledException$, EKSRequestThrottledException);
|
|
455
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
456
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
457
|
+
[_m],
|
|
458
|
+
[0]
|
|
459
|
+
];
|
|
460
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
461
|
+
var RequestThrottledException$ = [-3, n0, _RTE,
|
|
462
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
463
|
+
[_m],
|
|
464
|
+
[0]
|
|
465
|
+
];
|
|
466
|
+
n0_registry.registerError(RequestThrottledException$, RequestThrottledException);
|
|
467
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
468
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
469
|
+
[_m],
|
|
470
|
+
[0]
|
|
471
|
+
];
|
|
472
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
473
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
474
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
475
|
+
[_m],
|
|
476
|
+
[0]
|
|
477
|
+
];
|
|
478
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
479
|
+
const errorTypeRegistries = [
|
|
480
|
+
_s_registry,
|
|
481
|
+
n0_registry,
|
|
482
|
+
];
|
|
483
|
+
var EntryPointArgument = [0, n0, _EPA, 8, 0];
|
|
484
|
+
var EntryPointPath = [0, n0, _EPP, 8, 0];
|
|
485
|
+
var SparkSqlParameters = [0, n0, _SSP, 8, 0];
|
|
486
|
+
var SparkSubmitParameters = [0, n0, _SSPp, 8, 0];
|
|
487
|
+
var Token = [0, n0, _T, 8, 0];
|
|
488
|
+
var AuthorizationConfiguration$ = [3, n0, _AC,
|
|
489
|
+
0,
|
|
490
|
+
[_lFC, _eC],
|
|
491
|
+
[() => LakeFormationConfiguration$, () => EncryptionConfiguration$]
|
|
492
|
+
];
|
|
493
|
+
var CancelJobRunRequest$ = [3, n0, _CJRR,
|
|
494
|
+
0,
|
|
495
|
+
[_i, _vCI],
|
|
496
|
+
[[0, 1], [0, 1]], 2
|
|
497
|
+
];
|
|
498
|
+
var CancelJobRunResponse$ = [3, n0, _CJRRa,
|
|
499
|
+
0,
|
|
500
|
+
[_i, _vCI],
|
|
501
|
+
[0, 0]
|
|
502
|
+
];
|
|
503
|
+
var Certificate$ = [3, n0, _C,
|
|
504
|
+
0,
|
|
505
|
+
[_cA, _cD],
|
|
506
|
+
[0, 0]
|
|
507
|
+
];
|
|
508
|
+
var CloudWatchMonitoringConfiguration$ = [3, n0, _CWMC,
|
|
509
|
+
0,
|
|
510
|
+
[_lGN, _lSNP],
|
|
511
|
+
[0, 0], 1
|
|
512
|
+
];
|
|
513
|
+
var Configuration$ = [3, n0, _Co,
|
|
514
|
+
0,
|
|
515
|
+
[_cl, _p, _co],
|
|
516
|
+
[0, [() => SensitivePropertiesMap, 0], [() => ConfigurationList, 0]], 1
|
|
517
|
+
];
|
|
518
|
+
var ConfigurationOverrides$ = [3, n0, _CO,
|
|
519
|
+
0,
|
|
520
|
+
[_aC, _mC],
|
|
521
|
+
[[() => ConfigurationList, 0], () => MonitoringConfiguration$]
|
|
522
|
+
];
|
|
523
|
+
var ContainerLogRotationConfiguration$ = [3, n0, _CLRC,
|
|
524
|
+
0,
|
|
525
|
+
[_rS, _mFTK],
|
|
526
|
+
[0, 1], 2
|
|
527
|
+
];
|
|
528
|
+
var ContainerProvider$ = [3, n0, _CP,
|
|
529
|
+
0,
|
|
530
|
+
[_t, _i, _in],
|
|
531
|
+
[0, 0, () => ContainerInfo$], 2
|
|
532
|
+
];
|
|
533
|
+
var CreateJobTemplateRequest$ = [3, n0, _CJTR,
|
|
534
|
+
0,
|
|
535
|
+
[_n, _jTD, _cT, _ta, _kKA],
|
|
536
|
+
[0, [() => JobTemplateData$, 0], [0, 4], 128 | 0, 0], 2
|
|
537
|
+
];
|
|
538
|
+
var CreateJobTemplateResponse$ = [3, n0, _CJTRr,
|
|
539
|
+
0,
|
|
540
|
+
[_i, _n, _a, _cAr],
|
|
541
|
+
[0, 0, 0, 5]
|
|
542
|
+
];
|
|
543
|
+
var CreateManagedEndpointRequest$ = [3, n0, _CMER,
|
|
544
|
+
0,
|
|
545
|
+
[_n, _vCI, _t, _rL, _eRA, _cA, _cO, _cT, _ta],
|
|
546
|
+
[0, [0, 1], 0, 0, 0, 0, [() => ConfigurationOverrides$, 0], [0, 4], 128 | 0], 5
|
|
547
|
+
];
|
|
548
|
+
var CreateManagedEndpointResponse$ = [3, n0, _CMERr,
|
|
549
|
+
0,
|
|
550
|
+
[_i, _n, _a, _vCI],
|
|
551
|
+
[0, 0, 0, 0]
|
|
552
|
+
];
|
|
553
|
+
var CreateSecurityConfigurationRequest$ = [3, n0, _CSCR,
|
|
554
|
+
0,
|
|
555
|
+
[_n, _sCD, _cT, _cP, _ta],
|
|
556
|
+
[0, () => SecurityConfigurationData$, [0, 4], () => ContainerProvider$, 128 | 0], 2
|
|
557
|
+
];
|
|
558
|
+
var CreateSecurityConfigurationResponse$ = [3, n0, _CSCRr,
|
|
559
|
+
0,
|
|
560
|
+
[_i, _n, _a],
|
|
561
|
+
[0, 0, 0]
|
|
562
|
+
];
|
|
563
|
+
var CreateVirtualClusterRequest$ = [3, n0, _CVCR,
|
|
564
|
+
0,
|
|
565
|
+
[_n, _cP, _cT, _ta, _sCI],
|
|
566
|
+
[0, () => ContainerProvider$, [0, 4], 128 | 0, 0], 2
|
|
567
|
+
];
|
|
568
|
+
var CreateVirtualClusterResponse$ = [3, n0, _CVCRr,
|
|
569
|
+
0,
|
|
570
|
+
[_i, _n, _a],
|
|
571
|
+
[0, 0, 0]
|
|
572
|
+
];
|
|
573
|
+
var DeleteJobTemplateRequest$ = [3, n0, _DJTR,
|
|
574
|
+
0,
|
|
575
|
+
[_i],
|
|
576
|
+
[[0, 1]], 1
|
|
577
|
+
];
|
|
578
|
+
var DeleteJobTemplateResponse$ = [3, n0, _DJTRe,
|
|
579
|
+
0,
|
|
580
|
+
[_i],
|
|
581
|
+
[0]
|
|
582
|
+
];
|
|
583
|
+
var DeleteManagedEndpointRequest$ = [3, n0, _DMER,
|
|
584
|
+
0,
|
|
585
|
+
[_i, _vCI],
|
|
586
|
+
[[0, 1], [0, 1]], 2
|
|
587
|
+
];
|
|
588
|
+
var DeleteManagedEndpointResponse$ = [3, n0, _DMERe,
|
|
589
|
+
0,
|
|
590
|
+
[_i, _vCI],
|
|
591
|
+
[0, 0]
|
|
592
|
+
];
|
|
593
|
+
var DeleteVirtualClusterRequest$ = [3, n0, _DVCR,
|
|
594
|
+
0,
|
|
595
|
+
[_i],
|
|
596
|
+
[[0, 1]], 1
|
|
597
|
+
];
|
|
598
|
+
var DeleteVirtualClusterResponse$ = [3, n0, _DVCRe,
|
|
599
|
+
0,
|
|
600
|
+
[_i],
|
|
601
|
+
[0]
|
|
602
|
+
];
|
|
603
|
+
var DescribeJobRunRequest$ = [3, n0, _DJRR,
|
|
604
|
+
0,
|
|
605
|
+
[_i, _vCI],
|
|
606
|
+
[[0, 1], [0, 1]], 2
|
|
607
|
+
];
|
|
608
|
+
var DescribeJobRunResponse$ = [3, n0, _DJRRe,
|
|
609
|
+
0,
|
|
610
|
+
[_jR],
|
|
611
|
+
[[() => JobRun$, 0]]
|
|
612
|
+
];
|
|
613
|
+
var DescribeJobTemplateRequest$ = [3, n0, _DJTRes,
|
|
614
|
+
0,
|
|
615
|
+
[_i],
|
|
616
|
+
[[0, 1]], 1
|
|
617
|
+
];
|
|
618
|
+
var DescribeJobTemplateResponse$ = [3, n0, _DJTResc,
|
|
619
|
+
0,
|
|
620
|
+
[_jT],
|
|
621
|
+
[[() => JobTemplate$, 0]]
|
|
622
|
+
];
|
|
623
|
+
var DescribeManagedEndpointRequest$ = [3, n0, _DMERes,
|
|
624
|
+
0,
|
|
625
|
+
[_i, _vCI],
|
|
626
|
+
[[0, 1], [0, 1]], 2
|
|
627
|
+
];
|
|
628
|
+
var DescribeManagedEndpointResponse$ = [3, n0, _DMEResc,
|
|
629
|
+
0,
|
|
630
|
+
[_en],
|
|
631
|
+
[[() => Endpoint$, 0]]
|
|
632
|
+
];
|
|
633
|
+
var DescribeSecurityConfigurationRequest$ = [3, n0, _DSCR,
|
|
634
|
+
0,
|
|
635
|
+
[_i],
|
|
636
|
+
[[0, 1]], 1
|
|
637
|
+
];
|
|
638
|
+
var DescribeSecurityConfigurationResponse$ = [3, n0, _DSCRe,
|
|
639
|
+
0,
|
|
640
|
+
[_sC],
|
|
641
|
+
[() => SecurityConfiguration$]
|
|
642
|
+
];
|
|
643
|
+
var DescribeVirtualClusterRequest$ = [3, n0, _DVCRes,
|
|
644
|
+
0,
|
|
645
|
+
[_i],
|
|
646
|
+
[[0, 1]], 1
|
|
647
|
+
];
|
|
648
|
+
var DescribeVirtualClusterResponse$ = [3, n0, _DVCResc,
|
|
649
|
+
0,
|
|
650
|
+
[_vC],
|
|
651
|
+
[() => VirtualCluster$]
|
|
652
|
+
];
|
|
653
|
+
var EksInfo$ = [3, n0, _EI,
|
|
654
|
+
0,
|
|
655
|
+
[_na, _nL],
|
|
656
|
+
[0, 0]
|
|
657
|
+
];
|
|
658
|
+
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
659
|
+
0,
|
|
660
|
+
[_iTEC],
|
|
661
|
+
[() => InTransitEncryptionConfiguration$]
|
|
662
|
+
];
|
|
663
|
+
var Endpoint$ = [3, n0, _E,
|
|
664
|
+
0,
|
|
665
|
+
[_i, _n, _a, _vCI, _t, _st, _rL, _eRA, _cA, _cAe, _cO, _sU, _cAr, _sG, _sI, _sD, _fR, _ta],
|
|
666
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => Certificate$, [() => ConfigurationOverrides$, 0], 0, 5, 0, 64 | 0, 0, 0, 128 | 0]
|
|
667
|
+
];
|
|
668
|
+
var GetManagedEndpointSessionCredentialsRequest$ = [3, n0, _GMESCR,
|
|
669
|
+
0,
|
|
670
|
+
[_eI, _vCIi, _eRA, _cTr, _dIS, _lC, _cT],
|
|
671
|
+
[[0, 1], [0, 1], 0, 0, 1, 0, [0, 4]], 4
|
|
672
|
+
];
|
|
673
|
+
var GetManagedEndpointSessionCredentialsResponse$ = [3, n0, _GMESCRe,
|
|
674
|
+
0,
|
|
675
|
+
[_i, _cr, _eA],
|
|
676
|
+
[0, [() => Credentials$, 0], 5]
|
|
677
|
+
];
|
|
678
|
+
var InTransitEncryptionConfiguration$ = [3, n0, _ITEC,
|
|
679
|
+
0,
|
|
680
|
+
[_tCC],
|
|
681
|
+
[() => TLSCertificateConfiguration$]
|
|
682
|
+
];
|
|
683
|
+
var JobDriver$ = [3, n0, _JD,
|
|
684
|
+
0,
|
|
685
|
+
[_sSJD, _sSJDp],
|
|
686
|
+
[[() => SparkSubmitJobDriver$, 0], [() => SparkSqlJobDriver$, 0]]
|
|
687
|
+
];
|
|
688
|
+
var JobRun$ = [3, n0, _JR,
|
|
689
|
+
0,
|
|
690
|
+
[_i, _n, _vCI, _a, _st, _cT, _eRA, _rL, _cO, _jD, _cAr, _cB, _fA, _sD, _fR, _ta, _rPC, _rPE],
|
|
691
|
+
[0, 0, 0, 0, 0, 0, 0, 0, [() => ConfigurationOverrides$, 0], [() => JobDriver$, 0], 5, 0, 5, 0, 0, 128 | 0, () => RetryPolicyConfiguration$, () => RetryPolicyExecution$]
|
|
692
|
+
];
|
|
693
|
+
var JobTemplate$ = [3, n0, _JT,
|
|
694
|
+
0,
|
|
695
|
+
[_jTD, _n, _i, _a, _cAr, _cB, _ta, _kKA, _dE],
|
|
696
|
+
[[() => JobTemplateData$, 0], 0, 0, 0, 5, 0, 128 | 0, 0, 0], 1
|
|
697
|
+
];
|
|
698
|
+
var JobTemplateData$ = [3, n0, _JTD,
|
|
699
|
+
0,
|
|
700
|
+
[_eRA, _rL, _jD, _cO, _pC, _jTo],
|
|
701
|
+
[0, 0, [() => JobDriver$, 0], [() => ParametricConfigurationOverrides$, 0], () => TemplateParameterConfigurationMap, 128 | 0], 3
|
|
702
|
+
];
|
|
703
|
+
var LakeFormationConfiguration$ = [3, n0, _LFC,
|
|
704
|
+
0,
|
|
705
|
+
[_aSTV, _sNI, _qERA],
|
|
706
|
+
[0, () => SecureNamespaceInfo$, 0]
|
|
707
|
+
];
|
|
708
|
+
var ListJobRunsRequest$ = [3, n0, _LJRR,
|
|
709
|
+
0,
|
|
710
|
+
[_vCI, _cBr, _cAre, _n, _sta, _mR, _nT],
|
|
711
|
+
[[0, 1], [5, { [_hQ]: _cBr }], [5, { [_hQ]: _cAre }], [0, { [_hQ]: _n }], [64 | 0, { [_hQ]: _sta }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
712
|
+
];
|
|
713
|
+
var ListJobRunsResponse$ = [3, n0, _LJRRi,
|
|
714
|
+
0,
|
|
715
|
+
[_jRo, _nT],
|
|
716
|
+
[[() => JobRuns, 0], 0]
|
|
717
|
+
];
|
|
718
|
+
var ListJobTemplatesRequest$ = [3, n0, _LJTR,
|
|
719
|
+
0,
|
|
720
|
+
[_cAre, _cBr, _mR, _nT],
|
|
721
|
+
[[5, { [_hQ]: _cAre }], [5, { [_hQ]: _cBr }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
722
|
+
];
|
|
723
|
+
var ListJobTemplatesResponse$ = [3, n0, _LJTRi,
|
|
724
|
+
0,
|
|
725
|
+
[_te, _nT],
|
|
726
|
+
[[() => JobTemplates, 0], 0]
|
|
727
|
+
];
|
|
728
|
+
var ListManagedEndpointsRequest$ = [3, n0, _LMER,
|
|
729
|
+
0,
|
|
730
|
+
[_vCI, _cBr, _cAre, _ty, _sta, _mR, _nT],
|
|
731
|
+
[[0, 1], [5, { [_hQ]: _cBr }], [5, { [_hQ]: _cAre }], [64 | 0, { [_hQ]: _ty }], [64 | 0, { [_hQ]: _sta }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
732
|
+
];
|
|
733
|
+
var ListManagedEndpointsResponse$ = [3, n0, _LMERi,
|
|
734
|
+
0,
|
|
735
|
+
[_end, _nT],
|
|
736
|
+
[[() => Endpoints, 0], 0]
|
|
737
|
+
];
|
|
738
|
+
var ListSecurityConfigurationsRequest$ = [3, n0, _LSCR,
|
|
739
|
+
0,
|
|
740
|
+
[_cAre, _cBr, _mR, _nT],
|
|
741
|
+
[[5, { [_hQ]: _cAre }], [5, { [_hQ]: _cBr }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
742
|
+
];
|
|
743
|
+
var ListSecurityConfigurationsResponse$ = [3, n0, _LSCRi,
|
|
744
|
+
0,
|
|
745
|
+
[_sCe, _nT],
|
|
746
|
+
[() => SecurityConfigurations, 0]
|
|
747
|
+
];
|
|
748
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
749
|
+
0,
|
|
750
|
+
[_rA],
|
|
751
|
+
[[0, 1]], 1
|
|
752
|
+
];
|
|
753
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
754
|
+
0,
|
|
755
|
+
[_ta],
|
|
756
|
+
[128 | 0]
|
|
757
|
+
];
|
|
758
|
+
var ListVirtualClustersRequest$ = [3, n0, _LVCR,
|
|
759
|
+
0,
|
|
760
|
+
[_cPI, _cPT, _cAre, _cBr, _sta, _mR, _nT, _eAEI],
|
|
761
|
+
[[0, { [_hQ]: _cPI }], [0, { [_hQ]: _cPT }], [5, { [_hQ]: _cAre }], [5, { [_hQ]: _cBr }], [64 | 0, { [_hQ]: _sta }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [2, { [_hQ]: _eAEI }]]
|
|
762
|
+
];
|
|
763
|
+
var ListVirtualClustersResponse$ = [3, n0, _LVCRi,
|
|
764
|
+
0,
|
|
765
|
+
[_vCi, _nT],
|
|
766
|
+
[() => VirtualClusters, 0]
|
|
767
|
+
];
|
|
768
|
+
var ManagedLogs$ = [3, n0, _ML,
|
|
769
|
+
0,
|
|
770
|
+
[_aAWSTRL, _eKA],
|
|
771
|
+
[0, 0]
|
|
772
|
+
];
|
|
773
|
+
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
774
|
+
0,
|
|
775
|
+
[_mL, _pAUI, _cWMC, _sMC, _cLRC],
|
|
776
|
+
[() => ManagedLogs$, 0, () => CloudWatchMonitoringConfiguration$, () => S3MonitoringConfiguration$, () => ContainerLogRotationConfiguration$]
|
|
777
|
+
];
|
|
778
|
+
var ParametricCloudWatchMonitoringConfiguration$ = [3, n0, _PCWMC,
|
|
779
|
+
0,
|
|
780
|
+
[_lGN, _lSNP],
|
|
781
|
+
[0, 0]
|
|
782
|
+
];
|
|
783
|
+
var ParametricConfigurationOverrides$ = [3, n0, _PCO,
|
|
784
|
+
0,
|
|
785
|
+
[_aC, _mC],
|
|
786
|
+
[[() => ConfigurationList, 0], () => ParametricMonitoringConfiguration$]
|
|
787
|
+
];
|
|
788
|
+
var ParametricMonitoringConfiguration$ = [3, n0, _PMC,
|
|
789
|
+
0,
|
|
790
|
+
[_pAUI, _cWMC, _sMC],
|
|
791
|
+
[0, () => ParametricCloudWatchMonitoringConfiguration$, () => ParametricS3MonitoringConfiguration$]
|
|
792
|
+
];
|
|
793
|
+
var ParametricS3MonitoringConfiguration$ = [3, n0, _PSMC,
|
|
794
|
+
0,
|
|
795
|
+
[_lU],
|
|
796
|
+
[0]
|
|
797
|
+
];
|
|
798
|
+
var RetryPolicyConfiguration$ = [3, n0, _RPC,
|
|
799
|
+
0,
|
|
800
|
+
[_mA],
|
|
801
|
+
[1], 1
|
|
802
|
+
];
|
|
803
|
+
var RetryPolicyExecution$ = [3, n0, _RPE,
|
|
804
|
+
0,
|
|
805
|
+
[_cAC],
|
|
806
|
+
[1], 1
|
|
807
|
+
];
|
|
808
|
+
var S3MonitoringConfiguration$ = [3, n0, _SMC,
|
|
809
|
+
0,
|
|
810
|
+
[_lU],
|
|
811
|
+
[0], 1
|
|
812
|
+
];
|
|
813
|
+
var SecureNamespaceInfo$ = [3, n0, _SNI,
|
|
814
|
+
0,
|
|
815
|
+
[_cI, _na],
|
|
816
|
+
[0, 0]
|
|
817
|
+
];
|
|
818
|
+
var SecurityConfiguration$ = [3, n0, _SC,
|
|
819
|
+
0,
|
|
820
|
+
[_i, _n, _a, _cAr, _cB, _sCD, _ta],
|
|
821
|
+
[0, 0, 0, 5, 0, () => SecurityConfigurationData$, 128 | 0]
|
|
822
|
+
];
|
|
823
|
+
var SecurityConfigurationData$ = [3, n0, _SCD,
|
|
824
|
+
0,
|
|
825
|
+
[_aCu],
|
|
826
|
+
[() => AuthorizationConfiguration$]
|
|
827
|
+
];
|
|
828
|
+
var SparkSqlJobDriver$ = [3, n0, _SSJD,
|
|
829
|
+
0,
|
|
830
|
+
[_eP, _sSP],
|
|
831
|
+
[[() => EntryPointPath, 0], [() => SparkSqlParameters, 0]]
|
|
832
|
+
];
|
|
833
|
+
var SparkSubmitJobDriver$ = [3, n0, _SSJDp,
|
|
834
|
+
0,
|
|
835
|
+
[_eP, _ePA, _sSPp],
|
|
836
|
+
[[() => EntryPointPath, 0], [() => EntryPointArguments, 0], [() => SparkSubmitParameters, 0]], 1
|
|
837
|
+
];
|
|
838
|
+
var StartJobRunRequest$ = [3, n0, _SJRR,
|
|
839
|
+
0,
|
|
840
|
+
[_vCI, _n, _cT, _eRA, _rL, _jD, _cO, _ta, _jTI, _jTP, _rPC],
|
|
841
|
+
[[0, 1], 0, [0, 4], 0, 0, [() => JobDriver$, 0], [() => ConfigurationOverrides$, 0], 128 | 0, 0, 128 | 0, () => RetryPolicyConfiguration$], 1
|
|
842
|
+
];
|
|
843
|
+
var StartJobRunResponse$ = [3, n0, _SJRRt,
|
|
844
|
+
0,
|
|
845
|
+
[_i, _n, _a, _vCI],
|
|
846
|
+
[0, 0, 0, 0]
|
|
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 TemplateParameterConfiguration$ = [3, n0, _TPC,
|
|
859
|
+
0,
|
|
860
|
+
[_t, _dV],
|
|
861
|
+
[0, 0]
|
|
862
|
+
];
|
|
863
|
+
var TLSCertificateConfiguration$ = [3, n0, _TLSCC,
|
|
864
|
+
0,
|
|
865
|
+
[_cPTe, _pCSA, _pCSAr],
|
|
866
|
+
[0, 0, 0]
|
|
867
|
+
];
|
|
868
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
869
|
+
0,
|
|
870
|
+
[_rA, _tK],
|
|
871
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
872
|
+
];
|
|
873
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
874
|
+
0,
|
|
875
|
+
[],
|
|
876
|
+
[]
|
|
877
|
+
];
|
|
878
|
+
var VirtualCluster$ = [3, n0, _VC,
|
|
879
|
+
0,
|
|
880
|
+
[_i, _n, _a, _st, _cP, _cAr, _ta, _sCI],
|
|
881
|
+
[0, 0, 0, 0, () => ContainerProvider$, 5, 128 | 0, 0]
|
|
882
|
+
];
|
|
883
|
+
var ConfigurationList = [1, n0, _CL,
|
|
884
|
+
0, [() => Configuration$,
|
|
885
|
+
0]
|
|
886
|
+
];
|
|
887
|
+
var Endpoints = [1, n0, _En,
|
|
888
|
+
0, [() => Endpoint$,
|
|
889
|
+
0]
|
|
890
|
+
];
|
|
891
|
+
var EntryPointArguments = [1, n0, _EPAn,
|
|
892
|
+
0, [() => EntryPointArgument,
|
|
893
|
+
0]
|
|
894
|
+
];
|
|
895
|
+
var JobRuns = [1, n0, _JRo,
|
|
896
|
+
0, [() => JobRun$,
|
|
897
|
+
0]
|
|
898
|
+
];
|
|
899
|
+
var JobTemplates = [1, n0, _JTo,
|
|
900
|
+
0, [() => JobTemplate$,
|
|
901
|
+
0]
|
|
902
|
+
];
|
|
903
|
+
var SecurityConfigurations = [1, n0, _SCe,
|
|
904
|
+
0, () => SecurityConfiguration$
|
|
905
|
+
];
|
|
906
|
+
var VirtualClusters = [1, n0, _VCi,
|
|
907
|
+
0, () => VirtualCluster$
|
|
908
|
+
];
|
|
909
|
+
var SensitivePropertiesMap = [2, n0, _SPM,
|
|
910
|
+
8, 0, 0
|
|
911
|
+
];
|
|
912
|
+
var TemplateParameterConfigurationMap = [2, n0, _TPCM,
|
|
913
|
+
0, 0, () => TemplateParameterConfiguration$
|
|
914
|
+
];
|
|
915
|
+
var ContainerInfo$ = [4, n0, _CI,
|
|
916
|
+
0,
|
|
917
|
+
[_eIk],
|
|
918
|
+
[() => EksInfo$]
|
|
919
|
+
];
|
|
920
|
+
var Credentials$ = [4, n0, _Cr,
|
|
921
|
+
0,
|
|
922
|
+
[_to],
|
|
923
|
+
[[() => Token, 0]]
|
|
924
|
+
];
|
|
925
|
+
var CancelJobRun$ = [9, n0, _CJR,
|
|
926
|
+
{ [_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200] }, () => CancelJobRunRequest$, () => CancelJobRunResponse$
|
|
927
|
+
];
|
|
928
|
+
var CreateJobTemplate$ = [9, n0, _CJT,
|
|
929
|
+
{ [_h]: ["POST", "/jobtemplates", 200] }, () => CreateJobTemplateRequest$, () => CreateJobTemplateResponse$
|
|
930
|
+
];
|
|
931
|
+
var CreateManagedEndpoint$ = [9, n0, _CME,
|
|
932
|
+
{ [_h]: ["POST", "/virtualclusters/{virtualClusterId}/endpoints", 200] }, () => CreateManagedEndpointRequest$, () => CreateManagedEndpointResponse$
|
|
933
|
+
];
|
|
934
|
+
var CreateSecurityConfiguration$ = [9, n0, _CSC,
|
|
935
|
+
{ [_h]: ["POST", "/securityconfigurations", 200] }, () => CreateSecurityConfigurationRequest$, () => CreateSecurityConfigurationResponse$
|
|
936
|
+
];
|
|
937
|
+
var CreateVirtualCluster$ = [9, n0, _CVC,
|
|
938
|
+
{ [_h]: ["POST", "/virtualclusters", 200] }, () => CreateVirtualClusterRequest$, () => CreateVirtualClusterResponse$
|
|
939
|
+
];
|
|
940
|
+
var DeleteJobTemplate$ = [9, n0, _DJT,
|
|
941
|
+
{ [_h]: ["DELETE", "/jobtemplates/{id}", 200] }, () => DeleteJobTemplateRequest$, () => DeleteJobTemplateResponse$
|
|
942
|
+
];
|
|
943
|
+
var DeleteManagedEndpoint$ = [9, n0, _DME,
|
|
944
|
+
{ [_h]: ["DELETE", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200] }, () => DeleteManagedEndpointRequest$, () => DeleteManagedEndpointResponse$
|
|
945
|
+
];
|
|
946
|
+
var DeleteVirtualCluster$ = [9, n0, _DVC,
|
|
947
|
+
{ [_h]: ["DELETE", "/virtualclusters/{id}", 200] }, () => DeleteVirtualClusterRequest$, () => DeleteVirtualClusterResponse$
|
|
948
|
+
];
|
|
949
|
+
var DescribeJobRun$ = [9, n0, _DJR,
|
|
950
|
+
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns/{id}", 200] }, () => DescribeJobRunRequest$, () => DescribeJobRunResponse$
|
|
951
|
+
];
|
|
952
|
+
var DescribeJobTemplate$ = [9, n0, _DJTe,
|
|
953
|
+
{ [_h]: ["GET", "/jobtemplates/{id}", 200] }, () => DescribeJobTemplateRequest$, () => DescribeJobTemplateResponse$
|
|
954
|
+
];
|
|
955
|
+
var DescribeManagedEndpoint$ = [9, n0, _DMEe,
|
|
956
|
+
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints/{id}", 200] }, () => DescribeManagedEndpointRequest$, () => DescribeManagedEndpointResponse$
|
|
957
|
+
];
|
|
958
|
+
var DescribeSecurityConfiguration$ = [9, n0, _DSC,
|
|
959
|
+
{ [_h]: ["GET", "/securityconfigurations/{id}", 200] }, () => DescribeSecurityConfigurationRequest$, () => DescribeSecurityConfigurationResponse$
|
|
960
|
+
];
|
|
961
|
+
var DescribeVirtualCluster$ = [9, n0, _DVCe,
|
|
962
|
+
{ [_h]: ["GET", "/virtualclusters/{id}", 200] }, () => DescribeVirtualClusterRequest$, () => DescribeVirtualClusterResponse$
|
|
963
|
+
];
|
|
964
|
+
var GetManagedEndpointSessionCredentials$ = [9, n0, _GMESC,
|
|
965
|
+
{ [_h]: ["POST", "/virtualclusters/{virtualClusterIdentifier}/endpoints/{endpointIdentifier}/credentials", 200] }, () => GetManagedEndpointSessionCredentialsRequest$, () => GetManagedEndpointSessionCredentialsResponse$
|
|
966
|
+
];
|
|
967
|
+
var ListJobRuns$ = [9, n0, _LJR,
|
|
968
|
+
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/jobruns", 200] }, () => ListJobRunsRequest$, () => ListJobRunsResponse$
|
|
969
|
+
];
|
|
970
|
+
var ListJobTemplates$ = [9, n0, _LJT,
|
|
971
|
+
{ [_h]: ["GET", "/jobtemplates", 200] }, () => ListJobTemplatesRequest$, () => ListJobTemplatesResponse$
|
|
972
|
+
];
|
|
973
|
+
var ListManagedEndpoints$ = [9, n0, _LME,
|
|
974
|
+
{ [_h]: ["GET", "/virtualclusters/{virtualClusterId}/endpoints", 200] }, () => ListManagedEndpointsRequest$, () => ListManagedEndpointsResponse$
|
|
975
|
+
];
|
|
976
|
+
var ListSecurityConfigurations$ = [9, n0, _LSC,
|
|
977
|
+
{ [_h]: ["GET", "/securityconfigurations", 200] }, () => ListSecurityConfigurationsRequest$, () => ListSecurityConfigurationsResponse$
|
|
978
|
+
];
|
|
979
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
980
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
981
|
+
];
|
|
982
|
+
var ListVirtualClusters$ = [9, n0, _LVC,
|
|
983
|
+
{ [_h]: ["GET", "/virtualclusters", 200] }, () => ListVirtualClustersRequest$, () => ListVirtualClustersResponse$
|
|
984
|
+
];
|
|
985
|
+
var StartJobRun$ = [9, n0, _SJR,
|
|
986
|
+
{ [_h]: ["POST", "/virtualclusters/{virtualClusterId}/jobruns", 200] }, () => StartJobRunRequest$, () => StartJobRunResponse$
|
|
987
|
+
];
|
|
988
|
+
var TagResource$ = [9, n0, _TR,
|
|
989
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
990
|
+
];
|
|
991
|
+
var UntagResource$ = [9, n0, _UR,
|
|
992
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
993
|
+
];
|
|
994
|
+
|
|
995
|
+
const getRuntimeConfig$1 = (config) => {
|
|
996
|
+
return {
|
|
997
|
+
apiVersion: "2020-10-01",
|
|
998
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
999
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1000
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1001
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1002
|
+
extensions: config?.extensions ?? [],
|
|
1003
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultEMRContainersHttpAuthSchemeProvider,
|
|
1004
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1005
|
+
{
|
|
1006
|
+
schemeId: "aws.auth#sigv4",
|
|
1007
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1008
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1009
|
+
},
|
|
1010
|
+
],
|
|
1011
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1012
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1013
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1014
|
+
defaultNamespace: "com.amazonaws.emrcontainers",
|
|
1015
|
+
errorTypeRegistries,
|
|
1016
|
+
version: "2020-10-01",
|
|
1017
|
+
serviceTarget: "AwsChicagoWebService",
|
|
1018
|
+
},
|
|
1019
|
+
serviceId: config?.serviceId ?? "EMR containers",
|
|
1020
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1021
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1022
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1023
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
|
|
1027
|
+
const getRuntimeConfig = (config) => {
|
|
1028
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1029
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1030
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1031
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1032
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1033
|
+
const loaderConfig = {
|
|
1034
|
+
profile: config?.profile,
|
|
1035
|
+
logger: clientSharedValues.logger,
|
|
1036
|
+
};
|
|
1037
|
+
return {
|
|
1038
|
+
...clientSharedValues,
|
|
1039
|
+
...config,
|
|
1040
|
+
runtime: "node",
|
|
1041
|
+
defaultsMode,
|
|
1042
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1043
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1044
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1045
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1046
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1047
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1048
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1049
|
+
retryMode: config?.retryMode ??
|
|
1050
|
+
loadConfig({
|
|
1051
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1052
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1053
|
+
}, config),
|
|
1054
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1055
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1056
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1057
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1058
|
+
};
|
|
1059
|
+
};
|
|
1060
|
+
|
|
34
1061
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1062
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1063
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -481,39 +1508,156 @@ const VirtualClusterState = {
|
|
|
481
1508
|
};
|
|
482
1509
|
|
|
483
1510
|
exports.AllowAWSToRetainLogs = AllowAWSToRetainLogs;
|
|
1511
|
+
exports.AuthorizationConfiguration$ = AuthorizationConfiguration$;
|
|
1512
|
+
exports.CancelJobRun$ = CancelJobRun$;
|
|
484
1513
|
exports.CancelJobRunCommand = CancelJobRunCommand;
|
|
1514
|
+
exports.CancelJobRunRequest$ = CancelJobRunRequest$;
|
|
1515
|
+
exports.CancelJobRunResponse$ = CancelJobRunResponse$;
|
|
1516
|
+
exports.Certificate$ = Certificate$;
|
|
485
1517
|
exports.CertificateProviderType = CertificateProviderType;
|
|
1518
|
+
exports.CloudWatchMonitoringConfiguration$ = CloudWatchMonitoringConfiguration$;
|
|
1519
|
+
exports.Configuration$ = Configuration$;
|
|
1520
|
+
exports.ConfigurationOverrides$ = ConfigurationOverrides$;
|
|
1521
|
+
exports.ContainerInfo$ = ContainerInfo$;
|
|
1522
|
+
exports.ContainerLogRotationConfiguration$ = ContainerLogRotationConfiguration$;
|
|
1523
|
+
exports.ContainerProvider$ = ContainerProvider$;
|
|
486
1524
|
exports.ContainerProviderType = ContainerProviderType;
|
|
1525
|
+
exports.CreateJobTemplate$ = CreateJobTemplate$;
|
|
487
1526
|
exports.CreateJobTemplateCommand = CreateJobTemplateCommand;
|
|
1527
|
+
exports.CreateJobTemplateRequest$ = CreateJobTemplateRequest$;
|
|
1528
|
+
exports.CreateJobTemplateResponse$ = CreateJobTemplateResponse$;
|
|
1529
|
+
exports.CreateManagedEndpoint$ = CreateManagedEndpoint$;
|
|
488
1530
|
exports.CreateManagedEndpointCommand = CreateManagedEndpointCommand;
|
|
1531
|
+
exports.CreateManagedEndpointRequest$ = CreateManagedEndpointRequest$;
|
|
1532
|
+
exports.CreateManagedEndpointResponse$ = CreateManagedEndpointResponse$;
|
|
1533
|
+
exports.CreateSecurityConfiguration$ = CreateSecurityConfiguration$;
|
|
489
1534
|
exports.CreateSecurityConfigurationCommand = CreateSecurityConfigurationCommand;
|
|
1535
|
+
exports.CreateSecurityConfigurationRequest$ = CreateSecurityConfigurationRequest$;
|
|
1536
|
+
exports.CreateSecurityConfigurationResponse$ = CreateSecurityConfigurationResponse$;
|
|
1537
|
+
exports.CreateVirtualCluster$ = CreateVirtualCluster$;
|
|
490
1538
|
exports.CreateVirtualClusterCommand = CreateVirtualClusterCommand;
|
|
1539
|
+
exports.CreateVirtualClusterRequest$ = CreateVirtualClusterRequest$;
|
|
1540
|
+
exports.CreateVirtualClusterResponse$ = CreateVirtualClusterResponse$;
|
|
1541
|
+
exports.Credentials$ = Credentials$;
|
|
1542
|
+
exports.DeleteJobTemplate$ = DeleteJobTemplate$;
|
|
491
1543
|
exports.DeleteJobTemplateCommand = DeleteJobTemplateCommand;
|
|
1544
|
+
exports.DeleteJobTemplateRequest$ = DeleteJobTemplateRequest$;
|
|
1545
|
+
exports.DeleteJobTemplateResponse$ = DeleteJobTemplateResponse$;
|
|
1546
|
+
exports.DeleteManagedEndpoint$ = DeleteManagedEndpoint$;
|
|
492
1547
|
exports.DeleteManagedEndpointCommand = DeleteManagedEndpointCommand;
|
|
1548
|
+
exports.DeleteManagedEndpointRequest$ = DeleteManagedEndpointRequest$;
|
|
1549
|
+
exports.DeleteManagedEndpointResponse$ = DeleteManagedEndpointResponse$;
|
|
1550
|
+
exports.DeleteVirtualCluster$ = DeleteVirtualCluster$;
|
|
493
1551
|
exports.DeleteVirtualClusterCommand = DeleteVirtualClusterCommand;
|
|
1552
|
+
exports.DeleteVirtualClusterRequest$ = DeleteVirtualClusterRequest$;
|
|
1553
|
+
exports.DeleteVirtualClusterResponse$ = DeleteVirtualClusterResponse$;
|
|
1554
|
+
exports.DescribeJobRun$ = DescribeJobRun$;
|
|
494
1555
|
exports.DescribeJobRunCommand = DescribeJobRunCommand;
|
|
1556
|
+
exports.DescribeJobRunRequest$ = DescribeJobRunRequest$;
|
|
1557
|
+
exports.DescribeJobRunResponse$ = DescribeJobRunResponse$;
|
|
1558
|
+
exports.DescribeJobTemplate$ = DescribeJobTemplate$;
|
|
495
1559
|
exports.DescribeJobTemplateCommand = DescribeJobTemplateCommand;
|
|
1560
|
+
exports.DescribeJobTemplateRequest$ = DescribeJobTemplateRequest$;
|
|
1561
|
+
exports.DescribeJobTemplateResponse$ = DescribeJobTemplateResponse$;
|
|
1562
|
+
exports.DescribeManagedEndpoint$ = DescribeManagedEndpoint$;
|
|
496
1563
|
exports.DescribeManagedEndpointCommand = DescribeManagedEndpointCommand;
|
|
1564
|
+
exports.DescribeManagedEndpointRequest$ = DescribeManagedEndpointRequest$;
|
|
1565
|
+
exports.DescribeManagedEndpointResponse$ = DescribeManagedEndpointResponse$;
|
|
1566
|
+
exports.DescribeSecurityConfiguration$ = DescribeSecurityConfiguration$;
|
|
497
1567
|
exports.DescribeSecurityConfigurationCommand = DescribeSecurityConfigurationCommand;
|
|
1568
|
+
exports.DescribeSecurityConfigurationRequest$ = DescribeSecurityConfigurationRequest$;
|
|
1569
|
+
exports.DescribeSecurityConfigurationResponse$ = DescribeSecurityConfigurationResponse$;
|
|
1570
|
+
exports.DescribeVirtualCluster$ = DescribeVirtualCluster$;
|
|
498
1571
|
exports.DescribeVirtualClusterCommand = DescribeVirtualClusterCommand;
|
|
1572
|
+
exports.DescribeVirtualClusterRequest$ = DescribeVirtualClusterRequest$;
|
|
1573
|
+
exports.DescribeVirtualClusterResponse$ = DescribeVirtualClusterResponse$;
|
|
1574
|
+
exports.EKSRequestThrottledException = EKSRequestThrottledException;
|
|
1575
|
+
exports.EKSRequestThrottledException$ = EKSRequestThrottledException$;
|
|
499
1576
|
exports.EMRContainers = EMRContainers;
|
|
500
1577
|
exports.EMRContainersClient = EMRContainersClient;
|
|
1578
|
+
exports.EMRContainersServiceException = EMRContainersServiceException;
|
|
1579
|
+
exports.EMRContainersServiceException$ = EMRContainersServiceException$;
|
|
1580
|
+
exports.EksInfo$ = EksInfo$;
|
|
1581
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1582
|
+
exports.Endpoint$ = Endpoint$;
|
|
501
1583
|
exports.EndpointState = EndpointState;
|
|
502
1584
|
exports.FailureReason = FailureReason;
|
|
1585
|
+
exports.GetManagedEndpointSessionCredentials$ = GetManagedEndpointSessionCredentials$;
|
|
503
1586
|
exports.GetManagedEndpointSessionCredentialsCommand = GetManagedEndpointSessionCredentialsCommand;
|
|
1587
|
+
exports.GetManagedEndpointSessionCredentialsRequest$ = GetManagedEndpointSessionCredentialsRequest$;
|
|
1588
|
+
exports.GetManagedEndpointSessionCredentialsResponse$ = GetManagedEndpointSessionCredentialsResponse$;
|
|
1589
|
+
exports.InTransitEncryptionConfiguration$ = InTransitEncryptionConfiguration$;
|
|
1590
|
+
exports.InternalServerException = InternalServerException;
|
|
1591
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1592
|
+
exports.JobDriver$ = JobDriver$;
|
|
1593
|
+
exports.JobRun$ = JobRun$;
|
|
504
1594
|
exports.JobRunState = JobRunState;
|
|
1595
|
+
exports.JobTemplate$ = JobTemplate$;
|
|
1596
|
+
exports.JobTemplateData$ = JobTemplateData$;
|
|
1597
|
+
exports.LakeFormationConfiguration$ = LakeFormationConfiguration$;
|
|
1598
|
+
exports.ListJobRuns$ = ListJobRuns$;
|
|
505
1599
|
exports.ListJobRunsCommand = ListJobRunsCommand;
|
|
1600
|
+
exports.ListJobRunsRequest$ = ListJobRunsRequest$;
|
|
1601
|
+
exports.ListJobRunsResponse$ = ListJobRunsResponse$;
|
|
1602
|
+
exports.ListJobTemplates$ = ListJobTemplates$;
|
|
506
1603
|
exports.ListJobTemplatesCommand = ListJobTemplatesCommand;
|
|
1604
|
+
exports.ListJobTemplatesRequest$ = ListJobTemplatesRequest$;
|
|
1605
|
+
exports.ListJobTemplatesResponse$ = ListJobTemplatesResponse$;
|
|
1606
|
+
exports.ListManagedEndpoints$ = ListManagedEndpoints$;
|
|
507
1607
|
exports.ListManagedEndpointsCommand = ListManagedEndpointsCommand;
|
|
1608
|
+
exports.ListManagedEndpointsRequest$ = ListManagedEndpointsRequest$;
|
|
1609
|
+
exports.ListManagedEndpointsResponse$ = ListManagedEndpointsResponse$;
|
|
1610
|
+
exports.ListSecurityConfigurations$ = ListSecurityConfigurations$;
|
|
508
1611
|
exports.ListSecurityConfigurationsCommand = ListSecurityConfigurationsCommand;
|
|
1612
|
+
exports.ListSecurityConfigurationsRequest$ = ListSecurityConfigurationsRequest$;
|
|
1613
|
+
exports.ListSecurityConfigurationsResponse$ = ListSecurityConfigurationsResponse$;
|
|
1614
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
509
1615
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1616
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1617
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1618
|
+
exports.ListVirtualClusters$ = ListVirtualClusters$;
|
|
510
1619
|
exports.ListVirtualClustersCommand = ListVirtualClustersCommand;
|
|
1620
|
+
exports.ListVirtualClustersRequest$ = ListVirtualClustersRequest$;
|
|
1621
|
+
exports.ListVirtualClustersResponse$ = ListVirtualClustersResponse$;
|
|
1622
|
+
exports.ManagedLogs$ = ManagedLogs$;
|
|
1623
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
1624
|
+
exports.ParametricCloudWatchMonitoringConfiguration$ = ParametricCloudWatchMonitoringConfiguration$;
|
|
1625
|
+
exports.ParametricConfigurationOverrides$ = ParametricConfigurationOverrides$;
|
|
1626
|
+
exports.ParametricMonitoringConfiguration$ = ParametricMonitoringConfiguration$;
|
|
1627
|
+
exports.ParametricS3MonitoringConfiguration$ = ParametricS3MonitoringConfiguration$;
|
|
511
1628
|
exports.PersistentAppUI = PersistentAppUI;
|
|
1629
|
+
exports.RequestThrottledException = RequestThrottledException;
|
|
1630
|
+
exports.RequestThrottledException$ = RequestThrottledException$;
|
|
1631
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1632
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1633
|
+
exports.RetryPolicyConfiguration$ = RetryPolicyConfiguration$;
|
|
1634
|
+
exports.RetryPolicyExecution$ = RetryPolicyExecution$;
|
|
1635
|
+
exports.S3MonitoringConfiguration$ = S3MonitoringConfiguration$;
|
|
1636
|
+
exports.SecureNamespaceInfo$ = SecureNamespaceInfo$;
|
|
1637
|
+
exports.SecurityConfiguration$ = SecurityConfiguration$;
|
|
1638
|
+
exports.SecurityConfigurationData$ = SecurityConfigurationData$;
|
|
1639
|
+
exports.SparkSqlJobDriver$ = SparkSqlJobDriver$;
|
|
1640
|
+
exports.SparkSubmitJobDriver$ = SparkSubmitJobDriver$;
|
|
1641
|
+
exports.StartJobRun$ = StartJobRun$;
|
|
512
1642
|
exports.StartJobRunCommand = StartJobRunCommand;
|
|
1643
|
+
exports.StartJobRunRequest$ = StartJobRunRequest$;
|
|
1644
|
+
exports.StartJobRunResponse$ = StartJobRunResponse$;
|
|
1645
|
+
exports.TLSCertificateConfiguration$ = TLSCertificateConfiguration$;
|
|
1646
|
+
exports.TagResource$ = TagResource$;
|
|
513
1647
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1648
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1649
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1650
|
+
exports.TemplateParameterConfiguration$ = TemplateParameterConfiguration$;
|
|
514
1651
|
exports.TemplateParameterDataType = TemplateParameterDataType;
|
|
1652
|
+
exports.UntagResource$ = UntagResource$;
|
|
515
1653
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1654
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1655
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1656
|
+
exports.ValidationException = ValidationException;
|
|
1657
|
+
exports.ValidationException$ = ValidationException$;
|
|
1658
|
+
exports.VirtualCluster$ = VirtualCluster$;
|
|
516
1659
|
exports.VirtualClusterState = VirtualClusterState;
|
|
1660
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
517
1661
|
exports.paginateListJobRuns = paginateListJobRuns;
|
|
518
1662
|
exports.paginateListJobTemplates = paginateListJobTemplates;
|
|
519
1663
|
exports.paginateListManagedEndpoints = paginateListManagedEndpoints;
|