@aws-sdk/client-efs 3.231.0 → 3.233.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/endpoint/ruleset.js +1 -10
- package/dist-es/endpoint/ruleset.js +1 -10
- package/dist-types/EFS.d.ts +19 -15
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +19 -15
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +6 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ exports.ruleSet = {
|
|
|
6
6
|
parameters: {
|
|
7
7
|
Region: {
|
|
8
8
|
builtIn: "AWS::Region",
|
|
9
|
-
required:
|
|
9
|
+
required: true,
|
|
10
10
|
documentation: "The AWS region used to dispatch the request.",
|
|
11
11
|
type: "String",
|
|
12
12
|
},
|
|
@@ -56,15 +56,6 @@ exports.ruleSet = {
|
|
|
56
56
|
},
|
|
57
57
|
],
|
|
58
58
|
},
|
|
59
|
-
{
|
|
60
|
-
fn: "parseURL",
|
|
61
|
-
argv: [
|
|
62
|
-
{
|
|
63
|
-
ref: "Endpoint",
|
|
64
|
-
},
|
|
65
|
-
],
|
|
66
|
-
assign: "url",
|
|
67
|
-
},
|
|
68
59
|
],
|
|
69
60
|
type: "tree",
|
|
70
61
|
rules: [
|
|
@@ -3,7 +3,7 @@ export const ruleSet = {
|
|
|
3
3
|
parameters: {
|
|
4
4
|
Region: {
|
|
5
5
|
builtIn: "AWS::Region",
|
|
6
|
-
required:
|
|
6
|
+
required: true,
|
|
7
7
|
documentation: "The AWS region used to dispatch the request.",
|
|
8
8
|
type: "String",
|
|
9
9
|
},
|
|
@@ -53,15 +53,6 @@ export const ruleSet = {
|
|
|
53
53
|
},
|
|
54
54
|
],
|
|
55
55
|
},
|
|
56
|
-
{
|
|
57
|
-
fn: "parseURL",
|
|
58
|
-
argv: [
|
|
59
|
-
{
|
|
60
|
-
ref: "Endpoint",
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
assign: "url",
|
|
64
|
-
},
|
|
65
56
|
],
|
|
66
57
|
type: "tree",
|
|
67
58
|
rules: [
|
package/dist-types/EFS.d.ts
CHANGED
|
@@ -684,36 +684,40 @@ export declare class EFS extends EFSClient {
|
|
|
684
684
|
putFileSystemPolicy(args: PutFileSystemPolicyCommandInput, cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void): void;
|
|
685
685
|
putFileSystemPolicy(args: PutFileSystemPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFileSystemPolicyCommandOutput) => void): void;
|
|
686
686
|
/**
|
|
687
|
-
* <p>Use this action to manage EFS lifecycle management and
|
|
688
|
-
*
|
|
689
|
-
* define the following:</p>
|
|
687
|
+
* <p>Use this action to manage EFS lifecycle management and EFS Intelligent-Tiering. A
|
|
688
|
+
* <code>LifecycleConfiguration</code> consists of one or more <code>LifecyclePolicy</code>
|
|
689
|
+
* objects that define the following:</p>
|
|
690
690
|
* <ul>
|
|
691
691
|
* <li>
|
|
692
692
|
* <p>
|
|
693
693
|
* <b>EFS Lifecycle management</b> - When Amazon EFS
|
|
694
|
-
*
|
|
694
|
+
* automatically transitions files in a file system into the lower-cost EFS Infrequent Access
|
|
695
|
+
* (IA) storage class.</p>
|
|
695
696
|
* <p>To enable EFS Lifecycle management, set the value of <code>TransitionToIA</code> to one of the available options.</p>
|
|
696
697
|
* </li>
|
|
697
698
|
* <li>
|
|
698
699
|
* <p>
|
|
699
|
-
* <b>EFS Intelligent
|
|
700
|
-
*
|
|
701
|
-
*
|
|
700
|
+
* <b>EFS Intelligent-Tiering</b> - When Amazon EFS
|
|
701
|
+
* automatically transitions files from IA back into the file system's primary storage class
|
|
702
|
+
* (EFS Standard or EFS One Zone Standard).</p>
|
|
703
|
+
* <p>To enable EFS Intelligent-Tiering, set the value of
|
|
704
|
+
* <code>TransitionToPrimaryStorageClass</code> to <code>AFTER_1_ACCESS</code>.</p>
|
|
702
705
|
* </li>
|
|
703
706
|
* </ul>
|
|
704
707
|
*
|
|
705
708
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html">EFS Lifecycle Management</a>.</p>
|
|
706
|
-
* <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to
|
|
707
|
-
*
|
|
708
|
-
*
|
|
709
|
-
*
|
|
710
|
-
*
|
|
711
|
-
*
|
|
709
|
+
* <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to
|
|
710
|
+
* all files in the file system. If a <code>LifecycleConfiguration</code> object already exists
|
|
711
|
+
* for the specified file system, a <code>PutLifecycleConfiguration</code> call modifies the
|
|
712
|
+
* existing configuration. A <code>PutLifecycleConfiguration</code> call with an empty
|
|
713
|
+
* <code>LifecyclePolicies</code> array in the request body deletes any existing
|
|
714
|
+
* <code>LifecycleConfiguration</code> and turns off lifecycle management and EFS
|
|
715
|
+
* Intelligent-Tiering for the file system.</p>
|
|
712
716
|
* <p>In the request, specify the following: </p>
|
|
713
717
|
* <ul>
|
|
714
718
|
* <li>
|
|
715
|
-
* <p>The ID for the file system for which you are enabling, disabling, or modifying
|
|
716
|
-
* and
|
|
719
|
+
* <p>The ID for the file system for which you are enabling, disabling, or modifying
|
|
720
|
+
* lifecycle management and EFS Intelligent-Tiering.</p>
|
|
717
721
|
* </li>
|
|
718
722
|
* <li>
|
|
719
723
|
* <p>A <code>LifecyclePolicies</code> array of <code>LifecyclePolicy</code> objects that
|
|
@@ -8,36 +8,40 @@ export interface PutLifecycleConfigurationCommandInput extends PutLifecycleConfi
|
|
|
8
8
|
export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigurationDescription, __MetadataBearer {
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* <p>Use this action to manage EFS lifecycle management and
|
|
12
|
-
*
|
|
13
|
-
* define the following:</p>
|
|
11
|
+
* <p>Use this action to manage EFS lifecycle management and EFS Intelligent-Tiering. A
|
|
12
|
+
* <code>LifecycleConfiguration</code> consists of one or more <code>LifecyclePolicy</code>
|
|
13
|
+
* objects that define the following:</p>
|
|
14
14
|
* <ul>
|
|
15
15
|
* <li>
|
|
16
16
|
* <p>
|
|
17
17
|
* <b>EFS Lifecycle management</b> - When Amazon EFS
|
|
18
|
-
*
|
|
18
|
+
* automatically transitions files in a file system into the lower-cost EFS Infrequent Access
|
|
19
|
+
* (IA) storage class.</p>
|
|
19
20
|
* <p>To enable EFS Lifecycle management, set the value of <code>TransitionToIA</code> to one of the available options.</p>
|
|
20
21
|
* </li>
|
|
21
22
|
* <li>
|
|
22
23
|
* <p>
|
|
23
|
-
* <b>EFS Intelligent
|
|
24
|
-
*
|
|
25
|
-
*
|
|
24
|
+
* <b>EFS Intelligent-Tiering</b> - When Amazon EFS
|
|
25
|
+
* automatically transitions files from IA back into the file system's primary storage class
|
|
26
|
+
* (EFS Standard or EFS One Zone Standard).</p>
|
|
27
|
+
* <p>To enable EFS Intelligent-Tiering, set the value of
|
|
28
|
+
* <code>TransitionToPrimaryStorageClass</code> to <code>AFTER_1_ACCESS</code>.</p>
|
|
26
29
|
* </li>
|
|
27
30
|
* </ul>
|
|
28
31
|
*
|
|
29
32
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html">EFS Lifecycle Management</a>.</p>
|
|
30
|
-
* <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
33
|
+
* <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to
|
|
34
|
+
* all files in the file system. If a <code>LifecycleConfiguration</code> object already exists
|
|
35
|
+
* for the specified file system, a <code>PutLifecycleConfiguration</code> call modifies the
|
|
36
|
+
* existing configuration. A <code>PutLifecycleConfiguration</code> call with an empty
|
|
37
|
+
* <code>LifecyclePolicies</code> array in the request body deletes any existing
|
|
38
|
+
* <code>LifecycleConfiguration</code> and turns off lifecycle management and EFS
|
|
39
|
+
* Intelligent-Tiering for the file system.</p>
|
|
36
40
|
* <p>In the request, specify the following: </p>
|
|
37
41
|
* <ul>
|
|
38
42
|
* <li>
|
|
39
|
-
* <p>The ID for the file system for which you are enabling, disabling, or modifying
|
|
40
|
-
* and
|
|
43
|
+
* <p>The ID for the file system for which you are enabling, disabling, or modifying
|
|
44
|
+
* lifecycle management and EFS Intelligent-Tiering.</p>
|
|
41
45
|
* </li>
|
|
42
46
|
* <li>
|
|
43
47
|
* <p>A <code>LifecyclePolicies</code> array of <code>LifecyclePolicy</code> objects that
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|
|
@@ -528,11 +528,12 @@ export interface CreateFileSystemRequest {
|
|
|
528
528
|
*/
|
|
529
529
|
ThroughputMode?: ThroughputMode | string;
|
|
530
530
|
/**
|
|
531
|
-
* <p>The throughput, measured in
|
|
532
|
-
*
|
|
533
|
-
*
|
|
534
|
-
*
|
|
535
|
-
*
|
|
531
|
+
* <p>The throughput, measured in
|
|
532
|
+
* MiB/s,
|
|
533
|
+
* that you want to provision for a file system that you're creating. Valid values are
|
|
534
|
+
* 1-1024. Required if <code>ThroughputMode</code> is set to <code>provisioned</code>. The upper
|
|
535
|
+
* limit for throughput is 1024 MiB/s. To increase this limit, contact Amazon Web Services Support. For
|
|
536
|
+
* more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits">Amazon EFS quotas that you can increase</a> in the <i>Amazon EFS User Guide</i>.</p>
|
|
536
537
|
*/
|
|
537
538
|
ProvisionedThroughputInMibps?: number;
|
|
538
539
|
/**
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-efs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.233.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|