@aws-sdk/client-storage-gateway 3.577.0 → 3.582.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 +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/DescribeSMBSettingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSMBSecurityStrategyCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +36 -16
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -499,6 +499,7 @@ var HostEnvironment = {
|
|
|
499
499
|
var SMBSecurityStrategy = {
|
|
500
500
|
ClientSpecified: "ClientSpecified",
|
|
501
501
|
MandatoryEncryption: "MandatoryEncryption",
|
|
502
|
+
MandatoryEncryptionNoAes128: "MandatoryEncryptionNoAes128",
|
|
502
503
|
MandatorySigning: "MandatorySigning"
|
|
503
504
|
};
|
|
504
505
|
var FileShareType = {
|
|
@@ -155,6 +155,7 @@ export const HostEnvironment = {
|
|
|
155
155
|
export const SMBSecurityStrategy = {
|
|
156
156
|
ClientSpecified: "ClientSpecified",
|
|
157
157
|
MandatoryEncryption: "MandatoryEncryption",
|
|
158
|
+
MandatoryEncryptionNoAes128: "MandatoryEncryptionNoAes128",
|
|
158
159
|
MandatorySigning: "MandatorySigning",
|
|
159
160
|
};
|
|
160
161
|
export const FileShareType = {
|
|
@@ -44,7 +44,7 @@ declare const DescribeSMBSettingsCommand_base: {
|
|
|
44
44
|
* // DomainName: "STRING_VALUE",
|
|
45
45
|
* // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR",
|
|
46
46
|
* // SMBGuestPasswordSet: true || false,
|
|
47
|
-
* // SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption",
|
|
47
|
+
* // SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption" || "MandatoryEncryptionNoAes128",
|
|
48
48
|
* // FileSharesVisible: true || false,
|
|
49
49
|
* // SMBLocalGroups: { // SMBLocalGroups
|
|
50
50
|
* // GatewayAdmins: [ // UserList
|
|
@@ -40,7 +40,7 @@ declare const UpdateSMBSecurityStrategyCommand_base: {
|
|
|
40
40
|
* const client = new StorageGatewayClient(config);
|
|
41
41
|
* const input = { // UpdateSMBSecurityStrategyInput
|
|
42
42
|
* GatewayARN: "STRING_VALUE", // required
|
|
43
|
-
* SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption", // required
|
|
43
|
+
* SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption" || "MandatoryEncryptionNoAes128", // required
|
|
44
44
|
* };
|
|
45
45
|
* const command = new UpdateSMBSecurityStrategyCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
@@ -80,10 +80,10 @@ export interface ActivateGatewayInput {
|
|
|
80
80
|
GatewayName: string | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>A value that indicates the time zone you want to set for the gateway. The time zone is
|
|
83
|
-
* of the format "GMT-hr:mm" or "GMT+hr:mm". For example, GMT
|
|
84
|
-
*
|
|
85
|
-
* used, for example, for
|
|
86
|
-
* schedule.</p>
|
|
83
|
+
* of the format "GMT", "GMT-hr:mm", or "GMT+hr:mm". For example, GMT indicates Greenwich Mean
|
|
84
|
+
* Time without any offset. GMT-4:00 indicates the time is 4 hours behind GMT. GMT+2:00
|
|
85
|
+
* indicates the time is 2 hours ahead of GMT. The time zone is used, for example, for
|
|
86
|
+
* scheduling snapshots and your gateway's maintenance schedule.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
89
|
GatewayTimezone: string | undefined;
|
|
@@ -106,8 +106,9 @@ export interface ActivateGatewayInput {
|
|
|
106
106
|
* <p>A value that defines the type of gateway to activate. The type specified is critical to
|
|
107
107
|
* all later functions of the gateway and cannot be changed after activation. The default
|
|
108
108
|
* value is <code>CACHED</code>.</p>
|
|
109
|
-
* <p>Valid Values: <code>STORED</code> | <code>CACHED</code> | <code>VTL</code>
|
|
110
|
-
*
|
|
109
|
+
* <p>Valid Values: <code>STORED</code> | <code>CACHED</code> | <code>VTL</code>
|
|
110
|
+
* | <code>FILE_S3</code> |
|
|
111
|
+
* <code>FILE_FSX_SMB</code>
|
|
111
112
|
* </p>
|
|
112
113
|
* @public
|
|
113
114
|
*/
|
|
@@ -2973,6 +2974,9 @@ export interface DescribeGatewayInformationOutput {
|
|
|
2973
2974
|
CloudWatchLogGroupARN?: string;
|
|
2974
2975
|
/**
|
|
2975
2976
|
* <p>The type of hardware or software platform on which the gateway is running.</p>
|
|
2977
|
+
* <note>
|
|
2978
|
+
* <p>Tape Gateway is no longer available on Snow Family devices.</p>
|
|
2979
|
+
* </note>
|
|
2976
2980
|
* @public
|
|
2977
2981
|
*/
|
|
2978
2982
|
HostEnvironment?: HostEnvironment;
|
|
@@ -3692,6 +3696,7 @@ export interface SMBLocalGroups {
|
|
|
3692
3696
|
export declare const SMBSecurityStrategy: {
|
|
3693
3697
|
readonly ClientSpecified: "ClientSpecified";
|
|
3694
3698
|
readonly MandatoryEncryption: "MandatoryEncryption";
|
|
3699
|
+
readonly MandatoryEncryptionNoAes128: "MandatoryEncryptionNoAes128";
|
|
3695
3700
|
readonly MandatorySigning: "MandatorySigning";
|
|
3696
3701
|
};
|
|
3697
3702
|
/**
|
|
@@ -3768,23 +3773,33 @@ export interface DescribeSMBSettingsOutput {
|
|
|
3768
3773
|
* <ul>
|
|
3769
3774
|
* <li>
|
|
3770
3775
|
* <p>
|
|
3771
|
-
* <code>ClientSpecified</code>: If you
|
|
3776
|
+
* <code>ClientSpecified</code>: If you choose this option, requests are established
|
|
3772
3777
|
* based on what is negotiated by the client. This option is recommended when you want
|
|
3773
|
-
* to maximize compatibility across different clients in your environment.
|
|
3774
|
-
*
|
|
3778
|
+
* to maximize compatibility across different clients in your environment. Supported
|
|
3779
|
+
* only for S3 File Gateway.</p>
|
|
3780
|
+
* </li>
|
|
3781
|
+
* <li>
|
|
3782
|
+
* <p>
|
|
3783
|
+
* <code>MandatorySigning</code>: If you use this option, File Gateway only allows
|
|
3784
|
+
* connections from SMBv2 or SMBv3 clients that have signing turned on. This option
|
|
3785
|
+
* works with SMB clients on Microsoft Windows Vista, Windows Server 2008, or later.
|
|
3786
|
+
* </p>
|
|
3775
3787
|
* </li>
|
|
3776
3788
|
* <li>
|
|
3777
3789
|
* <p>
|
|
3778
|
-
* <code>
|
|
3779
|
-
* connections from
|
|
3780
|
-
*
|
|
3790
|
+
* <code>MandatoryEncryption</code>: If you use this option, File Gateway only allows
|
|
3791
|
+
* connections from SMBv3 clients that have encryption turned on. Both 256-bit and
|
|
3792
|
+
* 128-bit algorithms are allowed. This option is recommended for environments that
|
|
3793
|
+
* handle sensitive data. It works with SMB clients on Microsoft Windows 8, Windows
|
|
3794
|
+
* Server 2012, or later.</p>
|
|
3781
3795
|
* </li>
|
|
3782
3796
|
* <li>
|
|
3783
3797
|
* <p>
|
|
3784
|
-
* <code>
|
|
3785
|
-
* connections from SMBv3 clients that
|
|
3786
|
-
*
|
|
3787
|
-
* clients on Microsoft Windows 8, Windows Server
|
|
3798
|
+
* <code>EnforceEncryption</code>: If you use this option, File Gateway only allows
|
|
3799
|
+
* connections from SMBv3 clients that use 256-bit AES encryption algorithms. 128-bit
|
|
3800
|
+
* algorithms are not allowed. This option is recommended for environments that handle
|
|
3801
|
+
* sensitive data. It works with SMB clients on Microsoft Windows 8, Windows Server
|
|
3802
|
+
* 2012, or later.</p>
|
|
3788
3803
|
* </li>
|
|
3789
3804
|
* </ul>
|
|
3790
3805
|
* @public
|
|
@@ -4871,6 +4886,9 @@ export interface GatewayInfo {
|
|
|
4871
4886
|
Ec2InstanceRegion?: string;
|
|
4872
4887
|
/**
|
|
4873
4888
|
* <p>The type of hardware or software platform on which the gateway is running.</p>
|
|
4889
|
+
* <note>
|
|
4890
|
+
* <p>Tape Gateway is no longer available on Snow Family devices.</p>
|
|
4891
|
+
* </note>
|
|
4874
4892
|
* @public
|
|
4875
4893
|
*/
|
|
4876
4894
|
HostEnvironment?: HostEnvironment;
|
|
@@ -5711,6 +5729,8 @@ export interface RefreshCacheInput {
|
|
|
5711
5729
|
* <p>A comma-separated list of the paths of folders to refresh in the cache. The default is
|
|
5712
5730
|
* [<code>"/"</code>]. The default refreshes objects and folders at the root of the Amazon S3 bucket. If <code>Recursive</code> is set to <code>true</code>, the entire S3
|
|
5713
5731
|
* bucket that the file share has access to is refreshed.</p>
|
|
5732
|
+
* <p>Do not include <code>/</code> when specifying folder names. For example, you would
|
|
5733
|
+
* specify <code>samplefolder</code> rather than <code>samplefolder/</code>.</p>
|
|
5714
5734
|
* @public
|
|
5715
5735
|
*/
|
|
5716
5736
|
FolderList?: string[];
|
|
@@ -710,6 +710,7 @@ export interface SMBLocalGroups {
|
|
|
710
710
|
export declare const SMBSecurityStrategy: {
|
|
711
711
|
readonly ClientSpecified: "ClientSpecified";
|
|
712
712
|
readonly MandatoryEncryption: "MandatoryEncryption";
|
|
713
|
+
readonly MandatoryEncryptionNoAes128: "MandatoryEncryptionNoAes128";
|
|
713
714
|
readonly MandatorySigning: "MandatorySigning";
|
|
714
715
|
};
|
|
715
716
|
export type SMBSecurityStrategy =
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-storage-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Storage Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.582.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-storage-gateway",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.582.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.582.0",
|
|
25
|
+
"@aws-sdk/core": "3.582.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.0",
|
|
37
|
-
"@smithy/core": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.0.
|
|
37
|
+
"@smithy/core": "^2.0.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.0.0",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.1",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.0",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.0",
|
|
46
46
|
"@smithy/node-config-provider": "^3.0.0",
|
|
47
47
|
"@smithy/node-http-handler": "^3.0.0",
|
|
48
48
|
"@smithy/protocol-http": "^4.0.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.0.
|
|
49
|
+
"@smithy/smithy-client": "^3.0.1",
|
|
50
50
|
"@smithy/types": "^3.0.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.0",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.0",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.0",
|
|
59
59
|
"@smithy/util-retry": "^3.0.0",
|