@@ -17,6 +17,11 @@ import {
17
17
BatchPutDocumentCommandInput ,
18
18
BatchPutDocumentCommandOutput ,
19
19
} from "./commands/BatchPutDocumentCommand" ;
20
+ import {
21
+ CancelSubscriptionCommand ,
22
+ CancelSubscriptionCommandInput ,
23
+ CancelSubscriptionCommandOutput ,
24
+ } from "./commands/CancelSubscriptionCommand" ;
20
25
import { ChatCommand , ChatCommandInput , ChatCommandOutput } from "./commands/ChatCommand" ;
21
26
import { ChatSyncCommand , ChatSyncCommandInput , ChatSyncCommandOutput } from "./commands/ChatSyncCommand" ;
22
27
import {
@@ -45,6 +50,11 @@ import {
45
50
CreateRetrieverCommandInput ,
46
51
CreateRetrieverCommandOutput ,
47
52
} from "./commands/CreateRetrieverCommand" ;
53
+ import {
54
+ CreateSubscriptionCommand ,
55
+ CreateSubscriptionCommandInput ,
56
+ CreateSubscriptionCommandOutput ,
57
+ } from "./commands/CreateSubscriptionCommand" ;
48
58
import { CreateUserCommand , CreateUserCommandInput , CreateUserCommandOutput } from "./commands/CreateUserCommand" ;
49
59
import {
50
60
CreateWebExperienceCommand ,
@@ -198,6 +208,11 @@ import {
198
208
ListRetrieversCommandInput ,
199
209
ListRetrieversCommandOutput ,
200
210
} from "./commands/ListRetrieversCommand" ;
211
+ import {
212
+ ListSubscriptionsCommand ,
213
+ ListSubscriptionsCommandInput ,
214
+ ListSubscriptionsCommandOutput ,
215
+ } from "./commands/ListSubscriptionsCommand" ;
201
216
import {
202
217
ListTagsForResourceCommand ,
203
218
ListTagsForResourceCommandInput ,
@@ -262,6 +277,11 @@ import {
262
277
UpdateRetrieverCommandInput ,
263
278
UpdateRetrieverCommandOutput ,
264
279
} from "./commands/UpdateRetrieverCommand" ;
280
+ import {
281
+ UpdateSubscriptionCommand ,
282
+ UpdateSubscriptionCommandInput ,
283
+ UpdateSubscriptionCommandOutput ,
284
+ } from "./commands/UpdateSubscriptionCommand" ;
265
285
import { UpdateUserCommand , UpdateUserCommandInput , UpdateUserCommandOutput } from "./commands/UpdateUserCommand" ;
266
286
import {
267
287
UpdateWebExperienceCommand ,
@@ -274,6 +294,7 @@ const commands = {
274
294
AssociatePermissionCommand,
275
295
BatchDeleteDocumentCommand,
276
296
BatchPutDocumentCommand,
297
+ CancelSubscriptionCommand,
277
298
ChatCommand,
278
299
ChatSyncCommand,
279
300
CreateApplicationCommand,
@@ -282,6 +303,7 @@ const commands = {
282
303
CreateIndexCommand,
283
304
CreatePluginCommand,
284
305
CreateRetrieverCommand,
306
+ CreateSubscriptionCommand,
285
307
CreateUserCommand,
286
308
CreateWebExperienceCommand,
287
309
DeleteApplicationCommand,
@@ -323,6 +345,7 @@ const commands = {
323
345
ListPluginTypeActionsCommand,
324
346
ListPluginTypeMetadataCommand,
325
347
ListRetrieversCommand,
348
+ ListSubscriptionsCommand,
326
349
ListTagsForResourceCommand,
327
350
ListWebExperiencesCommand,
328
351
PutFeedbackCommand,
@@ -339,6 +362,7 @@ const commands = {
339
362
UpdateIndexCommand,
340
363
UpdatePluginCommand,
341
364
UpdateRetrieverCommand,
365
+ UpdateSubscriptionCommand,
342
366
UpdateUserCommand,
343
367
UpdateWebExperienceCommand,
344
368
} ;
@@ -395,6 +419,23 @@ export interface QBusiness {
395
419
cb : ( err : any , data ?: BatchPutDocumentCommandOutput ) => void
396
420
) : void ;
397
421
422
+ /**
423
+ * @see {@link CancelSubscriptionCommand }
424
+ */
425
+ cancelSubscription (
426
+ args : CancelSubscriptionCommandInput ,
427
+ options ?: __HttpHandlerOptions
428
+ ) : Promise < CancelSubscriptionCommandOutput > ;
429
+ cancelSubscription (
430
+ args : CancelSubscriptionCommandInput ,
431
+ cb : ( err : any , data ?: CancelSubscriptionCommandOutput ) => void
432
+ ) : void ;
433
+ cancelSubscription (
434
+ args : CancelSubscriptionCommandInput ,
435
+ options : __HttpHandlerOptions ,
436
+ cb : ( err : any , data ?: CancelSubscriptionCommandOutput ) => void
437
+ ) : void ;
438
+
398
439
/**
399
440
* @see {@link ChatCommand }
400
441
*/
@@ -500,6 +541,23 @@ export interface QBusiness {
500
541
cb : ( err : any , data ?: CreateRetrieverCommandOutput ) => void
501
542
) : void ;
502
543
544
+ /**
545
+ * @see {@link CreateSubscriptionCommand }
546
+ */
547
+ createSubscription (
548
+ args : CreateSubscriptionCommandInput ,
549
+ options ?: __HttpHandlerOptions
550
+ ) : Promise < CreateSubscriptionCommandOutput > ;
551
+ createSubscription (
552
+ args : CreateSubscriptionCommandInput ,
553
+ cb : ( err : any , data ?: CreateSubscriptionCommandOutput ) => void
554
+ ) : void ;
555
+ createSubscription (
556
+ args : CreateSubscriptionCommandInput ,
557
+ options : __HttpHandlerOptions ,
558
+ cb : ( err : any , data ?: CreateSubscriptionCommandOutput ) => void
559
+ ) : void ;
560
+
503
561
/**
504
562
* @see {@link CreateUserCommand }
505
563
*/
@@ -1073,6 +1131,23 @@ export interface QBusiness {
1073
1131
cb : ( err : any , data ?: ListRetrieversCommandOutput ) => void
1074
1132
) : void ;
1075
1133
1134
+ /**
1135
+ * @see {@link ListSubscriptionsCommand }
1136
+ */
1137
+ listSubscriptions (
1138
+ args : ListSubscriptionsCommandInput ,
1139
+ options ?: __HttpHandlerOptions
1140
+ ) : Promise < ListSubscriptionsCommandOutput > ;
1141
+ listSubscriptions (
1142
+ args : ListSubscriptionsCommandInput ,
1143
+ cb : ( err : any , data ?: ListSubscriptionsCommandOutput ) => void
1144
+ ) : void ;
1145
+ listSubscriptions (
1146
+ args : ListSubscriptionsCommandInput ,
1147
+ options : __HttpHandlerOptions ,
1148
+ cb : ( err : any , data ?: ListSubscriptionsCommandOutput ) => void
1149
+ ) : void ;
1150
+
1076
1151
/**
1077
1152
* @see {@link ListTagsForResourceCommand }
1078
1153
*/
@@ -1306,6 +1381,23 @@ export interface QBusiness {
1306
1381
cb : ( err : any , data ?: UpdateRetrieverCommandOutput ) => void
1307
1382
) : void ;
1308
1383
1384
+ /**
1385
+ * @see {@link UpdateSubscriptionCommand }
1386
+ */
1387
+ updateSubscription (
1388
+ args : UpdateSubscriptionCommandInput ,
1389
+ options ?: __HttpHandlerOptions
1390
+ ) : Promise < UpdateSubscriptionCommandOutput > ;
1391
+ updateSubscription (
1392
+ args : UpdateSubscriptionCommandInput ,
1393
+ cb : ( err : any , data ?: UpdateSubscriptionCommandOutput ) => void
1394
+ ) : void ;
1395
+ updateSubscription (
1396
+ args : UpdateSubscriptionCommandInput ,
1397
+ options : __HttpHandlerOptions ,
1398
+ cb : ( err : any , data ?: UpdateSubscriptionCommandOutput ) => void
1399
+ ) : void ;
1400
+
1309
1401
/**
1310
1402
* @see {@link UpdateUserCommand }
1311
1403
*/
0 commit comments