@aws-sdk/client-appfabric 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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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 { resolveHttpAuthSchemeConfig, defaultAppFabricHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchGetUserAccessTasks$, ConnectAppAuthorization$, CreateAppAuthorization$, CreateAppBundle$, CreateIngestion$, CreateIngestionDestination$, DeleteAppAuthorization$, DeleteAppBundle$, DeleteIngestion$, DeleteIngestionDestination$, GetAppAuthorization$, GetAppBundle$, GetIngestion$, GetIngestionDestination$, ListAppAuthorizations$, ListAppBundles$, ListIngestionDestinations$, ListIngestions$, ListTagsForResource$, StartIngestion$, StartUserAccessTasks$, StopIngestion$, TagResource$, UntagResource$, UpdateAppAuthorization$, UpdateIngestionDestination$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { AppFabricServiceException } = require("./models/AppFabricServiceException");
18
- exports.AppFabricServiceException = AppFabricServiceException;
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 defaultAppFabricHttpAuthSchemeParametersProvider = 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: "appfabric",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultAppFabricHttpAuthSchemeProvider = (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,1013 @@ 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 k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://appfabric-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://appfabric-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://appfabric.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://appfabric.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class AppFabricServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, AppFabricServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends AppFabricServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class InternalServerException extends AppFabricServiceException {
153
+ name = "InternalServerException";
154
+ $fault = "server";
155
+ $retryable = {};
156
+ retryAfterSeconds;
157
+ constructor(opts) {
158
+ super({
159
+ name: "InternalServerException",
160
+ $fault: "server",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, InternalServerException.prototype);
164
+ this.retryAfterSeconds = opts.retryAfterSeconds;
165
+ }
166
+ }
167
+ class ResourceNotFoundException extends AppFabricServiceException {
168
+ name = "ResourceNotFoundException";
169
+ $fault = "client";
170
+ resourceId;
171
+ resourceType;
172
+ constructor(opts) {
173
+ super({
174
+ name: "ResourceNotFoundException",
175
+ $fault: "client",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
179
+ this.resourceId = opts.resourceId;
180
+ this.resourceType = opts.resourceType;
181
+ }
182
+ }
183
+ class ThrottlingException extends AppFabricServiceException {
184
+ name = "ThrottlingException";
185
+ $fault = "client";
186
+ $retryable = {
187
+ throttling: true,
188
+ };
189
+ serviceCode;
190
+ quotaCode;
191
+ retryAfterSeconds;
192
+ constructor(opts) {
193
+ super({
194
+ name: "ThrottlingException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
199
+ this.serviceCode = opts.serviceCode;
200
+ this.quotaCode = opts.quotaCode;
201
+ this.retryAfterSeconds = opts.retryAfterSeconds;
202
+ }
203
+ }
204
+ class ValidationException extends AppFabricServiceException {
205
+ name = "ValidationException";
206
+ $fault = "client";
207
+ reason;
208
+ fieldList;
209
+ constructor(opts) {
210
+ super({
211
+ name: "ValidationException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ Object.setPrototypeOf(this, ValidationException.prototype);
216
+ this.reason = opts.reason;
217
+ this.fieldList = opts.fieldList;
218
+ }
219
+ }
220
+ class ConflictException extends AppFabricServiceException {
221
+ name = "ConflictException";
222
+ $fault = "client";
223
+ resourceId;
224
+ resourceType;
225
+ constructor(opts) {
226
+ super({
227
+ name: "ConflictException",
228
+ $fault: "client",
229
+ ...opts,
230
+ });
231
+ Object.setPrototypeOf(this, ConflictException.prototype);
232
+ this.resourceId = opts.resourceId;
233
+ this.resourceType = opts.resourceType;
234
+ }
235
+ }
236
+ class ServiceQuotaExceededException extends AppFabricServiceException {
237
+ name = "ServiceQuotaExceededException";
238
+ $fault = "client";
239
+ resourceId;
240
+ resourceType;
241
+ serviceCode;
242
+ quotaCode;
243
+ constructor(opts) {
244
+ super({
245
+ name: "ServiceQuotaExceededException",
246
+ $fault: "client",
247
+ ...opts,
248
+ });
249
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
250
+ this.resourceId = opts.resourceId;
251
+ this.resourceType = opts.resourceType;
252
+ this.serviceCode = opts.serviceCode;
253
+ this.quotaCode = opts.quotaCode;
254
+ }
255
+ }
256
+
257
+ const _AA = "AppAuthorization";
258
+ const _AAS = "AppAuthorizationSummary";
259
+ const _AASL = "AppAuthorizationSummaryList";
260
+ const _AB = "AppBundle";
261
+ const _ABS = "AppBundleSummary";
262
+ const _ABSL = "AppBundleSummaryList";
263
+ const _ADE = "AccessDeniedException";
264
+ const _AKC = "ApiKeyCredential";
265
+ const _ALDC = "AuditLogDestinationConfiguration";
266
+ const _ALPC = "AuditLogProcessingConfiguration";
267
+ const _AR = "AuthRequest";
268
+ const _BGUAT = "BatchGetUserAccessTasks";
269
+ const _BGUATR = "BatchGetUserAccessTasksRequest";
270
+ const _BGUATRa = "BatchGetUserAccessTasksResponse";
271
+ const _C = "Credential";
272
+ const _CAA = "ConnectAppAuthorization";
273
+ const _CAAR = "ConnectAppAuthorizationRequest";
274
+ const _CAARo = "ConnectAppAuthorizationResponse";
275
+ const _CAARr = "CreateAppAuthorizationRequest";
276
+ const _CAARre = "CreateAppAuthorizationResponse";
277
+ const _CAAr = "CreateAppAuthorization";
278
+ const _CAB = "CreateAppBundle";
279
+ const _CABR = "CreateAppBundleRequest";
280
+ const _CABRr = "CreateAppBundleResponse";
281
+ const _CE = "ConflictException";
282
+ const _CI = "CreateIngestion";
283
+ const _CID = "CreateIngestionDestination";
284
+ const _CIDR = "CreateIngestionDestinationRequest";
285
+ const _CIDRr = "CreateIngestionDestinationResponse";
286
+ const _CIR = "CreateIngestionRequest";
287
+ const _CIRr = "CreateIngestionResponse";
288
+ const _D = "Destination";
289
+ const _DAA = "DeleteAppAuthorization";
290
+ const _DAAR = "DeleteAppAuthorizationRequest";
291
+ const _DAARe = "DeleteAppAuthorizationResponse";
292
+ const _DAB = "DeleteAppBundle";
293
+ const _DABR = "DeleteAppBundleRequest";
294
+ const _DABRe = "DeleteAppBundleResponse";
295
+ const _DC = "DestinationConfiguration";
296
+ const _DI = "DeleteIngestion";
297
+ const _DID = "DeleteIngestionDestination";
298
+ const _DIDR = "DeleteIngestionDestinationRequest";
299
+ const _DIDRe = "DeleteIngestionDestinationResponse";
300
+ const _DIR = "DeleteIngestionRequest";
301
+ const _DIRe = "DeleteIngestionResponse";
302
+ const _E = "Email";
303
+ const _FS = "FirehoseStream";
304
+ const _GAA = "GetAppAuthorization";
305
+ const _GAAR = "GetAppAuthorizationRequest";
306
+ const _GAARe = "GetAppAuthorizationResponse";
307
+ const _GAB = "GetAppBundle";
308
+ const _GABR = "GetAppBundleRequest";
309
+ const _GABRe = "GetAppBundleResponse";
310
+ const _GI = "GetIngestion";
311
+ const _GID = "GetIngestionDestination";
312
+ const _GIDR = "GetIngestionDestinationRequest";
313
+ const _GIDRe = "GetIngestionDestinationResponse";
314
+ const _GIR = "GetIngestionRequest";
315
+ const _GIRe = "GetIngestionResponse";
316
+ const _I = "Ingestion";
317
+ const _ID = "IngestionDestination";
318
+ const _IDL = "IngestionDestinationList";
319
+ const _IDS = "IngestionDestinationSummary";
320
+ const _IL = "IngestionList";
321
+ const _IS = "IngestionSummary";
322
+ const _ISE = "InternalServerException";
323
+ const _LAA = "ListAppAuthorizations";
324
+ const _LAAR = "ListAppAuthorizationsRequest";
325
+ const _LAARi = "ListAppAuthorizationsResponse";
326
+ const _LAB = "ListAppBundles";
327
+ const _LABR = "ListAppBundlesRequest";
328
+ const _LABRi = "ListAppBundlesResponse";
329
+ const _LI = "ListIngestions";
330
+ const _LID = "ListIngestionDestinations";
331
+ const _LIDR = "ListIngestionDestinationsRequest";
332
+ const _LIDRi = "ListIngestionDestinationsResponse";
333
+ const _LIR = "ListIngestionsRequest";
334
+ const _LIRi = "ListIngestionsResponse";
335
+ const _LTFR = "ListTagsForResource";
336
+ const _LTFRR = "ListTagsForResourceRequest";
337
+ const _LTFRRi = "ListTagsForResourceResponse";
338
+ const _OC = "Oauth2Credential";
339
+ const _PC = "ProcessingConfiguration";
340
+ const _RA = "Retry-After";
341
+ const _RNFE = "ResourceNotFoundException";
342
+ const _SB = "S3Bucket";
343
+ const _SI = "StartIngestion";
344
+ const _SIR = "StartIngestionRequest";
345
+ const _SIRt = "StartIngestionResponse";
346
+ const _SIRto = "StopIngestionRequest";
347
+ const _SIRtop = "StopIngestionResponse";
348
+ const _SIt = "StopIngestion";
349
+ const _SQEE = "ServiceQuotaExceededException";
350
+ const _SS = "SensitiveString2048";
351
+ const _SUAT = "StartUserAccessTasks";
352
+ const _SUATR = "StartUserAccessTasksRequest";
353
+ const _SUATRt = "StartUserAccessTasksResponse";
354
+ const _T = "Tag";
355
+ const _TE = "ThrottlingException";
356
+ const _TEa = "TaskError";
357
+ const _TL = "TagList";
358
+ const _TR = "TagResource";
359
+ const _TRR = "TagResourceRequest";
360
+ const _TRRa = "TagResourceResponse";
361
+ const _Te = "Tenant";
362
+ const _UAA = "UpdateAppAuthorization";
363
+ const _UAAR = "UpdateAppAuthorizationRequest";
364
+ const _UAARp = "UpdateAppAuthorizationResponse";
365
+ const _UARI = "UserAccessResultItem";
366
+ const _UARL = "UserAccessResultsList";
367
+ const _UATI = "UserAccessTaskItem";
368
+ const _UATL = "UserAccessTasksList";
369
+ const _UID = "UpdateIngestionDestination";
370
+ const _UIDR = "UpdateIngestionDestinationRequest";
371
+ const _UIDRp = "UpdateIngestionDestinationResponse";
372
+ const _UR = "UntagResource";
373
+ const _URR = "UntagResourceRequest";
374
+ const _URRn = "UntagResourceResponse";
375
+ const _VE = "ValidationException";
376
+ const _VEF = "ValidationExceptionField";
377
+ const _VEFL = "ValidationExceptionFieldList";
378
+ const _a = "app";
379
+ const _aA = "appAuthorization";
380
+ const _aAA = "appAuthorizationArn";
381
+ const _aAI = "appAuthorizationIdentifier";
382
+ const _aAS = "appAuthorizationSummary";
383
+ const _aASL = "appAuthorizationSummaryList";
384
+ const _aB = "appBundle";
385
+ const _aBA = "appBundleArn";
386
+ const _aBI = "appBundleIdentifier";
387
+ const _aBSL = "appBundleSummaryList";
388
+ const _aK = "apiKey";
389
+ const _aKC = "apiKeyCredential";
390
+ const _aL = "auditLog";
391
+ const _aR = "authRequest";
392
+ const _aT = "authType";
393
+ const _aU = "authUrl";
394
+ const _ar = "arn";
395
+ const _bN = "bucketName";
396
+ const _c = "client";
397
+ const _cA = "createdAt";
398
+ const _cI = "clientId";
399
+ const _cMKA = "customerManagedKeyArn";
400
+ const _cMKI = "customerManagedKeyIdentifier";
401
+ const _cS = "clientSecret";
402
+ const _cT = "clientToken";
403
+ const _co = "code";
404
+ const _cr = "credential";
405
+ const _d = "destination";
406
+ const _dC = "destinationConfiguration";
407
+ const _e = "error";
408
+ const _eC = "errorCode";
409
+ const _eM = "errorMessage";
410
+ const _em = "email";
411
+ const _f = "format";
412
+ const _fL = "fieldList";
413
+ const _fS = "firehoseStream";
414
+ const _h = "http";
415
+ const _hE = "httpError";
416
+ const _hH = "httpHeader";
417
+ const _hQ = "httpQuery";
418
+ const _i = "ingestion";
419
+ const _iA = "ingestionArn";
420
+ const _iD = "ingestionDestination";
421
+ const _iDI = "ingestionDestinationIdentifier";
422
+ const _iDn = "ingestionDestinations";
423
+ const _iI = "ingestionIdentifier";
424
+ const _iT = "ingestionType";
425
+ const _in = "ingestions";
426
+ const _k = "key";
427
+ const _m = "message";
428
+ const _mR = "maxResults";
429
+ const _n = "name";
430
+ const _nT = "nextToken";
431
+ const _oC = "oauth2Credential";
432
+ const _p = "persona";
433
+ const _pC = "processingConfiguration";
434
+ const _pr = "prefix";
435
+ const _qC = "quotaCode";
436
+ const _r = "reason";
437
+ const _rA = "resourceArn";
438
+ const _rAS = "retryAfterSeconds";
439
+ const _rI = "resourceId";
440
+ const _rS = "resultStatus";
441
+ const _rT = "resourceType";
442
+ const _rU = "redirectUri";
443
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appfabric";
444
+ const _sB = "s3Bucket";
445
+ const _sC = "serviceCode";
446
+ const _sN = "streamName";
447
+ const _sR = "statusReason";
448
+ const _sc = "schema";
449
+ const _se = "server";
450
+ const _st = "status";
451
+ const _sta = "state";
452
+ const _t = "tenant";
453
+ const _tDN = "tenantDisplayName";
454
+ const _tE = "taskError";
455
+ const _tI = "tenantId";
456
+ const _tIL = "taskIdList";
457
+ const _tIa = "taskId";
458
+ const _tIe = "tenantIdentifier";
459
+ const _tK = "tagKeys";
460
+ const _ta = "tags";
461
+ const _uA = "updatedAt";
462
+ const _uARL = "userAccessResultsList";
463
+ const _uATL = "userAccessTasksList";
464
+ const _uFN = "userFullName";
465
+ const _uFNs = "userFirstName";
466
+ const _uI = "userId";
467
+ const _uLN = "userLastName";
468
+ const _uS = "userStatus";
469
+ const _v = "value";
470
+ const n0 = "com.amazonaws.appfabric";
471
+ const _s_registry = TypeRegistry.for(_s);
472
+ var AppFabricServiceException$ = [-3, _s, "AppFabricServiceException", 0, [], []];
473
+ _s_registry.registerError(AppFabricServiceException$, AppFabricServiceException);
474
+ const n0_registry = TypeRegistry.for(n0);
475
+ var AccessDeniedException$ = [-3, n0, _ADE,
476
+ { [_e]: _c, [_hE]: 403 },
477
+ [_m],
478
+ [0], 1
479
+ ];
480
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
481
+ var ConflictException$ = [-3, n0, _CE,
482
+ { [_e]: _c, [_hE]: 409 },
483
+ [_m, _rI, _rT],
484
+ [0, 0, 0], 3
485
+ ];
486
+ n0_registry.registerError(ConflictException$, ConflictException);
487
+ var InternalServerException$ = [-3, n0, _ISE,
488
+ { [_e]: _se, [_hE]: 500 },
489
+ [_m, _rAS],
490
+ [0, [1, { [_hH]: _RA }]], 1
491
+ ];
492
+ n0_registry.registerError(InternalServerException$, InternalServerException);
493
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
494
+ { [_e]: _c, [_hE]: 404 },
495
+ [_m, _rI, _rT],
496
+ [0, 0, 0], 3
497
+ ];
498
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
499
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
500
+ { [_e]: _c, [_hE]: 402 },
501
+ [_m, _rI, _rT, _sC, _qC],
502
+ [0, 0, 0, 0, 0], 5
503
+ ];
504
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
505
+ var ThrottlingException$ = [-3, n0, _TE,
506
+ { [_e]: _c, [_hE]: 429 },
507
+ [_m, _sC, _qC, _rAS],
508
+ [0, 0, 0, [1, { [_hH]: _RA }]], 1
509
+ ];
510
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
511
+ var ValidationException$ = [-3, n0, _VE,
512
+ { [_e]: _c, [_hE]: 400 },
513
+ [_m, _r, _fL],
514
+ [0, 0, () => ValidationExceptionFieldList], 2
515
+ ];
516
+ n0_registry.registerError(ValidationException$, ValidationException);
517
+ const errorTypeRegistries = [
518
+ _s_registry,
519
+ n0_registry,
520
+ ];
521
+ var Email = [0, n0, _E, 8, 0];
522
+ var SensitiveString2048 = [0, n0, _SS, 8, 0];
523
+ var ApiKeyCredential$ = [3, n0, _AKC,
524
+ 0,
525
+ [_aK],
526
+ [[() => SensitiveString2048, 0]], 1
527
+ ];
528
+ var AppAuthorization$ = [3, n0, _AA,
529
+ 0,
530
+ [_aAA, _aBA, _a, _t, _aT, _st, _cA, _uA, _p, _aU],
531
+ [0, 0, 0, () => Tenant$, 0, 0, 5, 5, 0, 0], 8
532
+ ];
533
+ var AppAuthorizationSummary$ = [3, n0, _AAS,
534
+ 0,
535
+ [_aAA, _aBA, _a, _t, _st, _uA],
536
+ [0, 0, 0, () => Tenant$, 0, 5], 6
537
+ ];
538
+ var AppBundle$ = [3, n0, _AB,
539
+ 0,
540
+ [_ar, _cMKA],
541
+ [0, 0], 1
542
+ ];
543
+ var AppBundleSummary$ = [3, n0, _ABS,
544
+ 0,
545
+ [_ar],
546
+ [0], 1
547
+ ];
548
+ var AuditLogDestinationConfiguration$ = [3, n0, _ALDC,
549
+ 0,
550
+ [_d],
551
+ [() => Destination$], 1
552
+ ];
553
+ var AuditLogProcessingConfiguration$ = [3, n0, _ALPC,
554
+ 0,
555
+ [_sc, _f],
556
+ [0, 0], 2
557
+ ];
558
+ var AuthRequest$ = [3, n0, _AR,
559
+ 0,
560
+ [_rU, _co],
561
+ [0, [() => SensitiveString2048, 0]], 2
562
+ ];
563
+ var BatchGetUserAccessTasksRequest$ = [3, n0, _BGUATR,
564
+ 0,
565
+ [_aBI, _tIL],
566
+ [0, 64 | 0], 2
567
+ ];
568
+ var BatchGetUserAccessTasksResponse$ = [3, n0, _BGUATRa,
569
+ 0,
570
+ [_uARL],
571
+ [[() => UserAccessResultsList, 0]]
572
+ ];
573
+ var ConnectAppAuthorizationRequest$ = [3, n0, _CAAR,
574
+ 0,
575
+ [_aBI, _aAI, _aR],
576
+ [[0, 1], [0, 1], [() => AuthRequest$, 0]], 2
577
+ ];
578
+ var ConnectAppAuthorizationResponse$ = [3, n0, _CAARo,
579
+ 0,
580
+ [_aAS],
581
+ [() => AppAuthorizationSummary$], 1
582
+ ];
583
+ var CreateAppAuthorizationRequest$ = [3, n0, _CAARr,
584
+ 0,
585
+ [_aBI, _a, _cr, _t, _aT, _cT, _ta],
586
+ [[0, 1], 0, [() => Credential$, 0], () => Tenant$, 0, [0, 4], () => TagList], 5
587
+ ];
588
+ var CreateAppAuthorizationResponse$ = [3, n0, _CAARre,
589
+ 0,
590
+ [_aA],
591
+ [() => AppAuthorization$], 1
592
+ ];
593
+ var CreateAppBundleRequest$ = [3, n0, _CABR,
594
+ 0,
595
+ [_cT, _cMKI, _ta],
596
+ [[0, 4], 0, () => TagList]
597
+ ];
598
+ var CreateAppBundleResponse$ = [3, n0, _CABRr,
599
+ 0,
600
+ [_aB],
601
+ [() => AppBundle$], 1
602
+ ];
603
+ var CreateIngestionDestinationRequest$ = [3, n0, _CIDR,
604
+ 0,
605
+ [_aBI, _iI, _pC, _dC, _cT, _ta],
606
+ [[0, 1], [0, 1], () => ProcessingConfiguration$, () => DestinationConfiguration$, [0, 4], () => TagList], 4
607
+ ];
608
+ var CreateIngestionDestinationResponse$ = [3, n0, _CIDRr,
609
+ 0,
610
+ [_iD],
611
+ [() => IngestionDestination$], 1
612
+ ];
613
+ var CreateIngestionRequest$ = [3, n0, _CIR,
614
+ 0,
615
+ [_aBI, _a, _tI, _iT, _cT, _ta],
616
+ [[0, 1], 0, 0, 0, [0, 4], () => TagList], 4
617
+ ];
618
+ var CreateIngestionResponse$ = [3, n0, _CIRr,
619
+ 0,
620
+ [_i],
621
+ [() => Ingestion$], 1
622
+ ];
623
+ var DeleteAppAuthorizationRequest$ = [3, n0, _DAAR,
624
+ 0,
625
+ [_aBI, _aAI],
626
+ [[0, 1], [0, 1]], 2
627
+ ];
628
+ var DeleteAppAuthorizationResponse$ = [3, n0, _DAARe,
629
+ 0,
630
+ [],
631
+ []
632
+ ];
633
+ var DeleteAppBundleRequest$ = [3, n0, _DABR,
634
+ 0,
635
+ [_aBI],
636
+ [[0, 1]], 1
637
+ ];
638
+ var DeleteAppBundleResponse$ = [3, n0, _DABRe,
639
+ 0,
640
+ [],
641
+ []
642
+ ];
643
+ var DeleteIngestionDestinationRequest$ = [3, n0, _DIDR,
644
+ 0,
645
+ [_aBI, _iI, _iDI],
646
+ [[0, 1], [0, 1], [0, 1]], 3
647
+ ];
648
+ var DeleteIngestionDestinationResponse$ = [3, n0, _DIDRe,
649
+ 0,
650
+ [],
651
+ []
652
+ ];
653
+ var DeleteIngestionRequest$ = [3, n0, _DIR,
654
+ 0,
655
+ [_aBI, _iI],
656
+ [[0, 1], [0, 1]], 2
657
+ ];
658
+ var DeleteIngestionResponse$ = [3, n0, _DIRe,
659
+ 0,
660
+ [],
661
+ []
662
+ ];
663
+ var FirehoseStream$ = [3, n0, _FS,
664
+ 0,
665
+ [_sN],
666
+ [0], 1
667
+ ];
668
+ var GetAppAuthorizationRequest$ = [3, n0, _GAAR,
669
+ 0,
670
+ [_aBI, _aAI],
671
+ [[0, 1], [0, 1]], 2
672
+ ];
673
+ var GetAppAuthorizationResponse$ = [3, n0, _GAARe,
674
+ 0,
675
+ [_aA],
676
+ [() => AppAuthorization$], 1
677
+ ];
678
+ var GetAppBundleRequest$ = [3, n0, _GABR,
679
+ 0,
680
+ [_aBI],
681
+ [[0, 1]], 1
682
+ ];
683
+ var GetAppBundleResponse$ = [3, n0, _GABRe,
684
+ 0,
685
+ [_aB],
686
+ [() => AppBundle$], 1
687
+ ];
688
+ var GetIngestionDestinationRequest$ = [3, n0, _GIDR,
689
+ 0,
690
+ [_aBI, _iI, _iDI],
691
+ [[0, 1], [0, 1], [0, 1]], 3
692
+ ];
693
+ var GetIngestionDestinationResponse$ = [3, n0, _GIDRe,
694
+ 0,
695
+ [_iD],
696
+ [() => IngestionDestination$], 1
697
+ ];
698
+ var GetIngestionRequest$ = [3, n0, _GIR,
699
+ 0,
700
+ [_aBI, _iI],
701
+ [[0, 1], [0, 1]], 2
702
+ ];
703
+ var GetIngestionResponse$ = [3, n0, _GIRe,
704
+ 0,
705
+ [_i],
706
+ [() => Ingestion$], 1
707
+ ];
708
+ var Ingestion$ = [3, n0, _I,
709
+ 0,
710
+ [_ar, _aBA, _a, _tI, _cA, _uA, _sta, _iT],
711
+ [0, 0, 0, 0, 5, 5, 0, 0], 8
712
+ ];
713
+ var IngestionDestination$ = [3, n0, _ID,
714
+ 0,
715
+ [_ar, _iA, _pC, _dC, _st, _sR, _cA, _uA],
716
+ [0, 0, () => ProcessingConfiguration$, () => DestinationConfiguration$, 0, 0, 5, 5], 4
717
+ ];
718
+ var IngestionDestinationSummary$ = [3, n0, _IDS,
719
+ 0,
720
+ [_ar],
721
+ [0], 1
722
+ ];
723
+ var IngestionSummary$ = [3, n0, _IS,
724
+ 0,
725
+ [_ar, _a, _tI, _sta],
726
+ [0, 0, 0, 0], 4
727
+ ];
728
+ var ListAppAuthorizationsRequest$ = [3, n0, _LAAR,
729
+ 0,
730
+ [_aBI, _mR, _nT],
731
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
732
+ ];
733
+ var ListAppAuthorizationsResponse$ = [3, n0, _LAARi,
734
+ 0,
735
+ [_aASL, _nT],
736
+ [() => AppAuthorizationSummaryList, 0], 1
737
+ ];
738
+ var ListAppBundlesRequest$ = [3, n0, _LABR,
739
+ 0,
740
+ [_mR, _nT],
741
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
742
+ ];
743
+ var ListAppBundlesResponse$ = [3, n0, _LABRi,
744
+ 0,
745
+ [_aBSL, _nT],
746
+ [() => AppBundleSummaryList, 0], 1
747
+ ];
748
+ var ListIngestionDestinationsRequest$ = [3, n0, _LIDR,
749
+ 0,
750
+ [_aBI, _iI, _mR, _nT],
751
+ [[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
752
+ ];
753
+ var ListIngestionDestinationsResponse$ = [3, n0, _LIDRi,
754
+ 0,
755
+ [_iDn, _nT],
756
+ [() => IngestionDestinationList, 0], 1
757
+ ];
758
+ var ListIngestionsRequest$ = [3, n0, _LIR,
759
+ 0,
760
+ [_aBI, _mR, _nT],
761
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
762
+ ];
763
+ var ListIngestionsResponse$ = [3, n0, _LIRi,
764
+ 0,
765
+ [_in, _nT],
766
+ [() => IngestionList, 0], 1
767
+ ];
768
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
769
+ 0,
770
+ [_rA],
771
+ [[0, 1]], 1
772
+ ];
773
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
774
+ 0,
775
+ [_ta],
776
+ [() => TagList]
777
+ ];
778
+ var Oauth2Credential$ = [3, n0, _OC,
779
+ 0,
780
+ [_cI, _cS],
781
+ [0, [() => SensitiveString2048, 0]], 2
782
+ ];
783
+ var S3Bucket$ = [3, n0, _SB,
784
+ 0,
785
+ [_bN, _pr],
786
+ [0, 0], 1
787
+ ];
788
+ var StartIngestionRequest$ = [3, n0, _SIR,
789
+ 0,
790
+ [_iI, _aBI],
791
+ [[0, 1], [0, 1]], 2
792
+ ];
793
+ var StartIngestionResponse$ = [3, n0, _SIRt,
794
+ 0,
795
+ [],
796
+ []
797
+ ];
798
+ var StartUserAccessTasksRequest$ = [3, n0, _SUATR,
799
+ 0,
800
+ [_aBI, _em],
801
+ [0, [() => Email, 0]], 2
802
+ ];
803
+ var StartUserAccessTasksResponse$ = [3, n0, _SUATRt,
804
+ 0,
805
+ [_uATL],
806
+ [() => UserAccessTasksList]
807
+ ];
808
+ var StopIngestionRequest$ = [3, n0, _SIRto,
809
+ 0,
810
+ [_iI, _aBI],
811
+ [[0, 1], [0, 1]], 2
812
+ ];
813
+ var StopIngestionResponse$ = [3, n0, _SIRtop,
814
+ 0,
815
+ [],
816
+ []
817
+ ];
818
+ var Tag$ = [3, n0, _T,
819
+ 0,
820
+ [_k, _v],
821
+ [0, 0], 2
822
+ ];
823
+ var TagResourceRequest$ = [3, n0, _TRR,
824
+ 0,
825
+ [_rA, _ta],
826
+ [[0, 1], () => TagList], 2
827
+ ];
828
+ var TagResourceResponse$ = [3, n0, _TRRa,
829
+ 0,
830
+ [],
831
+ []
832
+ ];
833
+ var TaskError$ = [3, n0, _TEa,
834
+ 0,
835
+ [_eC, _eM],
836
+ [0, 0]
837
+ ];
838
+ var Tenant$ = [3, n0, _Te,
839
+ 0,
840
+ [_tIe, _tDN],
841
+ [0, 0], 2
842
+ ];
843
+ var UntagResourceRequest$ = [3, n0, _URR,
844
+ 0,
845
+ [_rA, _tK],
846
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
847
+ ];
848
+ var UntagResourceResponse$ = [3, n0, _URRn,
849
+ 0,
850
+ [],
851
+ []
852
+ ];
853
+ var UpdateAppAuthorizationRequest$ = [3, n0, _UAAR,
854
+ 0,
855
+ [_aBI, _aAI, _cr, _t],
856
+ [[0, 1], [0, 1], [() => Credential$, 0], () => Tenant$], 2
857
+ ];
858
+ var UpdateAppAuthorizationResponse$ = [3, n0, _UAARp,
859
+ 0,
860
+ [_aA],
861
+ [() => AppAuthorization$], 1
862
+ ];
863
+ var UpdateIngestionDestinationRequest$ = [3, n0, _UIDR,
864
+ 0,
865
+ [_aBI, _iI, _iDI, _dC],
866
+ [[0, 1], [0, 1], [0, 1], () => DestinationConfiguration$], 4
867
+ ];
868
+ var UpdateIngestionDestinationResponse$ = [3, n0, _UIDRp,
869
+ 0,
870
+ [_iD],
871
+ [() => IngestionDestination$], 1
872
+ ];
873
+ var UserAccessResultItem$ = [3, n0, _UARI,
874
+ 0,
875
+ [_a, _tI, _tDN, _tIa, _rS, _em, _uI, _uFN, _uFNs, _uLN, _uS, _tE],
876
+ [0, 0, 0, 0, 0, [() => Email, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], [() => SensitiveString2048, 0], 0, () => TaskError$]
877
+ ];
878
+ var UserAccessTaskItem$ = [3, n0, _UATI,
879
+ 0,
880
+ [_a, _tI, _tIa, _e],
881
+ [0, 0, 0, () => TaskError$], 2
882
+ ];
883
+ var ValidationExceptionField$ = [3, n0, _VEF,
884
+ 0,
885
+ [_n, _m],
886
+ [0, 0], 2
887
+ ];
888
+ var AppAuthorizationSummaryList = [1, n0, _AASL,
889
+ 0, () => AppAuthorizationSummary$
890
+ ];
891
+ var AppBundleSummaryList = [1, n0, _ABSL,
892
+ 0, () => AppBundleSummary$
893
+ ];
894
+ var IngestionDestinationList = [1, n0, _IDL,
895
+ 0, () => IngestionDestinationSummary$
896
+ ];
897
+ var IngestionList = [1, n0, _IL,
898
+ 0, () => IngestionSummary$
899
+ ];
900
+ var TagList = [1, n0, _TL,
901
+ 0, () => Tag$
902
+ ];
903
+ var UserAccessResultsList = [1, n0, _UARL,
904
+ 0, [() => UserAccessResultItem$,
905
+ 0]
906
+ ];
907
+ var UserAccessTasksList = [1, n0, _UATL,
908
+ 0, () => UserAccessTaskItem$
909
+ ];
910
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
911
+ 0, () => ValidationExceptionField$
912
+ ];
913
+ var Credential$ = [4, n0, _C,
914
+ 0,
915
+ [_oC, _aKC],
916
+ [[() => Oauth2Credential$, 0], [() => ApiKeyCredential$, 0]]
917
+ ];
918
+ var Destination$ = [4, n0, _D,
919
+ 0,
920
+ [_sB, _fS],
921
+ [() => S3Bucket$, () => FirehoseStream$]
922
+ ];
923
+ var DestinationConfiguration$ = [4, n0, _DC,
924
+ 0,
925
+ [_aL],
926
+ [() => AuditLogDestinationConfiguration$]
927
+ ];
928
+ var ProcessingConfiguration$ = [4, n0, _PC,
929
+ 0,
930
+ [_aL],
931
+ [() => AuditLogProcessingConfiguration$]
932
+ ];
933
+ var BatchGetUserAccessTasks$ = [9, n0, _BGUAT,
934
+ { [_h]: ["POST", "/useraccess/batchget", 200] }, () => BatchGetUserAccessTasksRequest$, () => BatchGetUserAccessTasksResponse$
935
+ ];
936
+ var ConnectAppAuthorization$ = [9, n0, _CAA,
937
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}/connect", 200] }, () => ConnectAppAuthorizationRequest$, () => ConnectAppAuthorizationResponse$
938
+ ];
939
+ var CreateAppAuthorization$ = [9, n0, _CAAr,
940
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/appauthorizations", 201] }, () => CreateAppAuthorizationRequest$, () => CreateAppAuthorizationResponse$
941
+ ];
942
+ var CreateAppBundle$ = [9, n0, _CAB,
943
+ { [_h]: ["POST", "/appbundles", 201] }, () => CreateAppBundleRequest$, () => CreateAppBundleResponse$
944
+ ];
945
+ var CreateIngestion$ = [9, n0, _CI,
946
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions", 201] }, () => CreateIngestionRequest$, () => CreateIngestionResponse$
947
+ ];
948
+ var CreateIngestionDestination$ = [9, n0, _CID,
949
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 201] }, () => CreateIngestionDestinationRequest$, () => CreateIngestionDestinationResponse$
950
+ ];
951
+ var DeleteAppAuthorization$ = [9, n0, _DAA,
952
+ { [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 204] }, () => DeleteAppAuthorizationRequest$, () => DeleteAppAuthorizationResponse$
953
+ ];
954
+ var DeleteAppBundle$ = [9, n0, _DAB,
955
+ { [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}", 204] }, () => DeleteAppBundleRequest$, () => DeleteAppBundleResponse$
956
+ ];
957
+ var DeleteIngestion$ = [9, n0, _DI,
958
+ { [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 204] }, () => DeleteIngestionRequest$, () => DeleteIngestionResponse$
959
+ ];
960
+ var DeleteIngestionDestination$ = [9, n0, _DID,
961
+ { [_h]: ["DELETE", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 204] }, () => DeleteIngestionDestinationRequest$, () => DeleteIngestionDestinationResponse$
962
+ ];
963
+ var GetAppAuthorization$ = [9, n0, _GAA,
964
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200] }, () => GetAppAuthorizationRequest$, () => GetAppAuthorizationResponse$
965
+ ];
966
+ var GetAppBundle$ = [9, n0, _GAB,
967
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}", 200] }, () => GetAppBundleRequest$, () => GetAppBundleResponse$
968
+ ];
969
+ var GetIngestion$ = [9, n0, _GI,
970
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}", 200] }, () => GetIngestionRequest$, () => GetIngestionResponse$
971
+ ];
972
+ var GetIngestionDestination$ = [9, n0, _GID,
973
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 200] }, () => GetIngestionDestinationRequest$, () => GetIngestionDestinationResponse$
974
+ ];
975
+ var ListAppAuthorizations$ = [9, n0, _LAA,
976
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/appauthorizations", 200] }, () => ListAppAuthorizationsRequest$, () => ListAppAuthorizationsResponse$
977
+ ];
978
+ var ListAppBundles$ = [9, n0, _LAB,
979
+ { [_h]: ["GET", "/appbundles", 200] }, () => ListAppBundlesRequest$, () => ListAppBundlesResponse$
980
+ ];
981
+ var ListIngestionDestinations$ = [9, n0, _LID,
982
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations", 200] }, () => ListIngestionDestinationsRequest$, () => ListIngestionDestinationsResponse$
983
+ ];
984
+ var ListIngestions$ = [9, n0, _LI,
985
+ { [_h]: ["GET", "/appbundles/{appBundleIdentifier}/ingestions", 200] }, () => ListIngestionsRequest$, () => ListIngestionsResponse$
986
+ ];
987
+ var ListTagsForResource$ = [9, n0, _LTFR,
988
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
989
+ ];
990
+ var StartIngestion$ = [9, n0, _SI,
991
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/start", 200] }, () => StartIngestionRequest$, () => StartIngestionResponse$
992
+ ];
993
+ var StartUserAccessTasks$ = [9, n0, _SUAT,
994
+ { [_h]: ["POST", "/useraccess/start", 201] }, () => StartUserAccessTasksRequest$, () => StartUserAccessTasksResponse$
995
+ ];
996
+ var StopIngestion$ = [9, n0, _SIt,
997
+ { [_h]: ["POST", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/stop", 200] }, () => StopIngestionRequest$, () => StopIngestionResponse$
998
+ ];
999
+ var TagResource$ = [9, n0, _TR,
1000
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1001
+ ];
1002
+ var UntagResource$ = [9, n0, _UR,
1003
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1004
+ ];
1005
+ var UpdateAppAuthorization$ = [9, n0, _UAA,
1006
+ { [_h]: ["PATCH", "/appbundles/{appBundleIdentifier}/appauthorizations/{appAuthorizationIdentifier}", 200] }, () => UpdateAppAuthorizationRequest$, () => UpdateAppAuthorizationResponse$
1007
+ ];
1008
+ var UpdateIngestionDestination$ = [9, n0, _UID,
1009
+ { [_h]: ["PATCH", "/appbundles/{appBundleIdentifier}/ingestions/{ingestionIdentifier}/ingestiondestinations/{ingestionDestinationIdentifier}", 200] }, () => UpdateIngestionDestinationRequest$, () => UpdateIngestionDestinationResponse$
1010
+ ];
1011
+
1012
+ const getRuntimeConfig$1 = (config) => {
1013
+ return {
1014
+ apiVersion: "2023-05-19",
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 ?? defaultAppFabricHttpAuthSchemeProvider,
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.appfabric",
1032
+ errorTypeRegistries,
1033
+ version: "2023-05-19",
1034
+ serviceTarget: "FabricFrontEndService",
1035
+ },
1036
+ serviceId: config?.serviceId ?? "AppFabric",
1037
+ sha256: config?.sha256 ?? Sha256,
1038
+ urlParser: config?.urlParser ?? parseUrl,
1039
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1040
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1041
+ };
1042
+ };
1043
+
1044
+ const getRuntimeConfig = (config) => {
1045
+ emitWarningIfUnsupportedVersion(process.version);
1046
+ const defaultsMode = resolveDefaultsModeConfig(config);
1047
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1048
+ const clientSharedValues = getRuntimeConfig$1(config);
1049
+ emitWarningIfUnsupportedVersion$1(process.version);
1050
+ const loaderConfig = {
1051
+ profile: config?.profile,
1052
+ logger: clientSharedValues.logger,
1053
+ };
1054
+ return {
1055
+ ...clientSharedValues,
1056
+ ...config,
1057
+ runtime: "node",
1058
+ defaultsMode,
1059
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1060
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1061
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1062
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1063
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1064
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1065
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1066
+ retryMode: config?.retryMode ??
1067
+ loadConfig({
1068
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1069
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1070
+ }, config),
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;
@@ -515,44 +1559,164 @@ const IngestionDestinationStatus = {
515
1559
  FAILED: "Failed",
516
1560
  };
517
1561
 
1562
+ exports.AccessDeniedException = AccessDeniedException;
1563
+ exports.AccessDeniedException$ = AccessDeniedException$;
1564
+ exports.ApiKeyCredential$ = ApiKeyCredential$;
1565
+ exports.AppAuthorization$ = AppAuthorization$;
518
1566
  exports.AppAuthorizationStatus = AppAuthorizationStatus;
1567
+ exports.AppAuthorizationSummary$ = AppAuthorizationSummary$;
1568
+ exports.AppBundle$ = AppBundle$;
1569
+ exports.AppBundleSummary$ = AppBundleSummary$;
519
1570
  exports.AppFabric = AppFabric;
520
1571
  exports.AppFabricClient = AppFabricClient;
1572
+ exports.AppFabricServiceException = AppFabricServiceException;
1573
+ exports.AppFabricServiceException$ = AppFabricServiceException$;
1574
+ exports.AuditLogDestinationConfiguration$ = AuditLogDestinationConfiguration$;
1575
+ exports.AuditLogProcessingConfiguration$ = AuditLogProcessingConfiguration$;
1576
+ exports.AuthRequest$ = AuthRequest$;
521
1577
  exports.AuthType = AuthType;
1578
+ exports.BatchGetUserAccessTasks$ = BatchGetUserAccessTasks$;
522
1579
  exports.BatchGetUserAccessTasksCommand = BatchGetUserAccessTasksCommand;
1580
+ exports.BatchGetUserAccessTasksRequest$ = BatchGetUserAccessTasksRequest$;
1581
+ exports.BatchGetUserAccessTasksResponse$ = BatchGetUserAccessTasksResponse$;
1582
+ exports.ConflictException = ConflictException;
1583
+ exports.ConflictException$ = ConflictException$;
1584
+ exports.ConnectAppAuthorization$ = ConnectAppAuthorization$;
523
1585
  exports.ConnectAppAuthorizationCommand = ConnectAppAuthorizationCommand;
1586
+ exports.ConnectAppAuthorizationRequest$ = ConnectAppAuthorizationRequest$;
1587
+ exports.ConnectAppAuthorizationResponse$ = ConnectAppAuthorizationResponse$;
1588
+ exports.CreateAppAuthorization$ = CreateAppAuthorization$;
524
1589
  exports.CreateAppAuthorizationCommand = CreateAppAuthorizationCommand;
1590
+ exports.CreateAppAuthorizationRequest$ = CreateAppAuthorizationRequest$;
1591
+ exports.CreateAppAuthorizationResponse$ = CreateAppAuthorizationResponse$;
1592
+ exports.CreateAppBundle$ = CreateAppBundle$;
525
1593
  exports.CreateAppBundleCommand = CreateAppBundleCommand;
1594
+ exports.CreateAppBundleRequest$ = CreateAppBundleRequest$;
1595
+ exports.CreateAppBundleResponse$ = CreateAppBundleResponse$;
1596
+ exports.CreateIngestion$ = CreateIngestion$;
526
1597
  exports.CreateIngestionCommand = CreateIngestionCommand;
1598
+ exports.CreateIngestionDestination$ = CreateIngestionDestination$;
527
1599
  exports.CreateIngestionDestinationCommand = CreateIngestionDestinationCommand;
1600
+ exports.CreateIngestionDestinationRequest$ = CreateIngestionDestinationRequest$;
1601
+ exports.CreateIngestionDestinationResponse$ = CreateIngestionDestinationResponse$;
1602
+ exports.CreateIngestionRequest$ = CreateIngestionRequest$;
1603
+ exports.CreateIngestionResponse$ = CreateIngestionResponse$;
1604
+ exports.Credential$ = Credential$;
1605
+ exports.DeleteAppAuthorization$ = DeleteAppAuthorization$;
528
1606
  exports.DeleteAppAuthorizationCommand = DeleteAppAuthorizationCommand;
1607
+ exports.DeleteAppAuthorizationRequest$ = DeleteAppAuthorizationRequest$;
1608
+ exports.DeleteAppAuthorizationResponse$ = DeleteAppAuthorizationResponse$;
1609
+ exports.DeleteAppBundle$ = DeleteAppBundle$;
529
1610
  exports.DeleteAppBundleCommand = DeleteAppBundleCommand;
1611
+ exports.DeleteAppBundleRequest$ = DeleteAppBundleRequest$;
1612
+ exports.DeleteAppBundleResponse$ = DeleteAppBundleResponse$;
1613
+ exports.DeleteIngestion$ = DeleteIngestion$;
530
1614
  exports.DeleteIngestionCommand = DeleteIngestionCommand;
1615
+ exports.DeleteIngestionDestination$ = DeleteIngestionDestination$;
531
1616
  exports.DeleteIngestionDestinationCommand = DeleteIngestionDestinationCommand;
1617
+ exports.DeleteIngestionDestinationRequest$ = DeleteIngestionDestinationRequest$;
1618
+ exports.DeleteIngestionDestinationResponse$ = DeleteIngestionDestinationResponse$;
1619
+ exports.DeleteIngestionRequest$ = DeleteIngestionRequest$;
1620
+ exports.DeleteIngestionResponse$ = DeleteIngestionResponse$;
1621
+ exports.Destination$ = Destination$;
1622
+ exports.DestinationConfiguration$ = DestinationConfiguration$;
1623
+ exports.FirehoseStream$ = FirehoseStream$;
532
1624
  exports.Format = Format;
1625
+ exports.GetAppAuthorization$ = GetAppAuthorization$;
533
1626
  exports.GetAppAuthorizationCommand = GetAppAuthorizationCommand;
1627
+ exports.GetAppAuthorizationRequest$ = GetAppAuthorizationRequest$;
1628
+ exports.GetAppAuthorizationResponse$ = GetAppAuthorizationResponse$;
1629
+ exports.GetAppBundle$ = GetAppBundle$;
534
1630
  exports.GetAppBundleCommand = GetAppBundleCommand;
1631
+ exports.GetAppBundleRequest$ = GetAppBundleRequest$;
1632
+ exports.GetAppBundleResponse$ = GetAppBundleResponse$;
1633
+ exports.GetIngestion$ = GetIngestion$;
535
1634
  exports.GetIngestionCommand = GetIngestionCommand;
1635
+ exports.GetIngestionDestination$ = GetIngestionDestination$;
536
1636
  exports.GetIngestionDestinationCommand = GetIngestionDestinationCommand;
1637
+ exports.GetIngestionDestinationRequest$ = GetIngestionDestinationRequest$;
1638
+ exports.GetIngestionDestinationResponse$ = GetIngestionDestinationResponse$;
1639
+ exports.GetIngestionRequest$ = GetIngestionRequest$;
1640
+ exports.GetIngestionResponse$ = GetIngestionResponse$;
1641
+ exports.Ingestion$ = Ingestion$;
1642
+ exports.IngestionDestination$ = IngestionDestination$;
537
1643
  exports.IngestionDestinationStatus = IngestionDestinationStatus;
1644
+ exports.IngestionDestinationSummary$ = IngestionDestinationSummary$;
538
1645
  exports.IngestionState = IngestionState;
1646
+ exports.IngestionSummary$ = IngestionSummary$;
539
1647
  exports.IngestionType = IngestionType;
1648
+ exports.InternalServerException = InternalServerException;
1649
+ exports.InternalServerException$ = InternalServerException$;
1650
+ exports.ListAppAuthorizations$ = ListAppAuthorizations$;
540
1651
  exports.ListAppAuthorizationsCommand = ListAppAuthorizationsCommand;
1652
+ exports.ListAppAuthorizationsRequest$ = ListAppAuthorizationsRequest$;
1653
+ exports.ListAppAuthorizationsResponse$ = ListAppAuthorizationsResponse$;
1654
+ exports.ListAppBundles$ = ListAppBundles$;
541
1655
  exports.ListAppBundlesCommand = ListAppBundlesCommand;
1656
+ exports.ListAppBundlesRequest$ = ListAppBundlesRequest$;
1657
+ exports.ListAppBundlesResponse$ = ListAppBundlesResponse$;
1658
+ exports.ListIngestionDestinations$ = ListIngestionDestinations$;
542
1659
  exports.ListIngestionDestinationsCommand = ListIngestionDestinationsCommand;
1660
+ exports.ListIngestionDestinationsRequest$ = ListIngestionDestinationsRequest$;
1661
+ exports.ListIngestionDestinationsResponse$ = ListIngestionDestinationsResponse$;
1662
+ exports.ListIngestions$ = ListIngestions$;
543
1663
  exports.ListIngestionsCommand = ListIngestionsCommand;
1664
+ exports.ListIngestionsRequest$ = ListIngestionsRequest$;
1665
+ exports.ListIngestionsResponse$ = ListIngestionsResponse$;
1666
+ exports.ListTagsForResource$ = ListTagsForResource$;
544
1667
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1668
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1669
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1670
+ exports.Oauth2Credential$ = Oauth2Credential$;
545
1671
  exports.Persona = Persona;
1672
+ exports.ProcessingConfiguration$ = ProcessingConfiguration$;
1673
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1674
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
546
1675
  exports.ResultStatus = ResultStatus;
1676
+ exports.S3Bucket$ = S3Bucket$;
547
1677
  exports.Schema = Schema;
1678
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1679
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1680
+ exports.StartIngestion$ = StartIngestion$;
548
1681
  exports.StartIngestionCommand = StartIngestionCommand;
1682
+ exports.StartIngestionRequest$ = StartIngestionRequest$;
1683
+ exports.StartIngestionResponse$ = StartIngestionResponse$;
1684
+ exports.StartUserAccessTasks$ = StartUserAccessTasks$;
549
1685
  exports.StartUserAccessTasksCommand = StartUserAccessTasksCommand;
1686
+ exports.StartUserAccessTasksRequest$ = StartUserAccessTasksRequest$;
1687
+ exports.StartUserAccessTasksResponse$ = StartUserAccessTasksResponse$;
1688
+ exports.StopIngestion$ = StopIngestion$;
550
1689
  exports.StopIngestionCommand = StopIngestionCommand;
1690
+ exports.StopIngestionRequest$ = StopIngestionRequest$;
1691
+ exports.StopIngestionResponse$ = StopIngestionResponse$;
1692
+ exports.Tag$ = Tag$;
1693
+ exports.TagResource$ = TagResource$;
551
1694
  exports.TagResourceCommand = TagResourceCommand;
1695
+ exports.TagResourceRequest$ = TagResourceRequest$;
1696
+ exports.TagResourceResponse$ = TagResourceResponse$;
1697
+ exports.TaskError$ = TaskError$;
1698
+ exports.Tenant$ = Tenant$;
1699
+ exports.ThrottlingException = ThrottlingException;
1700
+ exports.ThrottlingException$ = ThrottlingException$;
1701
+ exports.UntagResource$ = UntagResource$;
552
1702
  exports.UntagResourceCommand = UntagResourceCommand;
1703
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1704
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1705
+ exports.UpdateAppAuthorization$ = UpdateAppAuthorization$;
553
1706
  exports.UpdateAppAuthorizationCommand = UpdateAppAuthorizationCommand;
1707
+ exports.UpdateAppAuthorizationRequest$ = UpdateAppAuthorizationRequest$;
1708
+ exports.UpdateAppAuthorizationResponse$ = UpdateAppAuthorizationResponse$;
1709
+ exports.UpdateIngestionDestination$ = UpdateIngestionDestination$;
554
1710
  exports.UpdateIngestionDestinationCommand = UpdateIngestionDestinationCommand;
1711
+ exports.UpdateIngestionDestinationRequest$ = UpdateIngestionDestinationRequest$;
1712
+ exports.UpdateIngestionDestinationResponse$ = UpdateIngestionDestinationResponse$;
1713
+ exports.UserAccessResultItem$ = UserAccessResultItem$;
1714
+ exports.UserAccessTaskItem$ = UserAccessTaskItem$;
1715
+ exports.ValidationException = ValidationException;
1716
+ exports.ValidationException$ = ValidationException$;
1717
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
555
1718
  exports.ValidationExceptionReason = ValidationExceptionReason;
1719
+ exports.errorTypeRegistries = errorTypeRegistries;
556
1720
  exports.paginateListAppAuthorizations = paginateListAppAuthorizations;
557
1721
  exports.paginateListAppBundles = paginateListAppBundles;
558
1722
  exports.paginateListIngestionDestinations = paginateListIngestionDestinations;