@@ -229,6 +229,16 @@ import {
229
229
DescribeAnalysisPermissionsCommandInput ,
230
230
DescribeAnalysisPermissionsCommandOutput ,
231
231
} from "./commands/DescribeAnalysisPermissionsCommand" ;
232
+ import {
233
+ DescribeAssetBundleExportJobCommand ,
234
+ DescribeAssetBundleExportJobCommandInput ,
235
+ DescribeAssetBundleExportJobCommandOutput ,
236
+ } from "./commands/DescribeAssetBundleExportJobCommand" ;
237
+ import {
238
+ DescribeAssetBundleImportJobCommand ,
239
+ DescribeAssetBundleImportJobCommandInput ,
240
+ DescribeAssetBundleImportJobCommandOutput ,
241
+ } from "./commands/DescribeAssetBundleImportJobCommand" ;
232
242
import {
233
243
DescribeDashboardCommand ,
234
244
DescribeDashboardCommandInput ,
@@ -409,6 +419,16 @@ import {
409
419
ListAnalysesCommandInput ,
410
420
ListAnalysesCommandOutput ,
411
421
} from "./commands/ListAnalysesCommand" ;
422
+ import {
423
+ ListAssetBundleExportJobsCommand ,
424
+ ListAssetBundleExportJobsCommandInput ,
425
+ ListAssetBundleExportJobsCommandOutput ,
426
+ } from "./commands/ListAssetBundleExportJobsCommand" ;
427
+ import {
428
+ ListAssetBundleImportJobsCommand ,
429
+ ListAssetBundleImportJobsCommandInput ,
430
+ ListAssetBundleImportJobsCommandOutput ,
431
+ } from "./commands/ListAssetBundleImportJobsCommand" ;
412
432
import {
413
433
ListDashboardsCommand ,
414
434
ListDashboardsCommandInput ,
@@ -559,6 +579,16 @@ import {
559
579
SearchGroupsCommandInput ,
560
580
SearchGroupsCommandOutput ,
561
581
} from "./commands/SearchGroupsCommand" ;
582
+ import {
583
+ StartAssetBundleExportJobCommand ,
584
+ StartAssetBundleExportJobCommandInput ,
585
+ StartAssetBundleExportJobCommandOutput ,
586
+ } from "./commands/StartAssetBundleExportJobCommand" ;
587
+ import {
588
+ StartAssetBundleImportJobCommand ,
589
+ StartAssetBundleImportJobCommandInput ,
590
+ StartAssetBundleImportJobCommandOutput ,
591
+ } from "./commands/StartAssetBundleImportJobCommand" ;
562
592
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
563
593
import {
564
594
UntagResourceCommand ,
@@ -748,6 +778,8 @@ const commands = {
748
778
DescribeAnalysisCommand,
749
779
DescribeAnalysisDefinitionCommand,
750
780
DescribeAnalysisPermissionsCommand,
781
+ DescribeAssetBundleExportJobCommand,
782
+ DescribeAssetBundleImportJobCommand,
751
783
DescribeDashboardCommand,
752
784
DescribeDashboardDefinitionCommand,
753
785
DescribeDashboardPermissionsCommand,
@@ -784,6 +816,8 @@ const commands = {
784
816
GetDashboardEmbedUrlCommand,
785
817
GetSessionEmbedUrlCommand,
786
818
ListAnalysesCommand,
819
+ ListAssetBundleExportJobsCommand,
820
+ ListAssetBundleImportJobsCommand,
787
821
ListDashboardsCommand,
788
822
ListDashboardVersionsCommand,
789
823
ListDataSetsCommand,
@@ -818,6 +852,8 @@ const commands = {
818
852
SearchDataSourcesCommand,
819
853
SearchFoldersCommand,
820
854
SearchGroupsCommand,
855
+ StartAssetBundleExportJobCommand,
856
+ StartAssetBundleImportJobCommand,
821
857
TagResourceCommand,
822
858
UntagResourceCommand,
823
859
UpdateAccountCustomizationCommand,
@@ -1623,6 +1659,40 @@ export interface QuickSight {
1623
1659
cb : ( err : any , data ?: DescribeAnalysisPermissionsCommandOutput ) => void
1624
1660
) : void ;
1625
1661
1662
+ /**
1663
+ * @see {@link DescribeAssetBundleExportJobCommand }
1664
+ */
1665
+ describeAssetBundleExportJob (
1666
+ args : DescribeAssetBundleExportJobCommandInput ,
1667
+ options ?: __HttpHandlerOptions
1668
+ ) : Promise < DescribeAssetBundleExportJobCommandOutput > ;
1669
+ describeAssetBundleExportJob (
1670
+ args : DescribeAssetBundleExportJobCommandInput ,
1671
+ cb : ( err : any , data ?: DescribeAssetBundleExportJobCommandOutput ) => void
1672
+ ) : void ;
1673
+ describeAssetBundleExportJob (
1674
+ args : DescribeAssetBundleExportJobCommandInput ,
1675
+ options : __HttpHandlerOptions ,
1676
+ cb : ( err : any , data ?: DescribeAssetBundleExportJobCommandOutput ) => void
1677
+ ) : void ;
1678
+
1679
+ /**
1680
+ * @see {@link DescribeAssetBundleImportJobCommand }
1681
+ */
1682
+ describeAssetBundleImportJob (
1683
+ args : DescribeAssetBundleImportJobCommandInput ,
1684
+ options ?: __HttpHandlerOptions
1685
+ ) : Promise < DescribeAssetBundleImportJobCommandOutput > ;
1686
+ describeAssetBundleImportJob (
1687
+ args : DescribeAssetBundleImportJobCommandInput ,
1688
+ cb : ( err : any , data ?: DescribeAssetBundleImportJobCommandOutput ) => void
1689
+ ) : void ;
1690
+ describeAssetBundleImportJob (
1691
+ args : DescribeAssetBundleImportJobCommandInput ,
1692
+ options : __HttpHandlerOptions ,
1693
+ cb : ( err : any , data ?: DescribeAssetBundleImportJobCommandOutput ) => void
1694
+ ) : void ;
1695
+
1626
1696
/**
1627
1697
* @see {@link DescribeDashboardCommand }
1628
1698
*/
@@ -2199,6 +2269,40 @@ export interface QuickSight {
2199
2269
cb : ( err : any , data ?: ListAnalysesCommandOutput ) => void
2200
2270
) : void ;
2201
2271
2272
+ /**
2273
+ * @see {@link ListAssetBundleExportJobsCommand }
2274
+ */
2275
+ listAssetBundleExportJobs (
2276
+ args : ListAssetBundleExportJobsCommandInput ,
2277
+ options ?: __HttpHandlerOptions
2278
+ ) : Promise < ListAssetBundleExportJobsCommandOutput > ;
2279
+ listAssetBundleExportJobs (
2280
+ args : ListAssetBundleExportJobsCommandInput ,
2281
+ cb : ( err : any , data ?: ListAssetBundleExportJobsCommandOutput ) => void
2282
+ ) : void ;
2283
+ listAssetBundleExportJobs (
2284
+ args : ListAssetBundleExportJobsCommandInput ,
2285
+ options : __HttpHandlerOptions ,
2286
+ cb : ( err : any , data ?: ListAssetBundleExportJobsCommandOutput ) => void
2287
+ ) : void ;
2288
+
2289
+ /**
2290
+ * @see {@link ListAssetBundleImportJobsCommand }
2291
+ */
2292
+ listAssetBundleImportJobs (
2293
+ args : ListAssetBundleImportJobsCommandInput ,
2294
+ options ?: __HttpHandlerOptions
2295
+ ) : Promise < ListAssetBundleImportJobsCommandOutput > ;
2296
+ listAssetBundleImportJobs (
2297
+ args : ListAssetBundleImportJobsCommandInput ,
2298
+ cb : ( err : any , data ?: ListAssetBundleImportJobsCommandOutput ) => void
2299
+ ) : void ;
2300
+ listAssetBundleImportJobs (
2301
+ args : ListAssetBundleImportJobsCommandInput ,
2302
+ options : __HttpHandlerOptions ,
2303
+ cb : ( err : any , data ?: ListAssetBundleImportJobsCommandOutput ) => void
2304
+ ) : void ;
2305
+
2202
2306
/**
2203
2307
* @see {@link ListDashboardsCommand }
2204
2308
*/
@@ -2693,6 +2797,40 @@ export interface QuickSight {
2693
2797
cb : ( err : any , data ?: SearchGroupsCommandOutput ) => void
2694
2798
) : void ;
2695
2799
2800
+ /**
2801
+ * @see {@link StartAssetBundleExportJobCommand }
2802
+ */
2803
+ startAssetBundleExportJob (
2804
+ args : StartAssetBundleExportJobCommandInput ,
2805
+ options ?: __HttpHandlerOptions
2806
+ ) : Promise < StartAssetBundleExportJobCommandOutput > ;
2807
+ startAssetBundleExportJob (
2808
+ args : StartAssetBundleExportJobCommandInput ,
2809
+ cb : ( err : any , data ?: StartAssetBundleExportJobCommandOutput ) => void
2810
+ ) : void ;
2811
+ startAssetBundleExportJob (
2812
+ args : StartAssetBundleExportJobCommandInput ,
2813
+ options : __HttpHandlerOptions ,
2814
+ cb : ( err : any , data ?: StartAssetBundleExportJobCommandOutput ) => void
2815
+ ) : void ;
2816
+
2817
+ /**
2818
+ * @see {@link StartAssetBundleImportJobCommand }
2819
+ */
2820
+ startAssetBundleImportJob (
2821
+ args : StartAssetBundleImportJobCommandInput ,
2822
+ options ?: __HttpHandlerOptions
2823
+ ) : Promise < StartAssetBundleImportJobCommandOutput > ;
2824
+ startAssetBundleImportJob (
2825
+ args : StartAssetBundleImportJobCommandInput ,
2826
+ cb : ( err : any , data ?: StartAssetBundleImportJobCommandOutput ) => void
2827
+ ) : void ;
2828
+ startAssetBundleImportJob (
2829
+ args : StartAssetBundleImportJobCommandInput ,
2830
+ options : __HttpHandlerOptions ,
2831
+ cb : ( err : any , data ?: StartAssetBundleImportJobCommandOutput ) => void
2832
+ ) : void ;
2833
+
2696
2834
/**
2697
2835
* @see {@link TagResourceCommand }
2698
2836
*/
0 commit comments