@aws-sdk/client-transfer 3.699.0 → 3.703.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/README.md +64 -0
  2. package/dist-cjs/index.js +377 -5
  3. package/dist-es/Transfer.js +16 -0
  4. package/dist-es/commands/CreateWebAppCommand.js +22 -0
  5. package/dist-es/commands/DeleteWebAppCommand.js +22 -0
  6. package/dist-es/commands/DeleteWebAppCustomizationCommand.js +22 -0
  7. package/dist-es/commands/DescribeWebAppCommand.js +22 -0
  8. package/dist-es/commands/DescribeWebAppCustomizationCommand.js +23 -0
  9. package/dist-es/commands/ListWebAppsCommand.js +22 -0
  10. package/dist-es/commands/UpdateWebAppCommand.js +22 -0
  11. package/dist-es/commands/UpdateWebAppCustomizationCommand.js +23 -0
  12. package/dist-es/commands/index.js +8 -0
  13. package/dist-es/models/models_0.js +48 -0
  14. package/dist-es/pagination/ListWebAppsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +1 -0
  16. package/dist-es/protocols/Aws_json1_1.js +171 -3
  17. package/dist-types/Transfer.d.ts +57 -0
  18. package/dist-types/TransferClient.d.ts +10 -2
  19. package/dist-types/commands/CreateWebAppCommand.d.ts +102 -0
  20. package/dist-types/commands/DeleteWebAppCommand.d.ts +85 -0
  21. package/dist-types/commands/DeleteWebAppCustomizationCommand.d.ts +90 -0
  22. package/dist-types/commands/DescribeWebAppCommand.d.ts +108 -0
  23. package/dist-types/commands/DescribeWebAppCustomizationCommand.d.ts +93 -0
  24. package/dist-types/commands/ListWebAppsCommand.d.ts +92 -0
  25. package/dist-types/commands/UpdateWebAppCommand.d.ts +101 -0
  26. package/dist-types/commands/UpdateWebAppCustomizationCommand.d.ts +95 -0
  27. package/dist-types/commands/index.d.ts +8 -0
  28. package/dist-types/models/models_0.d.ts +490 -12
  29. package/dist-types/pagination/ListWebAppsPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
  32. package/dist-types/ts3.4/Transfer.d.ts +137 -0
  33. package/dist-types/ts3.4/TransferClient.d.ts +50 -2
  34. package/dist-types/ts3.4/commands/CreateWebAppCommand.d.ts +47 -0
  35. package/dist-types/ts3.4/commands/DeleteWebAppCommand.d.ts +45 -0
  36. package/dist-types/ts3.4/commands/DeleteWebAppCustomizationCommand.d.ts +47 -0
  37. package/dist-types/ts3.4/commands/DescribeWebAppCommand.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/DescribeWebAppCustomizationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/ListWebAppsCommand.d.ts +47 -0
  40. package/dist-types/ts3.4/commands/UpdateWebAppCommand.d.ts +47 -0
  41. package/dist-types/ts3.4/commands/UpdateWebAppCustomizationCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +179 -0
  44. package/dist-types/ts3.4/pagination/ListWebAppsPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
  47. package/package.json +1 -1
@@ -27,6 +27,10 @@ import {
27
27
  CreateUserCommandInput,
28
28
  CreateUserCommandOutput,
29
29
  } from "../commands/CreateUserCommand";
