@@ -28,6 +28,11 @@ import {
28
28
CreateServerCommandOutput ,
29
29
} from "./commands/CreateServerCommand" ;
30
30
import { CreateUserCommand , CreateUserCommandInput , CreateUserCommandOutput } from "./commands/CreateUserCommand" ;
31
+ import {
32
+ CreateWebAppCommand ,
33
+ CreateWebAppCommandInput ,
34
+ CreateWebAppCommandOutput ,
35
+ } from "./commands/CreateWebAppCommand" ;
31
36
import {
32
37
CreateWorkflowCommand ,
33
38
CreateWorkflowCommandInput ,
@@ -74,6 +79,16 @@ import {
74
79
DeleteSshPublicKeyCommandOutput ,
75
80
} from "./commands/DeleteSshPublicKeyCommand" ;
76
81
import { DeleteUserCommand , DeleteUserCommandInput , DeleteUserCommandOutput } from "./commands/DeleteUserCommand" ;
82
+ import {
83
+ DeleteWebAppCommand ,
84
+ DeleteWebAppCommandInput ,
85
+ DeleteWebAppCommandOutput ,
86
+ } from "./commands/DeleteWebAppCommand" ;
87
+ import {
88
+ DeleteWebAppCustomizationCommand ,
89
+ DeleteWebAppCustomizationCommandInput ,
90
+ DeleteWebAppCustomizationCommandOutput ,
91
+ } from "./commands/DeleteWebAppCustomizationCommand" ;
77
92
import {
78
93
DeleteWorkflowCommand ,
79
94
DeleteWorkflowCommandInput ,
@@ -129,6 +144,16 @@ import {
129
144
DescribeUserCommandInput ,
130
145
DescribeUserCommandOutput ,
131
146
} from "./commands/DescribeUserCommand" ;
147
+ import {
148
+ DescribeWebAppCommand ,
149
+ DescribeWebAppCommandInput ,
150
+ DescribeWebAppCommandOutput ,
151
+ } from "./commands/DescribeWebAppCommand" ;
152
+ import {
153
+ DescribeWebAppCustomizationCommand ,
154
+ DescribeWebAppCustomizationCommandInput ,
155
+ DescribeWebAppCustomizationCommandOutput ,
156
+ } from "./commands/DescribeWebAppCustomizationCommand" ;
132
157
import {
133
158
DescribeWorkflowCommand ,
134
159
DescribeWorkflowCommandInput ,
@@ -201,6 +226,7 @@ import {
201
226
ListTagsForResourceCommandOutput ,
202
227
} from "./commands/ListTagsForResourceCommand" ;
203
228
import { ListUsersCommand , ListUsersCommandInput , ListUsersCommandOutput } from "./commands/ListUsersCommand" ;
229
+ import { ListWebAppsCommand , ListWebAppsCommandInput , ListWebAppsCommandOutput } from "./commands/ListWebAppsCommand" ;
204
230
import {
205
231
ListWorkflowsCommand ,
206
232
ListWorkflowsCommandInput ,
@@ -275,6 +301,16 @@ import {
275
301
UpdateServerCommandOutput ,
276
302
} from "./commands/UpdateServerCommand" ;
277
303
import { UpdateUserCommand , UpdateUserCommandInput , UpdateUserCommandOutput } from "./commands/UpdateUserCommand" ;
304
+ import {
305
+ UpdateWebAppCommand ,
306
+ UpdateWebAppCommandInput ,
307
+ UpdateWebAppCommandOutput ,
308
+ } from "./commands/UpdateWebAppCommand" ;
309
+ import {
310
+ UpdateWebAppCustomizationCommand ,
311
+ UpdateWebAppCustomizationCommandInput ,
312
+ UpdateWebAppCustomizationCommandOutput ,
313
+ } from "./commands/UpdateWebAppCustomizationCommand" ;
278
314
import { TransferClient , TransferClientConfig } from "./TransferClient" ;
279
315
280
316
const commands = {
@@ -284,6 +320,7 @@ const commands = {
284
320
CreateProfileCommand,
285
321
CreateServerCommand,
286
322
CreateUserCommand,
323
+ CreateWebAppCommand,
287
324
CreateWorkflowCommand,
288
325
DeleteAccessCommand,
289
326
DeleteAgreementCommand,
@@ -294,6 +331,8 @@ const commands = {
294
331
DeleteServerCommand,
295
332
DeleteSshPublicKeyCommand,
296
333
DeleteUserCommand,
334
+ DeleteWebAppCommand,
335
+ DeleteWebAppCustomizationCommand,
297
336
DeleteWorkflowCommand,
298
337
DescribeAccessCommand,
299
338
DescribeAgreementCommand,
@@ -305,6 +344,8 @@ const commands = {
305
344
DescribeSecurityPolicyCommand,
306
345
DescribeServerCommand,
307
346
DescribeUserCommand,
347
+ DescribeWebAppCommand,
348
+ DescribeWebAppCustomizationCommand,
308
349
DescribeWorkflowCommand,
309
350
ImportCertificateCommand,
310
351
ImportHostKeyCommand,
@@ -321,6 +362,7 @@ const commands = {
321
362
ListServersCommand,
322
363
ListTagsForResourceCommand,
323
364
ListUsersCommand,
365
+ ListWebAppsCommand,
324
366
ListWorkflowsCommand,
325
367
SendWorkflowStepStateCommand,
326
368
StartDirectoryListingCommand,
@@ -339,6 +381,8 @@ const commands = {
339
381
UpdateProfileCommand,
340
382
UpdateServerCommand,
341
383
UpdateUserCommand,
384
+ UpdateWebAppCommand,
385
+ UpdateWebAppCustomizationCommand,
342
386
} ;
343
387
344
388
export interface Transfer {
@@ -415,6 +459,17 @@ export interface Transfer {
415
459
cb : ( err : any , data ?: CreateUserCommandOutput ) => void
416
460
) : void ;
417
461
462
+ /**
463
+ * @see {@link CreateWebAppCommand }
464
+ */
465
+ createWebApp ( args : CreateWebAppCommandInput , options ?: __HttpHandlerOptions ) : Promise < CreateWebAppCommandOutput > ;
466
+ createWebApp ( args : CreateWebAppCommandInput , cb : ( err : any , data ?: CreateWebAppCommandOutput ) => void ) : void ;
467
+ createWebApp (
468
+ args : CreateWebAppCommandInput ,
469
+ options : __HttpHandlerOptions ,
470
+ cb : ( err : any , data ?: CreateWebAppCommandOutput ) => void
471
+ ) : void ;
472
+
418
473
/**
419
474
* @see {@link CreateWorkflowCommand }
420
475
*/
@@ -546,6 +601,34 @@ export interface Transfer {
546
601
cb : ( err : any , data ?: DeleteUserCommandOutput ) => void
547
602
) : void ;
548
603
604
+ /**
605
+ * @see {@link DeleteWebAppCommand }
606
+ */
607
+ deleteWebApp ( args : DeleteWebAppCommandInput , options ?: __HttpHandlerOptions ) : Promise < DeleteWebAppCommandOutput > ;
608
+ deleteWebApp ( args : DeleteWebAppCommandInput , cb : ( err : any , data ?: DeleteWebAppCommandOutput ) => void ) : void ;
609
+ deleteWebApp (
610
+ args : DeleteWebAppCommandInput ,
611
+ options : __HttpHandlerOptions ,
612
+ cb : ( err : any , data ?: DeleteWebAppCommandOutput ) => void
613
+ ) : void ;
614
+
615
+ /**
616
+ * @see {@link DeleteWebAppCustomizationCommand }
617
+ */
618
+ deleteWebAppCustomization (
619
+ args : DeleteWebAppCustomizationCommandInput ,
620
+ options ?: __HttpHandlerOptions
621
+ ) : Promise < DeleteWebAppCustomizationCommandOutput > ;
622
+ deleteWebAppCustomization (
623
+ args : DeleteWebAppCustomizationCommandInput ,
624
+ cb : ( err : any , data ?: DeleteWebAppCustomizationCommandOutput ) => void
625
+ ) : void ;
626
+ deleteWebAppCustomization (
627
+ args : DeleteWebAppCustomizationCommandInput ,
628
+ options : __HttpHandlerOptions ,
629
+ cb : ( err : any , data ?: DeleteWebAppCustomizationCommandOutput ) => void
630
+ ) : void ;
631
+
549
632
/**
550
633
* @see {@link DeleteWorkflowCommand }
551
634
*/
@@ -712,6 +795,37 @@ export interface Transfer {
712
795
cb : ( err : any , data ?: DescribeUserCommandOutput ) => void
713
796
) : void ;
714
797
798
+ /**
799
+ * @see {@link DescribeWebAppCommand }
800
+ */
801
+ describeWebApp (
802
+ args : DescribeWebAppCommandInput ,
803
+ options ?: __HttpHandlerOptions
804
+ ) : Promise < DescribeWebAppCommandOutput > ;
805
+ describeWebApp ( args : DescribeWebAppCommandInput , cb : ( err : any , data ?: DescribeWebAppCommandOutput ) => void ) : void ;
806
+ describeWebApp (
807
+ args : DescribeWebAppCommandInput ,
808
+ options : __HttpHandlerOptions ,
809
+ cb : ( err : any , data ?: DescribeWebAppCommandOutput ) => void
810
+ ) : void ;
811
+
812
+ /**
813
+ * @see {@link DescribeWebAppCustomizationCommand }
814
+ */
815
+ describeWebAppCustomization (
816
+ args : DescribeWebAppCustomizationCommandInput ,
817
+ options ?: __HttpHandlerOptions
818
+ ) : Promise < DescribeWebAppCustomizationCommandOutput > ;
819
+ describeWebAppCustomization (
820
+ args : DescribeWebAppCustomizationCommandInput ,
821
+ cb : ( err : any , data ?: DescribeWebAppCustomizationCommandOutput ) => void
822
+ ) : void ;
823
+ describeWebAppCustomization (
824
+ args : DescribeWebAppCustomizationCommandInput ,
825
+ options : __HttpHandlerOptions ,
826
+ cb : ( err : any , data ?: DescribeWebAppCustomizationCommandOutput ) => void
827
+ ) : void ;
828
+
715
829
/**
716
830
* @see {@link DescribeWorkflowCommand }
717
831
*/
@@ -944,6 +1058,18 @@ export interface Transfer {
944
1058
cb : ( err : any , data ?: ListUsersCommandOutput ) => void
945
1059
) : void ;
946
1060
1061
+ /**
1062
+ * @see {@link ListWebAppsCommand }
1063
+ */
1064
+ listWebApps ( ) : Promise < ListWebAppsCommandOutput > ;
1065
+ listWebApps ( args : ListWebAppsCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListWebAppsCommandOutput > ;
1066
+ listWebApps ( args : ListWebAppsCommandInput , cb : ( err : any , data ?: ListWebAppsCommandOutput ) => void ) : void ;
1067
+ listWebApps (
1068
+ args : ListWebAppsCommandInput ,
1069
+ options : __HttpHandlerOptions ,
1070
+ cb : ( err : any , data ?: ListWebAppsCommandOutput ) => void
1071
+ ) : void ;
1072
+
947
1073
/**
948
1074
* @see {@link ListWorkflowsCommand }
949
1075
*/
@@ -1181,6 +1307,34 @@ export interface Transfer {
1181
1307
options : __HttpHandlerOptions ,
1182
1308
cb : ( err : any , data ?: UpdateUserCommandOutput ) => void
1183
1309
) : void ;
1310
+
1311
+ /**
1312
+ * @see {@link UpdateWebAppCommand }
1313
+ */
1314
+ updateWebApp ( args : UpdateWebAppCommandInput , options ?: __HttpHandlerOptions ) : Promise < UpdateWebAppCommandOutput > ;
1315
+ updateWebApp ( args : UpdateWebAppCommandInput , cb : ( err : any , data ?: UpdateWebAppCommandOutput ) => void ) : void ;
1316
+ updateWebApp (
1317
+ args : UpdateWebAppCommandInput ,
1318
+ options : __HttpHandlerOptions ,
1319
+ cb : ( err : any , data ?: UpdateWebAppCommandOutput ) => void
1320
+ ) : void ;
1321
+
1322
+ /**
1323
+ * @see {@link UpdateWebAppCustomizationCommand }
1324
+ */
1325
+ updateWebAppCustomization (
1326
+ args : UpdateWebAppCustomizationCommandInput ,
1327
+ options ?: __HttpHandlerOptions
1328
+ ) : Promise < UpdateWebAppCustomizationCommandOutput > ;
1329
+ updateWebAppCustomization (
1330
+ args : UpdateWebAppCustomizationCommandInput ,
1331
+ cb : ( err : any , data ?: UpdateWebAppCustomizationCommandOutput ) => void
1332
+ ) : void ;
1333
+ updateWebAppCustomization (
1334
+ args : UpdateWebAppCustomizationCommandInput ,
1335
+ options : __HttpHandlerOptions ,
1336
+ cb : ( err : any , data ?: UpdateWebAppCustomizationCommandOutput ) => void
1337
+ ) : void ;
1184
1338
}
1185
1339
1186
1340
/**
0 commit comments