@@ -32,13 +32,23 @@ import {
32
32
CreateLibraryItemCommandInput ,
33
33
CreateLibraryItemCommandOutput ,
34
34
} from "./commands/CreateLibraryItemCommand" ;
35
+ import {
36
+ CreatePresignedUrlCommand ,
37
+ CreatePresignedUrlCommandInput ,
38
+ CreatePresignedUrlCommandOutput ,
39
+ } from "./commands/CreatePresignedUrlCommand" ;
35
40
import { CreateQAppCommand , CreateQAppCommandInput , CreateQAppCommandOutput } from "./commands/CreateQAppCommand" ;
36
41
import {
37
42
DeleteLibraryItemCommand ,
38
43
DeleteLibraryItemCommandInput ,
39
44
DeleteLibraryItemCommandOutput ,
40
45
} from "./commands/DeleteLibraryItemCommand" ;
41
46
import { DeleteQAppCommand , DeleteQAppCommandInput , DeleteQAppCommandOutput } from "./commands/DeleteQAppCommand" ;
47
+ import {
48
+ DescribeQAppPermissionsCommand ,
49
+ DescribeQAppPermissionsCommandInput ,
50
+ DescribeQAppPermissionsCommandOutput ,
51
+ } from "./commands/DescribeQAppPermissionsCommand" ;
42
52
import {
43
53
DisassociateLibraryItemReviewCommand ,
44
54
DisassociateLibraryItemReviewCommandInput ,
@@ -49,6 +59,11 @@ import {
49
59
DisassociateQAppFromUserCommandInput ,
50
60
DisassociateQAppFromUserCommandOutput ,
51
61
} from "./commands/DisassociateQAppFromUserCommand" ;
62
+ import {
63
+ ExportQAppSessionDataCommand ,
64
+ ExportQAppSessionDataCommandInput ,
65
+ ExportQAppSessionDataCommandOutput ,
66
+ } from "./commands/ExportQAppSessionDataCommand" ;
52
67
import {
53
68
GetLibraryItemCommand ,
54
69
GetLibraryItemCommandInput ,
@@ -60,6 +75,11 @@ import {
60
75
GetQAppSessionCommandInput ,
61
76
GetQAppSessionCommandOutput ,
62
77
} from "./commands/GetQAppSessionCommand" ;
78
+ import {
79
+ GetQAppSessionMetadataCommand ,
80
+ GetQAppSessionMetadataCommandInput ,
81
+ GetQAppSessionMetadataCommandOutput ,
82
+ } from "./commands/GetQAppSessionMetadataCommand" ;
63
83
import {
64
84
ImportDocumentCommand ,
65
85
ImportDocumentCommandInput ,
@@ -76,6 +96,11 @@ import {
76
96
ListLibraryItemsCommandOutput ,
77
97
} from "./commands/ListLibraryItemsCommand" ;
78
98
import { ListQAppsCommand , ListQAppsCommandInput , ListQAppsCommandOutput } from "./commands/ListQAppsCommand" ;
99
+ import {
100
+ ListQAppSessionDataCommand ,
101
+ ListQAppSessionDataCommandInput ,
102
+ ListQAppSessionDataCommandOutput ,
103
+ } from "./commands/ListQAppSessionDataCommand" ;
79
104
import {
80
105
ListTagsForResourceCommand ,
81
106
ListTagsForResourceCommandInput ,
@@ -109,11 +134,21 @@ import {
109
134
UpdateLibraryItemMetadataCommandOutput ,
110
135
} from "./commands/UpdateLibraryItemMetadataCommand" ;
111
136
import { UpdateQAppCommand , UpdateQAppCommandInput , UpdateQAppCommandOutput } from "./commands/UpdateQAppCommand" ;
137
+ import {
138
+ UpdateQAppPermissionsCommand ,
139
+ UpdateQAppPermissionsCommandInput ,
140
+ UpdateQAppPermissionsCommandOutput ,
141
+ } from "./commands/UpdateQAppPermissionsCommand" ;
112
142
import {
113
143
UpdateQAppSessionCommand ,
114
144
UpdateQAppSessionCommandInput ,
115
145
UpdateQAppSessionCommandOutput ,
116
146
} from "./commands/UpdateQAppSessionCommand" ;
147
+ import {
148
+ UpdateQAppSessionMetadataCommand ,
149
+ UpdateQAppSessionMetadataCommandInput ,
150
+ UpdateQAppSessionMetadataCommandOutput ,
151
+ } from "./commands/UpdateQAppSessionMetadataCommand" ;
117
152
import { QAppsClient , QAppsClientConfig } from "./QAppsClient" ;
118
153
119
154
const commands = {
@@ -123,18 +158,23 @@ const commands = {
123
158
BatchDeleteCategoryCommand,
124
159
BatchUpdateCategoryCommand,
125
160
CreateLibraryItemCommand,
161
+ CreatePresignedUrlCommand,
126
162
CreateQAppCommand,
127
163
DeleteLibraryItemCommand,
128
164
DeleteQAppCommand,
165
+ DescribeQAppPermissionsCommand,
129
166
DisassociateLibraryItemReviewCommand,
130
167
DisassociateQAppFromUserCommand,
168
+ ExportQAppSessionDataCommand,
131
169
GetLibraryItemCommand,
132
170
GetQAppCommand,
133
171
GetQAppSessionCommand,
172
+ GetQAppSessionMetadataCommand,
134
173
ImportDocumentCommand,
135
174
ListCategoriesCommand,
136
175
ListLibraryItemsCommand,
137
176
ListQAppsCommand,
177
+ ListQAppSessionDataCommand,
138
178
ListTagsForResourceCommand,
139
179
PredictQAppCommand,
140
180
StartQAppSessionCommand,
@@ -144,7 +184,9 @@ const commands = {
144
184
UpdateLibraryItemCommand,
145
185
UpdateLibraryItemMetadataCommand,
146
186
UpdateQAppCommand,
187
+ UpdateQAppPermissionsCommand,
147
188
UpdateQAppSessionCommand,
189
+ UpdateQAppSessionMetadataCommand,
148
190
} ;
149
191
150
192
export interface QApps {
@@ -250,6 +292,23 @@ export interface QApps {
250
292
cb : ( err : any , data ?: CreateLibraryItemCommandOutput ) => void
251
293
) : void ;
252
294
295
+ /**
296
+ * @see {@link CreatePresignedUrlCommand }
297
+ */
298
+ createPresignedUrl (
299
+ args : CreatePresignedUrlCommandInput ,
300
+ options ?: __HttpHandlerOptions
301
+ ) : Promise < CreatePresignedUrlCommandOutput > ;
302
+ createPresignedUrl (
303
+ args : CreatePresignedUrlCommandInput ,
304
+ cb : ( err : any , data ?: CreatePresignedUrlCommandOutput ) => void
305
+ ) : void ;
306
+ createPresignedUrl (
307
+ args : CreatePresignedUrlCommandInput ,
308
+ options : __HttpHandlerOptions ,
309
+ cb : ( err : any , data ?: CreatePresignedUrlCommandOutput ) => void
310
+ ) : void ;
311
+
253
312
/**
254
313
* @see {@link CreateQAppCommand }
255
314
*/
@@ -289,6 +348,23 @@ export interface QApps {
289
348
cb : ( err : any , data ?: DeleteQAppCommandOutput ) => void
290
349
) : void ;
291
350
351
+ /**
352
+ * @see {@link DescribeQAppPermissionsCommand }
353
+ */
354
+ describeQAppPermissions (
355
+ args : DescribeQAppPermissionsCommandInput ,
356
+ options ?: __HttpHandlerOptions
357
+ ) : Promise < DescribeQAppPermissionsCommandOutput > ;
358
+ describeQAppPermissions (
359
+ args : DescribeQAppPermissionsCommandInput ,
360
+ cb : ( err : any , data ?: DescribeQAppPermissionsCommandOutput ) => void
361
+ ) : void ;
362
+ describeQAppPermissions (
363
+ args : DescribeQAppPermissionsCommandInput ,
364
+ options : __HttpHandlerOptions ,
365
+ cb : ( err : any , data ?: DescribeQAppPermissionsCommandOutput ) => void
366
+ ) : void ;
367
+
292
368
/**
293
369
* @see {@link DisassociateLibraryItemReviewCommand }
294
370
*/
@@ -323,6 +399,23 @@ export interface QApps {
323
399
cb : ( err : any , data ?: DisassociateQAppFromUserCommandOutput ) => void
324
400
) : void ;
325
401
402
+ /**
403
+ * @see {@link ExportQAppSessionDataCommand }
404
+ */
405
+ exportQAppSessionData (
406
+ args : ExportQAppSessionDataCommandInput ,
407
+ options ?: __HttpHandlerOptions
408
+ ) : Promise < ExportQAppSessionDataCommandOutput > ;
409
+ exportQAppSessionData (
410
+ args : ExportQAppSessionDataCommandInput ,
411
+ cb : ( err : any , data ?: ExportQAppSessionDataCommandOutput ) => void
412
+ ) : void ;
413
+ exportQAppSessionData (
414
+ args : ExportQAppSessionDataCommandInput ,
415
+ options : __HttpHandlerOptions ,
416
+ cb : ( err : any , data ?: ExportQAppSessionDataCommandOutput ) => void
417
+ ) : void ;
418
+
326
419
/**
327
420
* @see {@link GetLibraryItemCommand }
328
421
*/
@@ -362,6 +455,23 @@ export interface QApps {
362
455
cb : ( err : any , data ?: GetQAppSessionCommandOutput ) => void
363
456
) : void ;
364
457
458
+ /**
459
+ * @see {@link GetQAppSessionMetadataCommand }
460
+ */
461
+ getQAppSessionMetadata (
462
+ args : GetQAppSessionMetadataCommandInput ,
463
+ options ?: __HttpHandlerOptions
464
+ ) : Promise < GetQAppSessionMetadataCommandOutput > ;
465
+ getQAppSessionMetadata (
466
+ args : GetQAppSessionMetadataCommandInput ,
467
+ cb : ( err : any , data ?: GetQAppSessionMetadataCommandOutput ) => void
468
+ ) : void ;
469
+ getQAppSessionMetadata (
470
+ args : GetQAppSessionMetadataCommandInput ,
471
+ options : __HttpHandlerOptions ,
472
+ cb : ( err : any , data ?: GetQAppSessionMetadataCommandOutput ) => void
473
+ ) : void ;
474
+
365
475
/**
366
476
* @see {@link ImportDocumentCommand }
367
477
*/
@@ -418,6 +528,23 @@ export interface QApps {
418
528
cb : ( err : any , data ?: ListQAppsCommandOutput ) => void
419
529
) : void ;
420
530
531
+ /**
532
+ * @see {@link ListQAppSessionDataCommand }
533
+ */
534
+ listQAppSessionData (
535
+ args : ListQAppSessionDataCommandInput ,
536
+ options ?: __HttpHandlerOptions
537
+ ) : Promise < ListQAppSessionDataCommandOutput > ;
538
+ listQAppSessionData (
539
+ args : ListQAppSessionDataCommandInput ,
540
+ cb : ( err : any , data ?: ListQAppSessionDataCommandOutput ) => void
541
+ ) : void ;
542
+ listQAppSessionData (
543
+ args : ListQAppSessionDataCommandInput ,
544
+ options : __HttpHandlerOptions ,
545
+ cb : ( err : any , data ?: ListQAppSessionDataCommandOutput ) => void
546
+ ) : void ;
547
+
421
548
/**
422
549
* @see {@link ListTagsForResourceCommand }
423
550
*/
@@ -544,6 +671,23 @@ export interface QApps {
544
671
cb : ( err : any , data ?: UpdateQAppCommandOutput ) => void
545
672
) : void ;
546
673
674
+ /**
675
+ * @see {@link UpdateQAppPermissionsCommand }
676
+ */
677
+ updateQAppPermissions (
678
+ args : UpdateQAppPermissionsCommandInput ,
679
+ options ?: __HttpHandlerOptions
680
+ ) : Promise < UpdateQAppPermissionsCommandOutput > ;
681
+ updateQAppPermissions (
682
+ args : UpdateQAppPermissionsCommandInput ,
683
+ cb : ( err : any , data ?: UpdateQAppPermissionsCommandOutput ) => void
684
+ ) : void ;
685
+ updateQAppPermissions (
686
+ args : UpdateQAppPermissionsCommandInput ,
687
+ options : __HttpHandlerOptions ,
688
+ cb : ( err : any , data ?: UpdateQAppPermissionsCommandOutput ) => void
689
+ ) : void ;
690
+
547
691
/**
548
692
* @see {@link UpdateQAppSessionCommand }
549
693
*/
@@ -560,6 +704,23 @@ export interface QApps {
560
704
options : __HttpHandlerOptions ,
561
705
cb : ( err : any , data ?: UpdateQAppSessionCommandOutput ) => void
562
706
) : void ;
707
+
708
+ /**
709
+ * @see {@link UpdateQAppSessionMetadataCommand }
710
+ */
711
+ updateQAppSessionMetadata (
712
+ args : UpdateQAppSessionMetadataCommandInput ,
713
+ options ?: __HttpHandlerOptions
714
+ ) : Promise < UpdateQAppSessionMetadataCommandOutput > ;
715
+ updateQAppSessionMetadata (
716
+ args : UpdateQAppSessionMetadataCommandInput ,
717
+ cb : ( err : any , data ?: UpdateQAppSessionMetadataCommandOutput ) => void
718
+ ) : void ;
719
+ updateQAppSessionMetadata (
720
+ args : UpdateQAppSessionMetadataCommandInput ,
721
+ options : __HttpHandlerOptions ,
722
+ cb : ( err : any , data ?: UpdateQAppSessionMetadataCommandOutput ) => void
723
+ ) : void ;
563
724
}
564
725
565
726
/**
0 commit comments