@aws-sdk/client-transfer 3.699.0 → 3.709.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 +36 -36
@@ -0,0 +1,93 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DescribeWebAppCustomizationRequest, DescribeWebAppCustomizationResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeWebAppCustomizationCommand}.
14
+ */
15
+ export interface DescribeWebAppCustomizationCommandInput extends DescribeWebAppCustomizationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeWebAppCustomizationCommand}.
21
+ */
22
+ export interface DescribeWebAppCustomizationCommandOutput extends DescribeWebAppCustomizationResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeWebAppCustomizationCommand_base: {
25
+ new (input: DescribeWebAppCustomizationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWebAppCustomizationCommandInput, DescribeWebAppCustomizationCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: DescribeWebAppCustomizationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeWebAppCustomizationCommandInput, DescribeWebAppCustomizationCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Describes the web app customization object that's identified by <code>WebAppId</code>.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { TransferClient, DescribeWebAppCustomizationCommand } from "@aws-sdk/client-transfer"; // ES Modules import
35
+ * // const { TransferClient, DescribeWebAppCustomizationCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
36
+ * const client = new TransferClient(config);
37
+ * const input = { // DescribeWebAppCustomizationRequest
38
+ * WebAppId: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DescribeWebAppCustomizationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DescribeWebAppCustomizationResponse
43
+ * // WebAppCustomization: { // DescribedWebAppCustomization
44
+ * // Arn: "STRING_VALUE", // required
45
+ * // WebAppId: "STRING_VALUE", // required
46
+ * // Title: "STRING_VALUE",
47
+ * // LogoFile: new Uint8Array(),
48
+ * // FaviconFile: new Uint8Array(),
49
+ * // },
50
+ * // };
51
+ *
52
+ * ```
53
+ *
54
+ * @param DescribeWebAppCustomizationCommandInput - {@link DescribeWebAppCustomizationCommandInput}
55
+ * @returns {@link DescribeWebAppCustomizationCommandOutput}
56
+ * @see {@link DescribeWebAppCustomizationCommandInput} for command's `input` shape.
57
+ * @see {@link DescribeWebAppCustomizationCommandOutput} for command's `response` shape.
58
+ * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>You do not have sufficient access to perform this action.</p>
62
+ *
63
+ * @throws {@link InternalServiceError} (server fault)
64
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
65
+ *
66
+ * @throws {@link InvalidRequestException} (client fault)
67
+ * <p>This exception is thrown when the client submits a malformed request.</p>
68
+ *
69
+ * @throws {@link ResourceNotFoundException} (client fault)
70
+ * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
71
+ * service.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>The request was denied due to request throttling.</p>
75
+ *
76
+ * @throws {@link TransferServiceException}
77
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
78
+ *
79
+ * @public
80
+ */
81
+ export declare class DescribeWebAppCustomizationCommand extends DescribeWebAppCustomizationCommand_base {
82
+ /** @internal type navigation helper, not in runtime. */
83
+ protected static __types: {
84
+ api: {
85
+ input: DescribeWebAppCustomizationRequest;
86
+ output: DescribeWebAppCustomizationResponse;
87
+ };
88
+ sdk: {
89
+ input: DescribeWebAppCustomizationCommandInput;
90
+ output: DescribeWebAppCustomizationCommandOutput;
91
+ };
92
+ };
93
+ }
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListWebAppsRequest, ListWebAppsResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListWebAppsCommand}.
14
+ */
15
+ export interface ListWebAppsCommandInput extends ListWebAppsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListWebAppsCommand}.
21
+ */
22
+ export interface ListWebAppsCommandOutput extends ListWebAppsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListWebAppsCommand_base: {
25
+ new (input: ListWebAppsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWebAppsCommandInput, ListWebAppsCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListWebAppsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListWebAppsCommandInput, ListWebAppsCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Lists all web apps associated with your Amazon Web Services account for your current region.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { TransferClient, ListWebAppsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
35
+ * // const { TransferClient, ListWebAppsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
36
+ * const client = new TransferClient(config);
37
+ * const input = { // ListWebAppsRequest
38
+ * MaxResults: Number("int"),
39
+ * NextToken: "STRING_VALUE",
40
+ * };
41
+ * const command = new ListWebAppsCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // ListWebAppsResponse
44
+ * // NextToken: "STRING_VALUE",
45
+ * // WebApps: [ // ListedWebApps // required
46
+ * // { // ListedWebApp
47
+ * // Arn: "STRING_VALUE", // required
48
+ * // WebAppId: "STRING_VALUE", // required
49
+ * // AccessEndpoint: "STRING_VALUE",
50
+ * // WebAppEndpoint: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param ListWebAppsCommandInput - {@link ListWebAppsCommandInput}
58
+ * @returns {@link ListWebAppsCommandOutput}
59
+ * @see {@link ListWebAppsCommandInput} for command's `input` shape.
60
+ * @see {@link ListWebAppsCommandOutput} for command's `response` shape.
61
+ * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
62
+ *
63
+ * @throws {@link InternalServiceError} (server fault)
64
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
65
+ *
66
+ * @throws {@link InvalidNextTokenException} (client fault)
67
+ * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
68
+ *
69
+ * @throws {@link InvalidRequestException} (client fault)
70
+ * <p>This exception is thrown when the client submits a malformed request.</p>
71
+ *
72
+ * @throws {@link ThrottlingException} (client fault)
73
+ * <p>The request was denied due to request throttling.</p>
74
+ *
75
+ * @throws {@link TransferServiceException}
76
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
77
+ *
78
+ * @public
79
+ */
80
+ export declare class ListWebAppsCommand extends ListWebAppsCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: ListWebAppsRequest;
85
+ output: ListWebAppsResponse;
86
+ };
87
+ sdk: {
88
+ input: ListWebAppsCommandInput;
89
+ output: ListWebAppsCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,101 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateWebAppRequest, UpdateWebAppResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateWebAppCommand}.
14
+ */
15
+ export interface UpdateWebAppCommandInput extends UpdateWebAppRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateWebAppCommand}.
21
+ */
22
+ export interface UpdateWebAppCommandOutput extends UpdateWebAppResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateWebAppCommand_base: {
25
+ new (input: UpdateWebAppCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWebAppCommandInput, UpdateWebAppCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateWebAppCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWebAppCommandInput, UpdateWebAppCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Assigns new properties to a web app. You can modify the access point, identity provider details, and the web app units.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { TransferClient, UpdateWebAppCommand } from "@aws-sdk/client-transfer"; // ES Modules import
35
+ * // const { TransferClient, UpdateWebAppCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
36
+ * const client = new TransferClient(config);
37
+ * const input = { // UpdateWebAppRequest
38
+ * WebAppId: "STRING_VALUE", // required
39
+ * IdentityProviderDetails: { // UpdateWebAppIdentityProviderDetails Union: only one key present
40
+ * IdentityCenterConfig: { // UpdateWebAppIdentityCenterConfig
41
+ * Role: "STRING_VALUE",
42
+ * },
43
+ * },
44
+ * AccessEndpoint: "STRING_VALUE",
45
+ * WebAppUnits: { // WebAppUnits Union: only one key present
46
+ * Provisioned: Number("int"),
47
+ * },
48
+ * };
49
+ * const command = new UpdateWebAppCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // UpdateWebAppResponse
52
+ * // WebAppId: "STRING_VALUE", // required
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param UpdateWebAppCommandInput - {@link UpdateWebAppCommandInput}
58
+ * @returns {@link UpdateWebAppCommandOutput}
59
+ * @see {@link UpdateWebAppCommandInput} for command's `input` shape.
60
+ * @see {@link UpdateWebAppCommandOutput} for command's `response` shape.
61
+ * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>You do not have sufficient access to perform this action.</p>
65
+ *
66
+ * @throws {@link ConflictException} (client fault)
67
+ * <p>This exception is thrown when the <code>UpdateServer</code> is called for a file transfer
68
+ * protocol-enabled server that has VPC as the endpoint type and the server's
69
+ * <code>VpcEndpointID</code> is not in the available state.</p>
70
+ *
71
+ * @throws {@link InternalServiceError} (server fault)
72
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
73
+ *
74
+ * @throws {@link InvalidRequestException} (client fault)
75
+ * <p>This exception is thrown when the client submits a malformed request.</p>
76
+ *
77
+ * @throws {@link ResourceNotFoundException} (client fault)
78
+ * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
79
+ * service.</p>
80
+ *
81
+ * @throws {@link ThrottlingException} (client fault)
82
+ * <p>The request was denied due to request throttling.</p>
83
+ *
84
+ * @throws {@link TransferServiceException}
85
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
86
+ *
87
+ * @public
88
+ */
89
+ export declare class UpdateWebAppCommand extends UpdateWebAppCommand_base {
90
+ /** @internal type navigation helper, not in runtime. */
91
+ protected static __types: {
92
+ api: {
93
+ input: UpdateWebAppRequest;
94
+ output: UpdateWebAppResponse;
95
+ };
96
+ sdk: {
97
+ input: UpdateWebAppCommandInput;
98
+ output: UpdateWebAppCommandOutput;
99
+ };
100
+ };
101
+ }
@@ -0,0 +1,95 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateWebAppCustomizationRequest, UpdateWebAppCustomizationResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateWebAppCustomizationCommand}.
14
+ */
15
+ export interface UpdateWebAppCustomizationCommandInput extends UpdateWebAppCustomizationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateWebAppCustomizationCommand}.
21
+ */
22
+ export interface UpdateWebAppCustomizationCommandOutput extends UpdateWebAppCustomizationResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateWebAppCustomizationCommand_base: {
25
+ new (input: UpdateWebAppCustomizationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWebAppCustomizationCommandInput, UpdateWebAppCustomizationCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateWebAppCustomizationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWebAppCustomizationCommandInput, UpdateWebAppCustomizationCommandOutput, TransferClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Assigns new customization properties to a web app. You can modify the icon file, logo file, and title.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { TransferClient, UpdateWebAppCustomizationCommand } from "@aws-sdk/client-transfer"; // ES Modules import
35
+ * // const { TransferClient, UpdateWebAppCustomizationCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
36
+ * const client = new TransferClient(config);
37
+ * const input = { // UpdateWebAppCustomizationRequest
38
+ * WebAppId: "STRING_VALUE", // required
39
+ * Title: "STRING_VALUE",
40
+ * LogoFile: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
41
+ * FaviconFile: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
42
+ * };
43
+ * const command = new UpdateWebAppCustomizationCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // UpdateWebAppCustomizationResponse
46
+ * // WebAppId: "STRING_VALUE", // required
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param UpdateWebAppCustomizationCommandInput - {@link UpdateWebAppCustomizationCommandInput}
52
+ * @returns {@link UpdateWebAppCustomizationCommandOutput}
53
+ * @see {@link UpdateWebAppCustomizationCommandInput} for command's `input` shape.
54
+ * @see {@link UpdateWebAppCustomizationCommandOutput} for command's `response` shape.
55
+ * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
56
+ *
57
+ * @throws {@link AccessDeniedException} (client fault)
58
+ * <p>You do not have sufficient access to perform this action.</p>
59
+ *
60
+ * @throws {@link ConflictException} (client fault)
61
+ * <p>This exception is thrown when the <code>UpdateServer</code> is called for a file transfer
62
+ * protocol-enabled server that has VPC as the endpoint type and the server's
63
+ * <code>VpcEndpointID</code> is not in the available state.</p>
64
+ *
65
+ * @throws {@link InternalServiceError} (server fault)
66
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
67
+ *
68
+ * @throws {@link InvalidRequestException} (client fault)
69
+ * <p>This exception is thrown when the client submits a malformed request.</p>
70
+ *
71
+ * @throws {@link ResourceNotFoundException} (client fault)
72
+ * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
73
+ * service.</p>
74
+ *
75
+ * @throws {@link ThrottlingException} (client fault)
76
+ * <p>The request was denied due to request throttling.</p>
77
+ *
78
+ * @throws {@link TransferServiceException}
79
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
80
+ *
81
+ * @public
82
+ */
83
+ export declare class UpdateWebAppCustomizationCommand extends UpdateWebAppCustomizationCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: UpdateWebAppCustomizationRequest;
88
+ output: UpdateWebAppCustomizationResponse;
89
+ };
90
+ sdk: {
91
+ input: UpdateWebAppCustomizationCommandInput;
92
+ output: UpdateWebAppCustomizationCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -4,6 +4,7 @@ export * from "./CreateConnectorCommand";
4
4
  export * from "./CreateProfileCommand";
5
5
  export * from "./CreateServerCommand";
6
6
  export * from "./CreateUserCommand";
7
+ export * from "./CreateWebAppCommand";
7
8
  export * from "./CreateWorkflowCommand";
8
9
  export * from "./DeleteAccessCommand";
9
10
  export * from "./DeleteAgreementCommand";
@@ -14,6 +15,8 @@ export * from "./DeleteProfileCommand";
14
15
  export * from "./DeleteServerCommand";
15
16
  export * from "./DeleteSshPublicKeyCommand";
16
17
  export * from "./DeleteUserCommand";
18
+ export * from "./DeleteWebAppCommand";
19
+ export * from "./DeleteWebAppCustomizationCommand";
17
20
  export * from "./DeleteWorkflowCommand";
18
21
  export * from "./DescribeAccessCommand";
19
22
  export * from "./DescribeAgreementCommand";
@@ -25,6 +28,8 @@ export * from "./DescribeProfileCommand";
25
28
  export * from "./DescribeSecurityPolicyCommand";
26
29
  export * from "./DescribeServerCommand";
27
30
  export * from "./DescribeUserCommand";
31
+ export * from "./DescribeWebAppCommand";
32
+ export * from "./DescribeWebAppCustomizationCommand";
28
33
  export * from "./DescribeWorkflowCommand";
29
34
  export * from "./ImportCertificateCommand";
30
35
  export * from "./ImportHostKeyCommand";
@@ -41,6 +46,7 @@ export * from "./ListSecurityPoliciesCommand";
41
46
  export * from "./ListServersCommand";
42
47
  export * from "./ListTagsForResourceCommand";
43
48
  export * from "./ListUsersCommand";
49
+ export * from "./ListWebAppsCommand";
44
50
  export * from "./ListWorkflowsCommand";
45
51
  export * from "./SendWorkflowStepStateCommand";
46
52
  export * from "./StartDirectoryListingCommand";
@@ -59,3 +65,5 @@ export * from "./UpdateHostKeyCommand";
59
65
  export * from "./UpdateProfileCommand";
60
66
  export * from "./UpdateServerCommand";
61
67
  export * from "./UpdateUserCommand";
68
+ export * from "./UpdateWebAppCommand";
69
+ export * from "./UpdateWebAppCustomizationCommand";