@aws-sdk/client-qapps 3.987.0 → 3.989.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 +54 -1309
- package/dist-cjs/models/QAppsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +153 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +999 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +65 -59
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var QAppsServiceException = require('./models/QAppsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1130 +113,6 @@ class QAppsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class QAppsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, QAppsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends QAppsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class ConflictException extends QAppsServiceException {
|
|
133
|
-
name = "ConflictException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
resourceId;
|
|
136
|
-
resourceType;
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "ConflictException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
144
|
-
this.resourceId = opts.resourceId;
|
|
145
|
-
this.resourceType = opts.resourceType;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends QAppsServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
$retryable = {};
|
|
152
|
-
retryAfterSeconds;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ResourceNotFoundException extends QAppsServiceException {
|
|
164
|
-
name = "ResourceNotFoundException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
resourceId;
|
|
167
|
-
resourceType;
|
|
168
|
-
constructor(opts) {
|
|
169
|
-
super({
|
|
170
|
-
name: "ResourceNotFoundException",
|
|
171
|
-
$fault: "client",
|
|
172
|
-
...opts,
|
|
173
|
-
});
|
|
174
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
|
-
this.resourceId = opts.resourceId;
|
|
176
|
-
this.resourceType = opts.resourceType;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
class ServiceQuotaExceededException extends QAppsServiceException {
|
|
180
|
-
name = "ServiceQuotaExceededException";
|
|
181
|
-
$fault = "client";
|
|
182
|
-
resourceId;
|
|
183
|
-
resourceType;
|
|
184
|
-
serviceCode;
|
|
185
|
-
quotaCode;
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ServiceQuotaExceededException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
193
|
-
this.resourceId = opts.resourceId;
|
|
194
|
-
this.resourceType = opts.resourceType;
|
|
195
|
-
this.serviceCode = opts.serviceCode;
|
|
196
|
-
this.quotaCode = opts.quotaCode;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
class ThrottlingException extends QAppsServiceException {
|
|
200
|
-
name = "ThrottlingException";
|
|
201
|
-
$fault = "client";
|
|
202
|
-
$retryable = {
|
|
203
|
-
throttling: true,
|
|
204
|
-
};
|
|
205
|
-
serviceCode;
|
|
206
|
-
quotaCode;
|
|
207
|
-
retryAfterSeconds;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "ThrottlingException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
215
|
-
this.serviceCode = opts.serviceCode;
|
|
216
|
-
this.quotaCode = opts.quotaCode;
|
|
217
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
class UnauthorizedException extends QAppsServiceException {
|
|
221
|
-
name = "UnauthorizedException";
|
|
222
|
-
$fault = "client";
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "UnauthorizedException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class ValidationException extends QAppsServiceException {
|
|
233
|
-
name = "ValidationException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
constructor(opts) {
|
|
236
|
-
super({
|
|
237
|
-
name: "ValidationException",
|
|
238
|
-
$fault: "client",
|
|
239
|
-
...opts,
|
|
240
|
-
});
|
|
241
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
class ContentTooLargeException extends QAppsServiceException {
|
|
245
|
-
name = "ContentTooLargeException";
|
|
246
|
-
$fault = "client";
|
|
247
|
-
resourceId;
|
|
248
|
-
resourceType;
|
|
249
|
-
constructor(opts) {
|
|
250
|
-
super({
|
|
251
|
-
name: "ContentTooLargeException",
|
|
252
|
-
$fault: "client",
|
|
253
|
-
...opts,
|
|
254
|
-
});
|
|
255
|
-
Object.setPrototypeOf(this, ContentTooLargeException.prototype);
|
|
256
|
-
this.resourceId = opts.resourceId;
|
|
257
|
-
this.resourceType = opts.resourceType;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
const _AD = "AppDefinition";
|
|
262
|
-
const _ADE = "AccessDeniedException";
|
|
263
|
-
const _ADI = "AppDefinitionInput";
|
|
264
|
-
const _AF = "AttributeFilter";
|
|
265
|
-
const _AFt = "AttributeFilters";
|
|
266
|
-
const _ALIR = "AssociateLibraryItemReview";
|
|
267
|
-
const _ALIRI = "AssociateLibraryItemReviewInput";
|
|
268
|
-
const _AQAWU = "AssociateQAppWithUser";
|
|
269
|
-
const _AQAWUI = "AssociateQAppWithUserInput";
|
|
270
|
-
const _BCC = "BatchCreateCategory";
|
|
271
|
-
const _BCCI = "BatchCreateCategoryInput";
|
|
272
|
-
const _BCCIC = "BatchCreateCategoryInputCategory";
|
|
273
|
-
const _BCCICL = "BatchCreateCategoryInputCategoryList";
|
|
274
|
-
const _BDC = "BatchDeleteCategory";
|
|
275
|
-
const _BDCI = "BatchDeleteCategoryInput";
|
|
276
|
-
const _BUC = "BatchUpdateCategory";
|
|
277
|
-
const _BUCI = "BatchUpdateCategoryInput";
|
|
278
|
-
const _C = "Category";
|
|
279
|
-
const _CE = "ConflictException";
|
|
280
|
-
const _CI = "CategoryInput";
|
|
281
|
-
const _CIa = "CardInput";
|
|
282
|
-
const _CL = "CardList";
|
|
283
|
-
const _CLI = "CategoryListInput";
|
|
284
|
-
const _CLII = "CreateLibraryItemInput";
|
|
285
|
-
const _CLIO = "CreateLibraryItemOutput";
|
|
286
|
-
const _CLIr = "CreateLibraryItem";
|
|
287
|
-
const _CLa = "CategoriesList";
|
|
288
|
-
const _CLat = "CategoryList";
|
|
289
|
-
const _CM = "ConversationMessage";
|
|
290
|
-
const _CML = "CardModelList";
|
|
291
|
-
const _CPU = "CreatePresignedUrl";
|
|
292
|
-
const _CPUI = "CreatePresignedUrlInput";
|
|
293
|
-
const _CPUO = "CreatePresignedUrlOutput";
|
|
294
|
-
const _CQA = "CreateQApp";
|
|
295
|
-
const _CQAI = "CreateQAppInput";
|
|
296
|
-
const _CQAO = "CreateQAppOutput";
|
|
297
|
-
const _CS = "CardStatus";
|
|
298
|
-
const _CSM = "CardStatusMap";
|
|
299
|
-
const _CTLE = "ContentTooLargeException";
|
|
300
|
-
const _CV = "CardValue";
|
|
301
|
-
const _CVL = "CardValueList";
|
|
302
|
-
const _Ca = "Card";
|
|
303
|
-
const _DA = "DocumentAttribute";
|
|
304
|
-
const _DAV = "DocumentAttributeValue";
|
|
305
|
-
const _DLI = "DeleteLibraryItem";
|
|
306
|
-
const _DLII = "DeleteLibraryItemInput";
|
|
307
|
-
const _DLIR = "DisassociateLibraryItemReview";
|
|
308
|
-
const _DLIRI = "DisassociateLibraryItemReviewInput";
|
|
309
|
-
const _DQA = "DeleteQApp";
|
|
310
|
-
const _DQAFU = "DisassociateQAppFromUser";
|
|
311
|
-
const _DQAFUI = "DisassociateQAppFromUserInput";
|
|
312
|
-
const _DQAI = "DeleteQAppInput";
|
|
313
|
-
const _DQAP = "DescribeQAppPermissions";
|
|
314
|
-
const _DQAPI = "DescribeQAppPermissionsInput";
|
|
315
|
-
const _DQAPO = "DescribeQAppPermissionsOutput";
|
|
316
|
-
const _EQASD = "ExportQAppSessionData";
|
|
317
|
-
const _EQASDI = "ExportQAppSessionDataInput";
|
|
318
|
-
const _EQASDO = "ExportQAppSessionDataOutput";
|
|
319
|
-
const _FIC = "FormInputCard";
|
|
320
|
-
const _FICI = "FormInputCardInput";
|
|
321
|
-
const _FICM = "FormInputCardMetadata";
|
|
322
|
-
const _FUC = "FileUploadCard";
|
|
323
|
-
const _FUCI = "FileUploadCardInput";
|
|
324
|
-
const _GLI = "GetLibraryItem";
|
|
325
|
-
const _GLII = "GetLibraryItemInput";
|
|
326
|
-
const _GLIO = "GetLibraryItemOutput";
|
|
327
|
-
const _GQA = "GetQApp";
|
|
328
|
-
const _GQAI = "GetQAppInput";
|
|
329
|
-
const _GQAO = "GetQAppOutput";
|
|
330
|
-
const _GQAS = "GetQAppSession";
|
|
331
|
-
const _GQASI = "GetQAppSessionInput";
|
|
332
|
-
const _GQASM = "GetQAppSessionMetadata";
|
|
333
|
-
const _GQASMI = "GetQAppSessionMetadataInput";
|
|
334
|
-
const _GQASMO = "GetQAppSessionMetadataOutput";
|
|
335
|
-
const _GQASO = "GetQAppSessionOutput";
|
|
336
|
-
const _ID = "ImportDocument";
|
|
337
|
-
const _IDI = "ImportDocumentInput";
|
|
338
|
-
const _IDO = "ImportDocumentOutput";
|
|
339
|
-
const _ISE = "InternalServerException";
|
|
340
|
-
const _LC = "ListCategories";
|
|
341
|
-
const _LCI = "ListCategoriesInput";
|
|
342
|
-
const _LCO = "ListCategoriesOutput";
|
|
343
|
-
const _LIL = "LibraryItemList";
|
|
344
|
-
const _LIM = "LibraryItemMember";
|
|
345
|
-
const _LLI = "ListLibraryItems";
|
|
346
|
-
const _LLII = "ListLibraryItemsInput";
|
|
347
|
-
const _LLIO = "ListLibraryItemsOutput";
|
|
348
|
-
const _LQA = "ListQApps";
|
|
349
|
-
const _LQAI = "ListQAppsInput";
|
|
350
|
-
const _LQAO = "ListQAppsOutput";
|
|
351
|
-
const _LQASD = "ListQAppSessionData";
|
|
352
|
-
const _LQASDI = "ListQAppSessionDataInput";
|
|
353
|
-
const _LQASDO = "ListQAppSessionDataOutput";
|
|
354
|
-
const _LTFR = "ListTagsForResource";
|
|
355
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
356
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
357
|
-
const _ML = "MessageList";
|
|
358
|
-
const _PAD = "PredictAppDefinition";
|
|
359
|
-
const _PI = "PermissionInput";
|
|
360
|
-
const _PIL = "PermissionsInputList";
|
|
361
|
-
const _PO = "PermissionOutput";
|
|
362
|
-
const _POL = "PermissionsOutputList";
|
|
363
|
-
const _POr = "PrincipalOutput";
|
|
364
|
-
const _PQA = "PredictQApp";
|
|
365
|
-
const _PQAI = "PredictQAppInput";
|
|
366
|
-
const _PQAIO = "PredictQAppInputOptions";
|
|
367
|
-
const _PQAO = "PredictQAppOutput";
|
|
368
|
-
const _QASD = "QAppSessionData";
|
|
369
|
-
const _QASDL = "QAppSessionDataList";
|
|
370
|
-
const _QPC = "QPluginCard";
|
|
371
|
-
const _QPCI = "QPluginCardInput";
|
|
372
|
-
const _QQC = "QQueryCard";
|
|
373
|
-
const _QQCI = "QQueryCardInput";
|
|
374
|
-
const _RA = "Retry-After";
|
|
375
|
-
const _RNFE = "ResourceNotFoundException";
|
|
376
|
-
const _S = "Submission";
|
|
377
|
-
const _SL = "SubmissionList";
|
|
378
|
-
const _SM = "SubmissionMutation";
|
|
379
|
-
const _SQAS = "StartQAppSession";
|
|
380
|
-
const _SQASI = "StartQAppSessionInput";
|
|
381
|
-
const _SQASIt = "StopQAppSessionInput";
|
|
382
|
-
const _SQASO = "StartQAppSessionOutput";
|
|
383
|
-
const _SQASt = "StopQAppSession";
|
|
384
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
385
|
-
const _SSC = "SessionSharingConfiguration";
|
|
386
|
-
const _TE = "ThrottlingException";
|
|
387
|
-
const _TIC = "TextInputCard";
|
|
388
|
-
const _TICI = "TextInputCardInput";
|
|
389
|
-
const _TR = "TagResource";
|
|
390
|
-
const _TRR = "TagResourceRequest";
|
|
391
|
-
const _TRRa = "TagResourceResponse";
|
|
392
|
-
const _U = "User";
|
|
393
|
-
const _UAI = "UserAppItem";
|
|
394
|
-
const _UAL = "UserAppsList";
|
|
395
|
-
const _UE = "UnauthorizedException";
|
|
396
|
-
const _ULI = "UpdateLibraryItem";
|
|
397
|
-
const _ULII = "UpdateLibraryItemInput";
|
|
398
|
-
const _ULIM = "UpdateLibraryItemMetadata";
|
|
399
|
-
const _ULIMI = "UpdateLibraryItemMetadataInput";
|
|
400
|
-
const _ULIO = "UpdateLibraryItemOutput";
|
|
401
|
-
const _UQA = "UpdateQApp";
|
|
402
|
-
const _UQAI = "UpdateQAppInput";
|
|
403
|
-
const _UQAO = "UpdateQAppOutput";
|
|
404
|
-
const _UQAP = "UpdateQAppPermissions";
|
|
405
|
-
const _UQAPI = "UpdateQAppPermissionsInput";
|
|
406
|
-
const _UQAPO = "UpdateQAppPermissionsOutput";
|
|
407
|
-
const _UQAS = "UpdateQAppSession";
|
|
408
|
-
const _UQASI = "UpdateQAppSessionInput";
|
|
409
|
-
const _UQASM = "UpdateQAppSessionMetadata";
|
|
410
|
-
const _UQASMI = "UpdateQAppSessionMetadataInput";
|
|
411
|
-
const _UQASMO = "UpdateQAppSessionMetadataOutput";
|
|
412
|
-
const _UQASO = "UpdateQAppSessionOutput";
|
|
413
|
-
const _UR = "UntagResource";
|
|
414
|
-
const _URR = "UntagResourceRequest";
|
|
415
|
-
const _URRn = "UntagResourceResponse";
|
|
416
|
-
const _VE = "ValidationException";
|
|
417
|
-
const _a = "apps";
|
|
418
|
-
const _aA = "appArn";
|
|
419
|
-
const _aAF = "andAllFilters";
|
|
420
|
-
const _aC = "appCount";
|
|
421
|
-
const _aD = "appDefinition";
|
|
422
|
-
const _aDV = "appDefinitionVersion";
|
|
423
|
-
const _aF = "attributeFilter";
|
|
424
|
-
const _aI = "appId";
|
|
425
|
-
const _aIc = "actionIdentifier";
|
|
426
|
-
const _aO = "allowOverride";
|
|
427
|
-
const _aR = "acceptResponses";
|
|
428
|
-
const _aV = "appVersion";
|
|
429
|
-
const _ac = "action";
|
|
430
|
-
const _ap = "app";
|
|
431
|
-
const _b = "body";
|
|
432
|
-
const _c = "client";
|
|
433
|
-
const _cA = "containsAll";
|
|
434
|
-
const _cAo = "containsAny";
|
|
435
|
-
const _cAr = "createdAt";
|
|
436
|
-
const _cB = "createdBy";
|
|
437
|
-
const _cE = "canEdit";
|
|
438
|
-
const _cFL = "csvFileLink";
|
|
439
|
-
const _cI = "cardId";
|
|
440
|
-
const _cIa = "categoryId";
|
|
441
|
-
const _cM = "computeMode";
|
|
442
|
-
const _cS = "currentState";
|
|
443
|
-
const _cSa = "cardStatus";
|
|
444
|
-
const _cV = "currentValue";
|
|
445
|
-
const _ca = "cards";
|
|
446
|
-
const _cat = "categories";
|
|
447
|
-
const _co = "color";
|
|
448
|
-
const _con = "conversation";
|
|
449
|
-
const _d = "description";
|
|
450
|
-
const _dV = "defaultValue";
|
|
451
|
-
const _dVa = "dateValue";
|
|
452
|
-
const _de = "dependencies";
|
|
453
|
-
const _e = "error";
|
|
454
|
-
const _eA = "expiresAt";
|
|
455
|
-
const _eT = "equalsTo";
|
|
456
|
-
const _em = "email";
|
|
457
|
-
const _en = "enabled";
|
|
458
|
-
const _f = "filename";
|
|
459
|
-
const _fCB = "fileContentsBase64";
|
|
460
|
-
const _fCS = "fileContentsSha256";
|
|
461
|
-
const _fI = "fileId";
|
|
462
|
-
const _fIo = "formInput";
|
|
463
|
-
const _fN = "fileName";
|
|
464
|
-
const _fU = "fileUpload";
|
|
465
|
-
const _gP = "grantPermissions";
|
|
466
|
-
const _gT = "greaterThan";
|
|
467
|
-
const _gTOE = "greaterThanOrEquals";
|
|
468
|
-
const _h = "http";
|
|
469
|
-
const _hE = "httpError";
|
|
470
|
-
const _hH = "httpHeader";
|
|
471
|
-
const _hQ = "httpQuery";
|
|
472
|
-
const _i = "id";
|
|
473
|
-
const _iI = "instanceId";
|
|
474
|
-
const _iP = "initialPrompt";
|
|
475
|
-
const _iRBU = "isRatedByUser";
|
|
476
|
-
const _iV = "isVerified";
|
|
477
|
-
const _iVn = "initialValues";
|
|
478
|
-
const _ii = "instance-id";
|
|
479
|
-
const _l = "limit";
|
|
480
|
-
const _lI = "libraryItems";
|
|
481
|
-
const _lII = "libraryItemId";
|
|
482
|
-
const _lPAV = "latestPublishedAppVersion";
|
|
483
|
-
const _lT = "lessThan";
|
|
484
|
-
const _lTOE = "lessThanOrEquals";
|
|
485
|
-
const _lV = "longValue";
|
|
486
|
-
const _m = "message";
|
|
487
|
-
const _mR = "memoryReferences";
|
|
488
|
-
const _mT = "mutationType";
|
|
489
|
-
const _me = "metadata";
|
|
490
|
-
const _n = "name";
|
|
491
|
-
const _nF = "notFilter";
|
|
492
|
-
const _nT = "nextToken";
|
|
493
|
-
const _o = "options";
|
|
494
|
-
const _oAF = "orAllFilters";
|
|
495
|
-
const _oS = "outputSource";
|
|
496
|
-
const _p = "permissions";
|
|
497
|
-
const _pI = "pluginId";
|
|
498
|
-
const _pS = "problemStatement";
|
|
499
|
-
const _pT = "pluginType";
|
|
500
|
-
const _pU = "presignedUrl";
|
|
501
|
-
const _pUE = "presignedUrlExpiration";
|
|
502
|
-
const _pUF = "presignedUrlFields";
|
|
503
|
-
const _pl = "placeholder";
|
|
504
|
-
const _pr = "principal";
|
|
505
|
-
const _pro = "prompt";
|
|
506
|
-
const _qC = "quotaCode";
|
|
507
|
-
const _qP = "qPlugin";
|
|
508
|
-
const _qQ = "qQuery";
|
|
509
|
-
const _rA = "resourceArn";
|
|
510
|
-
const _rARN = "resourceARN";
|
|
511
|
-
const _rAS = "retryAfterSeconds";
|
|
512
|
-
const _rC = "ratingCount";
|
|
513
|
-
const _rCe = "requiredCapabilities";
|
|
514
|
-
const _rCev = "revealCards";
|
|
515
|
-
const _rI = "resourceId";
|
|
516
|
-
const _rP = "revokePermissions";
|
|
517
|
-
const _rT = "resourceType";
|
|
518
|
-
const _s = "submissions";
|
|
519
|
-
const _sA = "sessionArn";
|
|
520
|
-
const _sC = "sharingConfiguration";
|
|
521
|
-
const _sCe = "serviceCode";
|
|
522
|
-
const _sD = "sessionData";
|
|
523
|
-
const _sI = "sessionId";
|
|
524
|
-
const _sIu = "submissionId";
|
|
525
|
-
const _sLV = "stringListValue";
|
|
526
|
-
const _sM = "submissionMutation";
|
|
527
|
-
const _sN = "sessionName";
|
|
528
|
-
const _sO = "sessionOwner";
|
|
529
|
-
const _sV = "stringValue";
|
|
530
|
-
const _sc = "scope";
|
|
531
|
-
const _sch = "schema";
|
|
532
|
-
const _se = "server";
|
|
533
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.qapps";
|
|
534
|
-
const _st = "status";
|
|
535
|
-
const _t = "title";
|
|
536
|
-
const _tI = "textInput";
|
|
537
|
-
const _tK = "tagKeys";
|
|
538
|
-
const _ta = "tags";
|
|
539
|
-
const _ti = "timestamp";
|
|
540
|
-
const _ty = "type";
|
|
541
|
-
const _u = "user";
|
|
542
|
-
const _uA = "updatedAt";
|
|
543
|
-
const _uB = "updatedBy";
|
|
544
|
-
const _uC = "userCount";
|
|
545
|
-
const _uI = "userId";
|
|
546
|
-
const _uIH = "userIsHost";
|
|
547
|
-
const _uT = "userType";
|
|
548
|
-
const _v = "value";
|
|
549
|
-
const _va = "values";
|
|
550
|
-
const n0 = "com.amazonaws.qapps";
|
|
551
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
552
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
553
|
-
[_m],
|
|
554
|
-
[0], 1
|
|
555
|
-
];
|
|
556
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
557
|
-
var AppDefinition$ = [3, n0, _AD,
|
|
558
|
-
0,
|
|
559
|
-
[_aDV, _ca, _cE],
|
|
560
|
-
[0, () => CardModelList, 2], 2
|
|
561
|
-
];
|
|
562
|
-
var AppDefinitionInput$ = [3, n0, _ADI,
|
|
563
|
-
0,
|
|
564
|
-
[_ca, _iP],
|
|
565
|
-
[() => CardList, 0], 1
|
|
566
|
-
];
|
|
567
|
-
var AssociateLibraryItemReviewInput$ = [3, n0, _ALIRI,
|
|
568
|
-
0,
|
|
569
|
-
[_iI, _lII],
|
|
570
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
571
|
-
];
|
|
572
|
-
var AssociateQAppWithUserInput$ = [3, n0, _AQAWUI,
|
|
573
|
-
0,
|
|
574
|
-
[_iI, _aI],
|
|
575
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
576
|
-
];
|
|
577
|
-
var AttributeFilter$ = [3, n0, _AF,
|
|
578
|
-
0,
|
|
579
|
-
[_aAF, _oAF, _nF, _eT, _cA, _cAo, _gT, _gTOE, _lT, _lTOE],
|
|
580
|
-
[() => AttributeFilters, () => AttributeFilters, () => AttributeFilter$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$]
|
|
581
|
-
];
|
|
582
|
-
var BatchCreateCategoryInput$ = [3, n0, _BCCI,
|
|
583
|
-
0,
|
|
584
|
-
[_iI, _cat],
|
|
585
|
-
[[0, { [_hH]: _ii }], () => BatchCreateCategoryInputCategoryList], 2
|
|
586
|
-
];
|
|
587
|
-
var BatchCreateCategoryInputCategory$ = [3, n0, _BCCIC,
|
|
588
|
-
0,
|
|
589
|
-
[_t, _i, _co],
|
|
590
|
-
[0, 0, 0], 1
|
|
591
|
-
];
|
|
592
|
-
var BatchDeleteCategoryInput$ = [3, n0, _BDCI,
|
|
593
|
-
0,
|
|
594
|
-
[_iI, _cat],
|
|
595
|
-
[[0, { [_hH]: _ii }], 64 | 0], 2
|
|
596
|
-
];
|
|
597
|
-
var BatchUpdateCategoryInput$ = [3, n0, _BUCI,
|
|
598
|
-
0,
|
|
599
|
-
[_iI, _cat],
|
|
600
|
-
[[0, { [_hH]: _ii }], () => CategoryListInput], 2
|
|
601
|
-
];
|
|
602
|
-
var CardStatus$ = [3, n0, _CS,
|
|
603
|
-
0,
|
|
604
|
-
[_cS, _cV, _s],
|
|
605
|
-
[0, 0, () => SubmissionList], 2
|
|
606
|
-
];
|
|
607
|
-
var CardValue$ = [3, n0, _CV,
|
|
608
|
-
0,
|
|
609
|
-
[_cI, _v, _sM],
|
|
610
|
-
[0, 0, () => SubmissionMutation$], 2
|
|
611
|
-
];
|
|
612
|
-
var Category$ = [3, n0, _C,
|
|
613
|
-
0,
|
|
614
|
-
[_i, _t, _co, _aC],
|
|
615
|
-
[0, 0, 0, 1], 2
|
|
616
|
-
];
|
|
617
|
-
var CategoryInput$ = [3, n0, _CI,
|
|
618
|
-
0,
|
|
619
|
-
[_i, _t, _co],
|
|
620
|
-
[0, 0, 0], 2
|
|
621
|
-
];
|
|
622
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
623
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
624
|
-
[_m, _rI, _rT],
|
|
625
|
-
[0, 0, 0], 3
|
|
626
|
-
];
|
|
627
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
628
|
-
var ContentTooLargeException$ = [-3, n0, _CTLE,
|
|
629
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
630
|
-
[_m, _rI, _rT],
|
|
631
|
-
[0, 0, 0], 3
|
|
632
|
-
];
|
|
633
|
-
schema.TypeRegistry.for(n0).registerError(ContentTooLargeException$, ContentTooLargeException);
|
|
634
|
-
var ConversationMessage$ = [3, n0, _CM,
|
|
635
|
-
0,
|
|
636
|
-
[_b, _ty],
|
|
637
|
-
[0, 0], 2
|
|
638
|
-
];
|
|
639
|
-
var CreateLibraryItemInput$ = [3, n0, _CLII,
|
|
640
|
-
0,
|
|
641
|
-
[_iI, _aI, _aV, _cat],
|
|
642
|
-
[[0, { [_hH]: _ii }], 0, 1, 64 | 0], 4
|
|
643
|
-
];
|
|
644
|
-
var CreateLibraryItemOutput$ = [3, n0, _CLIO,
|
|
645
|
-
0,
|
|
646
|
-
[_lII, _st, _cAr, _cB, _rC, _uA, _uB, _iV],
|
|
647
|
-
[0, 0, 5, 0, 1, 5, 0, 2], 5
|
|
648
|
-
];
|
|
649
|
-
var CreatePresignedUrlInput$ = [3, n0, _CPUI,
|
|
650
|
-
0,
|
|
651
|
-
[_iI, _cI, _aI, _fCS, _fN, _sc, _sI],
|
|
652
|
-
[[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
|
|
653
|
-
];
|
|
654
|
-
var CreatePresignedUrlOutput$ = [3, n0, _CPUO,
|
|
655
|
-
0,
|
|
656
|
-
[_fI, _pU, _pUF, _pUE],
|
|
657
|
-
[0, 0, 128 | 0, 5], 4
|
|
658
|
-
];
|
|
659
|
-
var CreateQAppInput$ = [3, n0, _CQAI,
|
|
660
|
-
0,
|
|
661
|
-
[_iI, _t, _aD, _d, _ta],
|
|
662
|
-
[[0, { [_hH]: _ii }], 0, () => AppDefinitionInput$, 0, 128 | 0], 3
|
|
663
|
-
];
|
|
664
|
-
var CreateQAppOutput$ = [3, n0, _CQAO,
|
|
665
|
-
0,
|
|
666
|
-
[_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
|
|
667
|
-
[0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
|
|
668
|
-
];
|
|
669
|
-
var DeleteLibraryItemInput$ = [3, n0, _DLII,
|
|
670
|
-
0,
|
|
671
|
-
[_iI, _lII],
|
|
672
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
673
|
-
];
|
|
674
|
-
var DeleteQAppInput$ = [3, n0, _DQAI,
|
|
675
|
-
0,
|
|
676
|
-
[_iI, _aI],
|
|
677
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
678
|
-
];
|
|
679
|
-
var DescribeQAppPermissionsInput$ = [3, n0, _DQAPI,
|
|
680
|
-
0,
|
|
681
|
-
[_iI, _aI],
|
|
682
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }]], 2
|
|
683
|
-
];
|
|
684
|
-
var DescribeQAppPermissionsOutput$ = [3, n0, _DQAPO,
|
|
685
|
-
0,
|
|
686
|
-
[_rA, _aI, _p],
|
|
687
|
-
[0, 0, () => PermissionsOutputList]
|
|
688
|
-
];
|
|
689
|
-
var DisassociateLibraryItemReviewInput$ = [3, n0, _DLIRI,
|
|
690
|
-
0,
|
|
691
|
-
[_iI, _lII],
|
|
692
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
693
|
-
];
|
|
694
|
-
var DisassociateQAppFromUserInput$ = [3, n0, _DQAFUI,
|
|
695
|
-
0,
|
|
696
|
-
[_iI, _aI],
|
|
697
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
698
|
-
];
|
|
699
|
-
var DocumentAttribute$ = [3, n0, _DA,
|
|
700
|
-
0,
|
|
701
|
-
[_n, _v],
|
|
702
|
-
[0, () => DocumentAttributeValue$], 2
|
|
703
|
-
];
|
|
704
|
-
var ExportQAppSessionDataInput$ = [3, n0, _EQASDI,
|
|
705
|
-
0,
|
|
706
|
-
[_iI, _sI],
|
|
707
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
708
|
-
];
|
|
709
|
-
var ExportQAppSessionDataOutput$ = [3, n0, _EQASDO,
|
|
710
|
-
0,
|
|
711
|
-
[_cFL, _eA, _sA],
|
|
712
|
-
[0, 5, 0], 3
|
|
713
|
-
];
|
|
714
|
-
var FileUploadCard$ = [3, n0, _FUC,
|
|
715
|
-
0,
|
|
716
|
-
[_i, _t, _de, _ty, _f, _fI, _aO],
|
|
717
|
-
[0, 0, 64 | 0, 0, 0, 0, 2], 4
|
|
718
|
-
];
|
|
719
|
-
var FileUploadCardInput$ = [3, n0, _FUCI,
|
|
720
|
-
0,
|
|
721
|
-
[_t, _i, _ty, _f, _fI, _aO],
|
|
722
|
-
[0, 0, 0, 0, 0, 2], 3
|
|
723
|
-
];
|
|
724
|
-
var FormInputCard$ = [3, n0, _FIC,
|
|
725
|
-
0,
|
|
726
|
-
[_i, _t, _de, _ty, _me, _cM],
|
|
727
|
-
[0, 0, 64 | 0, 0, () => FormInputCardMetadata$, 0], 5
|
|
728
|
-
];
|
|
729
|
-
var FormInputCardInput$ = [3, n0, _FICI,
|
|
730
|
-
0,
|
|
731
|
-
[_t, _i, _ty, _me, _cM],
|
|
732
|
-
[0, 0, 0, () => FormInputCardMetadata$, 0], 4
|
|
733
|
-
];
|
|
734
|
-
var FormInputCardMetadata$ = [3, n0, _FICM,
|
|
735
|
-
0,
|
|
736
|
-
[_sch],
|
|
737
|
-
[15], 1
|
|
738
|
-
];
|
|
739
|
-
var GetLibraryItemInput$ = [3, n0, _GLII,
|
|
740
|
-
0,
|
|
741
|
-
[_iI, _lII, _aI],
|
|
742
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _lII }], [0, { [_hQ]: _aI }]], 2
|
|
743
|
-
];
|
|
744
|
-
var GetLibraryItemOutput$ = [3, n0, _GLIO,
|
|
745
|
-
0,
|
|
746
|
-
[_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
|
|
747
|
-
[0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
|
|
748
|
-
];
|
|
749
|
-
var GetQAppInput$ = [3, n0, _GQAI,
|
|
750
|
-
0,
|
|
751
|
-
[_iI, _aI, _aV],
|
|
752
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }], [1, { [_hQ]: _aV }]], 2
|
|
753
|
-
];
|
|
754
|
-
var GetQAppOutput$ = [3, n0, _GQAO,
|
|
755
|
-
0,
|
|
756
|
-
[_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _aD, _d, _iP, _rCe],
|
|
757
|
-
[0, 0, 0, 1, 0, 5, 0, 5, 0, () => AppDefinition$, 0, 0, 64 | 0], 10
|
|
758
|
-
];
|
|
759
|
-
var GetQAppSessionInput$ = [3, n0, _GQASI,
|
|
760
|
-
0,
|
|
761
|
-
[_iI, _sI],
|
|
762
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
|
|
763
|
-
];
|
|
764
|
-
var GetQAppSessionMetadataInput$ = [3, n0, _GQASMI,
|
|
765
|
-
0,
|
|
766
|
-
[_iI, _sI],
|
|
767
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
|
|
768
|
-
];
|
|
769
|
-
var GetQAppSessionMetadataOutput$ = [3, n0, _GQASMO,
|
|
770
|
-
0,
|
|
771
|
-
[_sI, _sA, _sC, _sN, _sO],
|
|
772
|
-
[0, 0, () => SessionSharingConfiguration$, 0, 2], 3
|
|
773
|
-
];
|
|
774
|
-
var GetQAppSessionOutput$ = [3, n0, _GQASO,
|
|
775
|
-
0,
|
|
776
|
-
[_sI, _sA, _st, _cSa, _sN, _aV, _lPAV, _uIH],
|
|
777
|
-
[0, 0, 0, () => CardStatusMap, 0, 1, 1, 2], 4
|
|
778
|
-
];
|
|
779
|
-
var ImportDocumentInput$ = [3, n0, _IDI,
|
|
780
|
-
0,
|
|
781
|
-
[_iI, _cI, _aI, _fCB, _fN, _sc, _sI],
|
|
782
|
-
[[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
|
|
783
|
-
];
|
|
784
|
-
var ImportDocumentOutput$ = [3, n0, _IDO,
|
|
785
|
-
0,
|
|
786
|
-
[_fI],
|
|
787
|
-
[0]
|
|
788
|
-
];
|
|
789
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
790
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
791
|
-
[_m, _rAS],
|
|
792
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
793
|
-
];
|
|
794
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
795
|
-
var LibraryItemMember$ = [3, n0, _LIM,
|
|
796
|
-
0,
|
|
797
|
-
[_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
|
|
798
|
-
[0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
|
|
799
|
-
];
|
|
800
|
-
var ListCategoriesInput$ = [3, n0, _LCI,
|
|
801
|
-
0,
|
|
802
|
-
[_iI],
|
|
803
|
-
[[0, { [_hH]: _ii }]], 1
|
|
804
|
-
];
|
|
805
|
-
var ListCategoriesOutput$ = [3, n0, _LCO,
|
|
806
|
-
0,
|
|
807
|
-
[_cat],
|
|
808
|
-
[() => CategoriesList]
|
|
809
|
-
];
|
|
810
|
-
var ListLibraryItemsInput$ = [3, n0, _LLII,
|
|
811
|
-
0,
|
|
812
|
-
[_iI, _l, _nT, _cIa],
|
|
813
|
-
[[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _cIa }]], 1
|
|
814
|
-
];
|
|
815
|
-
var ListLibraryItemsOutput$ = [3, n0, _LLIO,
|
|
816
|
-
0,
|
|
817
|
-
[_lI, _nT],
|
|
818
|
-
[() => LibraryItemList, 0]
|
|
819
|
-
];
|
|
820
|
-
var ListQAppSessionDataInput$ = [3, n0, _LQASDI,
|
|
821
|
-
0,
|
|
822
|
-
[_iI, _sI],
|
|
823
|
-
[[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
|
|
824
|
-
];
|
|
825
|
-
var ListQAppSessionDataOutput$ = [3, n0, _LQASDO,
|
|
826
|
-
0,
|
|
827
|
-
[_sI, _sA, _sD, _nT],
|
|
828
|
-
[0, 0, () => QAppSessionDataList, 0], 2
|
|
829
|
-
];
|
|
830
|
-
var ListQAppsInput$ = [3, n0, _LQAI,
|
|
831
|
-
0,
|
|
832
|
-
[_iI, _l, _nT],
|
|
833
|
-
[[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]], 1
|
|
834
|
-
];
|
|
835
|
-
var ListQAppsOutput$ = [3, n0, _LQAO,
|
|
836
|
-
0,
|
|
837
|
-
[_a, _nT],
|
|
838
|
-
[() => UserAppsList, 0], 1
|
|
839
|
-
];
|
|
840
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
841
|
-
0,
|
|
842
|
-
[_rARN],
|
|
843
|
-
[[0, 1]], 1
|
|
844
|
-
];
|
|
845
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
846
|
-
0,
|
|
847
|
-
[_ta],
|
|
848
|
-
[128 | 0]
|
|
849
|
-
];
|
|
850
|
-
var PermissionInput$ = [3, n0, _PI,
|
|
851
|
-
0,
|
|
852
|
-
[_ac, _pr],
|
|
853
|
-
[0, 0], 2
|
|
854
|
-
];
|
|
855
|
-
var PermissionOutput$ = [3, n0, _PO,
|
|
856
|
-
0,
|
|
857
|
-
[_ac, _pr],
|
|
858
|
-
[0, () => PrincipalOutput$], 2
|
|
859
|
-
];
|
|
860
|
-
var PredictAppDefinition$ = [3, n0, _PAD,
|
|
861
|
-
0,
|
|
862
|
-
[_t, _aD, _d],
|
|
863
|
-
[0, () => AppDefinitionInput$, 0], 2
|
|
864
|
-
];
|
|
865
|
-
var PredictQAppInput$ = [3, n0, _PQAI,
|
|
866
|
-
0,
|
|
867
|
-
[_iI, _o],
|
|
868
|
-
[[0, { [_hH]: _ii }], () => PredictQAppInputOptions$], 1
|
|
869
|
-
];
|
|
870
|
-
var PredictQAppOutput$ = [3, n0, _PQAO,
|
|
871
|
-
0,
|
|
872
|
-
[_ap, _pS],
|
|
873
|
-
[() => PredictAppDefinition$, 0], 2
|
|
874
|
-
];
|
|
875
|
-
var PrincipalOutput$ = [3, n0, _POr,
|
|
876
|
-
0,
|
|
877
|
-
[_uI, _uT, _em],
|
|
878
|
-
[0, 0, 0]
|
|
879
|
-
];
|
|
880
|
-
var QAppSessionData$ = [3, n0, _QASD,
|
|
881
|
-
0,
|
|
882
|
-
[_cI, _u, _v, _sIu, _ti],
|
|
883
|
-
[0, () => User$, 15, 0, 5], 2
|
|
884
|
-
];
|
|
885
|
-
var QPluginCard$ = [3, n0, _QPC,
|
|
886
|
-
0,
|
|
887
|
-
[_i, _t, _de, _ty, _pro, _pT, _pI, _aIc],
|
|
888
|
-
[0, 0, 64 | 0, 0, 0, 0, 0, 0], 7
|
|
889
|
-
];
|
|
890
|
-
var QPluginCardInput$ = [3, n0, _QPCI,
|
|
891
|
-
0,
|
|
892
|
-
[_t, _i, _ty, _pro, _pI, _aIc],
|
|
893
|
-
[0, 0, 0, 0, 0, 0], 5
|
|
894
|
-
];
|
|
895
|
-
var QQueryCard$ = [3, n0, _QQC,
|
|
896
|
-
0,
|
|
897
|
-
[_i, _t, _de, _ty, _pro, _oS, _aF, _mR],
|
|
898
|
-
[0, 0, 64 | 0, 0, 0, 0, () => AttributeFilter$, 64 | 0], 6
|
|
899
|
-
];
|
|
900
|
-
var QQueryCardInput$ = [3, n0, _QQCI,
|
|
901
|
-
0,
|
|
902
|
-
[_t, _i, _ty, _pro, _oS, _aF],
|
|
903
|
-
[0, 0, 0, 0, 0, () => AttributeFilter$], 4
|
|
904
|
-
];
|
|
905
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
906
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
907
|
-
[_m, _rI, _rT],
|
|
908
|
-
[0, 0, 0], 3
|
|
909
|
-
];
|
|
910
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
911
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
912
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
913
|
-
[_m, _rI, _rT, _sCe, _qC],
|
|
914
|
-
[0, 0, 0, 0, 0], 5
|
|
915
|
-
];
|
|
916
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
917
|
-
var SessionSharingConfiguration$ = [3, n0, _SSC,
|
|
918
|
-
0,
|
|
919
|
-
[_en, _aR, _rCev],
|
|
920
|
-
[2, 2, 2], 1
|
|
921
|
-
];
|
|
922
|
-
var StartQAppSessionInput$ = [3, n0, _SQASI,
|
|
923
|
-
0,
|
|
924
|
-
[_iI, _aI, _aV, _iVn, _sI, _ta],
|
|
925
|
-
[[0, { [_hH]: _ii }], 0, 1, () => CardValueList, 0, 128 | 0], 3
|
|
926
|
-
];
|
|
927
|
-
var StartQAppSessionOutput$ = [3, n0, _SQASO,
|
|
928
|
-
0,
|
|
929
|
-
[_sI, _sA],
|
|
930
|
-
[0, 0], 2
|
|
931
|
-
];
|
|
932
|
-
var StopQAppSessionInput$ = [3, n0, _SQASIt,
|
|
933
|
-
0,
|
|
934
|
-
[_iI, _sI],
|
|
935
|
-
[[0, { [_hH]: _ii }], 0], 2
|
|
936
|
-
];
|
|
937
|
-
var Submission$ = [3, n0, _S,
|
|
938
|
-
0,
|
|
939
|
-
[_v, _sIu, _ti],
|
|
940
|
-
[15, 0, 5]
|
|
941
|
-
];
|
|
942
|
-
var SubmissionMutation$ = [3, n0, _SM,
|
|
943
|
-
0,
|
|
944
|
-
[_sIu, _mT],
|
|
945
|
-
[0, 0], 2
|
|
946
|
-
];
|
|
947
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
948
|
-
0,
|
|
949
|
-
[_rARN, _ta],
|
|
950
|
-
[[0, 1], 128 | 0], 2
|
|
951
|
-
];
|
|
952
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
953
|
-
0,
|
|
954
|
-
[],
|
|
955
|
-
[]
|
|
956
|
-
];
|
|
957
|
-
var TextInputCard$ = [3, n0, _TIC,
|
|
958
|
-
0,
|
|
959
|
-
[_i, _t, _de, _ty, _pl, _dV],
|
|
960
|
-
[0, 0, 64 | 0, 0, 0, 0], 4
|
|
961
|
-
];
|
|
962
|
-
var TextInputCardInput$ = [3, n0, _TICI,
|
|
963
|
-
0,
|
|
964
|
-
[_t, _i, _ty, _pl, _dV],
|
|
965
|
-
[0, 0, 0, 0, 0], 3
|
|
966
|
-
];
|
|
967
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
968
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
969
|
-
[_m, _sCe, _qC, _rAS],
|
|
970
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 3
|
|
971
|
-
];
|
|
972
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
973
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
974
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
975
|
-
[_m],
|
|
976
|
-
[0], 1
|
|
977
|
-
];
|
|
978
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
979
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
980
|
-
0,
|
|
981
|
-
[_rARN, _tK],
|
|
982
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
983
|
-
];
|
|
984
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
985
|
-
0,
|
|
986
|
-
[],
|
|
987
|
-
[]
|
|
988
|
-
];
|
|
989
|
-
var UpdateLibraryItemInput$ = [3, n0, _ULII,
|
|
990
|
-
0,
|
|
991
|
-
[_iI, _lII, _st, _cat],
|
|
992
|
-
[[0, { [_hH]: _ii }], 0, 0, 64 | 0], 2
|
|
993
|
-
];
|
|
994
|
-
var UpdateLibraryItemMetadataInput$ = [3, n0, _ULIMI,
|
|
995
|
-
0,
|
|
996
|
-
[_iI, _lII, _iV],
|
|
997
|
-
[[0, { [_hH]: _ii }], 0, 2], 2
|
|
998
|
-
];
|
|
999
|
-
var UpdateLibraryItemOutput$ = [3, n0, _ULIO,
|
|
1000
|
-
0,
|
|
1001
|
-
[_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
|
|
1002
|
-
[0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
|
|
1003
|
-
];
|
|
1004
|
-
var UpdateQAppInput$ = [3, n0, _UQAI,
|
|
1005
|
-
0,
|
|
1006
|
-
[_iI, _aI, _t, _d, _aD],
|
|
1007
|
-
[[0, { [_hH]: _ii }], 0, 0, 0, () => AppDefinitionInput$], 2
|
|
1008
|
-
];
|
|
1009
|
-
var UpdateQAppOutput$ = [3, n0, _UQAO,
|
|
1010
|
-
0,
|
|
1011
|
-
[_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
|
|
1012
|
-
[0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
|
|
1013
|
-
];
|
|
1014
|
-
var UpdateQAppPermissionsInput$ = [3, n0, _UQAPI,
|
|
1015
|
-
0,
|
|
1016
|
-
[_iI, _aI, _gP, _rP],
|
|
1017
|
-
[[0, { [_hH]: _ii }], 0, () => PermissionsInputList, () => PermissionsInputList], 2
|
|
1018
|
-
];
|
|
1019
|
-
var UpdateQAppPermissionsOutput$ = [3, n0, _UQAPO,
|
|
1020
|
-
0,
|
|
1021
|
-
[_rA, _aI, _p],
|
|
1022
|
-
[0, 0, () => PermissionsOutputList]
|
|
1023
|
-
];
|
|
1024
|
-
var UpdateQAppSessionInput$ = [3, n0, _UQASI,
|
|
1025
|
-
0,
|
|
1026
|
-
[_iI, _sI, _va],
|
|
1027
|
-
[[0, { [_hH]: _ii }], 0, () => CardValueList], 2
|
|
1028
|
-
];
|
|
1029
|
-
var UpdateQAppSessionMetadataInput$ = [3, n0, _UQASMI,
|
|
1030
|
-
0,
|
|
1031
|
-
[_iI, _sI, _sC, _sN],
|
|
1032
|
-
[[0, { [_hH]: _ii }], 0, () => SessionSharingConfiguration$, 0], 3
|
|
1033
|
-
];
|
|
1034
|
-
var UpdateQAppSessionMetadataOutput$ = [3, n0, _UQASMO,
|
|
1035
|
-
0,
|
|
1036
|
-
[_sI, _sA, _sC, _sN],
|
|
1037
|
-
[0, 0, () => SessionSharingConfiguration$, 0], 3
|
|
1038
|
-
];
|
|
1039
|
-
var UpdateQAppSessionOutput$ = [3, n0, _UQASO,
|
|
1040
|
-
0,
|
|
1041
|
-
[_sI, _sA],
|
|
1042
|
-
[0, 0], 2
|
|
1043
|
-
];
|
|
1044
|
-
var User$ = [3, n0, _U,
|
|
1045
|
-
0,
|
|
1046
|
-
[_uI],
|
|
1047
|
-
[0]
|
|
1048
|
-
];
|
|
1049
|
-
var UserAppItem$ = [3, n0, _UAI,
|
|
1050
|
-
0,
|
|
1051
|
-
[_aI, _aA, _t, _cAr, _d, _cE, _st, _iV],
|
|
1052
|
-
[0, 0, 0, 5, 0, 2, 0, 2], 4
|
|
1053
|
-
];
|
|
1054
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1055
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1056
|
-
[_m],
|
|
1057
|
-
[0], 1
|
|
1058
|
-
];
|
|
1059
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1060
|
-
var __Unit = "unit";
|
|
1061
|
-
var QAppsServiceException$ = [-3, _sm, "QAppsServiceException", 0, [], []];
|
|
1062
|
-
schema.TypeRegistry.for(_sm).registerError(QAppsServiceException$, QAppsServiceException);
|
|
1063
|
-
var AttributeFilters = [1, n0, _AFt,
|
|
1064
|
-
0, () => AttributeFilter$
|
|
1065
|
-
];
|
|
1066
|
-
var BatchCreateCategoryInputCategoryList = [1, n0, _BCCICL,
|
|
1067
|
-
0, () => BatchCreateCategoryInputCategory$
|
|
1068
|
-
];
|
|
1069
|
-
var CardList = [1, n0, _CL,
|
|
1070
|
-
0, () => CardInput$
|
|
1071
|
-
];
|
|
1072
|
-
var CardModelList = [1, n0, _CML,
|
|
1073
|
-
0, () => Card$
|
|
1074
|
-
];
|
|
1075
|
-
var CardValueList = [1, n0, _CVL,
|
|
1076
|
-
0, () => CardValue$
|
|
1077
|
-
];
|
|
1078
|
-
var CategoriesList = [1, n0, _CLa,
|
|
1079
|
-
0, () => Category$
|
|
1080
|
-
];
|
|
1081
|
-
var CategoryList = [1, n0, _CLat,
|
|
1082
|
-
0, () => Category$
|
|
1083
|
-
];
|
|
1084
|
-
var CategoryListInput = [1, n0, _CLI,
|
|
1085
|
-
0, () => CategoryInput$
|
|
1086
|
-
];
|
|
1087
|
-
var LibraryItemList = [1, n0, _LIL,
|
|
1088
|
-
0, () => LibraryItemMember$
|
|
1089
|
-
];
|
|
1090
|
-
var MessageList = [1, n0, _ML,
|
|
1091
|
-
0, () => ConversationMessage$
|
|
1092
|
-
];
|
|
1093
|
-
var PermissionsInputList = [1, n0, _PIL,
|
|
1094
|
-
0, () => PermissionInput$
|
|
1095
|
-
];
|
|
1096
|
-
var PermissionsOutputList = [1, n0, _POL,
|
|
1097
|
-
0, () => PermissionOutput$
|
|
1098
|
-
];
|
|
1099
|
-
var QAppSessionDataList = [1, n0, _QASDL,
|
|
1100
|
-
0, () => QAppSessionData$
|
|
1101
|
-
];
|
|
1102
|
-
var SubmissionList = [1, n0, _SL,
|
|
1103
|
-
0, () => Submission$
|
|
1104
|
-
];
|
|
1105
|
-
var UserAppsList = [1, n0, _UAL,
|
|
1106
|
-
0, () => UserAppItem$
|
|
1107
|
-
];
|
|
1108
|
-
var CardStatusMap = [2, n0, _CSM,
|
|
1109
|
-
0, 0, () => CardStatus$
|
|
1110
|
-
];
|
|
1111
|
-
var Card$ = [4, n0, _Ca,
|
|
1112
|
-
0,
|
|
1113
|
-
[_tI, _qQ, _qP, _fU, _fIo],
|
|
1114
|
-
[() => TextInputCard$, () => QQueryCard$, () => QPluginCard$, () => FileUploadCard$, () => FormInputCard$]
|
|
1115
|
-
];
|
|
1116
|
-
var CardInput$ = [4, n0, _CIa,
|
|
1117
|
-
0,
|
|
1118
|
-
[_tI, _qQ, _qP, _fU, _fIo],
|
|
1119
|
-
[() => TextInputCardInput$, () => QQueryCardInput$, () => QPluginCardInput$, () => FileUploadCardInput$, () => FormInputCardInput$]
|
|
1120
|
-
];
|
|
1121
|
-
var DocumentAttributeValue$ = [4, n0, _DAV,
|
|
1122
|
-
0,
|
|
1123
|
-
[_sV, _sLV, _lV, _dVa],
|
|
1124
|
-
[0, 64 | 0, 1, 4]
|
|
1125
|
-
];
|
|
1126
|
-
var PredictQAppInputOptions$ = [4, n0, _PQAIO,
|
|
1127
|
-
0,
|
|
1128
|
-
[_con, _pS],
|
|
1129
|
-
[() => MessageList, 0]
|
|
1130
|
-
];
|
|
1131
|
-
var AssociateLibraryItemReview$ = [9, n0, _ALIR,
|
|
1132
|
-
{ [_h]: ["POST", "/catalog.associateItemRating", 200] }, () => AssociateLibraryItemReviewInput$, () => __Unit
|
|
1133
|
-
];
|
|
1134
|
-
var AssociateQAppWithUser$ = [9, n0, _AQAWU,
|
|
1135
|
-
{ [_h]: ["POST", "/apps.install", 200] }, () => AssociateQAppWithUserInput$, () => __Unit
|
|
1136
|
-
];
|
|
1137
|
-
var BatchCreateCategory$ = [9, n0, _BCC,
|
|
1138
|
-
{ [_h]: ["POST", "/catalog.createCategories", 200] }, () => BatchCreateCategoryInput$, () => __Unit
|
|
1139
|
-
];
|
|
1140
|
-
var BatchDeleteCategory$ = [9, n0, _BDC,
|
|
1141
|
-
{ [_h]: ["POST", "/catalog.deleteCategories", 200] }, () => BatchDeleteCategoryInput$, () => __Unit
|
|
1142
|
-
];
|
|
1143
|
-
var BatchUpdateCategory$ = [9, n0, _BUC,
|
|
1144
|
-
{ [_h]: ["POST", "/catalog.updateCategories", 200] }, () => BatchUpdateCategoryInput$, () => __Unit
|
|
1145
|
-
];
|
|
1146
|
-
var CreateLibraryItem$ = [9, n0, _CLIr,
|
|
1147
|
-
{ [_h]: ["POST", "/catalog.createItem", 200] }, () => CreateLibraryItemInput$, () => CreateLibraryItemOutput$
|
|
1148
|
-
];
|
|
1149
|
-
var CreatePresignedUrl$ = [9, n0, _CPU,
|
|
1150
|
-
{ [_h]: ["POST", "/apps.createPresignedUrl", 200] }, () => CreatePresignedUrlInput$, () => CreatePresignedUrlOutput$
|
|
1151
|
-
];
|
|
1152
|
-
var CreateQApp$ = [9, n0, _CQA,
|
|
1153
|
-
{ [_h]: ["POST", "/apps.create", 200] }, () => CreateQAppInput$, () => CreateQAppOutput$
|
|
1154
|
-
];
|
|
1155
|
-
var DeleteLibraryItem$ = [9, n0, _DLI,
|
|
1156
|
-
{ [_h]: ["POST", "/catalog.deleteItem", 200] }, () => DeleteLibraryItemInput$, () => __Unit
|
|
1157
|
-
];
|
|
1158
|
-
var DeleteQApp$ = [9, n0, _DQA,
|
|
1159
|
-
{ [_h]: ["POST", "/apps.delete", 200] }, () => DeleteQAppInput$, () => __Unit
|
|
1160
|
-
];
|
|
1161
|
-
var DescribeQAppPermissions$ = [9, n0, _DQAP,
|
|
1162
|
-
{ [_h]: ["GET", "/apps.describeQAppPermissions", 200] }, () => DescribeQAppPermissionsInput$, () => DescribeQAppPermissionsOutput$
|
|
1163
|
-
];
|
|
1164
|
-
var DisassociateLibraryItemReview$ = [9, n0, _DLIR,
|
|
1165
|
-
{ [_h]: ["POST", "/catalog.disassociateItemRating", 200] }, () => DisassociateLibraryItemReviewInput$, () => __Unit
|
|
1166
|
-
];
|
|
1167
|
-
var DisassociateQAppFromUser$ = [9, n0, _DQAFU,
|
|
1168
|
-
{ [_h]: ["POST", "/apps.uninstall", 200] }, () => DisassociateQAppFromUserInput$, () => __Unit
|
|
1169
|
-
];
|
|
1170
|
-
var ExportQAppSessionData$ = [9, n0, _EQASD,
|
|
1171
|
-
{ [_h]: ["POST", "/runtime.exportQAppSessionData", 200] }, () => ExportQAppSessionDataInput$, () => ExportQAppSessionDataOutput$
|
|
1172
|
-
];
|
|
1173
|
-
var GetLibraryItem$ = [9, n0, _GLI,
|
|
1174
|
-
{ [_h]: ["GET", "/catalog.getItem", 200] }, () => GetLibraryItemInput$, () => GetLibraryItemOutput$
|
|
1175
|
-
];
|
|
1176
|
-
var GetQApp$ = [9, n0, _GQA,
|
|
1177
|
-
{ [_h]: ["GET", "/apps.get", 200] }, () => GetQAppInput$, () => GetQAppOutput$
|
|
1178
|
-
];
|
|
1179
|
-
var GetQAppSession$ = [9, n0, _GQAS,
|
|
1180
|
-
{ [_h]: ["GET", "/runtime.getQAppSession", 200] }, () => GetQAppSessionInput$, () => GetQAppSessionOutput$
|
|
1181
|
-
];
|
|
1182
|
-
var GetQAppSessionMetadata$ = [9, n0, _GQASM,
|
|
1183
|
-
{ [_h]: ["GET", "/runtime.getQAppSessionMetadata", 200] }, () => GetQAppSessionMetadataInput$, () => GetQAppSessionMetadataOutput$
|
|
1184
|
-
];
|
|
1185
|
-
var ImportDocument$ = [9, n0, _ID,
|
|
1186
|
-
{ [_h]: ["POST", "/apps.importDocument", 200] }, () => ImportDocumentInput$, () => ImportDocumentOutput$
|
|
1187
|
-
];
|
|
1188
|
-
var ListCategories$ = [9, n0, _LC,
|
|
1189
|
-
{ [_h]: ["GET", "/catalog.listCategories", 200] }, () => ListCategoriesInput$, () => ListCategoriesOutput$
|
|
1190
|
-
];
|
|
1191
|
-
var ListLibraryItems$ = [9, n0, _LLI,
|
|
1192
|
-
{ [_h]: ["GET", "/catalog.list", 200] }, () => ListLibraryItemsInput$, () => ListLibraryItemsOutput$
|
|
1193
|
-
];
|
|
1194
|
-
var ListQApps$ = [9, n0, _LQA,
|
|
1195
|
-
{ [_h]: ["GET", "/apps.list", 200] }, () => ListQAppsInput$, () => ListQAppsOutput$
|
|
1196
|
-
];
|
|
1197
|
-
var ListQAppSessionData$ = [9, n0, _LQASD,
|
|
1198
|
-
{ [_h]: ["GET", "/runtime.listQAppSessionData", 200] }, () => ListQAppSessionDataInput$, () => ListQAppSessionDataOutput$
|
|
1199
|
-
];
|
|
1200
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1201
|
-
{ [_h]: ["GET", "/tags/{resourceARN}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1202
|
-
];
|
|
1203
|
-
var PredictQApp$ = [9, n0, _PQA,
|
|
1204
|
-
{ [_h]: ["POST", "/apps.predictQApp", 200] }, () => PredictQAppInput$, () => PredictQAppOutput$
|
|
1205
|
-
];
|
|
1206
|
-
var StartQAppSession$ = [9, n0, _SQAS,
|
|
1207
|
-
{ [_h]: ["POST", "/runtime.startQAppSession", 200] }, () => StartQAppSessionInput$, () => StartQAppSessionOutput$
|
|
1208
|
-
];
|
|
1209
|
-
var StopQAppSession$ = [9, n0, _SQASt,
|
|
1210
|
-
{ [_h]: ["POST", "/runtime.deleteMiniAppRun", 200] }, () => StopQAppSessionInput$, () => __Unit
|
|
1211
|
-
];
|
|
1212
|
-
var TagResource$ = [9, n0, _TR,
|
|
1213
|
-
{ [_h]: ["POST", "/tags/{resourceARN}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1214
|
-
];
|
|
1215
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1216
|
-
{ [_h]: ["DELETE", "/tags/{resourceARN}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1217
|
-
];
|
|
1218
|
-
var UpdateLibraryItem$ = [9, n0, _ULI,
|
|
1219
|
-
{ [_h]: ["POST", "/catalog.updateItem", 200] }, () => UpdateLibraryItemInput$, () => UpdateLibraryItemOutput$
|
|
1220
|
-
];
|
|
1221
|
-
var UpdateLibraryItemMetadata$ = [9, n0, _ULIM,
|
|
1222
|
-
{ [_h]: ["POST", "/catalog.updateItemMetadata", 200] }, () => UpdateLibraryItemMetadataInput$, () => __Unit
|
|
1223
|
-
];
|
|
1224
|
-
var UpdateQApp$ = [9, n0, _UQA,
|
|
1225
|
-
{ [_h]: ["POST", "/apps.update", 200] }, () => UpdateQAppInput$, () => UpdateQAppOutput$
|
|
1226
|
-
];
|
|
1227
|
-
var UpdateQAppPermissions$ = [9, n0, _UQAP,
|
|
1228
|
-
{ [_h]: ["POST", "/apps.updateQAppPermissions", 200] }, () => UpdateQAppPermissionsInput$, () => UpdateQAppPermissionsOutput$
|
|
1229
|
-
];
|
|
1230
|
-
var UpdateQAppSession$ = [9, n0, _UQAS,
|
|
1231
|
-
{ [_h]: ["POST", "/runtime.updateQAppSession", 200] }, () => UpdateQAppSessionInput$, () => UpdateQAppSessionOutput$
|
|
1232
|
-
];
|
|
1233
|
-
var UpdateQAppSessionMetadata$ = [9, n0, _UQASM,
|
|
1234
|
-
{ [_h]: ["POST", "/runtime.updateQAppSessionMetadata", 200] }, () => UpdateQAppSessionMetadataInput$, () => UpdateQAppSessionMetadataOutput$
|
|
1235
|
-
];
|
|
1236
|
-
|
|
1237
116
|
class AssociateLibraryItemReviewCommand extends smithyClient.Command
|
|
1238
117
|
.classBuilder()
|
|
1239
118
|
.ep(commonParams)
|
|
@@ -1242,7 +121,7 @@ class AssociateLibraryItemReviewCommand extends smithyClient.Command
|
|
|
1242
121
|
})
|
|
1243
122
|
.s("QAppsService", "AssociateLibraryItemReview", {})
|
|
1244
123
|
.n("QAppsClient", "AssociateLibraryItemReviewCommand")
|
|
1245
|
-
.sc(AssociateLibraryItemReview$)
|
|
124
|
+
.sc(schemas_0.AssociateLibraryItemReview$)
|
|
1246
125
|
.build() {
|
|
1247
126
|
}
|
|
1248
127
|
|
|
@@ -1254,7 +133,7 @@ class AssociateQAppWithUserCommand extends smithyClient.Command
|
|
|
1254
133
|
})
|
|
1255
134
|
.s("QAppsService", "AssociateQAppWithUser", {})
|
|
1256
135
|
.n("QAppsClient", "AssociateQAppWithUserCommand")
|
|
1257
|
-
.sc(AssociateQAppWithUser$)
|
|
136
|
+
.sc(schemas_0.AssociateQAppWithUser$)
|
|
1258
137
|
.build() {
|
|
1259
138
|
}
|
|
1260
139
|
|
|
@@ -1266,7 +145,7 @@ class BatchCreateCategoryCommand extends smithyClient.Command
|
|
|
1266
145
|
})
|
|
1267
146
|
.s("QAppsService", "BatchCreateCategory", {})
|
|
1268
147
|
.n("QAppsClient", "BatchCreateCategoryCommand")
|
|
1269
|
-
.sc(BatchCreateCategory$)
|
|
148
|
+
.sc(schemas_0.BatchCreateCategory$)
|
|
1270
149
|
.build() {
|
|
1271
150
|
}
|
|
1272
151
|
|
|
@@ -1278,7 +157,7 @@ class BatchDeleteCategoryCommand extends smithyClient.Command
|
|
|
1278
157
|
})
|
|
1279
158
|
.s("QAppsService", "BatchDeleteCategory", {})
|
|
1280
159
|
.n("QAppsClient", "BatchDeleteCategoryCommand")
|
|
1281
|
-
.sc(BatchDeleteCategory$)
|
|
160
|
+
.sc(schemas_0.BatchDeleteCategory$)
|
|
1282
161
|
.build() {
|
|
1283
162
|
}
|
|
1284
163
|
|
|
@@ -1290,7 +169,7 @@ class BatchUpdateCategoryCommand extends smithyClient.Command
|
|
|
1290
169
|
})
|
|
1291
170
|
.s("QAppsService", "BatchUpdateCategory", {})
|
|
1292
171
|
.n("QAppsClient", "BatchUpdateCategoryCommand")
|
|
1293
|
-
.sc(BatchUpdateCategory$)
|
|
172
|
+
.sc(schemas_0.BatchUpdateCategory$)
|
|
1294
173
|
.build() {
|
|
1295
174
|
}
|
|
1296
175
|
|
|
@@ -1302,7 +181,7 @@ class CreateLibraryItemCommand extends smithyClient.Command
|
|
|
1302
181
|
})
|
|
1303
182
|
.s("QAppsService", "CreateLibraryItem", {})
|
|
1304
183
|
.n("QAppsClient", "CreateLibraryItemCommand")
|
|
1305
|
-
.sc(CreateLibraryItem$)
|
|
184
|
+
.sc(schemas_0.CreateLibraryItem$)
|
|
1306
185
|
.build() {
|
|
1307
186
|
}
|
|
1308
187
|
|
|
@@ -1314,7 +193,7 @@ class CreatePresignedUrlCommand extends smithyClient.Command
|
|
|
1314
193
|
})
|
|
1315
194
|
.s("QAppsService", "CreatePresignedUrl", {})
|
|
1316
195
|
.n("QAppsClient", "CreatePresignedUrlCommand")
|
|
1317
|
-
.sc(CreatePresignedUrl$)
|
|
196
|
+
.sc(schemas_0.CreatePresignedUrl$)
|
|
1318
197
|
.build() {
|
|
1319
198
|
}
|
|
1320
199
|
|
|
@@ -1326,7 +205,7 @@ class CreateQAppCommand extends smithyClient.Command
|
|
|
1326
205
|
})
|
|
1327
206
|
.s("QAppsService", "CreateQApp", {})
|
|
1328
207
|
.n("QAppsClient", "CreateQAppCommand")
|
|
1329
|
-
.sc(CreateQApp$)
|
|
208
|
+
.sc(schemas_0.CreateQApp$)
|
|
1330
209
|
.build() {
|
|
1331
210
|
}
|
|
1332
211
|
|
|
@@ -1338,7 +217,7 @@ class DeleteLibraryItemCommand extends smithyClient.Command
|
|
|
1338
217
|
})
|
|
1339
218
|
.s("QAppsService", "DeleteLibraryItem", {})
|
|
1340
219
|
.n("QAppsClient", "DeleteLibraryItemCommand")
|
|
1341
|
-
.sc(DeleteLibraryItem$)
|
|
220
|
+
.sc(schemas_0.DeleteLibraryItem$)
|
|
1342
221
|
.build() {
|
|
1343
222
|
}
|
|
1344
223
|
|
|
@@ -1350,7 +229,7 @@ class DeleteQAppCommand extends smithyClient.Command
|
|
|
1350
229
|
})
|
|
1351
230
|
.s("QAppsService", "DeleteQApp", {})
|
|
1352
231
|
.n("QAppsClient", "DeleteQAppCommand")
|
|
1353
|
-
.sc(DeleteQApp$)
|
|
232
|
+
.sc(schemas_0.DeleteQApp$)
|
|
1354
233
|
.build() {
|
|
1355
234
|
}
|
|
1356
235
|
|
|
@@ -1362,7 +241,7 @@ class DescribeQAppPermissionsCommand extends smithyClient.Command
|
|
|
1362
241
|
})
|
|
1363
242
|
.s("QAppsService", "DescribeQAppPermissions", {})
|
|
1364
243
|
.n("QAppsClient", "DescribeQAppPermissionsCommand")
|
|
1365
|
-
.sc(DescribeQAppPermissions$)
|
|
244
|
+
.sc(schemas_0.DescribeQAppPermissions$)
|
|
1366
245
|
.build() {
|
|
1367
246
|
}
|
|
1368
247
|
|
|
@@ -1374,7 +253,7 @@ class DisassociateLibraryItemReviewCommand extends smithyClient.Command
|
|
|
1374
253
|
})
|
|
1375
254
|
.s("QAppsService", "DisassociateLibraryItemReview", {})
|
|
1376
255
|
.n("QAppsClient", "DisassociateLibraryItemReviewCommand")
|
|
1377
|
-
.sc(DisassociateLibraryItemReview$)
|
|
256
|
+
.sc(schemas_0.DisassociateLibraryItemReview$)
|
|
1378
257
|
.build() {
|
|
1379
258
|
}
|
|
1380
259
|
|
|
@@ -1386,7 +265,7 @@ class DisassociateQAppFromUserCommand extends smithyClient.Command
|
|
|
1386
265
|
})
|
|
1387
266
|
.s("QAppsService", "DisassociateQAppFromUser", {})
|
|
1388
267
|
.n("QAppsClient", "DisassociateQAppFromUserCommand")
|
|
1389
|
-
.sc(DisassociateQAppFromUser$)
|
|
268
|
+
.sc(schemas_0.DisassociateQAppFromUser$)
|
|
1390
269
|
.build() {
|
|
1391
270
|
}
|
|
1392
271
|
|
|
@@ -1398,7 +277,7 @@ class ExportQAppSessionDataCommand extends smithyClient.Command
|
|
|
1398
277
|
})
|
|
1399
278
|
.s("QAppsService", "ExportQAppSessionData", {})
|
|
1400
279
|
.n("QAppsClient", "ExportQAppSessionDataCommand")
|
|
1401
|
-
.sc(ExportQAppSessionData$)
|
|
280
|
+
.sc(schemas_0.ExportQAppSessionData$)
|
|
1402
281
|
.build() {
|
|
1403
282
|
}
|
|
1404
283
|
|
|
@@ -1410,7 +289,7 @@ class GetLibraryItemCommand extends smithyClient.Command
|
|
|
1410
289
|
})
|
|
1411
290
|
.s("QAppsService", "GetLibraryItem", {})
|
|
1412
291
|
.n("QAppsClient", "GetLibraryItemCommand")
|
|
1413
|
-
.sc(GetLibraryItem$)
|
|
292
|
+
.sc(schemas_0.GetLibraryItem$)
|
|
1414
293
|
.build() {
|
|
1415
294
|
}
|
|
1416
295
|
|
|
@@ -1422,7 +301,7 @@ class GetQAppCommand extends smithyClient.Command
|
|
|
1422
301
|
})
|
|
1423
302
|
.s("QAppsService", "GetQApp", {})
|
|
1424
303
|
.n("QAppsClient", "GetQAppCommand")
|
|
1425
|
-
.sc(GetQApp$)
|
|
304
|
+
.sc(schemas_0.GetQApp$)
|
|
1426
305
|
.build() {
|
|
1427
306
|
}
|
|
1428
307
|
|
|
@@ -1434,7 +313,7 @@ class GetQAppSessionCommand extends smithyClient.Command
|
|
|
1434
313
|
})
|
|
1435
314
|
.s("QAppsService", "GetQAppSession", {})
|
|
1436
315
|
.n("QAppsClient", "GetQAppSessionCommand")
|
|
1437
|
-
.sc(GetQAppSession$)
|
|
316
|
+
.sc(schemas_0.GetQAppSession$)
|
|
1438
317
|
.build() {
|
|
1439
318
|
}
|
|
1440
319
|
|
|
@@ -1446,7 +325,7 @@ class GetQAppSessionMetadataCommand extends smithyClient.Command
|
|
|
1446
325
|
})
|
|
1447
326
|
.s("QAppsService", "GetQAppSessionMetadata", {})
|
|
1448
327
|
.n("QAppsClient", "GetQAppSessionMetadataCommand")
|
|
1449
|
-
.sc(GetQAppSessionMetadata$)
|
|
328
|
+
.sc(schemas_0.GetQAppSessionMetadata$)
|
|
1450
329
|
.build() {
|
|
1451
330
|
}
|
|
1452
331
|
|
|
@@ -1458,7 +337,7 @@ class ImportDocumentCommand extends smithyClient.Command
|
|
|
1458
337
|
})
|
|
1459
338
|
.s("QAppsService", "ImportDocument", {})
|
|
1460
339
|
.n("QAppsClient", "ImportDocumentCommand")
|
|
1461
|
-
.sc(ImportDocument$)
|
|
340
|
+
.sc(schemas_0.ImportDocument$)
|
|
1462
341
|
.build() {
|
|
1463
342
|
}
|
|
1464
343
|
|
|
@@ -1470,7 +349,7 @@ class ListCategoriesCommand extends smithyClient.Command
|
|
|
1470
349
|
})
|
|
1471
350
|
.s("QAppsService", "ListCategories", {})
|
|
1472
351
|
.n("QAppsClient", "ListCategoriesCommand")
|
|
1473
|
-
.sc(ListCategories$)
|
|
352
|
+
.sc(schemas_0.ListCategories$)
|
|
1474
353
|
.build() {
|
|
1475
354
|
}
|
|
1476
355
|
|
|
@@ -1482,7 +361,7 @@ class ListLibraryItemsCommand extends smithyClient.Command
|
|
|
1482
361
|
})
|
|
1483
362
|
.s("QAppsService", "ListLibraryItems", {})
|
|
1484
363
|
.n("QAppsClient", "ListLibraryItemsCommand")
|
|
1485
|
-
.sc(ListLibraryItems$)
|
|
364
|
+
.sc(schemas_0.ListLibraryItems$)
|
|
1486
365
|
.build() {
|
|
1487
366
|
}
|
|
1488
367
|
|
|
@@ -1494,7 +373,7 @@ class ListQAppsCommand extends smithyClient.Command
|
|
|
1494
373
|
})
|
|
1495
374
|
.s("QAppsService", "ListQApps", {})
|
|
1496
375
|
.n("QAppsClient", "ListQAppsCommand")
|
|
1497
|
-
.sc(ListQApps$)
|
|
376
|
+
.sc(schemas_0.ListQApps$)
|
|
1498
377
|
.build() {
|
|
1499
378
|
}
|
|
1500
379
|
|
|
@@ -1506,7 +385,7 @@ class ListQAppSessionDataCommand extends smithyClient.Command
|
|
|
1506
385
|
})
|
|
1507
386
|
.s("QAppsService", "ListQAppSessionData", {})
|
|
1508
387
|
.n("QAppsClient", "ListQAppSessionDataCommand")
|
|
1509
|
-
.sc(ListQAppSessionData$)
|
|
388
|
+
.sc(schemas_0.ListQAppSessionData$)
|
|
1510
389
|
.build() {
|
|
1511
390
|
}
|
|
1512
391
|
|
|
@@ -1518,7 +397,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1518
397
|
})
|
|
1519
398
|
.s("QAppsService", "ListTagsForResource", {})
|
|
1520
399
|
.n("QAppsClient", "ListTagsForResourceCommand")
|
|
1521
|
-
.sc(ListTagsForResource$)
|
|
400
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1522
401
|
.build() {
|
|
1523
402
|
}
|
|
1524
403
|
|
|
@@ -1530,7 +409,7 @@ class PredictQAppCommand extends smithyClient.Command
|
|
|
1530
409
|
})
|
|
1531
410
|
.s("QAppsService", "PredictQApp", {})
|
|
1532
411
|
.n("QAppsClient", "PredictQAppCommand")
|
|
1533
|
-
.sc(PredictQApp$)
|
|
412
|
+
.sc(schemas_0.PredictQApp$)
|
|
1534
413
|
.build() {
|
|
1535
414
|
}
|
|
1536
415
|
|
|
@@ -1542,7 +421,7 @@ class StartQAppSessionCommand extends smithyClient.Command
|
|
|
1542
421
|
})
|
|
1543
422
|
.s("QAppsService", "StartQAppSession", {})
|
|
1544
423
|
.n("QAppsClient", "StartQAppSessionCommand")
|
|
1545
|
-
.sc(StartQAppSession$)
|
|
424
|
+
.sc(schemas_0.StartQAppSession$)
|
|
1546
425
|
.build() {
|
|
1547
426
|
}
|
|
1548
427
|
|
|
@@ -1554,7 +433,7 @@ class StopQAppSessionCommand extends smithyClient.Command
|
|
|
1554
433
|
})
|
|
1555
434
|
.s("QAppsService", "StopQAppSession", {})
|
|
1556
435
|
.n("QAppsClient", "StopQAppSessionCommand")
|
|
1557
|
-
.sc(StopQAppSession$)
|
|
436
|
+
.sc(schemas_0.StopQAppSession$)
|
|
1558
437
|
.build() {
|
|
1559
438
|
}
|
|
1560
439
|
|
|
@@ -1566,7 +445,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1566
445
|
})
|
|
1567
446
|
.s("QAppsService", "TagResource", {})
|
|
1568
447
|
.n("QAppsClient", "TagResourceCommand")
|
|
1569
|
-
.sc(TagResource$)
|
|
448
|
+
.sc(schemas_0.TagResource$)
|
|
1570
449
|
.build() {
|
|
1571
450
|
}
|
|
1572
451
|
|
|
@@ -1578,7 +457,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1578
457
|
})
|
|
1579
458
|
.s("QAppsService", "UntagResource", {})
|
|
1580
459
|
.n("QAppsClient", "UntagResourceCommand")
|
|
1581
|
-
.sc(UntagResource$)
|
|
460
|
+
.sc(schemas_0.UntagResource$)
|
|
1582
461
|
.build() {
|
|
1583
462
|
}
|
|
1584
463
|
|
|
@@ -1590,7 +469,7 @@ class UpdateLibraryItemCommand extends smithyClient.Command
|
|
|
1590
469
|
})
|
|
1591
470
|
.s("QAppsService", "UpdateLibraryItem", {})
|
|
1592
471
|
.n("QAppsClient", "UpdateLibraryItemCommand")
|
|
1593
|
-
.sc(UpdateLibraryItem$)
|
|
472
|
+
.sc(schemas_0.UpdateLibraryItem$)
|
|
1594
473
|
.build() {
|
|
1595
474
|
}
|
|
1596
475
|
|
|
@@ -1602,7 +481,7 @@ class UpdateLibraryItemMetadataCommand extends smithyClient.Command
|
|
|
1602
481
|
})
|
|
1603
482
|
.s("QAppsService", "UpdateLibraryItemMetadata", {})
|
|
1604
483
|
.n("QAppsClient", "UpdateLibraryItemMetadataCommand")
|
|
1605
|
-
.sc(UpdateLibraryItemMetadata$)
|
|
484
|
+
.sc(schemas_0.UpdateLibraryItemMetadata$)
|
|
1606
485
|
.build() {
|
|
1607
486
|
}
|
|
1608
487
|
|
|
@@ -1614,7 +493,7 @@ class UpdateQAppCommand extends smithyClient.Command
|
|
|
1614
493
|
})
|
|
1615
494
|
.s("QAppsService", "UpdateQApp", {})
|
|
1616
495
|
.n("QAppsClient", "UpdateQAppCommand")
|
|
1617
|
-
.sc(UpdateQApp$)
|
|
496
|
+
.sc(schemas_0.UpdateQApp$)
|
|
1618
497
|
.build() {
|
|
1619
498
|
}
|
|
1620
499
|
|
|
@@ -1626,7 +505,7 @@ class UpdateQAppPermissionsCommand extends smithyClient.Command
|
|
|
1626
505
|
})
|
|
1627
506
|
.s("QAppsService", "UpdateQAppPermissions", {})
|
|
1628
507
|
.n("QAppsClient", "UpdateQAppPermissionsCommand")
|
|
1629
|
-
.sc(UpdateQAppPermissions$)
|
|
508
|
+
.sc(schemas_0.UpdateQAppPermissions$)
|
|
1630
509
|
.build() {
|
|
1631
510
|
}
|
|
1632
511
|
|
|
@@ -1638,7 +517,7 @@ class UpdateQAppSessionCommand extends smithyClient.Command
|
|
|
1638
517
|
})
|
|
1639
518
|
.s("QAppsService", "UpdateQAppSession", {})
|
|
1640
519
|
.n("QAppsClient", "UpdateQAppSessionCommand")
|
|
1641
|
-
.sc(UpdateQAppSession$)
|
|
520
|
+
.sc(schemas_0.UpdateQAppSession$)
|
|
1642
521
|
.build() {
|
|
1643
522
|
}
|
|
1644
523
|
|
|
@@ -1650,7 +529,7 @@ class UpdateQAppSessionMetadataCommand extends smithyClient.Command
|
|
|
1650
529
|
})
|
|
1651
530
|
.s("QAppsService", "UpdateQAppSessionMetadata", {})
|
|
1652
531
|
.n("QAppsClient", "UpdateQAppSessionMetadataCommand")
|
|
1653
|
-
.sc(UpdateQAppSessionMetadata$)
|
|
532
|
+
.sc(schemas_0.UpdateQAppSessionMetadata$)
|
|
1654
533
|
.build() {
|
|
1655
534
|
}
|
|
1656
535
|
|
|
@@ -1787,205 +666,71 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1787
666
|
enumerable: true,
|
|
1788
667
|
get: function () { return smithyClient.Client; }
|
|
1789
668
|
});
|
|
1790
|
-
exports
|
|
1791
|
-
|
|
669
|
+
Object.defineProperty(exports, "QAppsServiceException", {
|
|
670
|
+
enumerable: true,
|
|
671
|
+
get: function () { return QAppsServiceException.QAppsServiceException; }
|
|
672
|
+
});
|
|
1792
673
|
exports.Action = Action;
|
|
1793
|
-
exports.AppDefinition$ = AppDefinition$;
|
|
1794
|
-
exports.AppDefinitionInput$ = AppDefinitionInput$;
|
|
1795
674
|
exports.AppRequiredCapability = AppRequiredCapability;
|
|
1796
675
|
exports.AppStatus = AppStatus;
|
|
1797
|
-
exports.AssociateLibraryItemReview$ = AssociateLibraryItemReview$;
|
|
1798
676
|
exports.AssociateLibraryItemReviewCommand = AssociateLibraryItemReviewCommand;
|
|
1799
|
-
exports.AssociateLibraryItemReviewInput$ = AssociateLibraryItemReviewInput$;
|
|
1800
|
-
exports.AssociateQAppWithUser$ = AssociateQAppWithUser$;
|
|
1801
677
|
exports.AssociateQAppWithUserCommand = AssociateQAppWithUserCommand;
|
|
1802
|
-
exports.AssociateQAppWithUserInput$ = AssociateQAppWithUserInput$;
|
|
1803
|
-
exports.AttributeFilter$ = AttributeFilter$;
|
|
1804
|
-
exports.BatchCreateCategory$ = BatchCreateCategory$;
|
|
1805
678
|
exports.BatchCreateCategoryCommand = BatchCreateCategoryCommand;
|
|
1806
|
-
exports.BatchCreateCategoryInput$ = BatchCreateCategoryInput$;
|
|
1807
|
-
exports.BatchCreateCategoryInputCategory$ = BatchCreateCategoryInputCategory$;
|
|
1808
|
-
exports.BatchDeleteCategory$ = BatchDeleteCategory$;
|
|
1809
679
|
exports.BatchDeleteCategoryCommand = BatchDeleteCategoryCommand;
|
|
1810
|
-
exports.BatchDeleteCategoryInput$ = BatchDeleteCategoryInput$;
|
|
1811
|
-
exports.BatchUpdateCategory$ = BatchUpdateCategory$;
|
|
1812
680
|
exports.BatchUpdateCategoryCommand = BatchUpdateCategoryCommand;
|
|
1813
|
-
exports.BatchUpdateCategoryInput$ = BatchUpdateCategoryInput$;
|
|
1814
|
-
exports.Card$ = Card$;
|
|
1815
|
-
exports.CardInput$ = CardInput$;
|
|
1816
681
|
exports.CardOutputSource = CardOutputSource;
|
|
1817
|
-
exports.CardStatus$ = CardStatus$;
|
|
1818
682
|
exports.CardType = CardType;
|
|
1819
|
-
exports.CardValue$ = CardValue$;
|
|
1820
|
-
exports.Category$ = Category$;
|
|
1821
|
-
exports.CategoryInput$ = CategoryInput$;
|
|
1822
|
-
exports.ConflictException = ConflictException;
|
|
1823
|
-
exports.ConflictException$ = ConflictException$;
|
|
1824
|
-
exports.ContentTooLargeException = ContentTooLargeException;
|
|
1825
|
-
exports.ContentTooLargeException$ = ContentTooLargeException$;
|
|
1826
|
-
exports.ConversationMessage$ = ConversationMessage$;
|
|
1827
|
-
exports.CreateLibraryItem$ = CreateLibraryItem$;
|
|
1828
683
|
exports.CreateLibraryItemCommand = CreateLibraryItemCommand;
|
|
1829
|
-
exports.CreateLibraryItemInput$ = CreateLibraryItemInput$;
|
|
1830
|
-
exports.CreateLibraryItemOutput$ = CreateLibraryItemOutput$;
|
|
1831
|
-
exports.CreatePresignedUrl$ = CreatePresignedUrl$;
|
|
1832
684
|
exports.CreatePresignedUrlCommand = CreatePresignedUrlCommand;
|
|
1833
|
-
exports.CreatePresignedUrlInput$ = CreatePresignedUrlInput$;
|
|
1834
|
-
exports.CreatePresignedUrlOutput$ = CreatePresignedUrlOutput$;
|
|
1835
|
-
exports.CreateQApp$ = CreateQApp$;
|
|
1836
685
|
exports.CreateQAppCommand = CreateQAppCommand;
|
|
1837
|
-
exports.CreateQAppInput$ = CreateQAppInput$;
|
|
1838
|
-
exports.CreateQAppOutput$ = CreateQAppOutput$;
|
|
1839
|
-
exports.DeleteLibraryItem$ = DeleteLibraryItem$;
|
|
1840
686
|
exports.DeleteLibraryItemCommand = DeleteLibraryItemCommand;
|
|
1841
|
-
exports.DeleteLibraryItemInput$ = DeleteLibraryItemInput$;
|
|
1842
|
-
exports.DeleteQApp$ = DeleteQApp$;
|
|
1843
687
|
exports.DeleteQAppCommand = DeleteQAppCommand;
|
|
1844
|
-
exports.DeleteQAppInput$ = DeleteQAppInput$;
|
|
1845
|
-
exports.DescribeQAppPermissions$ = DescribeQAppPermissions$;
|
|
1846
688
|
exports.DescribeQAppPermissionsCommand = DescribeQAppPermissionsCommand;
|
|
1847
|
-
exports.DescribeQAppPermissionsInput$ = DescribeQAppPermissionsInput$;
|
|
1848
|
-
exports.DescribeQAppPermissionsOutput$ = DescribeQAppPermissionsOutput$;
|
|
1849
|
-
exports.DisassociateLibraryItemReview$ = DisassociateLibraryItemReview$;
|
|
1850
689
|
exports.DisassociateLibraryItemReviewCommand = DisassociateLibraryItemReviewCommand;
|
|
1851
|
-
exports.DisassociateLibraryItemReviewInput$ = DisassociateLibraryItemReviewInput$;
|
|
1852
|
-
exports.DisassociateQAppFromUser$ = DisassociateQAppFromUser$;
|
|
1853
690
|
exports.DisassociateQAppFromUserCommand = DisassociateQAppFromUserCommand;
|
|
1854
|
-
exports.DisassociateQAppFromUserInput$ = DisassociateQAppFromUserInput$;
|
|
1855
|
-
exports.DocumentAttribute$ = DocumentAttribute$;
|
|
1856
|
-
exports.DocumentAttributeValue$ = DocumentAttributeValue$;
|
|
1857
691
|
exports.DocumentScope = DocumentScope;
|
|
1858
692
|
exports.ExecutionStatus = ExecutionStatus;
|
|
1859
|
-
exports.ExportQAppSessionData$ = ExportQAppSessionData$;
|
|
1860
693
|
exports.ExportQAppSessionDataCommand = ExportQAppSessionDataCommand;
|
|
1861
|
-
exports.ExportQAppSessionDataInput$ = ExportQAppSessionDataInput$;
|
|
1862
|
-
exports.ExportQAppSessionDataOutput$ = ExportQAppSessionDataOutput$;
|
|
1863
|
-
exports.FileUploadCard$ = FileUploadCard$;
|
|
1864
|
-
exports.FileUploadCardInput$ = FileUploadCardInput$;
|
|
1865
|
-
exports.FormInputCard$ = FormInputCard$;
|
|
1866
|
-
exports.FormInputCardInput$ = FormInputCardInput$;
|
|
1867
|
-
exports.FormInputCardMetadata$ = FormInputCardMetadata$;
|
|
1868
|
-
exports.GetLibraryItem$ = GetLibraryItem$;
|
|
1869
694
|
exports.GetLibraryItemCommand = GetLibraryItemCommand;
|
|
1870
|
-
exports.GetLibraryItemInput$ = GetLibraryItemInput$;
|
|
1871
|
-
exports.GetLibraryItemOutput$ = GetLibraryItemOutput$;
|
|
1872
|
-
exports.GetQApp$ = GetQApp$;
|
|
1873
695
|
exports.GetQAppCommand = GetQAppCommand;
|
|
1874
|
-
exports.GetQAppInput$ = GetQAppInput$;
|
|
1875
|
-
exports.GetQAppOutput$ = GetQAppOutput$;
|
|
1876
|
-
exports.GetQAppSession$ = GetQAppSession$;
|
|
1877
696
|
exports.GetQAppSessionCommand = GetQAppSessionCommand;
|
|
1878
|
-
exports.GetQAppSessionInput$ = GetQAppSessionInput$;
|
|
1879
|
-
exports.GetQAppSessionMetadata$ = GetQAppSessionMetadata$;
|
|
1880
697
|
exports.GetQAppSessionMetadataCommand = GetQAppSessionMetadataCommand;
|
|
1881
|
-
exports.GetQAppSessionMetadataInput$ = GetQAppSessionMetadataInput$;
|
|
1882
|
-
exports.GetQAppSessionMetadataOutput$ = GetQAppSessionMetadataOutput$;
|
|
1883
|
-
exports.GetQAppSessionOutput$ = GetQAppSessionOutput$;
|
|
1884
|
-
exports.ImportDocument$ = ImportDocument$;
|
|
1885
698
|
exports.ImportDocumentCommand = ImportDocumentCommand;
|
|
1886
|
-
exports.ImportDocumentInput$ = ImportDocumentInput$;
|
|
1887
|
-
exports.ImportDocumentOutput$ = ImportDocumentOutput$;
|
|
1888
699
|
exports.InputCardComputeMode = InputCardComputeMode;
|
|
1889
|
-
exports.InternalServerException = InternalServerException;
|
|
1890
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1891
|
-
exports.LibraryItemMember$ = LibraryItemMember$;
|
|
1892
700
|
exports.LibraryItemStatus = LibraryItemStatus;
|
|
1893
|
-
exports.ListCategories$ = ListCategories$;
|
|
1894
701
|
exports.ListCategoriesCommand = ListCategoriesCommand;
|
|
1895
|
-
exports.ListCategoriesInput$ = ListCategoriesInput$;
|
|
1896
|
-
exports.ListCategoriesOutput$ = ListCategoriesOutput$;
|
|
1897
|
-
exports.ListLibraryItems$ = ListLibraryItems$;
|
|
1898
702
|
exports.ListLibraryItemsCommand = ListLibraryItemsCommand;
|
|
1899
|
-
exports.ListLibraryItemsInput$ = ListLibraryItemsInput$;
|
|
1900
|
-
exports.ListLibraryItemsOutput$ = ListLibraryItemsOutput$;
|
|
1901
|
-
exports.ListQAppSessionData$ = ListQAppSessionData$;
|
|
1902
703
|
exports.ListQAppSessionDataCommand = ListQAppSessionDataCommand;
|
|
1903
|
-
exports.ListQAppSessionDataInput$ = ListQAppSessionDataInput$;
|
|
1904
|
-
exports.ListQAppSessionDataOutput$ = ListQAppSessionDataOutput$;
|
|
1905
|
-
exports.ListQApps$ = ListQApps$;
|
|
1906
704
|
exports.ListQAppsCommand = ListQAppsCommand;
|
|
1907
|
-
exports.ListQAppsInput$ = ListQAppsInput$;
|
|
1908
|
-
exports.ListQAppsOutput$ = ListQAppsOutput$;
|
|
1909
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1910
705
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1911
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1912
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1913
|
-
exports.PermissionInput$ = PermissionInput$;
|
|
1914
|
-
exports.PermissionOutput$ = PermissionOutput$;
|
|
1915
706
|
exports.PluginType = PluginType;
|
|
1916
|
-
exports.PredictAppDefinition$ = PredictAppDefinition$;
|
|
1917
|
-
exports.PredictQApp$ = PredictQApp$;
|
|
1918
707
|
exports.PredictQAppCommand = PredictQAppCommand;
|
|
1919
|
-
exports.PredictQAppInput$ = PredictQAppInput$;
|
|
1920
|
-
exports.PredictQAppInputOptions$ = PredictQAppInputOptions$;
|
|
1921
|
-
exports.PredictQAppOutput$ = PredictQAppOutput$;
|
|
1922
|
-
exports.PrincipalOutput$ = PrincipalOutput$;
|
|
1923
|
-
exports.QAppSessionData$ = QAppSessionData$;
|
|
1924
708
|
exports.QApps = QApps;
|
|
1925
709
|
exports.QAppsClient = QAppsClient;
|
|
1926
|
-
exports.QAppsServiceException = QAppsServiceException;
|
|
1927
|
-
exports.QAppsServiceException$ = QAppsServiceException$;
|
|
1928
|
-
exports.QPluginCard$ = QPluginCard$;
|
|
1929
|
-
exports.QPluginCardInput$ = QPluginCardInput$;
|
|
1930
|
-
exports.QQueryCard$ = QQueryCard$;
|
|
1931
|
-
exports.QQueryCardInput$ = QQueryCardInput$;
|
|
1932
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1933
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1934
710
|
exports.Sender = Sender;
|
|
1935
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1936
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1937
|
-
exports.SessionSharingConfiguration$ = SessionSharingConfiguration$;
|
|
1938
|
-
exports.StartQAppSession$ = StartQAppSession$;
|
|
1939
711
|
exports.StartQAppSessionCommand = StartQAppSessionCommand;
|
|
1940
|
-
exports.StartQAppSessionInput$ = StartQAppSessionInput$;
|
|
1941
|
-
exports.StartQAppSessionOutput$ = StartQAppSessionOutput$;
|
|
1942
|
-
exports.StopQAppSession$ = StopQAppSession$;
|
|
1943
712
|
exports.StopQAppSessionCommand = StopQAppSessionCommand;
|
|
1944
|
-
exports.StopQAppSessionInput$ = StopQAppSessionInput$;
|
|
1945
|
-
exports.Submission$ = Submission$;
|
|
1946
|
-
exports.SubmissionMutation$ = SubmissionMutation$;
|
|
1947
713
|
exports.SubmissionMutationKind = SubmissionMutationKind;
|
|
1948
|
-
exports.TagResource$ = TagResource$;
|
|
1949
714
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1950
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1951
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1952
|
-
exports.TextInputCard$ = TextInputCard$;
|
|
1953
|
-
exports.TextInputCardInput$ = TextInputCardInput$;
|
|
1954
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1955
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1956
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
1957
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
1958
|
-
exports.UntagResource$ = UntagResource$;
|
|
1959
715
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1960
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1961
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1962
|
-
exports.UpdateLibraryItem$ = UpdateLibraryItem$;
|
|
1963
716
|
exports.UpdateLibraryItemCommand = UpdateLibraryItemCommand;
|
|
1964
|
-
exports.UpdateLibraryItemInput$ = UpdateLibraryItemInput$;
|
|
1965
|
-
exports.UpdateLibraryItemMetadata$ = UpdateLibraryItemMetadata$;
|
|
1966
717
|
exports.UpdateLibraryItemMetadataCommand = UpdateLibraryItemMetadataCommand;
|
|
1967
|
-
exports.UpdateLibraryItemMetadataInput$ = UpdateLibraryItemMetadataInput$;
|
|
1968
|
-
exports.UpdateLibraryItemOutput$ = UpdateLibraryItemOutput$;
|
|
1969
|
-
exports.UpdateQApp$ = UpdateQApp$;
|
|
1970
718
|
exports.UpdateQAppCommand = UpdateQAppCommand;
|
|
1971
|
-
exports.UpdateQAppInput$ = UpdateQAppInput$;
|
|
1972
|
-
exports.UpdateQAppOutput$ = UpdateQAppOutput$;
|
|
1973
|
-
exports.UpdateQAppPermissions$ = UpdateQAppPermissions$;
|
|
1974
719
|
exports.UpdateQAppPermissionsCommand = UpdateQAppPermissionsCommand;
|
|
1975
|
-
exports.UpdateQAppPermissionsInput$ = UpdateQAppPermissionsInput$;
|
|
1976
|
-
exports.UpdateQAppPermissionsOutput$ = UpdateQAppPermissionsOutput$;
|
|
1977
|
-
exports.UpdateQAppSession$ = UpdateQAppSession$;
|
|
1978
720
|
exports.UpdateQAppSessionCommand = UpdateQAppSessionCommand;
|
|
1979
|
-
exports.UpdateQAppSessionInput$ = UpdateQAppSessionInput$;
|
|
1980
|
-
exports.UpdateQAppSessionMetadata$ = UpdateQAppSessionMetadata$;
|
|
1981
721
|
exports.UpdateQAppSessionMetadataCommand = UpdateQAppSessionMetadataCommand;
|
|
1982
|
-
exports.UpdateQAppSessionMetadataInput$ = UpdateQAppSessionMetadataInput$;
|
|
1983
|
-
exports.UpdateQAppSessionMetadataOutput$ = UpdateQAppSessionMetadataOutput$;
|
|
1984
|
-
exports.UpdateQAppSessionOutput$ = UpdateQAppSessionOutput$;
|
|
1985
|
-
exports.User$ = User$;
|
|
1986
|
-
exports.UserAppItem$ = UserAppItem$;
|
|
1987
722
|
exports.UserType = UserType;
|
|
1988
|
-
exports.ValidationException = ValidationException;
|
|
1989
|
-
exports.ValidationException$ = ValidationException$;
|
|
1990
723
|
exports.paginateListLibraryItems = paginateListLibraryItems;
|
|
1991
724
|
exports.paginateListQApps = paginateListQApps;
|
|
725
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
726
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
727
|
+
enumerable: true,
|
|
728
|
+
get: function () { return schemas_0[k]; }
|
|
729
|
+
});
|
|
730
|
+
});
|
|
731
|
+
Object.keys(errors).forEach(function (k) {
|
|
732
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
733
|
+
enumerable: true,
|
|
734
|
+
get: function () { return errors[k]; }
|
|
735
|
+
});
|
|
736
|
+
});
|