@@ -336,6 +336,11 @@ import {
336
336
DescribeDashboardSnapshotJobResultCommandInput ,
337
337
DescribeDashboardSnapshotJobResultCommandOutput ,
338
338
} from "./commands/DescribeDashboardSnapshotJobResultCommand" ;
339
+ import {
340
+ DescribeDashboardsQAConfigurationCommand ,
341
+ DescribeDashboardsQAConfigurationCommandInput ,
342
+ DescribeDashboardsQAConfigurationCommandOutput ,
343
+ } from "./commands/DescribeDashboardsQAConfigurationCommand" ;
339
344
import {
340
345
DescribeDataSetCommand ,
341
346
DescribeDataSetCommandInput ,
@@ -702,6 +707,11 @@ import {
702
707
SearchGroupsCommandInput ,
703
708
SearchGroupsCommandOutput ,
704
709
} from "./commands/SearchGroupsCommand" ;
710
+ import {
711
+ SearchTopicsCommand ,
712
+ SearchTopicsCommandInput ,
713
+ SearchTopicsCommandOutput ,
714
+ } from "./commands/SearchTopicsCommand" ;
705
715
import {
706
716
StartAssetBundleExportJobCommand ,
707
717
StartAssetBundleExportJobCommandInput ,
@@ -784,6 +794,11 @@ import {
784
794
UpdateDashboardPublishedVersionCommandInput ,
785
795
UpdateDashboardPublishedVersionCommandOutput ,
786
796
} from "./commands/UpdateDashboardPublishedVersionCommand" ;
797
+ import {
798
+ UpdateDashboardsQAConfigurationCommand ,
799
+ UpdateDashboardsQAConfigurationCommandInput ,
800
+ UpdateDashboardsQAConfigurationCommandOutput ,
801
+ } from "./commands/UpdateDashboardsQAConfigurationCommand" ;
787
802
import {
788
803
UpdateDataSetCommand ,
789
804
UpdateDataSetCommandInput ,
@@ -985,6 +1000,7 @@ const commands = {
985
1000
DescribeDashboardPermissionsCommand,
986
1001
DescribeDashboardSnapshotJobCommand,
987
1002
DescribeDashboardSnapshotJobResultCommand,
1003
+ DescribeDashboardsQAConfigurationCommand,
988
1004
DescribeDataSetCommand,
989
1005
DescribeDataSetPermissionsCommand,
990
1006
DescribeDataSetRefreshPropertiesCommand,
@@ -1063,6 +1079,7 @@ const commands = {
1063
1079
SearchDataSourcesCommand,
1064
1080
SearchFoldersCommand,
1065
1081
SearchGroupsCommand,
1082
+ SearchTopicsCommand,
1066
1083
StartAssetBundleExportJobCommand,
1067
1084
StartAssetBundleImportJobCommand,
1068
1085
StartDashboardSnapshotJobCommand,
@@ -1081,6 +1098,7 @@ const commands = {
1081
1098
UpdateDashboardLinksCommand,
1082
1099
UpdateDashboardPermissionsCommand,
1083
1100
UpdateDashboardPublishedVersionCommand,
1101
+ UpdateDashboardsQAConfigurationCommand,
1084
1102
UpdateDataSetCommand,
1085
1103
UpdateDataSetPermissionsCommand,
1086
1104
UpdateDataSourceCommand,
@@ -2256,6 +2274,23 @@ export interface QuickSight {
2256
2274
cb : ( err : any , data ?: DescribeDashboardSnapshotJobResultCommandOutput ) => void
2257
2275
) : void ;
2258
2276
2277
+ /**
2278
+ * @see {@link DescribeDashboardsQAConfigurationCommand }
2279
+ */
2280
+ describeDashboardsQAConfiguration (
2281
+ args : DescribeDashboardsQAConfigurationCommandInput ,
2282
+ options ?: __HttpHandlerOptions
2283
+ ) : Promise < DescribeDashboardsQAConfigurationCommandOutput > ;
2284
+ describeDashboardsQAConfiguration (
2285
+ args : DescribeDashboardsQAConfigurationCommandInput ,
2286
+ cb : ( err : any , data ?: DescribeDashboardsQAConfigurationCommandOutput ) => void
2287
+ ) : void ;
2288
+ describeDashboardsQAConfiguration (
2289
+ args : DescribeDashboardsQAConfigurationCommandInput ,
2290
+ options : __HttpHandlerOptions ,
2291
+ cb : ( err : any , data ?: DescribeDashboardsQAConfigurationCommandOutput ) => void
2292
+ ) : void ;
2293
+
2259
2294
/**
2260
2295
* @see {@link DescribeDataSetCommand }
2261
2296
*/
@@ -3456,6 +3491,17 @@ export interface QuickSight {
3456
3491
cb : ( err : any , data ?: SearchGroupsCommandOutput ) => void
3457
3492
) : void ;
3458
3493
3494
+ /**
3495
+ * @see {@link SearchTopicsCommand }
3496
+ */
3497
+ searchTopics ( args : SearchTopicsCommandInput , options ?: __HttpHandlerOptions ) : Promise < SearchTopicsCommandOutput > ;
3498
+ searchTopics ( args : SearchTopicsCommandInput , cb : ( err : any , data ?: SearchTopicsCommandOutput ) => void ) : void ;
3499
+ searchTopics (
3500
+ args : SearchTopicsCommandInput ,
3501
+ options : __HttpHandlerOptions ,
3502
+ cb : ( err : any , data ?: SearchTopicsCommandOutput ) => void
3503
+ ) : void ;
3504
+
3459
3505
/**
3460
3506
* @see {@link StartAssetBundleExportJobCommand }
3461
3507
*/
@@ -3738,6 +3784,23 @@ export interface QuickSight {
3738
3784
cb : ( err : any , data ?: UpdateDashboardPublishedVersionCommandOutput ) => void
3739
3785
) : void ;
3740
3786
3787
+ /**
3788
+ * @see {@link UpdateDashboardsQAConfigurationCommand }
3789
+ */
3790
+ updateDashboardsQAConfiguration (
3791
+ args : UpdateDashboardsQAConfigurationCommandInput ,
3792
+ options ?: __HttpHandlerOptions
3793
+ ) : Promise < UpdateDashboardsQAConfigurationCommandOutput > ;
3794
+ updateDashboardsQAConfiguration (
3795
+ args : UpdateDashboardsQAConfigurationCommandInput ,
3796
+ cb : ( err : any , data ?: UpdateDashboardsQAConfigurationCommandOutput ) => void
3797
+ ) : void ;
3798
+ updateDashboardsQAConfiguration (
3799
+ args : UpdateDashboardsQAConfigurationCommandInput ,
3800
+ options : __HttpHandlerOptions ,
3801
+ cb : ( err : any , data ?: UpdateDashboardsQAConfigurationCommandOutput ) => void
3802
+ ) : void ;
3803
+
3741
3804
/**
3742
3805
* @see {@link UpdateDataSetCommand }
3743
3806
*/
0 commit comments