@@ -81,6 +81,11 @@ import {
81
81
CreateStreamingURLCommandInput ,
82
82
CreateStreamingURLCommandOutput ,
83
83
} from "./commands/CreateStreamingURLCommand" ;
84
+ import {
85
+ CreateThemeForStackCommand ,
86
+ CreateThemeForStackCommandInput ,
87
+ CreateThemeForStackCommandOutput ,
88
+ } from "./commands/CreateThemeForStackCommand" ;
84
89
import {
85
90
CreateUpdatedImageCommand ,
86
91
CreateUpdatedImageCommandInput ,
@@ -130,6 +135,11 @@ import {
130
135
DeleteImagePermissionsCommandOutput ,
131
136
} from "./commands/DeleteImagePermissionsCommand" ;
132
137
import { DeleteStackCommand , DeleteStackCommandInput , DeleteStackCommandOutput } from "./commands/DeleteStackCommand" ;
138
+ import {
139
+ DeleteThemeForStackCommand ,
140
+ DeleteThemeForStackCommandInput ,
141
+ DeleteThemeForStackCommandOutput ,
142
+ } from "./commands/DeleteThemeForStackCommand" ;
133
143
import {
134
144
DeleteUsageReportSubscriptionCommand ,
135
145
DeleteUsageReportSubscriptionCommandInput ,
@@ -201,6 +211,11 @@ import {
201
211
DescribeStacksCommandInput ,
202
212
DescribeStacksCommandOutput ,
203
213
} from "./commands/DescribeStacksCommand" ;
214
+ import {
215
+ DescribeThemeForStackCommand ,
216
+ DescribeThemeForStackCommandInput ,
217
+ DescribeThemeForStackCommandOutput ,
218
+ } from "./commands/DescribeThemeForStackCommand" ;
204
219
import {
205
220
DescribeUsageReportSubscriptionsCommand ,
206
221
DescribeUsageReportSubscriptionsCommandInput ,
@@ -318,6 +333,11 @@ import {
318
333
UpdateImagePermissionsCommandOutput ,
319
334
} from "./commands/UpdateImagePermissionsCommand" ;
320
335
import { UpdateStackCommand , UpdateStackCommandInput , UpdateStackCommandOutput } from "./commands/UpdateStackCommand" ;
336
+ import {
337
+ UpdateThemeForStackCommand ,
338
+ UpdateThemeForStackCommandInput ,
339
+ UpdateThemeForStackCommandOutput ,
340
+ } from "./commands/UpdateThemeForStackCommand" ;
321
341
322
342
const commands = {
323
343
AssociateAppBlockBuilderAppBlockCommand,
@@ -338,6 +358,7 @@ const commands = {
338
358
CreateImageBuilderStreamingURLCommand,
339
359
CreateStackCommand,
340
360
CreateStreamingURLCommand,
361
+ CreateThemeForStackCommand,
341
362
CreateUpdatedImageCommand,
342
363
CreateUsageReportSubscriptionCommand,
343
364
CreateUserCommand,
@@ -351,6 +372,7 @@ const commands = {
351
372
DeleteImageBuilderCommand,
352
373
DeleteImagePermissionsCommand,
353
374
DeleteStackCommand,
375
+ DeleteThemeForStackCommand,
354
376
DeleteUsageReportSubscriptionCommand,
355
377
DeleteUserCommand,
356
378
DescribeAppBlockBuilderAppBlockAssociationsCommand,
@@ -366,6 +388,7 @@ const commands = {
366
388
DescribeImagesCommand,
367
389
DescribeSessionsCommand,
368
390
DescribeStacksCommand,
391
+ DescribeThemeForStackCommand,
369
392
DescribeUsageReportSubscriptionsCommand,
370
393
DescribeUsersCommand,
371
394
DescribeUserStackAssociationsCommand,
@@ -395,6 +418,7 @@ const commands = {
395
418
UpdateFleetCommand,
396
419
UpdateImagePermissionsCommand,
397
420
UpdateStackCommand,
421
+ UpdateThemeForStackCommand,
398
422
} ;
399
423
400
424
export interface AppStream {
@@ -680,6 +704,23 @@ export interface AppStream {
680
704
cb : ( err : any , data ?: CreateStreamingURLCommandOutput ) => void
681
705
) : void ;
682
706
707
+ /**
708
+ * @see {@link CreateThemeForStackCommand }
709
+ */
710
+ createThemeForStack (
711
+ args : CreateThemeForStackCommandInput ,
712
+ options ?: __HttpHandlerOptions
713
+ ) : Promise < CreateThemeForStackCommandOutput > ;
714
+ createThemeForStack (
715
+ args : CreateThemeForStackCommandInput ,
716
+ cb : ( err : any , data ?: CreateThemeForStackCommandOutput ) => void
717
+ ) : void ;
718
+ createThemeForStack (
719
+ args : CreateThemeForStackCommandInput ,
720
+ options : __HttpHandlerOptions ,
721
+ cb : ( err : any , data ?: CreateThemeForStackCommandOutput ) => void
722
+ ) : void ;
723
+
683
724
/**
684
725
* @see {@link CreateUpdatedImageCommand }
685
726
*/
@@ -875,6 +916,23 @@ export interface AppStream {
875
916
cb : ( err : any , data ?: DeleteStackCommandOutput ) => void
876
917
) : void ;
877
918
919
+ /**
920
+ * @see {@link DeleteThemeForStackCommand }
921
+ */
922
+ deleteThemeForStack (
923
+ args : DeleteThemeForStackCommandInput ,
924
+ options ?: __HttpHandlerOptions
925
+ ) : Promise < DeleteThemeForStackCommandOutput > ;
926
+ deleteThemeForStack (
927
+ args : DeleteThemeForStackCommandInput ,
928
+ cb : ( err : any , data ?: DeleteThemeForStackCommandOutput ) => void
929
+ ) : void ;
930
+ deleteThemeForStack (
931
+ args : DeleteThemeForStackCommandInput ,
932
+ options : __HttpHandlerOptions ,
933
+ cb : ( err : any , data ?: DeleteThemeForStackCommandOutput ) => void
934
+ ) : void ;
935
+
878
936
/**
879
937
* @see {@link DeleteUsageReportSubscriptionCommand }
880
938
*/
@@ -1126,6 +1184,23 @@ export interface AppStream {
1126
1184
cb : ( err : any , data ?: DescribeStacksCommandOutput ) => void
1127
1185
) : void ;
1128
1186
1187
+ /**
1188
+ * @see {@link DescribeThemeForStackCommand }
1189
+ */
1190
+ describeThemeForStack (
1191
+ args : DescribeThemeForStackCommandInput ,
1192
+ options ?: __HttpHandlerOptions
1193
+ ) : Promise < DescribeThemeForStackCommandOutput > ;
1194
+ describeThemeForStack (
1195
+ args : DescribeThemeForStackCommandInput ,
1196
+ cb : ( err : any , data ?: DescribeThemeForStackCommandOutput ) => void
1197
+ ) : void ;
1198
+ describeThemeForStack (
1199
+ args : DescribeThemeForStackCommandInput ,
1200
+ options : __HttpHandlerOptions ,
1201
+ cb : ( err : any , data ?: DescribeThemeForStackCommandOutput ) => void
1202
+ ) : void ;
1203
+
1129
1204
/**
1130
1205
* @see {@link DescribeUsageReportSubscriptionsCommand }
1131
1206
*/
@@ -1561,6 +1636,23 @@ export interface AppStream {
1561
1636
options : __HttpHandlerOptions ,
1562
1637
cb : ( err : any , data ?: UpdateStackCommandOutput ) => void
1563
1638
) : void ;
1639
+
1640
+ /**
1641
+ * @see {@link UpdateThemeForStackCommand }
1642
+ */
1643
+ updateThemeForStack (
1644
+ args : UpdateThemeForStackCommandInput ,
1645
+ options ?: __HttpHandlerOptions
1646
+ ) : Promise < UpdateThemeForStackCommandOutput > ;
1647
+ updateThemeForStack (
1648
+ args : UpdateThemeForStackCommandInput ,
1649
+ cb : ( err : any , data ?: UpdateThemeForStackCommandOutput ) => void
1650
+ ) : void ;
1651
+ updateThemeForStack (
1652
+ args : UpdateThemeForStackCommandInput ,
1653
+ options : __HttpHandlerOptions ,
1654
+ cb : ( err : any , data ?: UpdateThemeForStackCommandOutput ) => void
1655
+ ) : void ;
1564
1656
}
1565
1657
1566
1658
/**
0 commit comments