30
+ import {
31
+ CreateWebAppCommandInput,
32
+ CreateWebAppCommandOutput,
33
+ } from "../commands/CreateWebAppCommand";
30
34
  import {
31
35
  CreateWorkflowCommandInput,
32
36
  CreateWorkflowCommandOutput,
@@ -67,6 +71,14 @@ import {
67
71
  DeleteUserCommandInput,
68
72
  DeleteUserCommandOutput,
69
73
  } from "../commands/DeleteUserCommand";
74
+ import {
75
+ DeleteWebAppCommandInput,
76
+ DeleteWebAppCommandOutput,
77
+ } from "../commands/DeleteWebAppCommand";
78
+ import {
79
+ DeleteWebAppCustomizationCommandInput,
80
+ DeleteWebAppCustomizationCommandOutput,
81
+ } from "../commands/DeleteWebAppCustomizationCommand";
70
82
  import {
71
83
  DeleteWorkflowCommandInput,
72
84
  DeleteWorkflowCommandOutput,
@@ -111,6 +123,14 @@ import {
111
123
  DescribeUserCommandInput,
112
124
  DescribeUserCommandOutput,
113
125
  } from "../commands/DescribeUserCommand";
126
+ import {
127
+ DescribeWebAppCommandInput,
128
+ DescribeWebAppCommandOutput,
129
+ } from "../commands/DescribeWebAppCommand";
130
+ import {
131
+ DescribeWebAppCustomizationCommandInput,
132
+ DescribeWebAppCustomizationCommandOutput,
133
+ } from "../commands/DescribeWebAppCustomizationCommand";
114
134
  import {
115
135
  DescribeWorkflowCommandInput,
116
136
  DescribeWorkflowCommandOutput,
@@ -175,6 +195,10 @@ import {
175
195
  ListUsersCommandInput,
176
196
  ListUsersCommandOutput,
177
197
  } from "../commands/ListUsersCommand";
198
+ import {
199
+ ListWebAppsCommandInput,
200
+ ListWebAppsCommandOutput,
201
+ } from "../commands/ListWebAppsCommand";
178
202
  import {
179
203
  ListWorkflowsCommandInput,
180
204
  ListWorkflowsCommandOutput,
@@ -247,6 +271,14 @@ import {
247
271
  UpdateUserCommandInput,
248
272
  UpdateUserCommandOutput,
249
273
  } from "../commands/UpdateUserCommand";
274
+ import {
275
+ UpdateWebAppCommandInput,
276
+ UpdateWebAppCommandOutput,
277
+ } from "../commands/UpdateWebAppCommand";
278
+ import {
279
+ UpdateWebAppCustomizationCommandInput,
280
+ UpdateWebAppCustomizationCommandOutput,
281
+ } from "../commands/UpdateWebAppCustomizationCommand";
250
282
  export declare const se_CreateAccessCommand: (
251
283
  input: CreateAccessCommandInput,
252
284
  context: __SerdeContext
@@ -271,6 +303,10 @@ export declare const se_CreateUserCommand: (
271
303
  input: CreateUserCommandInput,
272
304
  context: __SerdeContext
273
305
  ) => Promise<__HttpRequest>;
306
+ export declare const se_CreateWebAppCommand: (
307
+ input: CreateWebAppCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
274
310
  export declare const se_CreateWorkflowCommand: (
275
311
  input: CreateWorkflowCommandInput,
276
312
  context: __SerdeContext
@@ -311,6 +347,14 @@ export declare const se_DeleteUserCommand: (
311
347
  input: DeleteUserCommandInput,
312
348
  context: __SerdeContext
313
349
  ) => Promise<__HttpRequest>;
350
+ export declare const se_DeleteWebAppCommand: (
351
+ input: DeleteWebAppCommandInput,
352
+ context: __SerdeContext
353
+ ) => Promise<__HttpRequest>;
354
+ export declare const se_DeleteWebAppCustomizationCommand: (
355
+ input: DeleteWebAppCustomizationCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
314
358
  export declare const se_DeleteWorkflowCommand: (
315
359
  input: DeleteWorkflowCommandInput,
316
360
  context: __SerdeContext
@@ -355,6 +399,14 @@ export declare const se_DescribeUserCommand: (
355
399
  input: DescribeUserCommandInput,
356
400
  context: __SerdeContext
357
401
  ) => Promise<__HttpRequest>;
402
+ export declare const se_DescribeWebAppCommand: (
403
+ input: DescribeWebAppCommandInput,
404
+ context: __SerdeContext
405
+ ) => Promise<__HttpRequest>;
406
+ export declare const se_DescribeWebAppCustomizationCommand: (
407
+ input: DescribeWebAppCustomizationCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
358
410
  export declare const se_DescribeWorkflowCommand: (
359
411
  input: DescribeWorkflowCommandInput,
360
412
  context: __SerdeContext
@@ -419,6 +471,10 @@ export declare const se_ListUsersCommand: (
419
471
  input: ListUsersCommandInput,
420
472
  context: __SerdeContext
421
473
  ) => Promise<__HttpRequest>;
474
+ export declare const se_ListWebAppsCommand: (
475
+ input: ListWebAppsCommandInput,
476
+ context: __SerdeContext
477
+ ) => Promise<__HttpRequest>;
422
478
  export declare const se_ListWorkflowsCommand: (
423
479
  input: ListWorkflowsCommandInput,
424
480
  context: __SerdeContext
@@ -491,6 +547,14 @@ export declare const se_UpdateUserCommand: (
491
547
  input: UpdateUserCommandInput,
492
548
  context: __SerdeContext
493
549
  ) => Promise<__HttpRequest>;
550
+ export declare const se_UpdateWebAppCommand: (
551
+ input: UpdateWebAppCommandInput,
552
+ context: __SerdeContext
553
+ ) => Promise<__HttpRequest>;
554
+ export declare const se_UpdateWebAppCustomizationCommand: (
555
+ input: UpdateWebAppCustomizationCommandInput,
556
+ context: __SerdeContext
557
+ ) => Promise<__HttpRequest>;
494
558
  export declare const de_CreateAccessCommand: (
495
559
  output: __HttpResponse,
496
560
  context: __SerdeContext
@@ -515,6 +579,10 @@ export declare const de_CreateUserCommand: (
515
579
  output: __HttpResponse,
516
580
  context: __SerdeContext
517
581
  ) => Promise<CreateUserCommandOutput>;
582
+ export declare const de_CreateWebAppCommand: (
583
+ output: __HttpResponse,
584
+ context: __SerdeContext
585
+ ) => Promise<CreateWebAppCommandOutput>;
518
586
  export declare const de_CreateWorkflowCommand: (
519
587
  output: __HttpResponse,
520
588
  context: __SerdeContext
@@ -555,6 +623,14 @@ export declare const de_DeleteUserCommand: (
555
623
  output: __HttpResponse,
556
624
  context: __SerdeContext
557
625
  ) => Promise<DeleteUserCommandOutput>;
626
+ export declare const de_DeleteWebAppCommand: (
627
+ output: __HttpResponse,
628
+ context: __SerdeContext
629
+ ) => Promise<DeleteWebAppCommandOutput>;
630
+ export declare const de_DeleteWebAppCustomizationCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<DeleteWebAppCustomizationCommandOutput>;
558
634
  export declare const de_DeleteWorkflowCommand: (
559
635
  output: __HttpResponse,
560
636
  context: __SerdeContext
@@ -599,6 +675,14 @@ export declare const de_DescribeUserCommand: (
599
675
  output: __HttpResponse,
600
676
  context: __SerdeContext
601
677
  ) => Promise<DescribeUserCommandOutput>;
678
+ export declare const de_DescribeWebAppCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<DescribeWebAppCommandOutput>;
682
+ export declare const de_DescribeWebAppCustomizationCommand: (
683
+ output: __HttpResponse,
684
+ context: __SerdeContext
685
+ ) => Promise<DescribeWebAppCustomizationCommandOutput>;
602
686
  export declare const de_DescribeWorkflowCommand: (
603
687
  output: __HttpResponse,
604
688
  context: __SerdeContext
@@ -663,6 +747,10 @@ export declare const de_ListUsersCommand: (
663
747
  output: __HttpResponse,
664
748
  context: __SerdeContext
665
749
  ) => Promise<ListUsersCommandOutput>;
750
+ export declare const de_ListWebAppsCommand: (
751
+ output: __HttpResponse,
752
+ context: __SerdeContext
753
+ ) => Promise<ListWebAppsCommandOutput>;
666
754
  export declare const de_ListWorkflowsCommand: (
667
755
  output: __HttpResponse,
668
756
  context: __SerdeContext
@@ -735,3 +823,11 @@ export declare const de_UpdateUserCommand: (
735
823
  output: __HttpResponse,
736
824
  context: __SerdeContext
737
825
  ) => Promise<UpdateUserCommandOutput>;
826
+ export declare const de_UpdateWebAppCommand: (
827
+ output: __HttpResponse,
828
+ context: __SerdeContext
829
+ ) => Promise<UpdateWebAppCommandOutput>;
830
+ export declare const de_UpdateWebAppCustomizationCommand: (
831
+ output: __HttpResponse,
832
+ context: __SerdeContext
833
+ ) => Promise<UpdateWebAppCustomizationCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.699.0",
4
+ "version": "3.703.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-transfer",