@aws-sdk/client-transfer 3.777.0 → 3.782.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/dist-cjs/index.js +6 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-types/commands/CreateWebAppCommand.d.ts +1 -0
- package/dist-types/commands/DescribeWebAppCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +39 -2
- package/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -147,6 +147,7 @@ __export(index_exports, {
|
|
|
147
147
|
UpdateWebAppCustomizationCommand: () => UpdateWebAppCustomizationCommand,
|
|
148
148
|
UpdateWebAppCustomizationRequestFilterSensitiveLog: () => UpdateWebAppCustomizationRequestFilterSensitiveLog,
|
|
149
149
|
UpdateWebAppIdentityProviderDetails: () => UpdateWebAppIdentityProviderDetails,
|
|
150
|
+
WebAppEndpointPolicy: () => WebAppEndpointPolicy,
|
|
150
151
|
WebAppIdentityProviderDetails: () => WebAppIdentityProviderDetails,
|
|
151
152
|
WebAppUnits: () => WebAppUnits,
|
|
152
153
|
WorkflowStepType: () => WorkflowStepType,
|
|
@@ -664,6 +665,10 @@ var WebAppIdentityProviderDetails;
|
|
|
664
665
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
665
666
|
}, "visit");
|
|
666
667
|
})(WebAppIdentityProviderDetails || (WebAppIdentityProviderDetails = {}));
|
|
668
|
+
var WebAppEndpointPolicy = {
|
|
669
|
+
FIPS: "FIPS",
|
|
670
|
+
STANDARD: "STANDARD"
|
|
671
|
+
};
|
|
667
672
|
var WebAppUnits;
|
|
668
673
|
((WebAppUnits3) => {
|
|
669
674
|
WebAppUnits3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -3733,6 +3738,7 @@ var waitUntilServerOnline = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
3733
3738
|
Protocol,
|
|
3734
3739
|
DirectoryListingOptimization,
|
|
3735
3740
|
WebAppIdentityProviderDetails,
|
|
3741
|
+
WebAppEndpointPolicy,
|
|
3736
3742
|
WebAppUnits,
|
|
3737
3743
|
EncryptionType,
|
|
3738
3744
|
WorkflowStepType,
|
|
@@ -267,6 +267,10 @@ export var WebAppIdentityProviderDetails;
|
|
|
267
267
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
268
268
|
};
|
|
269
269
|
})(WebAppIdentityProviderDetails || (WebAppIdentityProviderDetails = {}));
|
|
270
|
+
export const WebAppEndpointPolicy = {
|
|
271
|
+
FIPS: "FIPS",
|
|
272
|
+
STANDARD: "STANDARD",
|
|
273
|
+
};
|
|
270
274
|
export var WebAppUnits;
|
|
271
275
|
(function (WebAppUnits) {
|
|
272
276
|
WebAppUnits.visit = (value, visitor) => {
|
|
@@ -3062,6 +3062,18 @@ export declare namespace WebAppIdentityProviderDetails {
|
|
|
3062
3062
|
}
|
|
3063
3063
|
const visit: <T>(value: WebAppIdentityProviderDetails, visitor: Visitor<T>) => T;
|
|
3064
3064
|
}
|
|
3065
|
+
/**
|
|
3066
|
+
* @public
|
|
3067
|
+
* @enum
|
|
3068
|
+
*/
|
|
3069
|
+
export declare const WebAppEndpointPolicy: {
|
|
3070
|
+
readonly FIPS: "FIPS";
|
|
3071
|
+
readonly STANDARD: "STANDARD";
|
|
3072
|
+
};
|
|
3073
|
+
/**
|
|
3074
|
+
* @public
|
|
3075
|
+
*/
|
|
3076
|
+
export type WebAppEndpointPolicy = (typeof WebAppEndpointPolicy)[keyof typeof WebAppEndpointPolicy];
|
|
3065
3077
|
/**
|
|
3066
3078
|
* <p>Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.</p>
|
|
3067
3079
|
* @public
|
|
@@ -3099,11 +3111,14 @@ export declare namespace WebAppUnits {
|
|
|
3099
3111
|
export interface CreateWebAppRequest {
|
|
3100
3112
|
/**
|
|
3101
3113
|
* <p>You can provide a structure that contains the details for the identity provider to use with your web app.</p>
|
|
3114
|
+
* <p>For more details about this parameter, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/webapp-identity-center.html">Configure your identity provider for Transfer Family web apps</a>.</p>
|
|
3102
3115
|
* @public
|
|
3103
3116
|
*/
|
|
3104
3117
|
IdentityProviderDetails: WebAppIdentityProviderDetails | undefined;
|
|
3105
3118
|
/**
|
|
3106
3119
|
* <p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p>
|
|
3120
|
+
* <p>Before you enter a custom URL for this parameter, follow the steps described in
|
|
3121
|
+
* <a href="https://docs.aws.amazon.com/transfer/latest/userguide/webapp-customize.html">Update your access endpoint with a custom URL</a>.</p>
|
|
3107
3122
|
* @public
|
|
3108
3123
|
*/
|
|
3109
3124
|
AccessEndpoint?: string | undefined;
|
|
@@ -3117,6 +3132,14 @@ export interface CreateWebAppRequest {
|
|
|
3117
3132
|
* @public
|
|
3118
3133
|
*/
|
|
3119
3134
|
Tags?: Tag[] | undefined;
|
|
3135
|
+
/**
|
|
3136
|
+
* <p>
|
|
3137
|
+
* Setting for the type of endpoint policy for the web app. The default value is <code>STANDARD</code>.
|
|
3138
|
+
* </p>
|
|
3139
|
+
* <p>If you are creating the web app in an Amazon Web Services GovCloud (US) Region, you can set this parameter to <code>FIPS</code>.</p>
|
|
3140
|
+
* @public
|
|
3141
|
+
*/
|
|
3142
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy | undefined;
|
|
3120
3143
|
}
|
|
3121
3144
|
/**
|
|
3122
3145
|
* @public
|
|
@@ -4694,6 +4717,12 @@ export interface DescribedUser {
|
|
|
4694
4717
|
/**
|
|
4695
4718
|
* <p>Specifies the public key portion of the Secure Shell (SSH) keys stored for the described
|
|
4696
4719
|
* user.</p>
|
|
4720
|
+
* <note>
|
|
4721
|
+
* <p>To delete the public key body, set its value to zero keys, as shown here:</p>
|
|
4722
|
+
* <p>
|
|
4723
|
+
* <code>SshPublicKeys: []</code>
|
|
4724
|
+
* </p>
|
|
4725
|
+
* </note>
|
|
4697
4726
|
* @public
|
|
4698
4727
|
*/
|
|
4699
4728
|
SshPublicKeys?: SshPublicKey[] | undefined;
|
|
@@ -4781,6 +4810,14 @@ export interface DescribedWebApp {
|
|
|
4781
4810
|
* @public
|
|
4782
4811
|
*/
|
|
4783
4812
|
Tags?: Tag[] | undefined;
|
|
4813
|
+
/**
|
|
4814
|
+
* <p>
|
|
4815
|
+
* Setting for the type of endpoint policy for the web app. The default value is <code>STANDARD</code>.
|
|
4816
|
+
* </p>
|
|
4817
|
+
* <p>If your web app was created in an Amazon Web Services GovCloud (US) Region, the value of this parameter can be <code>FIPS</code>, which indicates the web app endpoint is FIPS-compliant.</p>
|
|
4818
|
+
* @public
|
|
4819
|
+
*/
|
|
4820
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy | undefined;
|
|
4784
4821
|
}
|
|
4785
4822
|
/**
|
|
4786
4823
|
* <p>A structure that contains the customization fields for the web app. You can provide a title, logo, and icon to customize the appearance of your web app.</p>
|
|
@@ -4808,7 +4845,7 @@ export interface DescribedWebAppCustomization {
|
|
|
4808
4845
|
*/
|
|
4809
4846
|
LogoFile?: Uint8Array | undefined;
|
|
4810
4847
|
/**
|
|
4811
|
-
* <p>Returns
|
|
4848
|
+
* <p>Returns an icon file data string (in base64 encoding).</p>
|
|
4812
4849
|
* @public
|
|
4813
4850
|
*/
|
|
4814
4851
|
FaviconFile?: Uint8Array | undefined;
|
|
@@ -6886,7 +6923,7 @@ export interface UpdateWebAppCustomizationRequest {
|
|
|
6886
6923
|
*/
|
|
6887
6924
|
LogoFile?: Uint8Array | undefined;
|
|
6888
6925
|
/**
|
|
6889
|
-
* <p>Specify icon file data string (in base64 encoding).</p>
|
|
6926
|
+
* <p>Specify an icon file data string (in base64 encoding).</p>
|
|
6890
6927
|
* @public
|
|
6891
6928
|
*/
|
|
6892
6929
|
FaviconFile?: Uint8Array | undefined;
|
|
@@ -617,6 +617,12 @@ export declare namespace WebAppIdentityProviderDetails {
|
|
|
617
617
|
visitor: Visitor<T>
|
|
618
618
|
) => T;
|
|
619
619
|
}
|
|
620
|
+
export declare const WebAppEndpointPolicy: {
|
|
621
|
+
readonly FIPS: "FIPS";
|
|
622
|
+
readonly STANDARD: "STANDARD";
|
|
623
|
+
};
|
|
624
|
+
export type WebAppEndpointPolicy =
|
|
625
|
+
(typeof WebAppEndpointPolicy)[keyof typeof WebAppEndpointPolicy];
|
|
620
626
|
export type WebAppUnits =
|
|
621
627
|
| WebAppUnits.ProvisionedMember
|
|
622
628
|
| WebAppUnits.$UnknownMember;
|
|
@@ -640,6 +646,7 @@ export interface CreateWebAppRequest {
|
|
|
640
646
|
AccessEndpoint?: string | undefined;
|
|
641
647
|
WebAppUnits?: WebAppUnits | undefined;
|
|
642
648
|
Tags?: Tag[] | undefined;
|
|
649
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy | undefined;
|
|
643
650
|
}
|
|
644
651
|
export interface CreateWebAppResponse {
|
|
645
652
|
WebAppId: string | undefined;
|
|
@@ -947,6 +954,7 @@ export interface DescribedWebApp {
|
|
|
947
954
|
WebAppEndpoint?: string | undefined;
|
|
948
955
|
WebAppUnits?: WebAppUnits | undefined;
|
|
949
956
|
Tags?: Tag[] | undefined;
|
|
957
|
+
WebAppEndpointPolicy?: WebAppEndpointPolicy | undefined;
|
|
950
958
|
}
|
|
951
959
|
export interface DescribedWebAppCustomization {
|
|
952
960
|
Arn: string | undefined;
|
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.
|
|
4
|
+
"version": "3.782.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",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.782.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.782.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.782.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.782.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|