@@ -229,6 +229,16 @@ import {
229229 DescribeAnalysisPermissionsCommandInput ,
230230 DescribeAnalysisPermissionsCommandOutput ,
231231} 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" ;
232242import {
233243 DescribeDashboardCommand ,
234244 DescribeDashboardCommandInput ,
@@ -409,6 +419,16 @@ import {
409419 ListAnalysesCommandInput ,
410420 ListAnalysesCommandOutput ,
411421} 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" ;
412432import {
413433 ListDashboardsCommand ,
414434 ListDashboardsCommandInput ,
@@ -559,6 +579,16 @@ import {
559579 SearchGroupsCommandInput ,
560580 SearchGroupsCommandOutput ,
561581} 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" ;
562592import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
563593import {
564594 UntagResourceCommand ,
@@ -748,6 +778,8 @@ const commands = {
748778 DescribeAnalysisCommand,
749779 DescribeAnalysisDefinitionCommand,
750780 DescribeAnalysisPermissionsCommand,
781+ DescribeAssetBundleExportJobCommand,
782+ DescribeAssetBundleImportJobCommand,
751783 DescribeDashboardCommand,
752784 DescribeDashboardDefinitionCommand,
753785 DescribeDashboardPermissionsCommand,
@@ -784,6 +816,8 @@ const commands = {
784816 GetDashboardEmbedUrlCommand,
785817 GetSessionEmbedUrlCommand,
786818 ListAnalysesCommand,
819+ ListAssetBundleExportJobsCommand,
820+ ListAssetBundleImportJobsCommand,
787821 ListDashboardsCommand,
788822 ListDashboardVersionsCommand,
789823 ListDataSetsCommand,
@@ -818,6 +852,8 @@ const commands = {
818852 SearchDataSourcesCommand,
819853 SearchFoldersCommand,
820854 SearchGroupsCommand,
855+ StartAssetBundleExportJobCommand,
856+ StartAssetBundleImportJobCommand,
821857 TagResourceCommand,
822858 UntagResourceCommand,
823859 UpdateAccountCustomizationCommand,
@@ -1623,6 +1659,40 @@ export interface QuickSight {
16231659 cb : ( err : any , data ?: DescribeAnalysisPermissionsCommandOutput ) => void
16241660 ) : void ;
16251661
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+
16261696 /**
16271697 * @see {@link DescribeDashboardCommand }
16281698 */
@@ -2199,6 +2269,40 @@ export interface QuickSight {
21992269 cb : ( err : any , data ?: ListAnalysesCommandOutput ) => void
22002270 ) : void ;
22012271
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+
22022306 /**
22032307 * @see {@link ListDashboardsCommand }
22042308 */
@@ -2693,6 +2797,40 @@ export interface QuickSight {
26932797 cb : ( err : any , data ?: SearchGroupsCommandOutput ) => void
26942798 ) : void ;
26952799
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+
26962834 /**
26972835 * @see {@link TagResourceCommand }
26982836 */
0 commit comments