@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.
- package/README.md +64 -0
- package/dist-cjs/index.js +377 -5
- package/dist-es/Transfer.js +16 -0
- package/dist-es/commands/CreateWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCustomizationCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/ListWebAppsCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +48 -0
- package/dist-es/pagination/ListWebAppsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +171 -3
- package/dist-types/Transfer.d.ts +57 -0
- package/dist-types/TransferClient.d.ts +10 -2
- package/dist-types/commands/CreateWebAppCommand.d.ts +102 -0
- package/dist-types/commands/DeleteWebAppCommand.d.ts +85 -0
- package/dist-types/commands/DeleteWebAppCustomizationCommand.d.ts +90 -0
- package/dist-types/commands/DescribeWebAppCommand.d.ts +108 -0
- package/dist-types/commands/DescribeWebAppCustomizationCommand.d.ts +93 -0
- package/dist-types/commands/ListWebAppsCommand.d.ts +92 -0
- package/dist-types/commands/UpdateWebAppCommand.d.ts +101 -0
- package/dist-types/commands/UpdateWebAppCustomizationCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +490 -12
- package/dist-types/pagination/ListWebAppsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/Transfer.d.ts +137 -0
- package/dist-types/ts3.4/TransferClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCustomizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebAppsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +179 -0
- package/dist-types/ts3.4/pagination/ListWebAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +36 -36
package/dist-cjs/index.js
CHANGED
|
@@ -36,6 +36,7 @@ __export(src_exports, {
|
|
|
36
36
|
CreateServerCommand: () => CreateServerCommand,
|
|
37
37
|
CreateServerRequestFilterSensitiveLog: () => CreateServerRequestFilterSensitiveLog,
|
|
38
38
|
CreateUserCommand: () => CreateUserCommand,
|
|
39
|
+
CreateWebAppCommand: () => CreateWebAppCommand,
|
|
39
40
|
CreateWorkflowCommand: () => CreateWorkflowCommand,
|
|
40
41
|
CustomStepStatus: () => CustomStepStatus,
|
|
41
42
|
DeleteAccessCommand: () => DeleteAccessCommand,
|
|
@@ -47,6 +48,8 @@ __export(src_exports, {
|
|
|
47
48
|
DeleteServerCommand: () => DeleteServerCommand,
|
|
48
49
|
DeleteSshPublicKeyCommand: () => DeleteSshPublicKeyCommand,
|
|
49
50
|
DeleteUserCommand: () => DeleteUserCommand,
|
|
51
|
+
DeleteWebAppCommand: () => DeleteWebAppCommand,
|
|
52
|
+
DeleteWebAppCustomizationCommand: () => DeleteWebAppCustomizationCommand,
|
|
50
53
|
DeleteWorkflowCommand: () => DeleteWorkflowCommand,
|
|
51
54
|
DescribeAccessCommand: () => DescribeAccessCommand,
|
|
52
55
|
DescribeAgreementCommand: () => DescribeAgreementCommand,
|
|
@@ -59,8 +62,13 @@ __export(src_exports, {
|
|
|
59
62
|
DescribeSecurityPolicyCommand: () => DescribeSecurityPolicyCommand,
|
|
60
63
|
DescribeServerCommand: () => DescribeServerCommand,
|
|
61
64
|
DescribeUserCommand: () => DescribeUserCommand,
|
|
65
|
+
DescribeWebAppCommand: () => DescribeWebAppCommand,
|
|
66
|
+
DescribeWebAppCustomizationCommand: () => DescribeWebAppCustomizationCommand,
|
|
67
|
+
DescribeWebAppCustomizationResponseFilterSensitiveLog: () => DescribeWebAppCustomizationResponseFilterSensitiveLog,
|
|
62
68
|
DescribeWorkflowCommand: () => DescribeWorkflowCommand,
|
|
63
69
|
DescribedCertificateFilterSensitiveLog: () => DescribedCertificateFilterSensitiveLog,
|
|
70
|
+
DescribedWebAppCustomizationFilterSensitiveLog: () => DescribedWebAppCustomizationFilterSensitiveLog,
|
|
71
|
+
DescribedWebAppIdentityProviderDetails: () => DescribedWebAppIdentityProviderDetails,
|
|
64
72
|
DirectoryListingOptimization: () => DirectoryListingOptimization,
|
|
65
73
|
Domain: () => Domain,
|
|
66
74
|
EncryptionAlg: () => EncryptionAlg,
|
|
@@ -90,6 +98,7 @@ __export(src_exports, {
|
|
|
90
98
|
ListServersCommand: () => ListServersCommand,
|
|
91
99
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
92
100
|
ListUsersCommand: () => ListUsersCommand,
|
|
101
|
+
ListWebAppsCommand: () => ListWebAppsCommand,
|
|
93
102
|
ListWorkflowsCommand: () => ListWorkflowsCommand,
|
|
94
103
|
MapType: () => MapType,
|
|
95
104
|
MdnResponse: () => MdnResponse,
|
|
@@ -131,6 +140,12 @@ __export(src_exports, {
|
|
|
131
140
|
UpdateServerCommand: () => UpdateServerCommand,
|
|
132
141
|
UpdateServerRequestFilterSensitiveLog: () => UpdateServerRequestFilterSensitiveLog,
|
|
133
142
|
UpdateUserCommand: () => UpdateUserCommand,
|
|
143
|
+
UpdateWebAppCommand: () => UpdateWebAppCommand,
|
|
144
|
+
UpdateWebAppCustomizationCommand: () => UpdateWebAppCustomizationCommand,
|
|
145
|
+
UpdateWebAppCustomizationRequestFilterSensitiveLog: () => UpdateWebAppCustomizationRequestFilterSensitiveLog,
|
|
146
|
+
UpdateWebAppIdentityProviderDetails: () => UpdateWebAppIdentityProviderDetails,
|
|
147
|
+
WebAppIdentityProviderDetails: () => WebAppIdentityProviderDetails,
|
|
148
|
+
WebAppUnits: () => WebAppUnits,
|
|
134
149
|
WorkflowStepType: () => WorkflowStepType,
|
|
135
150
|
__Client: () => import_smithy_client.Client,
|
|
136
151
|
paginateListAccesses: () => paginateListAccesses,
|
|
@@ -144,6 +159,7 @@ __export(src_exports, {
|
|
|
144
159
|
paginateListServers: () => paginateListServers,
|
|
145
160
|
paginateListTagsForResource: () => paginateListTagsForResource,
|
|
146
161
|
paginateListUsers: () => paginateListUsers,
|
|
162
|
+
paginateListWebApps: () => paginateListWebApps,
|
|
147
163
|
paginateListWorkflows: () => paginateListWorkflows,
|
|
148
164
|
waitForServerOffline: () => waitForServerOffline,
|
|
149
165
|
waitForServerOnline: () => waitForServerOnline,
|
|
@@ -599,6 +615,22 @@ var DirectoryListingOptimization = {
|
|
|
599
615
|
DISABLED: "DISABLED",
|
|
600
616
|
ENABLED: "ENABLED"
|
|
601
617
|
};
|
|
618
|
+
var WebAppIdentityProviderDetails;
|
|
619
|
+
((WebAppIdentityProviderDetails3) => {
|
|
620
|
+
WebAppIdentityProviderDetails3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
621
|
+
if (value.IdentityCenterConfig !== void 0)
|
|
622
|
+
return visitor.IdentityCenterConfig(value.IdentityCenterConfig);
|
|
623
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
624
|
+
}, "visit");
|
|
625
|
+
})(WebAppIdentityProviderDetails || (WebAppIdentityProviderDetails = {}));
|
|
626
|
+
var WebAppUnits;
|
|
627
|
+
((WebAppUnits3) => {
|
|
628
|
+
WebAppUnits3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
629
|
+
if (value.Provisioned !== void 0)
|
|
630
|
+
return visitor.Provisioned(value.Provisioned);
|
|
631
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
632
|
+
}, "visit");
|
|
633
|
+
})(WebAppUnits || (WebAppUnits = {}));
|
|
602
634
|
var EncryptionType = {
|
|
603
635
|
PGP: "PGP"
|
|
604
636
|
};
|
|
@@ -645,6 +677,22 @@ var State = {
|
|
|
645
677
|
STOPPING: "STOPPING",
|
|
646
678
|
STOP_FAILED: "STOP_FAILED"
|
|
647
679
|
};
|
|
680
|
+
var DescribedWebAppIdentityProviderDetails;
|
|
681
|
+
((DescribedWebAppIdentityProviderDetails2) => {
|
|
682
|
+
DescribedWebAppIdentityProviderDetails2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
683
|
+
if (value.IdentityCenterConfig !== void 0)
|
|
684
|
+
return visitor.IdentityCenterConfig(value.IdentityCenterConfig);
|
|
685
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
686
|
+
}, "visit");
|
|
687
|
+
})(DescribedWebAppIdentityProviderDetails || (DescribedWebAppIdentityProviderDetails = {}));
|
|
688
|
+
var UpdateWebAppIdentityProviderDetails;
|
|
689
|
+
((UpdateWebAppIdentityProviderDetails3) => {
|
|
690
|
+
UpdateWebAppIdentityProviderDetails3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
691
|
+
if (value.IdentityCenterConfig !== void 0)
|
|
692
|
+
return visitor.IdentityCenterConfig(value.IdentityCenterConfig);
|
|
693
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
694
|
+
}, "visit");
|
|
695
|
+
})(UpdateWebAppIdentityProviderDetails || (UpdateWebAppIdentityProviderDetails = {}));
|
|
648
696
|
var DescribedCertificateFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
649
697
|
...obj,
|
|
650
698
|
...obj.Certificate && { Certificate: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -664,6 +712,17 @@ var CreateServerRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
664
712
|
...obj,
|
|
665
713
|
...obj.HostKey && { HostKey: import_smithy_client.SENSITIVE_STRING }
|
|
666
714
|
}), "CreateServerRequestFilterSensitiveLog");
|
|
715
|
+
var DescribedWebAppCustomizationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
716
|
+
...obj,
|
|
717
|
+
...obj.LogoFile && { LogoFile: import_smithy_client.SENSITIVE_STRING },
|
|
718
|
+
...obj.FaviconFile && { FaviconFile: import_smithy_client.SENSITIVE_STRING }
|
|
719
|
+
}), "DescribedWebAppCustomizationFilterSensitiveLog");
|
|
720
|
+
var DescribeWebAppCustomizationResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
...obj.WebAppCustomization && {
|
|
723
|
+
WebAppCustomization: DescribedWebAppCustomizationFilterSensitiveLog(obj.WebAppCustomization)
|
|
724
|
+
}
|
|
725
|
+
}), "DescribeWebAppCustomizationResponseFilterSensitiveLog");
|
|
667
726
|
var ImportHostKeyRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
668
727
|
...obj,
|
|
669
728
|
...obj.HostKeyBody && { HostKeyBody: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -676,6 +735,11 @@ var TestIdentityProviderRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
676
735
|
...obj,
|
|
677
736
|
...obj.UserPassword && { UserPassword: import_smithy_client.SENSITIVE_STRING }
|
|
678
737
|
}), "TestIdentityProviderRequestFilterSensitiveLog");
|
|
738
|
+
var UpdateWebAppCustomizationRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
739
|
+
...obj,
|
|
740
|
+
...obj.LogoFile && { LogoFile: import_smithy_client.SENSITIVE_STRING },
|
|
741
|
+
...obj.FaviconFile && { FaviconFile: import_smithy_client.SENSITIVE_STRING }
|
|
742
|
+
}), "UpdateWebAppCustomizationRequestFilterSensitiveLog");
|
|
679
743
|
|
|
680
744
|
// src/protocols/Aws_json1_1.ts
|
|
681
745
|
var se_CreateAccessCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -714,6 +778,12 @@ var se_CreateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
714
778
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
715
779
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
716
780
|
}, "se_CreateUserCommand");
|
|
781
|
+
var se_CreateWebAppCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
782
|
+
const headers = sharedHeaders("CreateWebApp");
|
|
783
|
+
let body;
|
|
784
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
785
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
786
|
+
}, "se_CreateWebAppCommand");
|
|
717
787
|
var se_CreateWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
718
788
|
const headers = sharedHeaders("CreateWorkflow");
|
|
719
789
|
let body;
|
|
@@ -774,6 +844,18 @@ var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
774
844
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
775
845
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
776
846
|
}, "se_DeleteUserCommand");
|
|
847
|
+
var se_DeleteWebAppCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
848
|
+
const headers = sharedHeaders("DeleteWebApp");
|
|
849
|
+
let body;
|
|
850
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
851
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
852
|
+
}, "se_DeleteWebAppCommand");
|
|
853
|
+
var se_DeleteWebAppCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
854
|
+
const headers = sharedHeaders("DeleteWebAppCustomization");
|
|
855
|
+
let body;
|
|
856
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
857
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
858
|
+
}, "se_DeleteWebAppCustomizationCommand");
|
|
777
859
|
var se_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
778
860
|
const headers = sharedHeaders("DeleteWorkflow");
|
|
779
861
|
let body;
|
|
@@ -840,6 +922,18 @@ var se_DescribeUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
840
922
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
841
923
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
842
924
|
}, "se_DescribeUserCommand");
|
|
925
|
+
var se_DescribeWebAppCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
926
|
+
const headers = sharedHeaders("DescribeWebApp");
|
|
927
|
+
let body;
|
|
928
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
929
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
930
|
+
}, "se_DescribeWebAppCommand");
|
|
931
|
+
var se_DescribeWebAppCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
932
|
+
const headers = sharedHeaders("DescribeWebAppCustomization");
|
|
933
|
+
let body;
|
|
934
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
935
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
936
|
+
}, "se_DescribeWebAppCustomizationCommand");
|
|
843
937
|
var se_DescribeWorkflowCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
844
938
|
const headers = sharedHeaders("DescribeWorkflow");
|
|
845
939
|
let body;
|
|
@@ -936,6 +1030,12 @@ var se_ListUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
936
1030
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
937
1031
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
938
1032
|
}, "se_ListUsersCommand");
|
|
1033
|
+
var se_ListWebAppsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1034
|
+
const headers = sharedHeaders("ListWebApps");
|
|
1035
|
+
let body;
|
|
1036
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1037
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1038
|
+
}, "se_ListWebAppsCommand");
|
|
939
1039
|
var se_ListWorkflowsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
940
1040
|
const headers = sharedHeaders("ListWorkflows");
|
|
941
1041
|
let body;
|
|
@@ -1044,6 +1144,18 @@ var se_UpdateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1044
1144
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1045
1145
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1046
1146
|
}, "se_UpdateUserCommand");
|
|
1147
|
+
var se_UpdateWebAppCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1148
|
+
const headers = sharedHeaders("UpdateWebApp");
|
|
1149
|
+
let body;
|
|
1150
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1151
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1152
|
+
}, "se_UpdateWebAppCommand");
|
|
1153
|
+
var se_UpdateWebAppCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1154
|
+
const headers = sharedHeaders("UpdateWebAppCustomization");
|
|
1155
|
+
let body;
|
|
1156
|
+
body = JSON.stringify(se_UpdateWebAppCustomizationRequest(input, context));
|
|
1157
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1158
|
+
}, "se_UpdateWebAppCustomizationCommand");
|
|
1047
1159
|
var de_CreateAccessCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1048
1160
|
if (output.statusCode >= 300) {
|
|
1049
1161
|
return de_CommandError(output, context);
|
|
@@ -1122,6 +1234,19 @@ var de_CreateUserCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1122
1234
|
};
|
|
1123
1235
|
return response;
|
|
1124
1236
|
}, "de_CreateUserCommand");
|
|
1237
|
+
var de_CreateWebAppCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1238
|
+
if (output.statusCode >= 300) {
|
|
1239
|
+
return de_CommandError(output, context);
|
|
1240
|
+
}
|
|
1241
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1242
|
+
let contents = {};
|
|
1243
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1244
|
+
const response = {
|
|
1245
|
+
$metadata: deserializeMetadata(output),
|
|
1246
|
+
...contents
|
|
1247
|
+
};
|
|
1248
|
+
return response;
|
|
1249
|
+
}, "de_CreateWebAppCommand");
|
|
1125
1250
|
var de_CreateWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1126
1251
|
if (output.statusCode >= 300) {
|
|
1127
1252
|
return de_CommandError(output, context);
|
|
@@ -1225,6 +1350,26 @@ var de_DeleteUserCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1225
1350
|
};
|
|
1226
1351
|
return response;
|
|
1227
1352
|
}, "de_DeleteUserCommand");
|
|
1353
|
+
var de_DeleteWebAppCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1354
|
+
if (output.statusCode >= 300) {
|
|
1355
|
+
return de_CommandError(output, context);
|
|
1356
|
+
}
|
|
1357
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
1358
|
+
const response = {
|
|
1359
|
+
$metadata: deserializeMetadata(output)
|
|
1360
|
+
};
|
|
1361
|
+
return response;
|
|
1362
|
+
}, "de_DeleteWebAppCommand");
|
|
1363
|
+
var de_DeleteWebAppCustomizationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1364
|
+
if (output.statusCode >= 300) {
|
|
1365
|
+
return de_CommandError(output, context);
|
|
1366
|
+
}
|
|
1367
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
1368
|
+
const response = {
|
|
1369
|
+
$metadata: deserializeMetadata(output)
|
|
1370
|
+
};
|
|
1371
|
+
return response;
|
|
1372
|
+
}, "de_DeleteWebAppCustomizationCommand");
|
|
1228
1373
|
var de_DeleteWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1229
1374
|
if (output.statusCode >= 300) {
|
|
1230
1375
|
return de_CommandError(output, context);
|
|
@@ -1365,6 +1510,32 @@ var de_DescribeUserCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1365
1510
|
};
|
|
1366
1511
|
return response;
|
|
1367
1512
|
}, "de_DescribeUserCommand");
|
|
1513
|
+
var de_DescribeWebAppCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1514
|
+
if (output.statusCode >= 300) {
|
|
1515
|
+
return de_CommandError(output, context);
|
|
1516
|
+
}
|
|
1517
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1518
|
+
let contents = {};
|
|
1519
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1520
|
+
const response = {
|
|
1521
|
+
$metadata: deserializeMetadata(output),
|
|
1522
|
+
...contents
|
|
1523
|
+
};
|
|
1524
|
+
return response;
|
|
1525
|
+
}, "de_DescribeWebAppCommand");
|
|
1526
|
+
var de_DescribeWebAppCustomizationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1527
|
+
if (output.statusCode >= 300) {
|
|
1528
|
+
return de_CommandError(output, context);
|
|
1529
|
+
}
|
|
1530
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1531
|
+
let contents = {};
|
|
1532
|
+
contents = de_DescribeWebAppCustomizationResponse(data, context);
|
|
1533
|
+
const response = {
|
|
1534
|
+
$metadata: deserializeMetadata(output),
|
|
1535
|
+
...contents
|
|
1536
|
+
};
|
|
1537
|
+
return response;
|
|
1538
|
+
}, "de_DescribeWebAppCustomizationCommand");
|
|
1368
1539
|
var de_DescribeWorkflowCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1369
1540
|
if (output.statusCode >= 300) {
|
|
1370
1541
|
return de_CommandError(output, context);
|
|
@@ -1573,6 +1744,19 @@ var de_ListUsersCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1573
1744
|
};
|
|
1574
1745
|
return response;
|
|
1575
1746
|
}, "de_ListUsersCommand");
|
|
1747
|
+
var de_ListWebAppsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1748
|
+
if (output.statusCode >= 300) {
|
|
1749
|
+
return de_CommandError(output, context);
|
|
1750
|
+
}
|
|
1751
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1752
|
+
let contents = {};
|
|
1753
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1754
|
+
const response = {
|
|
1755
|
+
$metadata: deserializeMetadata(output),
|
|
1756
|
+
...contents
|
|
1757
|
+
};
|
|
1758
|
+
return response;
|
|
1759
|
+
}, "de_ListWebAppsCommand");
|
|
1576
1760
|
var de_ListWorkflowsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1577
1761
|
if (output.statusCode >= 300) {
|
|
1578
1762
|
return de_CommandError(output, context);
|
|
@@ -1795,6 +1979,32 @@ var de_UpdateUserCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1795
1979
|
};
|
|
1796
1980
|
return response;
|
|
1797
1981
|
}, "de_UpdateUserCommand");
|
|
1982
|
+
var de_UpdateWebAppCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1983
|
+
if (output.statusCode >= 300) {
|
|
1984
|
+
return de_CommandError(output, context);
|
|
1985
|
+
}
|
|
1986
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1987
|
+
let contents = {};
|
|
1988
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1989
|
+
const response = {
|
|
1990
|
+
$metadata: deserializeMetadata(output),
|
|
1991
|
+
...contents
|
|
1992
|
+
};
|
|
1993
|
+
return response;
|
|
1994
|
+
}, "de_UpdateWebAppCommand");
|
|
1995
|
+
var de_UpdateWebAppCustomizationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1996
|
+
if (output.statusCode >= 300) {
|
|
1997
|
+
return de_CommandError(output, context);
|
|
1998
|
+
}
|
|
1999
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
2000
|
+
let contents = {};
|
|
2001
|
+
contents = (0, import_smithy_client._json)(data);
|
|
2002
|
+
const response = {
|
|
2003
|
+
$metadata: deserializeMetadata(output),
|
|
2004
|
+
...contents
|
|
2005
|
+
};
|
|
2006
|
+
return response;
|
|
2007
|
+
}, "de_UpdateWebAppCustomizationCommand");
|
|
1798
2008
|
var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
1799
2009
|
const parsedOutput = {
|
|
1800
2010
|
...output,
|
|
@@ -1823,12 +2033,12 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1823
2033
|
case "AccessDeniedException":
|
|
1824
2034
|
case "com.amazonaws.transfer#AccessDeniedException":
|
|
1825
2035
|
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
1826
|
-
case "InvalidNextTokenException":
|
|
1827
|
-
case "com.amazonaws.transfer#InvalidNextTokenException":
|
|
1828
|
-
throw await de_InvalidNextTokenExceptionRes(parsedOutput, context);
|
|
1829
2036
|
case "ConflictException":
|
|
1830
2037
|
case "com.amazonaws.transfer#ConflictException":
|
|
1831
2038
|
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
2039
|
+
case "InvalidNextTokenException":
|
|
2040
|
+
case "com.amazonaws.transfer#InvalidNextTokenException":
|
|
2041
|
+
throw await de_InvalidNextTokenExceptionRes(parsedOutput, context);
|
|
1832
2042
|
default:
|
|
1833
2043
|
const parsedBody = parsedOutput.body;
|
|
1834
2044
|
return throwDefaultError({
|
|
@@ -1939,6 +2149,14 @@ var se_UpdateCertificateRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
1939
2149
|
InactiveDate: (_) => _.getTime() / 1e3
|
|
1940
2150
|
});
|
|
1941
2151
|
}, "se_UpdateCertificateRequest");
|
|
2152
|
+
var se_UpdateWebAppCustomizationRequest = /* @__PURE__ */ __name((input, context) => {
|
|
2153
|
+
return (0, import_smithy_client.take)(input, {
|
|
2154
|
+
FaviconFile: context.base64Encoder,
|
|
2155
|
+
LogoFile: context.base64Encoder,
|
|
2156
|
+
Title: [],
|
|
2157
|
+
WebAppId: []
|
|
2158
|
+
});
|
|
2159
|
+
}, "se_UpdateWebAppCustomizationRequest");
|
|
1942
2160
|
var de_DescribeCertificateResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1943
2161
|
return (0, import_smithy_client.take)(output, {
|
|
1944
2162
|
Certificate: (_) => de_DescribedCertificate(_, context)
|
|
@@ -1987,6 +2205,15 @@ var de_DescribedUser = /* @__PURE__ */ __name((output, context) => {
|
|
|
1987
2205
|
UserName: import_smithy_client.expectString
|
|
1988
2206
|
});
|
|
1989
2207
|
}, "de_DescribedUser");
|
|
2208
|
+
var de_DescribedWebAppCustomization = /* @__PURE__ */ __name((output, context) => {
|
|
2209
|
+
return (0, import_smithy_client.take)(output, {
|
|
2210
|
+
Arn: import_smithy_client.expectString,
|
|
2211
|
+
FaviconFile: context.base64Decoder,
|
|
2212
|
+
LogoFile: context.base64Decoder,
|
|
2213
|
+
Title: import_smithy_client.expectString,
|
|
2214
|
+
WebAppId: import_smithy_client.expectString
|
|
2215
|
+
});
|
|
2216
|
+
}, "de_DescribedWebAppCustomization");
|
|
1990
2217
|
var de_DescribeHostKeyResponse = /* @__PURE__ */ __name((output, context) => {
|
|
1991
2218
|
return (0, import_smithy_client.take)(output, {
|
|
1992
2219
|
HostKey: (_) => de_DescribedHostKey(_, context)
|
|
@@ -1998,6 +2225,11 @@ var de_DescribeUserResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
1998
2225
|
User: (_) => de_DescribedUser(_, context)
|
|
1999
2226
|
});
|
|
2000
2227
|
}, "de_DescribeUserResponse");
|
|
2228
|
+
var de_DescribeWebAppCustomizationResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2229
|
+
return (0, import_smithy_client.take)(output, {
|
|
2230
|
+
WebAppCustomization: (_) => de_DescribedWebAppCustomization(_, context)
|
|
2231
|
+
});
|
|
2232
|
+
}, "de_DescribeWebAppCustomizationResponse");
|
|
2001
2233
|
var de_ListCertificatesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
2002
2234
|
return (0, import_smithy_client.take)(output, {
|
|
2003
2235
|
Certificates: (_) => de_ListedCertificates(_, context),
|
|
@@ -2172,6 +2404,20 @@ var _CreateUserCommand = class _CreateUserCommand extends import_smithy_client.C
|
|
|
2172
2404
|
__name(_CreateUserCommand, "CreateUserCommand");
|
|
2173
2405
|
var CreateUserCommand = _CreateUserCommand;
|
|
2174
2406
|
|
|
2407
|
+
// src/commands/CreateWebAppCommand.ts
|
|
2408
|
+
|
|
2409
|
+
|
|
2410
|
+
|
|
2411
|
+
var _CreateWebAppCommand = class _CreateWebAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2412
|
+
return [
|
|
2413
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2414
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2415
|
+
];
|
|
2416
|
+
}).s("TransferService", "CreateWebApp", {}).n("TransferClient", "CreateWebAppCommand").f(void 0, void 0).ser(se_CreateWebAppCommand).de(de_CreateWebAppCommand).build() {
|
|
2417
|
+
};
|
|
2418
|
+
__name(_CreateWebAppCommand, "CreateWebAppCommand");
|
|
2419
|
+
var CreateWebAppCommand = _CreateWebAppCommand;
|
|
2420
|
+
|
|
2175
2421
|
// src/commands/CreateWorkflowCommand.ts
|
|
2176
2422
|
|
|
2177
2423
|
|
|
@@ -2312,6 +2558,34 @@ var _DeleteUserCommand = class _DeleteUserCommand extends import_smithy_client.C
|
|
|
2312
2558
|
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
2313
2559
|
var DeleteUserCommand = _DeleteUserCommand;
|
|
2314
2560
|
|
|
2561
|
+
// src/commands/DeleteWebAppCommand.ts
|
|
2562
|
+
|
|
2563
|
+
|
|
2564
|
+
|
|
2565
|
+
var _DeleteWebAppCommand = class _DeleteWebAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2566
|
+
return [
|
|
2567
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2568
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2569
|
+
];
|
|
2570
|
+
}).s("TransferService", "DeleteWebApp", {}).n("TransferClient", "DeleteWebAppCommand").f(void 0, void 0).ser(se_DeleteWebAppCommand).de(de_DeleteWebAppCommand).build() {
|
|
2571
|
+
};
|
|
2572
|
+
__name(_DeleteWebAppCommand, "DeleteWebAppCommand");
|
|
2573
|
+
var DeleteWebAppCommand = _DeleteWebAppCommand;
|
|
2574
|
+
|
|
2575
|
+
// src/commands/DeleteWebAppCustomizationCommand.ts
|
|
2576
|
+
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
var _DeleteWebAppCustomizationCommand = class _DeleteWebAppCustomizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2580
|
+
return [
|
|
2581
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2582
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2583
|
+
];
|
|
2584
|
+
}).s("TransferService", "DeleteWebAppCustomization", {}).n("TransferClient", "DeleteWebAppCustomizationCommand").f(void 0, void 0).ser(se_DeleteWebAppCustomizationCommand).de(de_DeleteWebAppCustomizationCommand).build() {
|
|
2585
|
+
};
|
|
2586
|
+
__name(_DeleteWebAppCustomizationCommand, "DeleteWebAppCustomizationCommand");
|
|
2587
|
+
var DeleteWebAppCustomizationCommand = _DeleteWebAppCustomizationCommand;
|
|
2588
|
+
|
|
2315
2589
|
// src/commands/DeleteWorkflowCommand.ts
|
|
2316
2590
|
|
|
2317
2591
|
|
|
@@ -2466,6 +2740,34 @@ var _DescribeUserCommand = class _DescribeUserCommand extends import_smithy_clie
|
|
|
2466
2740
|
__name(_DescribeUserCommand, "DescribeUserCommand");
|
|
2467
2741
|
var DescribeUserCommand = _DescribeUserCommand;
|
|
2468
2742
|
|
|
2743
|
+
// src/commands/DescribeWebAppCommand.ts
|
|
2744
|
+
|
|
2745
|
+
|
|
2746
|
+
|
|
2747
|
+
var _DescribeWebAppCommand = class _DescribeWebAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2748
|
+
return [
|
|
2749
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2750
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2751
|
+
];
|
|
2752
|
+
}).s("TransferService", "DescribeWebApp", {}).n("TransferClient", "DescribeWebAppCommand").f(void 0, void 0).ser(se_DescribeWebAppCommand).de(de_DescribeWebAppCommand).build() {
|
|
2753
|
+
};
|
|
2754
|
+
__name(_DescribeWebAppCommand, "DescribeWebAppCommand");
|
|
2755
|
+
var DescribeWebAppCommand = _DescribeWebAppCommand;
|
|
2756
|
+
|
|
2757
|
+
// src/commands/DescribeWebAppCustomizationCommand.ts
|
|
2758
|
+
|
|
2759
|
+
|
|
2760
|
+
|
|
2761
|
+
var _DescribeWebAppCustomizationCommand = class _DescribeWebAppCustomizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2762
|
+
return [
|
|
2763
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2764
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2765
|
+
];
|
|
2766
|
+
}).s("TransferService", "DescribeWebAppCustomization", {}).n("TransferClient", "DescribeWebAppCustomizationCommand").f(void 0, DescribeWebAppCustomizationResponseFilterSensitiveLog).ser(se_DescribeWebAppCustomizationCommand).de(de_DescribeWebAppCustomizationCommand).build() {
|
|
2767
|
+
};
|
|
2768
|
+
__name(_DescribeWebAppCustomizationCommand, "DescribeWebAppCustomizationCommand");
|
|
2769
|
+
var DescribeWebAppCustomizationCommand = _DescribeWebAppCustomizationCommand;
|
|
2770
|
+
|
|
2469
2771
|
// src/commands/DescribeWorkflowCommand.ts
|
|
2470
2772
|
|
|
2471
2773
|
|
|
@@ -2690,6 +2992,20 @@ var _ListUsersCommand = class _ListUsersCommand extends import_smithy_client.Com
|
|
|
2690
2992
|
__name(_ListUsersCommand, "ListUsersCommand");
|
|
2691
2993
|
var ListUsersCommand = _ListUsersCommand;
|
|
2692
2994
|
|
|
2995
|
+
// src/commands/ListWebAppsCommand.ts
|
|
2996
|
+
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
var _ListWebAppsCommand = class _ListWebAppsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3000
|
+
return [
|
|
3001
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3002
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3003
|
+
];
|
|
3004
|
+
}).s("TransferService", "ListWebApps", {}).n("TransferClient", "ListWebAppsCommand").f(void 0, void 0).ser(se_ListWebAppsCommand).de(de_ListWebAppsCommand).build() {
|
|
3005
|
+
};
|
|
3006
|
+
__name(_ListWebAppsCommand, "ListWebAppsCommand");
|
|
3007
|
+
var ListWebAppsCommand = _ListWebAppsCommand;
|
|
3008
|
+
|
|
2693
3009
|
// src/commands/ListWorkflowsCommand.ts
|
|
2694
3010
|
|
|
2695
3011
|
|
|
@@ -2942,6 +3258,34 @@ var _UpdateUserCommand = class _UpdateUserCommand extends import_smithy_client.C
|
|
|
2942
3258
|
__name(_UpdateUserCommand, "UpdateUserCommand");
|
|
2943
3259
|
var UpdateUserCommand = _UpdateUserCommand;
|
|
2944
3260
|
|
|
3261
|
+
// src/commands/UpdateWebAppCommand.ts
|
|
3262
|
+
|
|
3263
|
+
|
|
3264
|
+
|
|
3265
|
+
var _UpdateWebAppCommand = class _UpdateWebAppCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3266
|
+
return [
|
|
3267
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3268
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3269
|
+
];
|
|
3270
|
+
}).s("TransferService", "UpdateWebApp", {}).n("TransferClient", "UpdateWebAppCommand").f(void 0, void 0).ser(se_UpdateWebAppCommand).de(de_UpdateWebAppCommand).build() {
|
|
3271
|
+
};
|
|
3272
|
+
__name(_UpdateWebAppCommand, "UpdateWebAppCommand");
|
|
3273
|
+
var UpdateWebAppCommand = _UpdateWebAppCommand;
|
|
3274
|
+
|
|
3275
|
+
// src/commands/UpdateWebAppCustomizationCommand.ts
|
|
3276
|
+
|
|
3277
|
+
|
|
3278
|
+
|
|
3279
|
+
var _UpdateWebAppCustomizationCommand = class _UpdateWebAppCustomizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3280
|
+
return [
|
|
3281
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3282
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3283
|
+
];
|
|
3284
|
+
}).s("TransferService", "UpdateWebAppCustomization", {}).n("TransferClient", "UpdateWebAppCustomizationCommand").f(UpdateWebAppCustomizationRequestFilterSensitiveLog, void 0).ser(se_UpdateWebAppCustomizationCommand).de(de_UpdateWebAppCustomizationCommand).build() {
|
|
3285
|
+
};
|
|
3286
|
+
__name(_UpdateWebAppCustomizationCommand, "UpdateWebAppCustomizationCommand");
|
|
3287
|
+
var UpdateWebAppCustomizationCommand = _UpdateWebAppCustomizationCommand;
|
|
3288
|
+
|
|
2945
3289
|
// src/Transfer.ts
|
|
2946
3290
|
var commands = {
|
|
2947
3291
|
CreateAccessCommand,
|
|
@@ -2950,6 +3294,7 @@ var commands = {
|
|
|
2950
3294
|
CreateProfileCommand,
|
|
2951
3295
|
CreateServerCommand,
|
|
2952
3296
|
CreateUserCommand,
|
|
3297
|
+
CreateWebAppCommand,
|
|
2953
3298
|
CreateWorkflowCommand,
|
|
2954
3299
|
DeleteAccessCommand,
|
|
2955
3300
|
DeleteAgreementCommand,
|
|
@@ -2960,6 +3305,8 @@ var commands = {
|
|
|
2960
3305
|
DeleteServerCommand,
|
|
2961
3306
|
DeleteSshPublicKeyCommand,
|
|
2962
3307
|
DeleteUserCommand,
|
|
3308
|
+
DeleteWebAppCommand,
|
|
3309
|
+
DeleteWebAppCustomizationCommand,
|
|
2963
3310
|
DeleteWorkflowCommand,
|
|
2964
3311
|
DescribeAccessCommand,
|
|
2965
3312
|
DescribeAgreementCommand,
|
|
@@ -2971,6 +3318,8 @@ var commands = {
|
|
|
2971
3318
|
DescribeSecurityPolicyCommand,
|
|
2972
3319
|
DescribeServerCommand,
|
|
2973
3320
|
DescribeUserCommand,
|
|
3321
|
+
DescribeWebAppCommand,
|
|
3322
|
+
DescribeWebAppCustomizationCommand,
|
|
2974
3323
|
DescribeWorkflowCommand,
|
|
2975
3324
|
ImportCertificateCommand,
|
|
2976
3325
|
ImportHostKeyCommand,
|
|
@@ -2987,6 +3336,7 @@ var commands = {
|
|
|
2987
3336
|
ListServersCommand,
|
|
2988
3337
|
ListTagsForResourceCommand,
|
|
2989
3338
|
ListUsersCommand,
|
|
3339
|
+
ListWebAppsCommand,
|
|
2990
3340
|
ListWorkflowsCommand,
|
|
2991
3341
|
SendWorkflowStepStateCommand,
|
|
2992
3342
|
StartDirectoryListingCommand,
|
|
@@ -3004,7 +3354,9 @@ var commands = {
|
|
|
3004
3354
|
UpdateHostKeyCommand,
|
|
3005
3355
|
UpdateProfileCommand,
|
|
3006
3356
|
UpdateServerCommand,
|
|
3007
|
-
UpdateUserCommand
|
|
3357
|
+
UpdateUserCommand,
|
|
3358
|
+
UpdateWebAppCommand,
|
|
3359
|
+
UpdateWebAppCustomizationCommand
|
|
3008
3360
|
};
|
|
3009
3361
|
var _Transfer = class _Transfer extends TransferClient {
|
|
3010
3362
|
};
|
|
@@ -3056,6 +3408,10 @@ var paginateListTagsForResource = (0, import_core.createPaginator)(TransferClien
|
|
|
3056
3408
|
|
|
3057
3409
|
var paginateListUsers = (0, import_core.createPaginator)(TransferClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3058
3410
|
|
|
3411
|
+
// src/pagination/ListWebAppsPaginator.ts
|
|
3412
|
+
|
|
3413
|
+
var paginateListWebApps = (0, import_core.createPaginator)(TransferClient, ListWebAppsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3414
|
+
|
|
3059
3415
|
// src/pagination/ListWorkflowsPaginator.ts
|
|
3060
3416
|
|
|
3061
3417
|
var paginateListWorkflows = (0, import_core.createPaginator)(TransferClient, ListWorkflowsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -3153,6 +3509,7 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3153
3509
|
CreateProfileCommand,
|
|
3154
3510
|
CreateServerCommand,
|
|
3155
3511
|
CreateUserCommand,
|
|
3512
|
+
CreateWebAppCommand,
|
|
3156
3513
|
CreateWorkflowCommand,
|
|
3157
3514
|
DeleteAccessCommand,
|
|
3158
3515
|
DeleteAgreementCommand,
|
|
@@ -3163,6 +3520,8 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3163
3520
|
DeleteServerCommand,
|
|
3164
3521
|
DeleteSshPublicKeyCommand,
|
|
3165
3522
|
DeleteUserCommand,
|
|
3523
|
+
DeleteWebAppCommand,
|
|
3524
|
+
DeleteWebAppCustomizationCommand,
|
|
3166
3525
|
DeleteWorkflowCommand,
|
|
3167
3526
|
DescribeAccessCommand,
|
|
3168
3527
|
DescribeAgreementCommand,
|
|
@@ -3174,6 +3533,8 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3174
3533
|
DescribeSecurityPolicyCommand,
|
|
3175
3534
|
DescribeServerCommand,
|
|
3176
3535
|
DescribeUserCommand,
|
|
3536
|
+
DescribeWebAppCommand,
|
|
3537
|
+
DescribeWebAppCustomizationCommand,
|
|
3177
3538
|
DescribeWorkflowCommand,
|
|
3178
3539
|
ImportCertificateCommand,
|
|
3179
3540
|
ImportHostKeyCommand,
|
|
@@ -3190,6 +3551,7 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3190
3551
|
ListServersCommand,
|
|
3191
3552
|
ListTagsForResourceCommand,
|
|
3192
3553
|
ListUsersCommand,
|
|
3554
|
+
ListWebAppsCommand,
|
|
3193
3555
|
ListWorkflowsCommand,
|
|
3194
3556
|
SendWorkflowStepStateCommand,
|
|
3195
3557
|
StartDirectoryListingCommand,
|
|
@@ -3208,6 +3570,8 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3208
3570
|
UpdateProfileCommand,
|
|
3209
3571
|
UpdateServerCommand,
|
|
3210
3572
|
UpdateUserCommand,
|
|
3573
|
+
UpdateWebAppCommand,
|
|
3574
|
+
UpdateWebAppCustomizationCommand,
|
|
3211
3575
|
paginateListAccesses,
|
|
3212
3576
|
paginateListAgreements,
|
|
3213
3577
|
paginateListCertificates,
|
|
@@ -3219,6 +3583,7 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3219
3583
|
paginateListServers,
|
|
3220
3584
|
paginateListTagsForResource,
|
|
3221
3585
|
paginateListUsers,
|
|
3586
|
+
paginateListWebApps,
|
|
3222
3587
|
paginateListWorkflows,
|
|
3223
3588
|
waitForServerOffline,
|
|
3224
3589
|
waitUntilServerOffline,
|
|
@@ -3256,6 +3621,8 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3256
3621
|
TlsSessionResumptionMode,
|
|
3257
3622
|
Protocol,
|
|
3258
3623
|
DirectoryListingOptimization,
|
|
3624
|
+
WebAppIdentityProviderDetails,
|
|
3625
|
+
WebAppUnits,
|
|
3259
3626
|
EncryptionType,
|
|
3260
3627
|
WorkflowStepType,
|
|
3261
3628
|
CustomStepStatus,
|
|
@@ -3264,12 +3631,17 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3264
3631
|
SecurityPolicyProtocol,
|
|
3265
3632
|
SecurityPolicyResourceType,
|
|
3266
3633
|
State,
|
|
3634
|
+
DescribedWebAppIdentityProviderDetails,
|
|
3635
|
+
UpdateWebAppIdentityProviderDetails,
|
|
3267
3636
|
DescribedCertificateFilterSensitiveLog,
|
|
3268
3637
|
DescribeCertificateResponseFilterSensitiveLog,
|
|
3269
3638
|
ImportCertificateRequestFilterSensitiveLog,
|
|
3270
3639
|
CreateServerRequestFilterSensitiveLog,
|
|
3640
|
+
DescribedWebAppCustomizationFilterSensitiveLog,
|
|
3641
|
+
DescribeWebAppCustomizationResponseFilterSensitiveLog,
|
|
3271
3642
|
ImportHostKeyRequestFilterSensitiveLog,
|
|
3272
3643
|
UpdateServerRequestFilterSensitiveLog,
|
|
3273
|
-
TestIdentityProviderRequestFilterSensitiveLog
|
|
3644
|
+
TestIdentityProviderRequestFilterSensitiveLog,
|
|
3645
|
+
UpdateWebAppCustomizationRequestFilterSensitiveLog
|
|
3274
3646
|
});
|
|
3275
3647
|
|