@aws-sdk/client-qapps 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, defaultQAppsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateLibraryItemReview$, AssociateQAppWithUser$, BatchCreateCategory$, BatchDeleteCategory$, BatchUpdateCategory$, CreateLibraryItem$, CreatePresignedUrl$, CreateQApp$, DeleteLibraryItem$, DeleteQApp$, DescribeQAppPermissions$, DisassociateLibraryItemReview$, DisassociateQAppFromUser$, ExportQAppSessionData$, GetLibraryItem$, GetQApp$, GetQAppSession$, GetQAppSessionMetadata$, ImportDocument$, ListCategories$, ListLibraryItems$, ListQApps$, ListQAppSessionData$, ListTagsForResource$, PredictQApp$, StartQAppSession$, StopQAppSession$, TagResource$, UntagResource$, UpdateLibraryItem$, UpdateLibraryItemMetadata$, UpdateQApp$, UpdateQAppPermissions$, UpdateQAppSession$, UpdateQAppSessionMetadata$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { QAppsServiceException } = require("./models/QAppsServiceException");
18
- exports.QAppsServiceException = QAppsServiceException;
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 defaultQAppsHttpAuthSchemeParametersProvider = 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: "qapps",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultQAppsHttpAuthSchemeProvider = (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,1264 @@ 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://data.qapps-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://data.qapps-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://data.qapps.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://data.qapps.{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 QAppsServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, QAppsServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends QAppsServiceException {
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 ConflictException extends QAppsServiceException {
153
+ name = "ConflictException";
154
+ $fault = "client";
155
+ resourceId;
156
+ resourceType;
157
+ constructor(opts) {
158
+ super({
159
+ name: "ConflictException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, ConflictException.prototype);
164
+ this.resourceId = opts.resourceId;
165
+ this.resourceType = opts.resourceType;
166
+ }
167
+ }
168
+ class InternalServerException extends QAppsServiceException {
169
+ name = "InternalServerException";
170
+ $fault = "server";
171
+ $retryable = {};
172
+ retryAfterSeconds;
173
+ constructor(opts) {
174
+ super({
175
+ name: "InternalServerException",
176
+ $fault: "server",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, InternalServerException.prototype);
180
+ this.retryAfterSeconds = opts.retryAfterSeconds;
181
+ }
182
+ }
183
+ class ResourceNotFoundException extends QAppsServiceException {
184
+ name = "ResourceNotFoundException";
185
+ $fault = "client";
186
+ resourceId;
187
+ resourceType;
188
+ constructor(opts) {
189
+ super({
190
+ name: "ResourceNotFoundException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
195
+ this.resourceId = opts.resourceId;
196
+ this.resourceType = opts.resourceType;
197
+ }
198
+ }
199
+ class ServiceQuotaExceededException extends QAppsServiceException {
200
+ name = "ServiceQuotaExceededException";
201
+ $fault = "client";
202
+ resourceId;
203
+ resourceType;
204
+ serviceCode;
205
+ quotaCode;
206
+ constructor(opts) {
207
+ super({
208
+ name: "ServiceQuotaExceededException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
213
+ this.resourceId = opts.resourceId;
214
+ this.resourceType = opts.resourceType;
215
+ this.serviceCode = opts.serviceCode;
216
+ this.quotaCode = opts.quotaCode;
217
+ }
218
+ }
219
+ class ThrottlingException extends QAppsServiceException {
220
+ name = "ThrottlingException";
221
+ $fault = "client";
222
+ $retryable = {
223
+ throttling: true,
224
+ };
225
+ serviceCode;
226
+ quotaCode;
227
+ retryAfterSeconds;
228
+ constructor(opts) {
229
+ super({
230
+ name: "ThrottlingException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
235
+ this.serviceCode = opts.serviceCode;
236
+ this.quotaCode = opts.quotaCode;
237
+ this.retryAfterSeconds = opts.retryAfterSeconds;
238
+ }
239
+ }
240
+ class UnauthorizedException extends QAppsServiceException {
241
+ name = "UnauthorizedException";
242
+ $fault = "client";
243
+ constructor(opts) {
244
+ super({
245
+ name: "UnauthorizedException",
246
+ $fault: "client",
247
+ ...opts,
248
+ });
249
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
250
+ }
251
+ }
252
+ class ValidationException extends QAppsServiceException {
253
+ name = "ValidationException";
254
+ $fault = "client";
255
+ constructor(opts) {
256
+ super({
257
+ name: "ValidationException",
258
+ $fault: "client",
259
+ ...opts,
260
+ });
261
+ Object.setPrototypeOf(this, ValidationException.prototype);
262
+ }
263
+ }
264
+ class ContentTooLargeException extends QAppsServiceException {
265
+ name = "ContentTooLargeException";
266
+ $fault = "client";
267
+ resourceId;
268
+ resourceType;
269
+ constructor(opts) {
270
+ super({
271
+ name: "ContentTooLargeException",
272
+ $fault: "client",
273
+ ...opts,
274
+ });
275
+ Object.setPrototypeOf(this, ContentTooLargeException.prototype);
276
+ this.resourceId = opts.resourceId;
277
+ this.resourceType = opts.resourceType;
278
+ }
279
+ }
280
+
281
+ const _AD = "AppDefinition";
282
+ const _ADE = "AccessDeniedException";
283
+ const _ADI = "AppDefinitionInput";
284
+ const _AF = "AttributeFilter";
285
+ const _AFt = "AttributeFilters";
286
+ const _ALIR = "AssociateLibraryItemReview";
287
+ const _ALIRI = "AssociateLibraryItemReviewInput";
288
+ const _AQAWU = "AssociateQAppWithUser";
289
+ const _AQAWUI = "AssociateQAppWithUserInput";
290
+ const _BCC = "BatchCreateCategory";
291
+ const _BCCI = "BatchCreateCategoryInput";
292
+ const _BCCIC = "BatchCreateCategoryInputCategory";
293
+ const _BCCICL = "BatchCreateCategoryInputCategoryList";
294
+ const _BDC = "BatchDeleteCategory";
295
+ const _BDCI = "BatchDeleteCategoryInput";
296
+ const _BUC = "BatchUpdateCategory";
297
+ const _BUCI = "BatchUpdateCategoryInput";
298
+ const _C = "Category";
299
+ const _CE = "ConflictException";
300
+ const _CI = "CategoryInput";
301
+ const _CIa = "CardInput";
302
+ const _CL = "CardList";
303
+ const _CLI = "CategoryListInput";
304
+ const _CLII = "CreateLibraryItemInput";
305
+ const _CLIO = "CreateLibraryItemOutput";
306
+ const _CLIr = "CreateLibraryItem";
307
+ const _CLa = "CategoriesList";
308
+ const _CLat = "CategoryList";
309
+ const _CM = "ConversationMessage";
310
+ const _CML = "CardModelList";
311
+ const _CPU = "CreatePresignedUrl";
312
+ const _CPUI = "CreatePresignedUrlInput";
313
+ const _CPUO = "CreatePresignedUrlOutput";
314
+ const _CQA = "CreateQApp";
315
+ const _CQAI = "CreateQAppInput";
316
+ const _CQAO = "CreateQAppOutput";
317
+ const _CS = "CardStatus";
318
+ const _CSM = "CardStatusMap";
319
+ const _CTLE = "ContentTooLargeException";
320
+ const _CV = "CardValue";
321
+ const _CVL = "CardValueList";
322
+ const _Ca = "Card";
323
+ const _DA = "DocumentAttribute";
324
+ const _DAV = "DocumentAttributeValue";
325
+ const _DLI = "DeleteLibraryItem";
326
+ const _DLII = "DeleteLibraryItemInput";
327
+ const _DLIR = "DisassociateLibraryItemReview";
328
+ const _DLIRI = "DisassociateLibraryItemReviewInput";
329
+ const _DQA = "DeleteQApp";
330
+ const _DQAFU = "DisassociateQAppFromUser";
331
+ const _DQAFUI = "DisassociateQAppFromUserInput";
332
+ const _DQAI = "DeleteQAppInput";
333
+ const _DQAP = "DescribeQAppPermissions";
334
+ const _DQAPI = "DescribeQAppPermissionsInput";
335
+ const _DQAPO = "DescribeQAppPermissionsOutput";
336
+ const _EQASD = "ExportQAppSessionData";
337
+ const _EQASDI = "ExportQAppSessionDataInput";
338
+ const _EQASDO = "ExportQAppSessionDataOutput";
339
+ const _FIC = "FormInputCard";
340
+ const _FICI = "FormInputCardInput";
341
+ const _FICM = "FormInputCardMetadata";
342
+ const _FUC = "FileUploadCard";
343
+ const _FUCI = "FileUploadCardInput";
344
+ const _GLI = "GetLibraryItem";
345
+ const _GLII = "GetLibraryItemInput";
346
+ const _GLIO = "GetLibraryItemOutput";
347
+ const _GQA = "GetQApp";
348
+ const _GQAI = "GetQAppInput";
349
+ const _GQAO = "GetQAppOutput";
350
+ const _GQAS = "GetQAppSession";
351
+ const _GQASI = "GetQAppSessionInput";
352
+ const _GQASM = "GetQAppSessionMetadata";
353
+ const _GQASMI = "GetQAppSessionMetadataInput";
354
+ const _GQASMO = "GetQAppSessionMetadataOutput";
355
+ const _GQASO = "GetQAppSessionOutput";
356
+ const _ID = "ImportDocument";
357
+ const _IDI = "ImportDocumentInput";
358
+ const _IDO = "ImportDocumentOutput";
359
+ const _ISE = "InternalServerException";
360
+ const _LC = "ListCategories";
361
+ const _LCI = "ListCategoriesInput";
362
+ const _LCO = "ListCategoriesOutput";
363
+ const _LIL = "LibraryItemList";
364
+ const _LIM = "LibraryItemMember";
365
+ const _LLI = "ListLibraryItems";
366
+ const _LLII = "ListLibraryItemsInput";
367
+ const _LLIO = "ListLibraryItemsOutput";
368
+ const _LQA = "ListQApps";
369
+ const _LQAI = "ListQAppsInput";
370
+ const _LQAO = "ListQAppsOutput";
371
+ const _LQASD = "ListQAppSessionData";
372
+ const _LQASDI = "ListQAppSessionDataInput";
373
+ const _LQASDO = "ListQAppSessionDataOutput";
374
+ const _LTFR = "ListTagsForResource";
375
+ const _LTFRR = "ListTagsForResourceRequest";
376
+ const _LTFRRi = "ListTagsForResourceResponse";
377
+ const _ML = "MessageList";
378
+ const _PAD = "PredictAppDefinition";
379
+ const _PI = "PermissionInput";
380
+ const _PIL = "PermissionsInputList";
381
+ const _PO = "PermissionOutput";
382
+ const _POL = "PermissionsOutputList";
383
+ const _POr = "PrincipalOutput";
384
+ const _PQA = "PredictQApp";
385
+ const _PQAI = "PredictQAppInput";
386
+ const _PQAIO = "PredictQAppInputOptions";
387
+ const _PQAO = "PredictQAppOutput";
388
+ const _QASD = "QAppSessionData";
389
+ const _QASDL = "QAppSessionDataList";
390
+ const _QPC = "QPluginCard";
391
+ const _QPCI = "QPluginCardInput";
392
+ const _QQC = "QQueryCard";
393
+ const _QQCI = "QQueryCardInput";
394
+ const _RA = "Retry-After";
395
+ const _RNFE = "ResourceNotFoundException";
396
+ const _S = "Submission";
397
+ const _SL = "SubmissionList";
398
+ const _SM = "SubmissionMutation";
399
+ const _SQAS = "StartQAppSession";
400
+ const _SQASI = "StartQAppSessionInput";
401
+ const _SQASIt = "StopQAppSessionInput";
402
+ const _SQASO = "StartQAppSessionOutput";
403
+ const _SQASt = "StopQAppSession";
404
+ const _SQEE = "ServiceQuotaExceededException";
405
+ const _SSC = "SessionSharingConfiguration";
406
+ const _TE = "ThrottlingException";
407
+ const _TIC = "TextInputCard";
408
+ const _TICI = "TextInputCardInput";
409
+ const _TR = "TagResource";
410
+ const _TRR = "TagResourceRequest";
411
+ const _TRRa = "TagResourceResponse";
412
+ const _U = "User";
413
+ const _UAI = "UserAppItem";
414
+ const _UAL = "UserAppsList";
415
+ const _UE = "UnauthorizedException";
416
+ const _ULI = "UpdateLibraryItem";
417
+ const _ULII = "UpdateLibraryItemInput";
418
+ const _ULIM = "UpdateLibraryItemMetadata";
419
+ const _ULIMI = "UpdateLibraryItemMetadataInput";
420
+ const _ULIO = "UpdateLibraryItemOutput";
421
+ const _UQA = "UpdateQApp";
422
+ const _UQAI = "UpdateQAppInput";
423
+ const _UQAO = "UpdateQAppOutput";
424
+ const _UQAP = "UpdateQAppPermissions";
425
+ const _UQAPI = "UpdateQAppPermissionsInput";
426
+ const _UQAPO = "UpdateQAppPermissionsOutput";
427
+ const _UQAS = "UpdateQAppSession";
428
+ const _UQASI = "UpdateQAppSessionInput";
429
+ const _UQASM = "UpdateQAppSessionMetadata";
430
+ const _UQASMI = "UpdateQAppSessionMetadataInput";
431
+ const _UQASMO = "UpdateQAppSessionMetadataOutput";
432
+ const _UQASO = "UpdateQAppSessionOutput";
433
+ const _UR = "UntagResource";
434
+ const _URR = "UntagResourceRequest";
435
+ const _URRn = "UntagResourceResponse";
436
+ const _VE = "ValidationException";
437
+ const _a = "apps";
438
+ const _aA = "appArn";
439
+ const _aAF = "andAllFilters";
440
+ const _aC = "appCount";
441
+ const _aD = "appDefinition";
442
+ const _aDV = "appDefinitionVersion";
443
+ const _aF = "attributeFilter";
444
+ const _aI = "appId";
445
+ const _aIc = "actionIdentifier";
446
+ const _aO = "allowOverride";
447
+ const _aR = "acceptResponses";
448
+ const _aV = "appVersion";
449
+ const _ac = "action";
450
+ const _ap = "app";
451
+ const _b = "body";
452
+ const _c = "client";
453
+ const _cA = "containsAll";
454
+ const _cAo = "containsAny";
455
+ const _cAr = "createdAt";
456
+ const _cB = "createdBy";
457
+ const _cE = "canEdit";
458
+ const _cFL = "csvFileLink";
459
+ const _cI = "cardId";
460
+ const _cIa = "categoryId";
461
+ const _cM = "computeMode";
462
+ const _cS = "currentState";
463
+ const _cSa = "cardStatus";
464
+ const _cV = "currentValue";
465
+ const _ca = "cards";
466
+ const _cat = "categories";
467
+ const _co = "color";
468
+ const _con = "conversation";
469
+ const _d = "description";
470
+ const _dV = "defaultValue";
471
+ const _dVa = "dateValue";
472
+ const _de = "dependencies";
473
+ const _e = "error";
474
+ const _eA = "expiresAt";
475
+ const _eT = "equalsTo";
476
+ const _em = "email";
477
+ const _en = "enabled";
478
+ const _f = "filename";
479
+ const _fCB = "fileContentsBase64";
480
+ const _fCS = "fileContentsSha256";
481
+ const _fI = "fileId";
482
+ const _fIo = "formInput";
483
+ const _fN = "fileName";
484
+ const _fU = "fileUpload";
485
+ const _gP = "grantPermissions";
486
+ const _gT = "greaterThan";
487
+ const _gTOE = "greaterThanOrEquals";
488
+ const _h = "http";
489
+ const _hE = "httpError";
490
+ const _hH = "httpHeader";
491
+ const _hQ = "httpQuery";
492
+ const _i = "id";
493
+ const _iI = "instanceId";
494
+ const _iP = "initialPrompt";
495
+ const _iRBU = "isRatedByUser";
496
+ const _iV = "isVerified";
497
+ const _iVn = "initialValues";
498
+ const _ii = "instance-id";
499
+ const _l = "limit";
500
+ const _lI = "libraryItems";
501
+ const _lII = "libraryItemId";
502
+ const _lPAV = "latestPublishedAppVersion";
503
+ const _lT = "lessThan";
504
+ const _lTOE = "lessThanOrEquals";
505
+ const _lV = "longValue";
506
+ const _m = "message";
507
+ const _mR = "memoryReferences";
508
+ const _mT = "mutationType";
509
+ const _me = "metadata";
510
+ const _n = "name";
511
+ const _nF = "notFilter";
512
+ const _nT = "nextToken";
513
+ const _o = "options";
514
+ const _oAF = "orAllFilters";
515
+ const _oS = "outputSource";
516
+ const _p = "permissions";
517
+ const _pI = "pluginId";
518
+ const _pS = "problemStatement";
519
+ const _pT = "pluginType";
520
+ const _pU = "presignedUrl";
521
+ const _pUE = "presignedUrlExpiration";
522
+ const _pUF = "presignedUrlFields";
523
+ const _pl = "placeholder";
524
+ const _pr = "principal";
525
+ const _pro = "prompt";
526
+ const _qC = "quotaCode";
527
+ const _qP = "qPlugin";
528
+ const _qQ = "qQuery";
529
+ const _rA = "resourceArn";
530
+ const _rARN = "resourceARN";
531
+ const _rAS = "retryAfterSeconds";
532
+ const _rC = "ratingCount";
533
+ const _rCe = "requiredCapabilities";
534
+ const _rCev = "revealCards";
535
+ const _rI = "resourceId";
536
+ const _rP = "revokePermissions";
537
+ const _rT = "resourceType";
538
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.qapps";
539
+ const _sA = "sessionArn";
540
+ const _sC = "serviceCode";
541
+ const _sCh = "sharingConfiguration";
542
+ const _sD = "sessionData";
543
+ const _sI = "sessionId";
544
+ const _sIu = "submissionId";
545
+ const _sLV = "stringListValue";
546
+ const _sM = "submissionMutation";
547
+ const _sN = "sessionName";
548
+ const _sO = "sessionOwner";
549
+ const _sV = "stringValue";
550
+ const _sc = "scope";
551
+ const _sch = "schema";
552
+ const _se = "server";
553
+ const _st = "status";
554
+ const _su = "submissions";
555
+ const _t = "title";
556
+ const _tI = "textInput";
557
+ const _tK = "tagKeys";
558
+ const _ta = "tags";
559
+ const _ti = "timestamp";
560
+ const _ty = "type";
561
+ const _u = "user";
562
+ const _uA = "updatedAt";
563
+ const _uB = "updatedBy";
564
+ const _uC = "userCount";
565
+ const _uI = "userId";
566
+ const _uIH = "userIsHost";
567
+ const _uT = "userType";
568
+ const _v = "value";
569
+ const _va = "values";
570
+ const n0 = "com.amazonaws.qapps";
571
+ const _s_registry = TypeRegistry.for(_s);
572
+ var QAppsServiceException$ = [-3, _s, "QAppsServiceException", 0, [], []];
573
+ _s_registry.registerError(QAppsServiceException$, QAppsServiceException);
574
+ const n0_registry = TypeRegistry.for(n0);
575
+ var AccessDeniedException$ = [-3, n0, _ADE,
576
+ { [_e]: _c, [_hE]: 403 },
577
+ [_m],
578
+ [0], 1
579
+ ];
580
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
581
+ var ConflictException$ = [-3, n0, _CE,
582
+ { [_e]: _c, [_hE]: 409 },
583
+ [_m, _rI, _rT],
584
+ [0, 0, 0], 3
585
+ ];
586
+ n0_registry.registerError(ConflictException$, ConflictException);
587
+ var ContentTooLargeException$ = [-3, n0, _CTLE,
588
+ { [_e]: _c, [_hE]: 413 },
589
+ [_m, _rI, _rT],
590
+ [0, 0, 0], 3
591
+ ];
592
+ n0_registry.registerError(ContentTooLargeException$, ContentTooLargeException);
593
+ var InternalServerException$ = [-3, n0, _ISE,
594
+ { [_e]: _se, [_hE]: 500 },
595
+ [_m, _rAS],
596
+ [0, [1, { [_hH]: _RA }]], 1
597
+ ];
598
+ n0_registry.registerError(InternalServerException$, InternalServerException);
599
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
600
+ { [_e]: _c, [_hE]: 404 },
601
+ [_m, _rI, _rT],
602
+ [0, 0, 0], 3
603
+ ];
604
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
605
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
606
+ { [_e]: _c, [_hE]: 402 },
607
+ [_m, _rI, _rT, _sC, _qC],
608
+ [0, 0, 0, 0, 0], 5
609
+ ];
610
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
611
+ var ThrottlingException$ = [-3, n0, _TE,
612
+ { [_e]: _c, [_hE]: 429 },
613
+ [_m, _sC, _qC, _rAS],
614
+ [0, 0, 0, [1, { [_hH]: _RA }]], 3
615
+ ];
616
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
617
+ var UnauthorizedException$ = [-3, n0, _UE,
618
+ { [_e]: _c, [_hE]: 401 },
619
+ [_m],
620
+ [0], 1
621
+ ];
622
+ n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
623
+ var ValidationException$ = [-3, n0, _VE,
624
+ { [_e]: _c, [_hE]: 400 },
625
+ [_m],
626
+ [0], 1
627
+ ];
628
+ n0_registry.registerError(ValidationException$, ValidationException);
629
+ const errorTypeRegistries = [
630
+ _s_registry,
631
+ n0_registry,
632
+ ];
633
+ var AppDefinition$ = [3, n0, _AD,
634
+ 0,
635
+ [_aDV, _ca, _cE],
636
+ [0, () => CardModelList, 2], 2
637
+ ];
638
+ var AppDefinitionInput$ = [3, n0, _ADI,
639
+ 0,
640
+ [_ca, _iP],
641
+ [() => CardList, 0], 1
642
+ ];
643
+ var AssociateLibraryItemReviewInput$ = [3, n0, _ALIRI,
644
+ 0,
645
+ [_iI, _lII],
646
+ [[0, { [_hH]: _ii }], 0], 2
647
+ ];
648
+ var AssociateQAppWithUserInput$ = [3, n0, _AQAWUI,
649
+ 0,
650
+ [_iI, _aI],
651
+ [[0, { [_hH]: _ii }], 0], 2
652
+ ];
653
+ var AttributeFilter$ = [3, n0, _AF,
654
+ 0,
655
+ [_aAF, _oAF, _nF, _eT, _cA, _cAo, _gT, _gTOE, _lT, _lTOE],
656
+ [() => AttributeFilters, () => AttributeFilters, () => AttributeFilter$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$]
657
+ ];
658
+ var BatchCreateCategoryInput$ = [3, n0, _BCCI,
659
+ 0,
660
+ [_iI, _cat],
661
+ [[0, { [_hH]: _ii }], () => BatchCreateCategoryInputCategoryList], 2
662
+ ];
663
+ var BatchCreateCategoryInputCategory$ = [3, n0, _BCCIC,
664
+ 0,
665
+ [_t, _i, _co],
666
+ [0, 0, 0], 1
667
+ ];
668
+ var BatchDeleteCategoryInput$ = [3, n0, _BDCI,
669
+ 0,
670
+ [_iI, _cat],
671
+ [[0, { [_hH]: _ii }], 64 | 0], 2
672
+ ];
673
+ var BatchUpdateCategoryInput$ = [3, n0, _BUCI,
674
+ 0,
675
+ [_iI, _cat],
676
+ [[0, { [_hH]: _ii }], () => CategoryListInput], 2
677
+ ];
678
+ var CardStatus$ = [3, n0, _CS,
679
+ 0,
680
+ [_cS, _cV, _su],
681
+ [0, 0, () => SubmissionList], 2
682
+ ];
683
+ var CardValue$ = [3, n0, _CV,
684
+ 0,
685
+ [_cI, _v, _sM],
686
+ [0, 0, () => SubmissionMutation$], 2
687
+ ];
688
+ var Category$ = [3, n0, _C,
689
+ 0,
690
+ [_i, _t, _co, _aC],
691
+ [0, 0, 0, 1], 2
692
+ ];
693
+ var CategoryInput$ = [3, n0, _CI,
694
+ 0,
695
+ [_i, _t, _co],
696
+ [0, 0, 0], 2
697
+ ];
698
+ var ConversationMessage$ = [3, n0, _CM,
699
+ 0,
700
+ [_b, _ty],
701
+ [0, 0], 2
702
+ ];
703
+ var CreateLibraryItemInput$ = [3, n0, _CLII,
704
+ 0,
705
+ [_iI, _aI, _aV, _cat],
706
+ [[0, { [_hH]: _ii }], 0, 1, 64 | 0], 4
707
+ ];
708
+ var CreateLibraryItemOutput$ = [3, n0, _CLIO,
709
+ 0,
710
+ [_lII, _st, _cAr, _cB, _rC, _uA, _uB, _iV],
711
+ [0, 0, 5, 0, 1, 5, 0, 2], 5
712
+ ];
713
+ var CreatePresignedUrlInput$ = [3, n0, _CPUI,
714
+ 0,
715
+ [_iI, _cI, _aI, _fCS, _fN, _sc, _sI],
716
+ [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
717
+ ];
718
+ var CreatePresignedUrlOutput$ = [3, n0, _CPUO,
719
+ 0,
720
+ [_fI, _pU, _pUF, _pUE],
721
+ [0, 0, 128 | 0, 5], 4
722
+ ];
723
+ var CreateQAppInput$ = [3, n0, _CQAI,
724
+ 0,
725
+ [_iI, _t, _aD, _d, _ta],
726
+ [[0, { [_hH]: _ii }], 0, () => AppDefinitionInput$, 0, 128 | 0], 3
727
+ ];
728
+ var CreateQAppOutput$ = [3, n0, _CQAO,
729
+ 0,
730
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
731
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
732
+ ];
733
+ var DeleteLibraryItemInput$ = [3, n0, _DLII,
734
+ 0,
735
+ [_iI, _lII],
736
+ [[0, { [_hH]: _ii }], 0], 2
737
+ ];
738
+ var DeleteQAppInput$ = [3, n0, _DQAI,
739
+ 0,
740
+ [_iI, _aI],
741
+ [[0, { [_hH]: _ii }], 0], 2
742
+ ];
743
+ var DescribeQAppPermissionsInput$ = [3, n0, _DQAPI,
744
+ 0,
745
+ [_iI, _aI],
746
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }]], 2
747
+ ];
748
+ var DescribeQAppPermissionsOutput$ = [3, n0, _DQAPO,
749
+ 0,
750
+ [_rA, _aI, _p],
751
+ [0, 0, () => PermissionsOutputList]
752
+ ];
753
+ var DisassociateLibraryItemReviewInput$ = [3, n0, _DLIRI,
754
+ 0,
755
+ [_iI, _lII],
756
+ [[0, { [_hH]: _ii }], 0], 2
757
+ ];
758
+ var DisassociateQAppFromUserInput$ = [3, n0, _DQAFUI,
759
+ 0,
760
+ [_iI, _aI],
761
+ [[0, { [_hH]: _ii }], 0], 2
762
+ ];
763
+ var DocumentAttribute$ = [3, n0, _DA,
764
+ 0,
765
+ [_n, _v],
766
+ [0, () => DocumentAttributeValue$], 2
767
+ ];
768
+ var ExportQAppSessionDataInput$ = [3, n0, _EQASDI,
769
+ 0,
770
+ [_iI, _sI],
771
+ [[0, { [_hH]: _ii }], 0], 2
772
+ ];
773
+ var ExportQAppSessionDataOutput$ = [3, n0, _EQASDO,
774
+ 0,
775
+ [_cFL, _eA, _sA],
776
+ [0, 5, 0], 3
777
+ ];
778
+ var FileUploadCard$ = [3, n0, _FUC,
779
+ 0,
780
+ [_i, _t, _de, _ty, _f, _fI, _aO],
781
+ [0, 0, 64 | 0, 0, 0, 0, 2], 4
782
+ ];
783
+ var FileUploadCardInput$ = [3, n0, _FUCI,
784
+ 0,
785
+ [_t, _i, _ty, _f, _fI, _aO],
786
+ [0, 0, 0, 0, 0, 2], 3
787
+ ];
788
+ var FormInputCard$ = [3, n0, _FIC,
789
+ 0,
790
+ [_i, _t, _de, _ty, _me, _cM],
791
+ [0, 0, 64 | 0, 0, () => FormInputCardMetadata$, 0], 5
792
+ ];
793
+ var FormInputCardInput$ = [3, n0, _FICI,
794
+ 0,
795
+ [_t, _i, _ty, _me, _cM],
796
+ [0, 0, 0, () => FormInputCardMetadata$, 0], 4
797
+ ];
798
+ var FormInputCardMetadata$ = [3, n0, _FICM,
799
+ 0,
800
+ [_sch],
801
+ [15], 1
802
+ ];
803
+ var GetLibraryItemInput$ = [3, n0, _GLII,
804
+ 0,
805
+ [_iI, _lII, _aI],
806
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _lII }], [0, { [_hQ]: _aI }]], 2
807
+ ];
808
+ var GetLibraryItemOutput$ = [3, n0, _GLIO,
809
+ 0,
810
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
811
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
812
+ ];
813
+ var GetQAppInput$ = [3, n0, _GQAI,
814
+ 0,
815
+ [_iI, _aI, _aV],
816
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }], [1, { [_hQ]: _aV }]], 2
817
+ ];
818
+ var GetQAppOutput$ = [3, n0, _GQAO,
819
+ 0,
820
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _aD, _d, _iP, _rCe],
821
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, () => AppDefinition$, 0, 0, 64 | 0], 10
822
+ ];
823
+ var GetQAppSessionInput$ = [3, n0, _GQASI,
824
+ 0,
825
+ [_iI, _sI],
826
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
827
+ ];
828
+ var GetQAppSessionMetadataInput$ = [3, n0, _GQASMI,
829
+ 0,
830
+ [_iI, _sI],
831
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
832
+ ];
833
+ var GetQAppSessionMetadataOutput$ = [3, n0, _GQASMO,
834
+ 0,
835
+ [_sI, _sA, _sCh, _sN, _sO],
836
+ [0, 0, () => SessionSharingConfiguration$, 0, 2], 3
837
+ ];
838
+ var GetQAppSessionOutput$ = [3, n0, _GQASO,
839
+ 0,
840
+ [_sI, _sA, _st, _cSa, _sN, _aV, _lPAV, _uIH],
841
+ [0, 0, 0, () => CardStatusMap, 0, 1, 1, 2], 4
842
+ ];
843
+ var ImportDocumentInput$ = [3, n0, _IDI,
844
+ 0,
845
+ [_iI, _cI, _aI, _fCB, _fN, _sc, _sI],
846
+ [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
847
+ ];
848
+ var ImportDocumentOutput$ = [3, n0, _IDO,
849
+ 0,
850
+ [_fI],
851
+ [0]
852
+ ];
853
+ var LibraryItemMember$ = [3, n0, _LIM,
854
+ 0,
855
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
856
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
857
+ ];
858
+ var ListCategoriesInput$ = [3, n0, _LCI,
859
+ 0,
860
+ [_iI],
861
+ [[0, { [_hH]: _ii }]], 1
862
+ ];
863
+ var ListCategoriesOutput$ = [3, n0, _LCO,
864
+ 0,
865
+ [_cat],
866
+ [() => CategoriesList]
867
+ ];
868
+ var ListLibraryItemsInput$ = [3, n0, _LLII,
869
+ 0,
870
+ [_iI, _l, _nT, _cIa],
871
+ [[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _cIa }]], 1
872
+ ];
873
+ var ListLibraryItemsOutput$ = [3, n0, _LLIO,
874
+ 0,
875
+ [_lI, _nT],
876
+ [() => LibraryItemList, 0]
877
+ ];
878
+ var ListQAppSessionDataInput$ = [3, n0, _LQASDI,
879
+ 0,
880
+ [_iI, _sI],
881
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
882
+ ];
883
+ var ListQAppSessionDataOutput$ = [3, n0, _LQASDO,
884
+ 0,
885
+ [_sI, _sA, _sD, _nT],
886
+ [0, 0, () => QAppSessionDataList, 0], 2
887
+ ];
888
+ var ListQAppsInput$ = [3, n0, _LQAI,
889
+ 0,
890
+ [_iI, _l, _nT],
891
+ [[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]], 1
892
+ ];
893
+ var ListQAppsOutput$ = [3, n0, _LQAO,
894
+ 0,
895
+ [_a, _nT],
896
+ [() => UserAppsList, 0], 1
897
+ ];
898
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
899
+ 0,
900
+ [_rARN],
901
+ [[0, 1]], 1
902
+ ];
903
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
904
+ 0,
905
+ [_ta],
906
+ [128 | 0]
907
+ ];
908
+ var PermissionInput$ = [3, n0, _PI,
909
+ 0,
910
+ [_ac, _pr],
911
+ [0, 0], 2
912
+ ];
913
+ var PermissionOutput$ = [3, n0, _PO,
914
+ 0,
915
+ [_ac, _pr],
916
+ [0, () => PrincipalOutput$], 2
917
+ ];
918
+ var PredictAppDefinition$ = [3, n0, _PAD,
919
+ 0,
920
+ [_t, _aD, _d],
921
+ [0, () => AppDefinitionInput$, 0], 2
922
+ ];
923
+ var PredictQAppInput$ = [3, n0, _PQAI,
924
+ 0,
925
+ [_iI, _o],
926
+ [[0, { [_hH]: _ii }], () => PredictQAppInputOptions$], 1
927
+ ];
928
+ var PredictQAppOutput$ = [3, n0, _PQAO,
929
+ 0,
930
+ [_ap, _pS],
931
+ [() => PredictAppDefinition$, 0], 2
932
+ ];
933
+ var PrincipalOutput$ = [3, n0, _POr,
934
+ 0,
935
+ [_uI, _uT, _em],
936
+ [0, 0, 0]
937
+ ];
938
+ var QAppSessionData$ = [3, n0, _QASD,
939
+ 0,
940
+ [_cI, _u, _v, _sIu, _ti],
941
+ [0, () => User$, 15, 0, 5], 2
942
+ ];
943
+ var QPluginCard$ = [3, n0, _QPC,
944
+ 0,
945
+ [_i, _t, _de, _ty, _pro, _pT, _pI, _aIc],
946
+ [0, 0, 64 | 0, 0, 0, 0, 0, 0], 7
947
+ ];
948
+ var QPluginCardInput$ = [3, n0, _QPCI,
949
+ 0,
950
+ [_t, _i, _ty, _pro, _pI, _aIc],
951
+ [0, 0, 0, 0, 0, 0], 5
952
+ ];
953
+ var QQueryCard$ = [3, n0, _QQC,
954
+ 0,
955
+ [_i, _t, _de, _ty, _pro, _oS, _aF, _mR],
956
+ [0, 0, 64 | 0, 0, 0, 0, () => AttributeFilter$, 64 | 0], 6
957
+ ];
958
+ var QQueryCardInput$ = [3, n0, _QQCI,
959
+ 0,
960
+ [_t, _i, _ty, _pro, _oS, _aF],
961
+ [0, 0, 0, 0, 0, () => AttributeFilter$], 4
962
+ ];
963
+ var SessionSharingConfiguration$ = [3, n0, _SSC,
964
+ 0,
965
+ [_en, _aR, _rCev],
966
+ [2, 2, 2], 1
967
+ ];
968
+ var StartQAppSessionInput$ = [3, n0, _SQASI,
969
+ 0,
970
+ [_iI, _aI, _aV, _iVn, _sI, _ta],
971
+ [[0, { [_hH]: _ii }], 0, 1, () => CardValueList, 0, 128 | 0], 3
972
+ ];
973
+ var StartQAppSessionOutput$ = [3, n0, _SQASO,
974
+ 0,
975
+ [_sI, _sA],
976
+ [0, 0], 2
977
+ ];
978
+ var StopQAppSessionInput$ = [3, n0, _SQASIt,
979
+ 0,
980
+ [_iI, _sI],
981
+ [[0, { [_hH]: _ii }], 0], 2
982
+ ];
983
+ var Submission$ = [3, n0, _S,
984
+ 0,
985
+ [_v, _sIu, _ti],
986
+ [15, 0, 5]
987
+ ];
988
+ var SubmissionMutation$ = [3, n0, _SM,
989
+ 0,
990
+ [_sIu, _mT],
991
+ [0, 0], 2
992
+ ];
993
+ var TagResourceRequest$ = [3, n0, _TRR,
994
+ 0,
995
+ [_rARN, _ta],
996
+ [[0, 1], 128 | 0], 2
997
+ ];
998
+ var TagResourceResponse$ = [3, n0, _TRRa,
999
+ 0,
1000
+ [],
1001
+ []
1002
+ ];
1003
+ var TextInputCard$ = [3, n0, _TIC,
1004
+ 0,
1005
+ [_i, _t, _de, _ty, _pl, _dV],
1006
+ [0, 0, 64 | 0, 0, 0, 0], 4
1007
+ ];
1008
+ var TextInputCardInput$ = [3, n0, _TICI,
1009
+ 0,
1010
+ [_t, _i, _ty, _pl, _dV],
1011
+ [0, 0, 0, 0, 0], 3
1012
+ ];
1013
+ var UntagResourceRequest$ = [3, n0, _URR,
1014
+ 0,
1015
+ [_rARN, _tK],
1016
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1017
+ ];
1018
+ var UntagResourceResponse$ = [3, n0, _URRn,
1019
+ 0,
1020
+ [],
1021
+ []
1022
+ ];
1023
+ var UpdateLibraryItemInput$ = [3, n0, _ULII,
1024
+ 0,
1025
+ [_iI, _lII, _st, _cat],
1026
+ [[0, { [_hH]: _ii }], 0, 0, 64 | 0], 2
1027
+ ];
1028
+ var UpdateLibraryItemMetadataInput$ = [3, n0, _ULIMI,
1029
+ 0,
1030
+ [_iI, _lII, _iV],
1031
+ [[0, { [_hH]: _ii }], 0, 2], 2
1032
+ ];
1033
+ var UpdateLibraryItemOutput$ = [3, n0, _ULIO,
1034
+ 0,
1035
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
1036
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
1037
+ ];
1038
+ var UpdateQAppInput$ = [3, n0, _UQAI,
1039
+ 0,
1040
+ [_iI, _aI, _t, _d, _aD],
1041
+ [[0, { [_hH]: _ii }], 0, 0, 0, () => AppDefinitionInput$], 2
1042
+ ];
1043
+ var UpdateQAppOutput$ = [3, n0, _UQAO,
1044
+ 0,
1045
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
1046
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
1047
+ ];
1048
+ var UpdateQAppPermissionsInput$ = [3, n0, _UQAPI,
1049
+ 0,
1050
+ [_iI, _aI, _gP, _rP],
1051
+ [[0, { [_hH]: _ii }], 0, () => PermissionsInputList, () => PermissionsInputList], 2
1052
+ ];
1053
+ var UpdateQAppPermissionsOutput$ = [3, n0, _UQAPO,
1054
+ 0,
1055
+ [_rA, _aI, _p],
1056
+ [0, 0, () => PermissionsOutputList]
1057
+ ];
1058
+ var UpdateQAppSessionInput$ = [3, n0, _UQASI,
1059
+ 0,
1060
+ [_iI, _sI, _va],
1061
+ [[0, { [_hH]: _ii }], 0, () => CardValueList], 2
1062
+ ];
1063
+ var UpdateQAppSessionMetadataInput$ = [3, n0, _UQASMI,
1064
+ 0,
1065
+ [_iI, _sI, _sCh, _sN],
1066
+ [[0, { [_hH]: _ii }], 0, () => SessionSharingConfiguration$, 0], 3
1067
+ ];
1068
+ var UpdateQAppSessionMetadataOutput$ = [3, n0, _UQASMO,
1069
+ 0,
1070
+ [_sI, _sA, _sCh, _sN],
1071
+ [0, 0, () => SessionSharingConfiguration$, 0], 3
1072
+ ];
1073
+ var UpdateQAppSessionOutput$ = [3, n0, _UQASO,
1074
+ 0,
1075
+ [_sI, _sA],
1076
+ [0, 0], 2
1077
+ ];
1078
+ var User$ = [3, n0, _U,
1079
+ 0,
1080
+ [_uI],
1081
+ [0]
1082
+ ];
1083
+ var UserAppItem$ = [3, n0, _UAI,
1084
+ 0,
1085
+ [_aI, _aA, _t, _cAr, _d, _cE, _st, _iV],
1086
+ [0, 0, 0, 5, 0, 2, 0, 2], 4
1087
+ ];
1088
+ var __Unit = "unit";
1089
+ var AttributeFilters = [1, n0, _AFt,
1090
+ 0, () => AttributeFilter$
1091
+ ];
1092
+ var BatchCreateCategoryInputCategoryList = [1, n0, _BCCICL,
1093
+ 0, () => BatchCreateCategoryInputCategory$
1094
+ ];
1095
+ var CardList = [1, n0, _CL,
1096
+ 0, () => CardInput$
1097
+ ];
1098
+ var CardModelList = [1, n0, _CML,
1099
+ 0, () => Card$
1100
+ ];
1101
+ var CardValueList = [1, n0, _CVL,
1102
+ 0, () => CardValue$
1103
+ ];
1104
+ var CategoriesList = [1, n0, _CLa,
1105
+ 0, () => Category$
1106
+ ];
1107
+ var CategoryList = [1, n0, _CLat,
1108
+ 0, () => Category$
1109
+ ];
1110
+ var CategoryListInput = [1, n0, _CLI,
1111
+ 0, () => CategoryInput$
1112
+ ];
1113
+ var LibraryItemList = [1, n0, _LIL,
1114
+ 0, () => LibraryItemMember$
1115
+ ];
1116
+ var MessageList = [1, n0, _ML,
1117
+ 0, () => ConversationMessage$
1118
+ ];
1119
+ var PermissionsInputList = [1, n0, _PIL,
1120
+ 0, () => PermissionInput$
1121
+ ];
1122
+ var PermissionsOutputList = [1, n0, _POL,
1123
+ 0, () => PermissionOutput$
1124
+ ];
1125
+ var QAppSessionDataList = [1, n0, _QASDL,
1126
+ 0, () => QAppSessionData$
1127
+ ];
1128
+ var SubmissionList = [1, n0, _SL,
1129
+ 0, () => Submission$
1130
+ ];
1131
+ var UserAppsList = [1, n0, _UAL,
1132
+ 0, () => UserAppItem$
1133
+ ];
1134
+ var CardStatusMap = [2, n0, _CSM,
1135
+ 0, 0, () => CardStatus$
1136
+ ];
1137
+ var Card$ = [4, n0, _Ca,
1138
+ 0,
1139
+ [_tI, _qQ, _qP, _fU, _fIo],
1140
+ [() => TextInputCard$, () => QQueryCard$, () => QPluginCard$, () => FileUploadCard$, () => FormInputCard$]
1141
+ ];
1142
+ var CardInput$ = [4, n0, _CIa,
1143
+ 0,
1144
+ [_tI, _qQ, _qP, _fU, _fIo],
1145
+ [() => TextInputCardInput$, () => QQueryCardInput$, () => QPluginCardInput$, () => FileUploadCardInput$, () => FormInputCardInput$]
1146
+ ];
1147
+ var DocumentAttributeValue$ = [4, n0, _DAV,
1148
+ 0,
1149
+ [_sV, _sLV, _lV, _dVa],
1150
+ [0, 64 | 0, 1, 4]
1151
+ ];
1152
+ var PredictQAppInputOptions$ = [4, n0, _PQAIO,
1153
+ 0,
1154
+ [_con, _pS],
1155
+ [() => MessageList, 0]
1156
+ ];
1157
+ var AssociateLibraryItemReview$ = [9, n0, _ALIR,
1158
+ { [_h]: ["POST", "/catalog.associateItemRating", 200] }, () => AssociateLibraryItemReviewInput$, () => __Unit
1159
+ ];
1160
+ var AssociateQAppWithUser$ = [9, n0, _AQAWU,
1161
+ { [_h]: ["POST", "/apps.install", 200] }, () => AssociateQAppWithUserInput$, () => __Unit
1162
+ ];
1163
+ var BatchCreateCategory$ = [9, n0, _BCC,
1164
+ { [_h]: ["POST", "/catalog.createCategories", 200] }, () => BatchCreateCategoryInput$, () => __Unit
1165
+ ];
1166
+ var BatchDeleteCategory$ = [9, n0, _BDC,
1167
+ { [_h]: ["POST", "/catalog.deleteCategories", 200] }, () => BatchDeleteCategoryInput$, () => __Unit
1168
+ ];
1169
+ var BatchUpdateCategory$ = [9, n0, _BUC,
1170
+ { [_h]: ["POST", "/catalog.updateCategories", 200] }, () => BatchUpdateCategoryInput$, () => __Unit
1171
+ ];
1172
+ var CreateLibraryItem$ = [9, n0, _CLIr,
1173
+ { [_h]: ["POST", "/catalog.createItem", 200] }, () => CreateLibraryItemInput$, () => CreateLibraryItemOutput$
1174
+ ];
1175
+ var CreatePresignedUrl$ = [9, n0, _CPU,
1176
+ { [_h]: ["POST", "/apps.createPresignedUrl", 200] }, () => CreatePresignedUrlInput$, () => CreatePresignedUrlOutput$
1177
+ ];
1178
+ var CreateQApp$ = [9, n0, _CQA,
1179
+ { [_h]: ["POST", "/apps.create", 200] }, () => CreateQAppInput$, () => CreateQAppOutput$
1180
+ ];
1181
+ var DeleteLibraryItem$ = [9, n0, _DLI,
1182
+ { [_h]: ["POST", "/catalog.deleteItem", 200] }, () => DeleteLibraryItemInput$, () => __Unit
1183
+ ];
1184
+ var DeleteQApp$ = [9, n0, _DQA,
1185
+ { [_h]: ["POST", "/apps.delete", 200] }, () => DeleteQAppInput$, () => __Unit
1186
+ ];
1187
+ var DescribeQAppPermissions$ = [9, n0, _DQAP,
1188
+ { [_h]: ["GET", "/apps.describeQAppPermissions", 200] }, () => DescribeQAppPermissionsInput$, () => DescribeQAppPermissionsOutput$
1189
+ ];
1190
+ var DisassociateLibraryItemReview$ = [9, n0, _DLIR,
1191
+ { [_h]: ["POST", "/catalog.disassociateItemRating", 200] }, () => DisassociateLibraryItemReviewInput$, () => __Unit
1192
+ ];
1193
+ var DisassociateQAppFromUser$ = [9, n0, _DQAFU,
1194
+ { [_h]: ["POST", "/apps.uninstall", 200] }, () => DisassociateQAppFromUserInput$, () => __Unit
1195
+ ];
1196
+ var ExportQAppSessionData$ = [9, n0, _EQASD,
1197
+ { [_h]: ["POST", "/runtime.exportQAppSessionData", 200] }, () => ExportQAppSessionDataInput$, () => ExportQAppSessionDataOutput$
1198
+ ];
1199
+ var GetLibraryItem$ = [9, n0, _GLI,
1200
+ { [_h]: ["GET", "/catalog.getItem", 200] }, () => GetLibraryItemInput$, () => GetLibraryItemOutput$
1201
+ ];
1202
+ var GetQApp$ = [9, n0, _GQA,
1203
+ { [_h]: ["GET", "/apps.get", 200] }, () => GetQAppInput$, () => GetQAppOutput$
1204
+ ];
1205
+ var GetQAppSession$ = [9, n0, _GQAS,
1206
+ { [_h]: ["GET", "/runtime.getQAppSession", 200] }, () => GetQAppSessionInput$, () => GetQAppSessionOutput$
1207
+ ];
1208
+ var GetQAppSessionMetadata$ = [9, n0, _GQASM,
1209
+ { [_h]: ["GET", "/runtime.getQAppSessionMetadata", 200] }, () => GetQAppSessionMetadataInput$, () => GetQAppSessionMetadataOutput$
1210
+ ];
1211
+ var ImportDocument$ = [9, n0, _ID,
1212
+ { [_h]: ["POST", "/apps.importDocument", 200] }, () => ImportDocumentInput$, () => ImportDocumentOutput$
1213
+ ];
1214
+ var ListCategories$ = [9, n0, _LC,
1215
+ { [_h]: ["GET", "/catalog.listCategories", 200] }, () => ListCategoriesInput$, () => ListCategoriesOutput$
1216
+ ];
1217
+ var ListLibraryItems$ = [9, n0, _LLI,
1218
+ { [_h]: ["GET", "/catalog.list", 200] }, () => ListLibraryItemsInput$, () => ListLibraryItemsOutput$
1219
+ ];
1220
+ var ListQApps$ = [9, n0, _LQA,
1221
+ { [_h]: ["GET", "/apps.list", 200] }, () => ListQAppsInput$, () => ListQAppsOutput$
1222
+ ];
1223
+ var ListQAppSessionData$ = [9, n0, _LQASD,
1224
+ { [_h]: ["GET", "/runtime.listQAppSessionData", 200] }, () => ListQAppSessionDataInput$, () => ListQAppSessionDataOutput$
1225
+ ];
1226
+ var ListTagsForResource$ = [9, n0, _LTFR,
1227
+ { [_h]: ["GET", "/tags/{resourceARN}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1228
+ ];
1229
+ var PredictQApp$ = [9, n0, _PQA,
1230
+ { [_h]: ["POST", "/apps.predictQApp", 200] }, () => PredictQAppInput$, () => PredictQAppOutput$
1231
+ ];
1232
+ var StartQAppSession$ = [9, n0, _SQAS,
1233
+ { [_h]: ["POST", "/runtime.startQAppSession", 200] }, () => StartQAppSessionInput$, () => StartQAppSessionOutput$
1234
+ ];
1235
+ var StopQAppSession$ = [9, n0, _SQASt,
1236
+ { [_h]: ["POST", "/runtime.deleteMiniAppRun", 200] }, () => StopQAppSessionInput$, () => __Unit
1237
+ ];
1238
+ var TagResource$ = [9, n0, _TR,
1239
+ { [_h]: ["POST", "/tags/{resourceARN}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1240
+ ];
1241
+ var UntagResource$ = [9, n0, _UR,
1242
+ { [_h]: ["DELETE", "/tags/{resourceARN}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1243
+ ];
1244
+ var UpdateLibraryItem$ = [9, n0, _ULI,
1245
+ { [_h]: ["POST", "/catalog.updateItem", 200] }, () => UpdateLibraryItemInput$, () => UpdateLibraryItemOutput$
1246
+ ];
1247
+ var UpdateLibraryItemMetadata$ = [9, n0, _ULIM,
1248
+ { [_h]: ["POST", "/catalog.updateItemMetadata", 200] }, () => UpdateLibraryItemMetadataInput$, () => __Unit
1249
+ ];
1250
+ var UpdateQApp$ = [9, n0, _UQA,
1251
+ { [_h]: ["POST", "/apps.update", 200] }, () => UpdateQAppInput$, () => UpdateQAppOutput$
1252
+ ];
1253
+ var UpdateQAppPermissions$ = [9, n0, _UQAP,
1254
+ { [_h]: ["POST", "/apps.updateQAppPermissions", 200] }, () => UpdateQAppPermissionsInput$, () => UpdateQAppPermissionsOutput$
1255
+ ];
1256
+ var UpdateQAppSession$ = [9, n0, _UQAS,
1257
+ { [_h]: ["POST", "/runtime.updateQAppSession", 200] }, () => UpdateQAppSessionInput$, () => UpdateQAppSessionOutput$
1258
+ ];
1259
+ var UpdateQAppSessionMetadata$ = [9, n0, _UQASM,
1260
+ { [_h]: ["POST", "/runtime.updateQAppSessionMetadata", 200] }, () => UpdateQAppSessionMetadataInput$, () => UpdateQAppSessionMetadataOutput$
1261
+ ];
1262
+
1263
+ const getRuntimeConfig$1 = (config) => {
1264
+ return {
1265
+ apiVersion: "2023-11-27",
1266
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1267
+ base64Encoder: config?.base64Encoder ?? toBase64,
1268
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1269
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1270
+ extensions: config?.extensions ?? [],
1271
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQAppsHttpAuthSchemeProvider,
1272
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1273
+ {
1274
+ schemeId: "aws.auth#sigv4",
1275
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1276
+ signer: new AwsSdkSigV4Signer(),
1277
+ },
1278
+ ],
1279
+ logger: config?.logger ?? new NoOpLogger(),
1280
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1281
+ protocolSettings: config?.protocolSettings ?? {
1282
+ defaultNamespace: "com.amazonaws.qapps",
1283
+ errorTypeRegistries,
1284
+ version: "2023-11-27",
1285
+ serviceTarget: "QAppsService",
1286
+ },
1287
+ serviceId: config?.serviceId ?? "QApps",
1288
+ sha256: config?.sha256 ?? Sha256,
1289
+ urlParser: config?.urlParser ?? parseUrl,
1290
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1291
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1292
+ };
1293
+ };
1294
+
1295
+ const getRuntimeConfig = (config) => {
1296
+ emitWarningIfUnsupportedVersion(process.version);
1297
+ const defaultsMode = resolveDefaultsModeConfig(config);
1298
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1299
+ const clientSharedValues = getRuntimeConfig$1(config);
1300
+ emitWarningIfUnsupportedVersion$1(process.version);
1301
+ const loaderConfig = {
1302
+ profile: config?.profile,
1303
+ logger: clientSharedValues.logger,
1304
+ };
1305
+ return {
1306
+ ...clientSharedValues,
1307
+ ...config,
1308
+ runtime: "node",
1309
+ defaultsMode,
1310
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1311
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1312
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1313
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1314
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1315
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1316
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1317
+ retryMode: config?.retryMode ??
1318
+ loadConfig({
1319
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1320
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1321
+ }, config),
1322
+ streamCollector: config?.streamCollector ?? streamCollector,
1323
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1324
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1325
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1326
+ };
1327
+ };
1328
+
34
1329
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1330
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1331
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -656,55 +1951,206 @@ const LibraryItemStatus = {
656
1951
  PUBLISHED: "PUBLISHED",
657
1952
  };
658
1953
 
1954
+ exports.AccessDeniedException = AccessDeniedException;
1955
+ exports.AccessDeniedException$ = AccessDeniedException$;
659
1956
  exports.Action = Action;
1957
+ exports.AppDefinition$ = AppDefinition$;
1958
+ exports.AppDefinitionInput$ = AppDefinitionInput$;
660
1959
  exports.AppRequiredCapability = AppRequiredCapability;
661
1960
  exports.AppStatus = AppStatus;
1961
+ exports.AssociateLibraryItemReview$ = AssociateLibraryItemReview$;
662
1962
  exports.AssociateLibraryItemReviewCommand = AssociateLibraryItemReviewCommand;
1963
+ exports.AssociateLibraryItemReviewInput$ = AssociateLibraryItemReviewInput$;
1964
+ exports.AssociateQAppWithUser$ = AssociateQAppWithUser$;
663
1965
  exports.AssociateQAppWithUserCommand = AssociateQAppWithUserCommand;
1966
+ exports.AssociateQAppWithUserInput$ = AssociateQAppWithUserInput$;
1967
+ exports.AttributeFilter$ = AttributeFilter$;
1968
+ exports.BatchCreateCategory$ = BatchCreateCategory$;
664
1969
  exports.BatchCreateCategoryCommand = BatchCreateCategoryCommand;
1970
+ exports.BatchCreateCategoryInput$ = BatchCreateCategoryInput$;
1971
+ exports.BatchCreateCategoryInputCategory$ = BatchCreateCategoryInputCategory$;
1972
+ exports.BatchDeleteCategory$ = BatchDeleteCategory$;
665
1973
  exports.BatchDeleteCategoryCommand = BatchDeleteCategoryCommand;
1974
+ exports.BatchDeleteCategoryInput$ = BatchDeleteCategoryInput$;
1975
+ exports.BatchUpdateCategory$ = BatchUpdateCategory$;
666
1976
  exports.BatchUpdateCategoryCommand = BatchUpdateCategoryCommand;
1977
+ exports.BatchUpdateCategoryInput$ = BatchUpdateCategoryInput$;
1978
+ exports.Card$ = Card$;
1979
+ exports.CardInput$ = CardInput$;
667
1980
  exports.CardOutputSource = CardOutputSource;
1981
+ exports.CardStatus$ = CardStatus$;
668
1982
  exports.CardType = CardType;
1983
+ exports.CardValue$ = CardValue$;
1984
+ exports.Category$ = Category$;
1985
+ exports.CategoryInput$ = CategoryInput$;
1986
+ exports.ConflictException = ConflictException;
1987
+ exports.ConflictException$ = ConflictException$;
1988
+ exports.ContentTooLargeException = ContentTooLargeException;
1989
+ exports.ContentTooLargeException$ = ContentTooLargeException$;
1990
+ exports.ConversationMessage$ = ConversationMessage$;
1991
+ exports.CreateLibraryItem$ = CreateLibraryItem$;
669
1992
  exports.CreateLibraryItemCommand = CreateLibraryItemCommand;
1993
+ exports.CreateLibraryItemInput$ = CreateLibraryItemInput$;
1994
+ exports.CreateLibraryItemOutput$ = CreateLibraryItemOutput$;
1995
+ exports.CreatePresignedUrl$ = CreatePresignedUrl$;
670
1996
  exports.CreatePresignedUrlCommand = CreatePresignedUrlCommand;
1997
+ exports.CreatePresignedUrlInput$ = CreatePresignedUrlInput$;
1998
+ exports.CreatePresignedUrlOutput$ = CreatePresignedUrlOutput$;
1999
+ exports.CreateQApp$ = CreateQApp$;
671
2000
  exports.CreateQAppCommand = CreateQAppCommand;
2001
+ exports.CreateQAppInput$ = CreateQAppInput$;
2002
+ exports.CreateQAppOutput$ = CreateQAppOutput$;
2003
+ exports.DeleteLibraryItem$ = DeleteLibraryItem$;
672
2004
  exports.DeleteLibraryItemCommand = DeleteLibraryItemCommand;
2005
+ exports.DeleteLibraryItemInput$ = DeleteLibraryItemInput$;
2006
+ exports.DeleteQApp$ = DeleteQApp$;
673
2007
  exports.DeleteQAppCommand = DeleteQAppCommand;
2008
+ exports.DeleteQAppInput$ = DeleteQAppInput$;
2009
+ exports.DescribeQAppPermissions$ = DescribeQAppPermissions$;
674
2010
  exports.DescribeQAppPermissionsCommand = DescribeQAppPermissionsCommand;
2011
+ exports.DescribeQAppPermissionsInput$ = DescribeQAppPermissionsInput$;
2012
+ exports.DescribeQAppPermissionsOutput$ = DescribeQAppPermissionsOutput$;
2013
+ exports.DisassociateLibraryItemReview$ = DisassociateLibraryItemReview$;
675
2014
  exports.DisassociateLibraryItemReviewCommand = DisassociateLibraryItemReviewCommand;
2015
+ exports.DisassociateLibraryItemReviewInput$ = DisassociateLibraryItemReviewInput$;
2016
+ exports.DisassociateQAppFromUser$ = DisassociateQAppFromUser$;
676
2017
  exports.DisassociateQAppFromUserCommand = DisassociateQAppFromUserCommand;
2018
+ exports.DisassociateQAppFromUserInput$ = DisassociateQAppFromUserInput$;
2019
+ exports.DocumentAttribute$ = DocumentAttribute$;
2020
+ exports.DocumentAttributeValue$ = DocumentAttributeValue$;
677
2021
  exports.DocumentScope = DocumentScope;
678
2022
  exports.ExecutionStatus = ExecutionStatus;
2023
+ exports.ExportQAppSessionData$ = ExportQAppSessionData$;
679
2024
  exports.ExportQAppSessionDataCommand = ExportQAppSessionDataCommand;
2025
+ exports.ExportQAppSessionDataInput$ = ExportQAppSessionDataInput$;
2026
+ exports.ExportQAppSessionDataOutput$ = ExportQAppSessionDataOutput$;
2027
+ exports.FileUploadCard$ = FileUploadCard$;
2028
+ exports.FileUploadCardInput$ = FileUploadCardInput$;
2029
+ exports.FormInputCard$ = FormInputCard$;
2030
+ exports.FormInputCardInput$ = FormInputCardInput$;
2031
+ exports.FormInputCardMetadata$ = FormInputCardMetadata$;
2032
+ exports.GetLibraryItem$ = GetLibraryItem$;
680
2033
  exports.GetLibraryItemCommand = GetLibraryItemCommand;
2034
+ exports.GetLibraryItemInput$ = GetLibraryItemInput$;
2035
+ exports.GetLibraryItemOutput$ = GetLibraryItemOutput$;
2036
+ exports.GetQApp$ = GetQApp$;
681
2037
  exports.GetQAppCommand = GetQAppCommand;
2038
+ exports.GetQAppInput$ = GetQAppInput$;
2039
+ exports.GetQAppOutput$ = GetQAppOutput$;
2040
+ exports.GetQAppSession$ = GetQAppSession$;
682
2041
  exports.GetQAppSessionCommand = GetQAppSessionCommand;
2042
+ exports.GetQAppSessionInput$ = GetQAppSessionInput$;
2043
+ exports.GetQAppSessionMetadata$ = GetQAppSessionMetadata$;
683
2044
  exports.GetQAppSessionMetadataCommand = GetQAppSessionMetadataCommand;
2045
+ exports.GetQAppSessionMetadataInput$ = GetQAppSessionMetadataInput$;
2046
+ exports.GetQAppSessionMetadataOutput$ = GetQAppSessionMetadataOutput$;
2047
+ exports.GetQAppSessionOutput$ = GetQAppSessionOutput$;
2048
+ exports.ImportDocument$ = ImportDocument$;
684
2049
  exports.ImportDocumentCommand = ImportDocumentCommand;
2050
+ exports.ImportDocumentInput$ = ImportDocumentInput$;
2051
+ exports.ImportDocumentOutput$ = ImportDocumentOutput$;
685
2052
  exports.InputCardComputeMode = InputCardComputeMode;
2053
+ exports.InternalServerException = InternalServerException;
2054
+ exports.InternalServerException$ = InternalServerException$;
2055
+ exports.LibraryItemMember$ = LibraryItemMember$;
686
2056
  exports.LibraryItemStatus = LibraryItemStatus;
2057
+ exports.ListCategories$ = ListCategories$;
687
2058
  exports.ListCategoriesCommand = ListCategoriesCommand;
2059
+ exports.ListCategoriesInput$ = ListCategoriesInput$;
2060
+ exports.ListCategoriesOutput$ = ListCategoriesOutput$;
2061
+ exports.ListLibraryItems$ = ListLibraryItems$;
688
2062
  exports.ListLibraryItemsCommand = ListLibraryItemsCommand;
2063
+ exports.ListLibraryItemsInput$ = ListLibraryItemsInput$;
2064
+ exports.ListLibraryItemsOutput$ = ListLibraryItemsOutput$;
2065
+ exports.ListQAppSessionData$ = ListQAppSessionData$;
689
2066
  exports.ListQAppSessionDataCommand = ListQAppSessionDataCommand;
2067
+ exports.ListQAppSessionDataInput$ = ListQAppSessionDataInput$;
2068
+ exports.ListQAppSessionDataOutput$ = ListQAppSessionDataOutput$;
2069
+ exports.ListQApps$ = ListQApps$;
690
2070
  exports.ListQAppsCommand = ListQAppsCommand;
2071
+ exports.ListQAppsInput$ = ListQAppsInput$;
2072
+ exports.ListQAppsOutput$ = ListQAppsOutput$;
2073
+ exports.ListTagsForResource$ = ListTagsForResource$;
691
2074
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2075
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2076
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2077
+ exports.PermissionInput$ = PermissionInput$;
2078
+ exports.PermissionOutput$ = PermissionOutput$;
692
2079
  exports.PluginType = PluginType;
2080
+ exports.PredictAppDefinition$ = PredictAppDefinition$;
2081
+ exports.PredictQApp$ = PredictQApp$;
693
2082
  exports.PredictQAppCommand = PredictQAppCommand;
2083
+ exports.PredictQAppInput$ = PredictQAppInput$;
2084
+ exports.PredictQAppInputOptions$ = PredictQAppInputOptions$;
2085
+ exports.PredictQAppOutput$ = PredictQAppOutput$;
2086
+ exports.PrincipalOutput$ = PrincipalOutput$;
2087
+ exports.QAppSessionData$ = QAppSessionData$;
694
2088
  exports.QApps = QApps;
695
2089
  exports.QAppsClient = QAppsClient;
2090
+ exports.QAppsServiceException = QAppsServiceException;
2091
+ exports.QAppsServiceException$ = QAppsServiceException$;
2092
+ exports.QPluginCard$ = QPluginCard$;
2093
+ exports.QPluginCardInput$ = QPluginCardInput$;
2094
+ exports.QQueryCard$ = QQueryCard$;
2095
+ exports.QQueryCardInput$ = QQueryCardInput$;
2096
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2097
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
696
2098
  exports.Sender = Sender;
2099
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2100
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2101
+ exports.SessionSharingConfiguration$ = SessionSharingConfiguration$;
2102
+ exports.StartQAppSession$ = StartQAppSession$;
697
2103
  exports.StartQAppSessionCommand = StartQAppSessionCommand;
2104
+ exports.StartQAppSessionInput$ = StartQAppSessionInput$;
2105
+ exports.StartQAppSessionOutput$ = StartQAppSessionOutput$;
2106
+ exports.StopQAppSession$ = StopQAppSession$;
698
2107
  exports.StopQAppSessionCommand = StopQAppSessionCommand;
2108
+ exports.StopQAppSessionInput$ = StopQAppSessionInput$;
2109
+ exports.Submission$ = Submission$;
2110
+ exports.SubmissionMutation$ = SubmissionMutation$;
699
2111
  exports.SubmissionMutationKind = SubmissionMutationKind;
2112
+ exports.TagResource$ = TagResource$;
700
2113
  exports.TagResourceCommand = TagResourceCommand;
2114
+ exports.TagResourceRequest$ = TagResourceRequest$;
2115
+ exports.TagResourceResponse$ = TagResourceResponse$;
2116
+ exports.TextInputCard$ = TextInputCard$;
2117
+ exports.TextInputCardInput$ = TextInputCardInput$;
2118
+ exports.ThrottlingException = ThrottlingException;
2119
+ exports.ThrottlingException$ = ThrottlingException$;
2120
+ exports.UnauthorizedException = UnauthorizedException;
2121
+ exports.UnauthorizedException$ = UnauthorizedException$;
2122
+ exports.UntagResource$ = UntagResource$;
701
2123
  exports.UntagResourceCommand = UntagResourceCommand;
2124
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2125
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2126
+ exports.UpdateLibraryItem$ = UpdateLibraryItem$;
702
2127
  exports.UpdateLibraryItemCommand = UpdateLibraryItemCommand;
2128
+ exports.UpdateLibraryItemInput$ = UpdateLibraryItemInput$;
2129
+ exports.UpdateLibraryItemMetadata$ = UpdateLibraryItemMetadata$;
703
2130
  exports.UpdateLibraryItemMetadataCommand = UpdateLibraryItemMetadataCommand;
2131
+ exports.UpdateLibraryItemMetadataInput$ = UpdateLibraryItemMetadataInput$;
2132
+ exports.UpdateLibraryItemOutput$ = UpdateLibraryItemOutput$;
2133
+ exports.UpdateQApp$ = UpdateQApp$;
704
2134
  exports.UpdateQAppCommand = UpdateQAppCommand;
2135
+ exports.UpdateQAppInput$ = UpdateQAppInput$;
2136
+ exports.UpdateQAppOutput$ = UpdateQAppOutput$;
2137
+ exports.UpdateQAppPermissions$ = UpdateQAppPermissions$;
705
2138
  exports.UpdateQAppPermissionsCommand = UpdateQAppPermissionsCommand;
2139
+ exports.UpdateQAppPermissionsInput$ = UpdateQAppPermissionsInput$;
2140
+ exports.UpdateQAppPermissionsOutput$ = UpdateQAppPermissionsOutput$;
2141
+ exports.UpdateQAppSession$ = UpdateQAppSession$;
706
2142
  exports.UpdateQAppSessionCommand = UpdateQAppSessionCommand;
2143
+ exports.UpdateQAppSessionInput$ = UpdateQAppSessionInput$;
2144
+ exports.UpdateQAppSessionMetadata$ = UpdateQAppSessionMetadata$;
707
2145
  exports.UpdateQAppSessionMetadataCommand = UpdateQAppSessionMetadataCommand;
2146
+ exports.UpdateQAppSessionMetadataInput$ = UpdateQAppSessionMetadataInput$;
2147
+ exports.UpdateQAppSessionMetadataOutput$ = UpdateQAppSessionMetadataOutput$;
2148
+ exports.UpdateQAppSessionOutput$ = UpdateQAppSessionOutput$;
2149
+ exports.User$ = User$;
2150
+ exports.UserAppItem$ = UserAppItem$;
708
2151
  exports.UserType = UserType;
2152
+ exports.ValidationException = ValidationException;
2153
+ exports.ValidationException$ = ValidationException$;
2154
+ exports.errorTypeRegistries = errorTypeRegistries;
709
2155
  exports.paginateListLibraryItems = paginateListLibraryItems;
710
2156
  exports.paginateListQApps = paginateListQApps;