@aws-sdk/client-qapps 3.696.0 → 3.701.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/README.md +56 -0
- package/dist-cjs/QApps.js +14 -0
- package/dist-cjs/commands/CreatePresignedUrlCommand.js +26 -0
- package/dist-cjs/commands/DescribeQAppPermissionsCommand.js +26 -0
- package/dist-cjs/commands/ExportQAppSessionDataCommand.js +26 -0
- package/dist-cjs/commands/GetQAppSessionMetadataCommand.js +26 -0
- package/dist-cjs/commands/ListQAppSessionDataCommand.js +26 -0
- package/dist-cjs/commands/UpdateQAppPermissionsCommand.js +26 -0
- package/dist-cjs/commands/UpdateQAppSessionMetadataCommand.js +26 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +24 -1
- package/dist-cjs/protocols/Aws_restJson1.js +352 -3
- package/dist-es/QApps.js +14 -0
- package/dist-es/commands/CreatePresignedUrlCommand.js +22 -0
- package/dist-es/commands/DescribeQAppPermissionsCommand.js +22 -0
- package/dist-es/commands/ExportQAppSessionDataCommand.js +22 -0
- package/dist-es/commands/GetQAppSessionMetadataCommand.js +22 -0
- package/dist-es/commands/ListQAppSessionDataCommand.js +22 -0
- package/dist-es/commands/UpdateQAppPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateQAppSessionMetadataCommand.js +22 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +23 -0
- package/dist-es/protocols/Aws_restJson1.js +336 -1
- package/dist-types/QApps.d.ts +49 -0
- package/dist-types/QAppsClient.d.ts +9 -2
- package/dist-types/commands/CreatePresignedUrlCommand.d.ts +102 -0
- package/dist-types/commands/CreateQAppCommand.d.ts +13 -4
- package/dist-types/commands/DescribeQAppPermissionsCommand.d.ts +102 -0
- package/dist-types/commands/ExportQAppSessionDataCommand.d.ts +101 -0
- package/dist-types/commands/GetQAppCommand.d.ts +20 -4
- package/dist-types/commands/GetQAppSessionCommand.d.ts +13 -2
- package/dist-types/commands/GetQAppSessionMetadataCommand.d.ts +103 -0
- package/dist-types/commands/ListQAppSessionDataCommand.d.ts +108 -0
- package/dist-types/commands/PredictQAppCommand.d.ts +13 -4
- package/dist-types/commands/StartQAppSessionCommand.d.ts +5 -0
- package/dist-types/commands/UpdateQAppCommand.d.ts +13 -4
- package/dist-types/commands/UpdateQAppPermissionsCommand.d.ts +114 -0
- package/dist-types/commands/UpdateQAppSessionCommand.d.ts +4 -0
- package/dist-types/commands/UpdateQAppSessionMetadataCommand.d.ts +108 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +704 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/QApps.d.ts +119 -0
- package/dist-types/ts3.4/QAppsClient.d.ts +44 -2
- package/dist-types/ts3.4/commands/CreatePresignedUrlCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeQAppPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportQAppSessionDataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetQAppSessionMetadataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListQAppSessionDataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateQAppPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateQAppSessionMetadataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +202 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +4 -4
|
@@ -6,18 +6,23 @@ import { BatchCreateCategoryCommandInput, BatchCreateCategoryCommandOutput } fro
|
|
|
6
6
|
import { BatchDeleteCategoryCommandInput, BatchDeleteCategoryCommandOutput } from "../commands/BatchDeleteCategoryCommand";
|
|
7
7
|
import { BatchUpdateCategoryCommandInput, BatchUpdateCategoryCommandOutput } from "../commands/BatchUpdateCategoryCommand";
|
|
8
8
|
import { CreateLibraryItemCommandInput, CreateLibraryItemCommandOutput } from "../commands/CreateLibraryItemCommand";
|
|
9
|
+
import { CreatePresignedUrlCommandInput, CreatePresignedUrlCommandOutput } from "../commands/CreatePresignedUrlCommand";
|
|
9
10
|
import { CreateQAppCommandInput, CreateQAppCommandOutput } from "../commands/CreateQAppCommand";
|
|
10
11
|
import { DeleteLibraryItemCommandInput, DeleteLibraryItemCommandOutput } from "../commands/DeleteLibraryItemCommand";
|
|
11
12
|
import { DeleteQAppCommandInput, DeleteQAppCommandOutput } from "../commands/DeleteQAppCommand";
|
|
13
|
+
import { DescribeQAppPermissionsCommandInput, DescribeQAppPermissionsCommandOutput } from "../commands/DescribeQAppPermissionsCommand";
|
|
12
14
|
import { DisassociateLibraryItemReviewCommandInput, DisassociateLibraryItemReviewCommandOutput } from "../commands/DisassociateLibraryItemReviewCommand";
|
|
13
15
|
import { DisassociateQAppFromUserCommandInput, DisassociateQAppFromUserCommandOutput } from "../commands/DisassociateQAppFromUserCommand";
|
|
16
|
+
import { ExportQAppSessionDataCommandInput, ExportQAppSessionDataCommandOutput } from "../commands/ExportQAppSessionDataCommand";
|
|
14
17
|
import { GetLibraryItemCommandInput, GetLibraryItemCommandOutput } from "../commands/GetLibraryItemCommand";
|
|
15
18
|
import { GetQAppCommandInput, GetQAppCommandOutput } from "../commands/GetQAppCommand";
|
|
16
19
|
import { GetQAppSessionCommandInput, GetQAppSessionCommandOutput } from "../commands/GetQAppSessionCommand";
|
|
20
|
+
import { GetQAppSessionMetadataCommandInput, GetQAppSessionMetadataCommandOutput } from "../commands/GetQAppSessionMetadataCommand";
|
|
17
21
|
import { ImportDocumentCommandInput, ImportDocumentCommandOutput } from "../commands/ImportDocumentCommand";
|
|
18
22
|
import { ListCategoriesCommandInput, ListCategoriesCommandOutput } from "../commands/ListCategoriesCommand";
|
|
19
23
|
import { ListLibraryItemsCommandInput, ListLibraryItemsCommandOutput } from "../commands/ListLibraryItemsCommand";
|
|
20
24
|
import { ListQAppsCommandInput, ListQAppsCommandOutput } from "../commands/ListQAppsCommand";
|
|
25
|
+
import { ListQAppSessionDataCommandInput, ListQAppSessionDataCommandOutput } from "../commands/ListQAppSessionDataCommand";
|
|
21
26
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
27
|
import { PredictQAppCommandInput, PredictQAppCommandOutput } from "../commands/PredictQAppCommand";
|
|
23
28
|
import { StartQAppSessionCommandInput, StartQAppSessionCommandOutput } from "../commands/StartQAppSessionCommand";
|
|
@@ -27,7 +32,9 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
27
32
|
import { UpdateLibraryItemCommandInput, UpdateLibraryItemCommandOutput } from "../commands/UpdateLibraryItemCommand";
|
|
28
33
|
import { UpdateLibraryItemMetadataCommandInput, UpdateLibraryItemMetadataCommandOutput } from "../commands/UpdateLibraryItemMetadataCommand";
|
|
29
34
|
import { UpdateQAppCommandInput, UpdateQAppCommandOutput } from "../commands/UpdateQAppCommand";
|
|
35
|
+
import { UpdateQAppPermissionsCommandInput, UpdateQAppPermissionsCommandOutput } from "../commands/UpdateQAppPermissionsCommand";
|
|
30
36
|
import { UpdateQAppSessionCommandInput, UpdateQAppSessionCommandOutput } from "../commands/UpdateQAppSessionCommand";
|
|
37
|
+
import { UpdateQAppSessionMetadataCommandInput, UpdateQAppSessionMetadataCommandOutput } from "../commands/UpdateQAppSessionMetadataCommand";
|
|
31
38
|
/**
|
|
32
39
|
* serializeAws_restJson1AssociateLibraryItemReviewCommand
|
|
33
40
|
*/
|
|
@@ -52,6 +59,10 @@ export declare const se_BatchUpdateCategoryCommand: (input: BatchUpdateCategoryC
|
|
|
52
59
|
* serializeAws_restJson1CreateLibraryItemCommand
|
|
53
60
|
*/
|
|
54
61
|
export declare const se_CreateLibraryItemCommand: (input: CreateLibraryItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_restJson1CreatePresignedUrlCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_CreatePresignedUrlCommand: (input: CreatePresignedUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
66
|
/**
|
|
56
67
|
* serializeAws_restJson1CreateQAppCommand
|
|
57
68
|
*/
|
|
@@ -64,6 +75,10 @@ export declare const se_DeleteLibraryItemCommand: (input: DeleteLibraryItemComma
|
|
|
64
75
|
* serializeAws_restJson1DeleteQAppCommand
|
|
65
76
|
*/
|
|
66
77
|
export declare const se_DeleteQAppCommand: (input: DeleteQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* serializeAws_restJson1DescribeQAppPermissionsCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const se_DescribeQAppPermissionsCommand: (input: DescribeQAppPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
82
|
/**
|
|
68
83
|
* serializeAws_restJson1DisassociateLibraryItemReviewCommand
|
|
69
84
|
*/
|
|
@@ -72,6 +87,10 @@ export declare const se_DisassociateLibraryItemReviewCommand: (input: Disassocia
|
|
|
72
87
|
* serializeAws_restJson1DisassociateQAppFromUserCommand
|
|
73
88
|
*/
|
|
74
89
|
export declare const se_DisassociateQAppFromUserCommand: (input: DisassociateQAppFromUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_restJson1ExportQAppSessionDataCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_ExportQAppSessionDataCommand: (input: ExportQAppSessionDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
94
|
/**
|
|
76
95
|
* serializeAws_restJson1GetLibraryItemCommand
|
|
77
96
|
*/
|
|
@@ -84,6 +103,10 @@ export declare const se_GetQAppCommand: (input: GetQAppCommandInput, context: __
|
|
|
84
103
|
* serializeAws_restJson1GetQAppSessionCommand
|
|
85
104
|
*/
|
|
86
105
|
export declare const se_GetQAppSessionCommand: (input: GetQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* serializeAws_restJson1GetQAppSessionMetadataCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const se_GetQAppSessionMetadataCommand: (input: GetQAppSessionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
110
|
/**
|
|
88
111
|
* serializeAws_restJson1ImportDocumentCommand
|
|
89
112
|
*/
|
|
@@ -100,6 +123,10 @@ export declare const se_ListLibraryItemsCommand: (input: ListLibraryItemsCommand
|
|
|
100
123
|
* serializeAws_restJson1ListQAppsCommand
|
|
101
124
|
*/
|
|
102
125
|
export declare const se_ListQAppsCommand: (input: ListQAppsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
+
/**
|
|
127
|
+
* serializeAws_restJson1ListQAppSessionDataCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const se_ListQAppSessionDataCommand: (input: ListQAppSessionDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
130
|
/**
|
|
104
131
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
105
132
|
*/
|
|
@@ -136,10 +163,18 @@ export declare const se_UpdateLibraryItemMetadataCommand: (input: UpdateLibraryI
|
|
|
136
163
|
* serializeAws_restJson1UpdateQAppCommand
|
|
137
164
|
*/
|
|
138
165
|
export declare const se_UpdateQAppCommand: (input: UpdateQAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
|
+
/**
|
|
167
|
+
* serializeAws_restJson1UpdateQAppPermissionsCommand
|
|
168
|
+
*/
|
|
169
|
+
export declare const se_UpdateQAppPermissionsCommand: (input: UpdateQAppPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
170
|
/**
|
|
140
171
|
* serializeAws_restJson1UpdateQAppSessionCommand
|
|
141
172
|
*/
|
|
142
173
|
export declare const se_UpdateQAppSessionCommand: (input: UpdateQAppSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
174
|
+
/**
|
|
175
|
+
* serializeAws_restJson1UpdateQAppSessionMetadataCommand
|
|
176
|
+
*/
|
|
177
|
+
export declare const se_UpdateQAppSessionMetadataCommand: (input: UpdateQAppSessionMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
178
|
/**
|
|
144
179
|
* deserializeAws_restJson1AssociateLibraryItemReviewCommand
|
|
145
180
|
*/
|
|
@@ -164,6 +199,10 @@ export declare const de_BatchUpdateCategoryCommand: (output: __HttpResponse, con
|
|
|
164
199
|
* deserializeAws_restJson1CreateLibraryItemCommand
|
|
165
200
|
*/
|
|
166
201
|
export declare const de_CreateLibraryItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLibraryItemCommandOutput>;
|
|
202
|
+
/**
|
|
203
|
+
* deserializeAws_restJson1CreatePresignedUrlCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const de_CreatePresignedUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePresignedUrlCommandOutput>;
|
|
167
206
|
/**
|
|
168
207
|
* deserializeAws_restJson1CreateQAppCommand
|
|
169
208
|
*/
|
|
@@ -176,6 +215,10 @@ export declare const de_DeleteLibraryItemCommand: (output: __HttpResponse, conte
|
|
|
176
215
|
* deserializeAws_restJson1DeleteQAppCommand
|
|
177
216
|
*/
|
|
178
217
|
export declare const de_DeleteQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQAppCommandOutput>;
|
|
218
|
+
/**
|
|
219
|
+
* deserializeAws_restJson1DescribeQAppPermissionsCommand
|
|
220
|
+
*/
|
|
221
|
+
export declare const de_DescribeQAppPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeQAppPermissionsCommandOutput>;
|
|
179
222
|
/**
|
|
180
223
|
* deserializeAws_restJson1DisassociateLibraryItemReviewCommand
|
|
181
224
|
*/
|
|
@@ -184,6 +227,10 @@ export declare const de_DisassociateLibraryItemReviewCommand: (output: __HttpRes
|
|
|
184
227
|
* deserializeAws_restJson1DisassociateQAppFromUserCommand
|
|
185
228
|
*/
|
|
186
229
|
export declare const de_DisassociateQAppFromUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateQAppFromUserCommandOutput>;
|
|
230
|
+
/**
|
|
231
|
+
* deserializeAws_restJson1ExportQAppSessionDataCommand
|
|
232
|
+
*/
|
|
233
|
+
export declare const de_ExportQAppSessionDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportQAppSessionDataCommandOutput>;
|
|
187
234
|
/**
|
|
188
235
|
* deserializeAws_restJson1GetLibraryItemCommand
|
|
189
236
|
*/
|
|
@@ -196,6 +243,10 @@ export declare const de_GetQAppCommand: (output: __HttpResponse, context: __Serd
|
|
|
196
243
|
* deserializeAws_restJson1GetQAppSessionCommand
|
|
197
244
|
*/
|
|
198
245
|
export declare const de_GetQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQAppSessionCommandOutput>;
|
|
246
|
+
/**
|
|
247
|
+
* deserializeAws_restJson1GetQAppSessionMetadataCommand
|
|
248
|
+
*/
|
|
249
|
+
export declare const de_GetQAppSessionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQAppSessionMetadataCommandOutput>;
|
|
199
250
|
/**
|
|
200
251
|
* deserializeAws_restJson1ImportDocumentCommand
|
|
201
252
|
*/
|
|
@@ -212,6 +263,10 @@ export declare const de_ListLibraryItemsCommand: (output: __HttpResponse, contex
|
|
|
212
263
|
* deserializeAws_restJson1ListQAppsCommand
|
|
213
264
|
*/
|
|
214
265
|
export declare const de_ListQAppsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQAppsCommandOutput>;
|
|
266
|
+
/**
|
|
267
|
+
* deserializeAws_restJson1ListQAppSessionDataCommand
|
|
268
|
+
*/
|
|
269
|
+
export declare const de_ListQAppSessionDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQAppSessionDataCommandOutput>;
|
|
215
270
|
/**
|
|
216
271
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
217
272
|
*/
|
|
@@ -248,7 +303,15 @@ export declare const de_UpdateLibraryItemMetadataCommand: (output: __HttpRespons
|
|
|
248
303
|
* deserializeAws_restJson1UpdateQAppCommand
|
|
249
304
|
*/
|
|
250
305
|
export declare const de_UpdateQAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* deserializeAws_restJson1UpdateQAppPermissionsCommand
|
|
308
|
+
*/
|
|
309
|
+
export declare const de_UpdateQAppPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppPermissionsCommandOutput>;
|
|
251
310
|
/**
|
|
252
311
|
* deserializeAws_restJson1UpdateQAppSessionCommand
|
|
253
312
|
*/
|
|
254
313
|
export declare const de_UpdateQAppSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppSessionCommandOutput>;
|
|
314
|
+
/**
|
|
315
|
+
* deserializeAws_restJson1UpdateQAppSessionMetadataCommand
|
|
316
|
+
*/
|
|
317
|
+
export declare const de_UpdateQAppSessionMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateQAppSessionMetadataCommandOutput>;
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateLibraryItemCommandInput,
|
|
24
24
|
CreateLibraryItemCommandOutput,
|
|
25
25
|
} from "./commands/CreateLibraryItemCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreatePresignedUrlCommandInput,
|
|
28
|
+
CreatePresignedUrlCommandOutput,
|
|
29
|
+
} from "./commands/CreatePresignedUrlCommand";
|
|
26
30
|
import {
|
|
27
31
|
CreateQAppCommandInput,
|
|
28
32
|
CreateQAppCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DeleteQAppCommandInput,
|
|
36
40
|
DeleteQAppCommandOutput,
|
|
37
41
|
} from "./commands/DeleteQAppCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeQAppPermissionsCommandInput,
|
|
44
|
+
DescribeQAppPermissionsCommandOutput,
|
|
45
|
+
} from "./commands/DescribeQAppPermissionsCommand";
|
|
38
46
|
import {
|
|
39
47
|
DisassociateLibraryItemReviewCommandInput,
|
|
40
48
|
DisassociateLibraryItemReviewCommandOutput,
|
|
@@ -43,6 +51,10 @@ import {
|
|
|
43
51
|
DisassociateQAppFromUserCommandInput,
|
|
44
52
|
DisassociateQAppFromUserCommandOutput,
|
|
45
53
|
} from "./commands/DisassociateQAppFromUserCommand";
|
|
54
|
+
import {
|
|
55
|
+
ExportQAppSessionDataCommandInput,
|
|
56
|
+
ExportQAppSessionDataCommandOutput,
|
|
57
|
+
} from "./commands/ExportQAppSessionDataCommand";
|
|
46
58
|
import {
|
|
47
59
|
GetLibraryItemCommandInput,
|
|
48
60
|
GetLibraryItemCommandOutput,
|
|
@@ -55,6 +67,10 @@ import {
|
|
|
55
67
|
GetQAppSessionCommandInput,
|
|
56
68
|
GetQAppSessionCommandOutput,
|
|
57
69
|
} from "./commands/GetQAppSessionCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetQAppSessionMetadataCommandInput,
|
|
72
|
+
GetQAppSessionMetadataCommandOutput,
|
|
73
|
+
} from "./commands/GetQAppSessionMetadataCommand";
|
|
58
74
|
import {
|
|
59
75
|
ImportDocumentCommandInput,
|
|
60
76
|
ImportDocumentCommandOutput,
|
|
@@ -71,6 +87,10 @@ import {
|
|
|
71
87
|
ListQAppsCommandInput,
|
|
72
88
|
ListQAppsCommandOutput,
|
|
73
89
|
} from "./commands/ListQAppsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListQAppSessionDataCommandInput,
|
|
92
|
+
ListQAppSessionDataCommandOutput,
|
|
93
|
+
} from "./commands/ListQAppSessionDataCommand";
|
|
74
94
|
import {
|
|
75
95
|
ListTagsForResourceCommandInput,
|
|
76
96
|
ListTagsForResourceCommandOutput,
|
|
@@ -107,10 +127,18 @@ import {
|
|
|
107
127
|
UpdateQAppCommandInput,
|
|
108
128
|
UpdateQAppCommandOutput,
|
|
109
129
|
} from "./commands/UpdateQAppCommand";
|
|
130
|
+
import {
|
|
131
|
+
UpdateQAppPermissionsCommandInput,
|
|
132
|
+
UpdateQAppPermissionsCommandOutput,
|
|
133
|
+
} from "./commands/UpdateQAppPermissionsCommand";
|
|
110
134
|
import {
|
|
111
135
|
UpdateQAppSessionCommandInput,
|
|
112
136
|
UpdateQAppSessionCommandOutput,
|
|
113
137
|
} from "./commands/UpdateQAppSessionCommand";
|
|
138
|
+
import {
|
|
139
|
+
UpdateQAppSessionMetadataCommandInput,
|
|
140
|
+
UpdateQAppSessionMetadataCommandOutput,
|
|
141
|
+
} from "./commands/UpdateQAppSessionMetadataCommand";
|
|
114
142
|
import { QAppsClient } from "./QAppsClient";
|
|
115
143
|
export interface QApps {
|
|
116
144
|
associateLibraryItemReview(
|
|
@@ -191,6 +219,19 @@ export interface QApps {
|
|
|
191
219
|
options: __HttpHandlerOptions,
|
|
192
220
|
cb: (err: any, data?: CreateLibraryItemCommandOutput) => void
|
|
193
221
|
): void;
|
|
222
|
+
createPresignedUrl(
|
|
223
|
+
args: CreatePresignedUrlCommandInput,
|
|
224
|
+
options?: __HttpHandlerOptions
|
|
225
|
+
): Promise<CreatePresignedUrlCommandOutput>;
|
|
226
|
+
createPresignedUrl(
|
|
227
|
+
args: CreatePresignedUrlCommandInput,
|
|
228
|
+
cb: (err: any, data?: CreatePresignedUrlCommandOutput) => void
|
|
229
|
+
): void;
|
|
230
|
+
createPresignedUrl(
|
|
231
|
+
args: CreatePresignedUrlCommandInput,
|
|
232
|
+
options: __HttpHandlerOptions,
|
|
233
|
+
cb: (err: any, data?: CreatePresignedUrlCommandOutput) => void
|
|
234
|
+
): void;
|
|
194
235
|
createQApp(
|
|
195
236
|
args: CreateQAppCommandInput,
|
|
196
237
|
options?: __HttpHandlerOptions
|
|
@@ -230,6 +271,19 @@ export interface QApps {
|
|
|
230
271
|
options: __HttpHandlerOptions,
|
|
231
272
|
cb: (err: any, data?: DeleteQAppCommandOutput) => void
|
|
232
273
|
): void;
|
|
274
|
+
describeQAppPermissions(
|
|
275
|
+
args: DescribeQAppPermissionsCommandInput,
|
|
276
|
+
options?: __HttpHandlerOptions
|
|
277
|
+
): Promise<DescribeQAppPermissionsCommandOutput>;
|
|
278
|
+
describeQAppPermissions(
|
|
279
|
+
args: DescribeQAppPermissionsCommandInput,
|
|
280
|
+
cb: (err: any, data?: DescribeQAppPermissionsCommandOutput) => void
|
|
281
|
+
): void;
|
|
282
|
+
describeQAppPermissions(
|
|
283
|
+
args: DescribeQAppPermissionsCommandInput,
|
|
284
|
+
options: __HttpHandlerOptions,
|
|
285
|
+
cb: (err: any, data?: DescribeQAppPermissionsCommandOutput) => void
|
|
286
|
+
): void;
|
|
233
287
|
disassociateLibraryItemReview(
|
|
234
288
|
args: DisassociateLibraryItemReviewCommandInput,
|
|
235
289
|
options?: __HttpHandlerOptions
|
|
@@ -256,6 +310,19 @@ export interface QApps {
|
|
|
256
310
|
options: __HttpHandlerOptions,
|
|
257
311
|
cb: (err: any, data?: DisassociateQAppFromUserCommandOutput) => void
|
|
258
312
|
): void;
|
|
313
|
+
exportQAppSessionData(
|
|
314
|
+
args: ExportQAppSessionDataCommandInput,
|
|
315
|
+
options?: __HttpHandlerOptions
|
|
316
|
+
): Promise<ExportQAppSessionDataCommandOutput>;
|
|
317
|
+
exportQAppSessionData(
|
|
318
|
+
args: ExportQAppSessionDataCommandInput,
|
|
319
|
+
cb: (err: any, data?: ExportQAppSessionDataCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
exportQAppSessionData(
|
|
322
|
+
args: ExportQAppSessionDataCommandInput,
|
|
323
|
+
options: __HttpHandlerOptions,
|
|
324
|
+
cb: (err: any, data?: ExportQAppSessionDataCommandOutput) => void
|
|
325
|
+
): void;
|
|
259
326
|
getLibraryItem(
|
|
260
327
|
args: GetLibraryItemCommandInput,
|
|
261
328
|
options?: __HttpHandlerOptions
|
|
@@ -295,6 +362,19 @@ export interface QApps {
|
|
|
295
362
|
options: __HttpHandlerOptions,
|
|
296
363
|
cb: (err: any, data?: GetQAppSessionCommandOutput) => void
|
|
297
364
|
): void;
|
|
365
|
+
getQAppSessionMetadata(
|
|
366
|
+
args: GetQAppSessionMetadataCommandInput,
|
|
367
|
+
options?: __HttpHandlerOptions
|
|
368
|
+
): Promise<GetQAppSessionMetadataCommandOutput>;
|
|
369
|
+
getQAppSessionMetadata(
|
|
370
|
+
args: GetQAppSessionMetadataCommandInput,
|
|
371
|
+
cb: (err: any, data?: GetQAppSessionMetadataCommandOutput) => void
|
|
372
|
+
): void;
|
|
373
|
+
getQAppSessionMetadata(
|
|
374
|
+
args: GetQAppSessionMetadataCommandInput,
|
|
375
|
+
options: __HttpHandlerOptions,
|
|
376
|
+
cb: (err: any, data?: GetQAppSessionMetadataCommandOutput) => void
|
|
377
|
+
): void;
|
|
298
378
|
importDocument(
|
|
299
379
|
args: ImportDocumentCommandInput,
|
|
300
380
|
options?: __HttpHandlerOptions
|
|
@@ -347,6 +427,19 @@ export interface QApps {
|
|
|
347
427
|
options: __HttpHandlerOptions,
|
|
348
428
|
cb: (err: any, data?: ListQAppsCommandOutput) => void
|
|
349
429
|
): void;
|
|
430
|
+
listQAppSessionData(
|
|
431
|
+
args: ListQAppSessionDataCommandInput,
|
|
432
|
+
options?: __HttpHandlerOptions
|
|
433
|
+
): Promise<ListQAppSessionDataCommandOutput>;
|
|
434
|
+
listQAppSessionData(
|
|
435
|
+
args: ListQAppSessionDataCommandInput,
|
|
436
|
+
cb: (err: any, data?: ListQAppSessionDataCommandOutput) => void
|
|
437
|
+
): void;
|
|
438
|
+
listQAppSessionData(
|
|
439
|
+
args: ListQAppSessionDataCommandInput,
|
|
440
|
+
options: __HttpHandlerOptions,
|
|
441
|
+
cb: (err: any, data?: ListQAppSessionDataCommandOutput) => void
|
|
442
|
+
): void;
|
|
350
443
|
listTagsForResource(
|
|
351
444
|
args: ListTagsForResourceCommandInput,
|
|
352
445
|
options?: __HttpHandlerOptions
|
|
@@ -464,6 +557,19 @@ export interface QApps {
|
|
|
464
557
|
options: __HttpHandlerOptions,
|
|
465
558
|
cb: (err: any, data?: UpdateQAppCommandOutput) => void
|
|
466
559
|
): void;
|
|
560
|
+
updateQAppPermissions(
|
|
561
|
+
args: UpdateQAppPermissionsCommandInput,
|
|
562
|
+
options?: __HttpHandlerOptions
|
|
563
|
+
): Promise<UpdateQAppPermissionsCommandOutput>;
|
|
564
|
+
updateQAppPermissions(
|
|
565
|
+
args: UpdateQAppPermissionsCommandInput,
|
|
566
|
+
cb: (err: any, data?: UpdateQAppPermissionsCommandOutput) => void
|
|
567
|
+
): void;
|
|
568
|
+
updateQAppPermissions(
|
|
569
|
+
args: UpdateQAppPermissionsCommandInput,
|
|
570
|
+
options: __HttpHandlerOptions,
|
|
571
|
+
cb: (err: any, data?: UpdateQAppPermissionsCommandOutput) => void
|
|
572
|
+
): void;
|
|
467
573
|
updateQAppSession(
|
|
468
574
|
args: UpdateQAppSessionCommandInput,
|
|
469
575
|
options?: __HttpHandlerOptions
|
|
@@ -477,5 +583,18 @@ export interface QApps {
|
|
|
477
583
|
options: __HttpHandlerOptions,
|
|
478
584
|
cb: (err: any, data?: UpdateQAppSessionCommandOutput) => void
|
|
479
585
|
): void;
|
|
586
|
+
updateQAppSessionMetadata(
|
|
587
|
+
args: UpdateQAppSessionMetadataCommandInput,
|
|
588
|
+
options?: __HttpHandlerOptions
|
|
589
|
+
): Promise<UpdateQAppSessionMetadataCommandOutput>;
|
|
590
|
+
updateQAppSessionMetadata(
|
|
591
|
+
args: UpdateQAppSessionMetadataCommandInput,
|
|
592
|
+
cb: (err: any, data?: UpdateQAppSessionMetadataCommandOutput) => void
|
|
593
|
+
): void;
|
|
594
|
+
updateQAppSessionMetadata(
|
|
595
|
+
args: UpdateQAppSessionMetadataCommandInput,
|
|
596
|
+
options: __HttpHandlerOptions,
|
|
597
|
+
cb: (err: any, data?: UpdateQAppSessionMetadataCommandOutput) => void
|
|
598
|
+
): void;
|
|
480
599
|
}
|
|
481
600
|
export declare class QApps extends QAppsClient implements QApps {}
|
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreateLibraryItemCommandInput,
|
|
70
70
|
CreateLibraryItemCommandOutput,
|
|
71
71
|
} from "./commands/CreateLibraryItemCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreatePresignedUrlCommandInput,
|
|
74
|
+
CreatePresignedUrlCommandOutput,
|
|
75
|
+
} from "./commands/CreatePresignedUrlCommand";
|
|
72
76
|
import {
|
|
73
77
|
CreateQAppCommandInput,
|
|
74
78
|
CreateQAppCommandOutput,
|
|
@@ -81,6 +85,10 @@ import {
|
|
|
81
85
|
DeleteQAppCommandInput,
|
|
82
86
|
DeleteQAppCommandOutput,
|
|
83
87
|
} from "./commands/DeleteQAppCommand";
|
|
88
|
+
import {
|
|
89
|
+
DescribeQAppPermissionsCommandInput,
|
|
90
|
+
DescribeQAppPermissionsCommandOutput,
|
|
91
|
+
} from "./commands/DescribeQAppPermissionsCommand";
|
|
84
92
|
import {
|
|
85
93
|
DisassociateLibraryItemReviewCommandInput,
|
|
86
94
|
DisassociateLibraryItemReviewCommandOutput,
|
|
@@ -89,6 +97,10 @@ import {
|
|
|
89
97
|
DisassociateQAppFromUserCommandInput,
|
|
90
98
|
DisassociateQAppFromUserCommandOutput,
|
|
91
99
|
} from "./commands/DisassociateQAppFromUserCommand";
|
|
100
|
+
import {
|
|
101
|
+
ExportQAppSessionDataCommandInput,
|
|
102
|
+
ExportQAppSessionDataCommandOutput,
|
|
103
|
+
} from "./commands/ExportQAppSessionDataCommand";
|
|
92
104
|
import {
|
|
93
105
|
GetLibraryItemCommandInput,
|
|
94
106
|
GetLibraryItemCommandOutput,
|
|
@@ -101,6 +113,10 @@ import {
|
|
|
101
113
|
GetQAppSessionCommandInput,
|
|
102
114
|
GetQAppSessionCommandOutput,
|
|
103
115
|
} from "./commands/GetQAppSessionCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetQAppSessionMetadataCommandInput,
|
|
118
|
+
GetQAppSessionMetadataCommandOutput,
|
|
119
|
+
} from "./commands/GetQAppSessionMetadataCommand";
|
|
104
120
|
import {
|
|
105
121
|
ImportDocumentCommandInput,
|
|
106
122
|
ImportDocumentCommandOutput,
|
|
@@ -117,6 +133,10 @@ import {
|
|
|
117
133
|
ListQAppsCommandInput,
|
|
118
134
|
ListQAppsCommandOutput,
|
|
119
135
|
} from "./commands/ListQAppsCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListQAppSessionDataCommandInput,
|
|
138
|
+
ListQAppSessionDataCommandOutput,
|
|
139
|
+
} from "./commands/ListQAppSessionDataCommand";
|
|
120
140
|
import {
|
|
121
141
|
ListTagsForResourceCommandInput,
|
|
122
142
|
ListTagsForResourceCommandOutput,
|
|
@@ -153,10 +173,18 @@ import {
|
|
|
153
173
|
UpdateQAppCommandInput,
|
|
154
174
|
UpdateQAppCommandOutput,
|
|
155
175
|
} from "./commands/UpdateQAppCommand";
|
|
176
|
+
import {
|
|
177
|
+
UpdateQAppPermissionsCommandInput,
|
|
178
|
+
UpdateQAppPermissionsCommandOutput,
|
|
179
|
+
} from "./commands/UpdateQAppPermissionsCommand";
|
|
156
180
|
import {
|
|
157
181
|
UpdateQAppSessionCommandInput,
|
|
158
182
|
UpdateQAppSessionCommandOutput,
|
|
159
183
|
} from "./commands/UpdateQAppSessionCommand";
|
|
184
|
+
import {
|
|
185
|
+
UpdateQAppSessionMetadataCommandInput,
|
|
186
|
+
UpdateQAppSessionMetadataCommandOutput,
|
|
187
|
+
} from "./commands/UpdateQAppSessionMetadataCommand";
|
|
160
188
|
import {
|
|
161
189
|
ClientInputEndpointParameters,
|
|
162
190
|
ClientResolvedEndpointParameters,
|
|
@@ -171,17 +199,22 @@ export type ServiceInputTypes =
|
|
|
171
199
|
| BatchDeleteCategoryCommandInput
|
|
172
200
|
| BatchUpdateCategoryCommandInput
|
|
173
201
|
| CreateLibraryItemCommandInput
|
|
202
|
+
| CreatePresignedUrlCommandInput
|
|
174
203
|
| CreateQAppCommandInput
|
|
175
204
|
| DeleteLibraryItemCommandInput
|
|
176
205
|
| DeleteQAppCommandInput
|
|
206
|
+
| DescribeQAppPermissionsCommandInput
|
|
177
207
|
| DisassociateLibraryItemReviewCommandInput
|
|
178
208
|
| DisassociateQAppFromUserCommandInput
|
|
209
|
+
| ExportQAppSessionDataCommandInput
|
|
179
210
|
| GetLibraryItemCommandInput
|
|
180
211
|
| GetQAppCommandInput
|
|
181
212
|
| GetQAppSessionCommandInput
|
|
213
|
+
| GetQAppSessionMetadataCommandInput
|
|
182
214
|
| ImportDocumentCommandInput
|
|
183
215
|
| ListCategoriesCommandInput
|
|
184
216
|
| ListLibraryItemsCommandInput
|
|
217
|
+
| ListQAppSessionDataCommandInput
|
|
185
218
|
| ListQAppsCommandInput
|
|
186
219
|
| ListTagsForResourceCommandInput
|
|
187
220
|
| PredictQAppCommandInput
|
|
@@ -192,7 +225,9 @@ export type ServiceInputTypes =
|
|
|
192
225
|
| UpdateLibraryItemCommandInput
|
|
193
226
|
| UpdateLibraryItemMetadataCommandInput
|
|
194
227
|
| UpdateQAppCommandInput
|
|
195
|
-
|
|
|
228
|
+
| UpdateQAppPermissionsCommandInput
|
|
229
|
+
| UpdateQAppSessionCommandInput
|
|
230
|
+
| UpdateQAppSessionMetadataCommandInput;
|
|
196
231
|
export type ServiceOutputTypes =
|
|
197
232
|
| AssociateLibraryItemReviewCommandOutput
|
|
198
233
|
| AssociateQAppWithUserCommandOutput
|
|
@@ -200,17 +235,22 @@ export type ServiceOutputTypes =
|
|
|
200
235
|
| BatchDeleteCategoryCommandOutput
|
|
201
236
|
| BatchUpdateCategoryCommandOutput
|
|
202
237
|
| CreateLibraryItemCommandOutput
|
|
238
|
+
| CreatePresignedUrlCommandOutput
|
|
203
239
|
| CreateQAppCommandOutput
|
|
204
240
|
| DeleteLibraryItemCommandOutput
|
|
205
241
|
| DeleteQAppCommandOutput
|
|
242
|
+
| DescribeQAppPermissionsCommandOutput
|
|
206
243
|
| DisassociateLibraryItemReviewCommandOutput
|
|
207
244
|
| DisassociateQAppFromUserCommandOutput
|
|
245
|
+
| ExportQAppSessionDataCommandOutput
|
|
208
246
|
| GetLibraryItemCommandOutput
|
|
209
247
|
| GetQAppCommandOutput
|
|
210
248
|
| GetQAppSessionCommandOutput
|
|
249
|
+
| GetQAppSessionMetadataCommandOutput
|
|
211
250
|
| ImportDocumentCommandOutput
|
|
212
251
|
| ListCategoriesCommandOutput
|
|
213
252
|
| ListLibraryItemsCommandOutput
|
|
253
|
+
| ListQAppSessionDataCommandOutput
|
|
214
254
|
| ListQAppsCommandOutput
|
|
215
255
|
| ListTagsForResourceCommandOutput
|
|
216
256
|
| PredictQAppCommandOutput
|
|
@@ -221,7 +261,9 @@ export type ServiceOutputTypes =
|
|
|
221
261
|
| UpdateLibraryItemCommandOutput
|
|
222
262
|
| UpdateLibraryItemMetadataCommandOutput
|
|
223
263
|
| UpdateQAppCommandOutput
|
|
224
|
-
|
|
|
264
|
+
| UpdateQAppPermissionsCommandOutput
|
|
265
|
+
| UpdateQAppSessionCommandOutput
|
|
266
|
+
| UpdateQAppSessionMetadataCommandOutput;
|
|
225
267
|
export interface ClientDefaults
|
|
226
268
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
227
269
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreatePresignedUrlInput,
|
|
5
|
+
CreatePresignedUrlOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
QAppsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QAppsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreatePresignedUrlCommandInput
|
|
15
|
+
extends CreatePresignedUrlInput {}
|
|
16
|
+
export interface CreatePresignedUrlCommandOutput
|
|
17
|
+
extends CreatePresignedUrlOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreatePresignedUrlCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreatePresignedUrlCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreatePresignedUrlCommandInput,
|
|
24
|
+
CreatePresignedUrlCommandOutput,
|
|
25
|
+
QAppsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreatePresignedUrlCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreatePresignedUrlCommandInput,
|
|
33
|
+
CreatePresignedUrlCommandOutput,
|
|
34
|
+
QAppsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreatePresignedUrlCommand extends CreatePresignedUrlCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreatePresignedUrlInput;
|
|
44
|
+
output: CreatePresignedUrlOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreatePresignedUrlCommandInput;
|
|
48
|
+
output: CreatePresignedUrlCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeQAppPermissionsInput,
|
|
5
|
+
DescribeQAppPermissionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
QAppsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QAppsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeQAppPermissionsCommandInput
|
|
15
|
+
extends DescribeQAppPermissionsInput {}
|
|
16
|
+
export interface DescribeQAppPermissionsCommandOutput
|
|
17
|
+
extends DescribeQAppPermissionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeQAppPermissionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeQAppPermissionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeQAppPermissionsCommandInput,
|
|
24
|
+
DescribeQAppPermissionsCommandOutput,
|
|
25
|
+
QAppsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeQAppPermissionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeQAppPermissionsCommandInput,
|
|
33
|
+
DescribeQAppPermissionsCommandOutput,
|
|
34
|
+
QAppsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeQAppPermissionsCommand extends DescribeQAppPermissionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeQAppPermissionsInput;
|
|
44
|
+
output: DescribeQAppPermissionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeQAppPermissionsCommandInput;
|
|
48
|
+
output: DescribeQAppPermissionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ExportQAppSessionDataInput,
|
|
5
|
+
ExportQAppSessionDataOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
QAppsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../QAppsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ExportQAppSessionDataCommandInput
|
|
15
|
+
extends ExportQAppSessionDataInput {}
|
|
16
|
+
export interface ExportQAppSessionDataCommandOutput
|
|
17
|
+
extends ExportQAppSessionDataOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ExportQAppSessionDataCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ExportQAppSessionDataCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ExportQAppSessionDataCommandInput,
|
|
24
|
+
ExportQAppSessionDataCommandOutput,
|
|
25
|
+
QAppsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ExportQAppSessionDataCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ExportQAppSessionDataCommandInput,
|
|
33
|
+
ExportQAppSessionDataCommandOutput,
|
|
34
|
+
QAppsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ExportQAppSessionDataCommand extends ExportQAppSessionDataCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ExportQAppSessionDataInput;
|
|
44
|
+
output: ExportQAppSessionDataOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ExportQAppSessionDataCommandInput;
|
|
48
|
+
output: ExportQAppSessionDataCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|