@aws-sdk/client-efs 3.775.0 → 3.777.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-types/commands/CreateAccessPointCommand.d.ts +1 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +1 -41
- package/dist-types/commands/CreateMountTargetCommand.d.ts +12 -12
- package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +10 -7
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +7 -4
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +7 -4
- package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +8 -5
- package/dist-types/commands/DescribeAccessPointsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +1 -34
- package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +6 -6
- package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeMountTargetsCommand.d.ts +12 -12
- package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +7 -7
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +8 -5
- package/dist-types/commands/PutAccountPreferencesCommand.d.ts +1 -0
- package/dist-types/commands/PutBackupPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +1 -0
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +8 -8
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFileSystemProtectionCommand.d.ts +1 -0
- package/package.json +2 -2
|
@@ -150,6 +150,7 @@ declare const CreateAccessPointCommand_base: {
|
|
|
150
150
|
* @throws {@link EFSServiceException}
|
|
151
151
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
152
152
|
*
|
|
153
|
+
*
|
|
153
154
|
* @public
|
|
154
155
|
*/
|
|
155
156
|
export declare class CreateAccessPointCommand extends CreateAccessPointCommand_base {
|
|
@@ -182,48 +182,8 @@ declare const CreateFileSystemCommand_base: {
|
|
|
182
182
|
* @throws {@link EFSServiceException}
|
|
183
183
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
184
184
|
*
|
|
185
|
-
* @public
|
|
186
|
-
* @example To create a new file system
|
|
187
|
-
* ```javascript
|
|
188
|
-
* // This operation creates a new, encrypted file system with automatic backups enabled, and the default generalpurpose performance mode.
|
|
189
|
-
* const input = {
|
|
190
|
-
* "Backup": true,
|
|
191
|
-
* "CreationToken": "tokenstring",
|
|
192
|
-
* "Encrypted": true,
|
|
193
|
-
* "PerformanceMode": "generalPurpose",
|
|
194
|
-
* "Tags": [
|
|
195
|
-
* {
|
|
196
|
-
* "Key": "Name",
|
|
197
|
-
* "Value": "MyFileSystem"
|
|
198
|
-
* }
|
|
199
|
-
* ]
|
|
200
|
-
* };
|
|
201
|
-
* const command = new CreateFileSystemCommand(input);
|
|
202
|
-
* const response = await client.send(command);
|
|
203
|
-
* /* response ==
|
|
204
|
-
* {
|
|
205
|
-
* "CreationTime": "1481841524.0",
|
|
206
|
-
* "CreationToken": "tokenstring",
|
|
207
|
-
* "Encrypted": true,
|
|
208
|
-
* "FileSystemId": "fs-01234567",
|
|
209
|
-
* "LifeCycleState": "creating",
|
|
210
|
-
* "NumberOfMountTargets": 0,
|
|
211
|
-
* "OwnerId": "012345678912",
|
|
212
|
-
* "PerformanceMode": "generalPurpose",
|
|
213
|
-
* "SizeInBytes": {
|
|
214
|
-
* "Value": 0
|
|
215
|
-
* },
|
|
216
|
-
* "Tags": [
|
|
217
|
-
* {
|
|
218
|
-
* "Key": "Name",
|
|
219
|
-
* "Value": "MyFileSystem"
|
|
220
|
-
* }
|
|
221
|
-
* ]
|
|
222
|
-
* }
|
|
223
|
-
* *\/
|
|
224
|
-
* // example id: to-create-a-new-file-system-1481840798547
|
|
225
|
-
* ```
|
|
226
185
|
*
|
|
186
|
+
* @public
|
|
227
187
|
*/
|
|
228
188
|
export declare class CreateFileSystemCommand extends CreateFileSystemCommand_base {
|
|
229
189
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -261,30 +261,30 @@ declare const CreateMountTargetCommand_base: {
|
|
|
261
261
|
* @throws {@link EFSServiceException}
|
|
262
262
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
263
263
|
*
|
|
264
|
-
*
|
|
264
|
+
*
|
|
265
265
|
* @example To create a new mount target
|
|
266
266
|
* ```javascript
|
|
267
267
|
* // This operation creates a new mount target for an EFS file system.
|
|
268
268
|
* const input = {
|
|
269
|
-
*
|
|
270
|
-
*
|
|
269
|
+
* FileSystemId: "fs-01234567",
|
|
270
|
+
* SubnetId: "subnet-1234abcd"
|
|
271
271
|
* };
|
|
272
272
|
* const command = new CreateMountTargetCommand(input);
|
|
273
273
|
* const response = await client.send(command);
|
|
274
|
-
* /* response
|
|
274
|
+
* /* response is
|
|
275
275
|
* {
|
|
276
|
-
*
|
|
277
|
-
*
|
|
278
|
-
*
|
|
279
|
-
*
|
|
280
|
-
*
|
|
281
|
-
*
|
|
282
|
-
*
|
|
276
|
+
* FileSystemId: "fs-01234567",
|
|
277
|
+
* IpAddress: "192.0.0.2",
|
|
278
|
+
* LifeCycleState: "creating",
|
|
279
|
+
* MountTargetId: "fsmt-12340abc",
|
|
280
|
+
* NetworkInterfaceId: "eni-cedf6789",
|
|
281
|
+
* OwnerId: "012345678912",
|
|
282
|
+
* SubnetId: "subnet-1234abcd"
|
|
283
283
|
* }
|
|
284
284
|
* *\/
|
|
285
|
-
* // example id: to-create-a-new-mount-target-1481842289329
|
|
286
285
|
* ```
|
|
287
286
|
*
|
|
287
|
+
* @public
|
|
288
288
|
*/
|
|
289
289
|
export declare class CreateMountTargetCommand extends CreateMountTargetCommand_base {
|
|
290
290
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -147,6 +147,7 @@ declare const CreateReplicationConfigurationCommand_base: {
|
|
|
147
147
|
* @throws {@link EFSServiceException}
|
|
148
148
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
149
149
|
*
|
|
150
|
+
*
|
|
150
151
|
* @public
|
|
151
152
|
*/
|
|
152
153
|
export declare class CreateReplicationConfigurationCommand extends CreateReplicationConfigurationCommand_base {
|
|
@@ -80,24 +80,27 @@ declare const CreateTagsCommand_base: {
|
|
|
80
80
|
* @throws {@link EFSServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
82
82
|
*
|
|
83
|
-
*
|
|
83
|
+
*
|
|
84
84
|
* @example To create a new tag
|
|
85
85
|
* ```javascript
|
|
86
86
|
* // This operation creates a new tag for an EFS file system.
|
|
87
87
|
* const input = {
|
|
88
|
-
*
|
|
89
|
-
*
|
|
88
|
+
* FileSystemId: "fs-01234567",
|
|
89
|
+
* Tags: [
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
91
|
+
* Key: "Name",
|
|
92
|
+
* Value: "MyFileSystem"
|
|
93
93
|
* }
|
|
94
94
|
* ]
|
|
95
95
|
* };
|
|
96
96
|
* const command = new CreateTagsCommand(input);
|
|
97
|
-
* await client.send(command);
|
|
98
|
-
*
|
|
97
|
+
* const response = await client.send(command);
|
|
98
|
+
* /* response is
|
|
99
|
+
* { /* metadata only *\/ }
|
|
100
|
+
* *\/
|
|
99
101
|
* ```
|
|
100
102
|
*
|
|
103
|
+
* @public
|
|
101
104
|
*/
|
|
102
105
|
export declare class CreateTagsCommand extends CreateTagsCommand_base {
|
|
103
106
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -66,6 +66,7 @@ declare const DeleteAccessPointCommand_base: {
|
|
|
66
66
|
* @throws {@link EFSServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
68
68
|
*
|
|
69
|
+
*
|
|
69
70
|
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteAccessPointCommand extends DeleteAccessPointCommand_base {
|
|
@@ -85,18 +85,21 @@ declare const DeleteFileSystemCommand_base: {
|
|
|
85
85
|
* @throws {@link EFSServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
87
87
|
*
|
|
88
|
-
*
|
|
88
|
+
*
|
|
89
89
|
* @example To delete a file system
|
|
90
90
|
* ```javascript
|
|
91
91
|
* // This operation deletes an EFS file system.
|
|
92
92
|
* const input = {
|
|
93
|
-
*
|
|
93
|
+
* FileSystemId: "fs-01234567"
|
|
94
94
|
* };
|
|
95
95
|
* const command = new DeleteFileSystemCommand(input);
|
|
96
|
-
* await client.send(command);
|
|
97
|
-
*
|
|
96
|
+
* const response = await client.send(command);
|
|
97
|
+
* /* response is
|
|
98
|
+
* { /* metadata only *\/ }
|
|
99
|
+
* *\/
|
|
98
100
|
* ```
|
|
99
101
|
*
|
|
102
|
+
* @public
|
|
100
103
|
*/
|
|
101
104
|
export declare class DeleteFileSystemCommand extends DeleteFileSystemCommand_base {
|
|
102
105
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -69,6 +69,7 @@ declare const DeleteFileSystemPolicyCommand_base: {
|
|
|
69
69
|
* @throws {@link EFSServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
71
71
|
*
|
|
72
|
+
*
|
|
72
73
|
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DeleteFileSystemPolicyCommand extends DeleteFileSystemPolicyCommand_base {
|
|
@@ -97,18 +97,21 @@ declare const DeleteMountTargetCommand_base: {
|
|
|
97
97
|
* @throws {@link EFSServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example To delete a mount target
|
|
102
102
|
* ```javascript
|
|
103
103
|
* // This operation deletes a mount target.
|
|
104
104
|
* const input = {
|
|
105
|
-
*
|
|
105
|
+
* MountTargetId: "fsmt-12340abc"
|
|
106
106
|
* };
|
|
107
107
|
* const command = new DeleteMountTargetCommand(input);
|
|
108
|
-
* await client.send(command);
|
|
109
|
-
*
|
|
108
|
+
* const response = await client.send(command);
|
|
109
|
+
* /* response is
|
|
110
|
+
* { /* metadata only *\/ }
|
|
111
|
+
* *\/
|
|
110
112
|
* ```
|
|
111
113
|
*
|
|
114
|
+
* @public
|
|
112
115
|
*/
|
|
113
116
|
export declare class DeleteMountTargetCommand extends DeleteMountTargetCommand_base {
|
|
114
117
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -73,6 +73,7 @@ declare const DeleteReplicationConfigurationCommand_base: {
|
|
|
73
73
|
* @throws {@link EFSServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
75
75
|
*
|
|
76
|
+
*
|
|
76
77
|
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteReplicationConfigurationCommand extends DeleteReplicationConfigurationCommand_base {
|
|
@@ -77,21 +77,24 @@ declare const DeleteTagsCommand_base: {
|
|
|
77
77
|
* @throws {@link EFSServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example To delete tags for an EFS file system
|
|
82
82
|
* ```javascript
|
|
83
83
|
* // This operation deletes tags for an EFS file system.
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
86
|
-
*
|
|
85
|
+
* FileSystemId: "fs-01234567",
|
|
86
|
+
* TagKeys: [
|
|
87
87
|
* "Name"
|
|
88
88
|
* ]
|
|
89
89
|
* };
|
|
90
90
|
* const command = new DeleteTagsCommand(input);
|
|
91
|
-
* await client.send(command);
|
|
92
|
-
*
|
|
91
|
+
* const response = await client.send(command);
|
|
92
|
+
* /* response is
|
|
93
|
+
* { /* metadata only *\/ }
|
|
94
|
+
* *\/
|
|
93
95
|
* ```
|
|
94
96
|
*
|
|
97
|
+
* @public
|
|
95
98
|
*/
|
|
96
99
|
export declare class DeleteTagsCommand extends DeleteTagsCommand_base {
|
|
97
100
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -109,6 +109,7 @@ declare const DescribeAccessPointsCommand_base: {
|
|
|
109
109
|
* @throws {@link EFSServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
111
111
|
*
|
|
112
|
+
*
|
|
112
113
|
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class DescribeAccessPointsCommand extends DescribeAccessPointsCommand_base {
|
|
@@ -64,6 +64,7 @@ declare const DescribeAccountPreferencesCommand_base: {
|
|
|
64
64
|
* @throws {@link EFSServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
66
66
|
*
|
|
67
|
+
*
|
|
67
68
|
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class DescribeAccountPreferencesCommand extends DescribeAccountPreferencesCommand_base {
|
|
@@ -73,6 +73,7 @@ declare const DescribeBackupPolicyCommand_base: {
|
|
|
73
73
|
* @throws {@link EFSServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
75
75
|
*
|
|
76
|
+
*
|
|
76
77
|
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DescribeBackupPolicyCommand extends DescribeBackupPolicyCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const DescribeFileSystemPolicyCommand_base: {
|
|
|
71
71
|
* @throws {@link EFSServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DescribeFileSystemPolicyCommand extends DescribeFileSystemPolicyCommand_base {
|
|
@@ -123,41 +123,8 @@ declare const DescribeFileSystemsCommand_base: {
|
|
|
123
123
|
* @throws {@link EFSServiceException}
|
|
124
124
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
125
125
|
*
|
|
126
|
-
* @public
|
|
127
|
-
* @example To describe an EFS file system
|
|
128
|
-
* ```javascript
|
|
129
|
-
* // This operation describes all of the EFS file systems in an account.
|
|
130
|
-
* const input = {};
|
|
131
|
-
* const command = new DescribeFileSystemsCommand(input);
|
|
132
|
-
* const response = await client.send(command);
|
|
133
|
-
* /* response ==
|
|
134
|
-
* {
|
|
135
|
-
* "FileSystems": [
|
|
136
|
-
* {
|
|
137
|
-
* "CreationTime": "1481841524.0",
|
|
138
|
-
* "CreationToken": "tokenstring",
|
|
139
|
-
* "FileSystemId": "fs-01234567",
|
|
140
|
-
* "LifeCycleState": "available",
|
|
141
|
-
* "Name": "MyFileSystem",
|
|
142
|
-
* "NumberOfMountTargets": 1,
|
|
143
|
-
* "OwnerId": "012345678912",
|
|
144
|
-
* "PerformanceMode": "generalPurpose",
|
|
145
|
-
* "SizeInBytes": {
|
|
146
|
-
* "Value": 6144
|
|
147
|
-
* },
|
|
148
|
-
* "Tags": [
|
|
149
|
-
* {
|
|
150
|
-
* "Key": "Name",
|
|
151
|
-
* "Value": "MyFileSystem"
|
|
152
|
-
* }
|
|
153
|
-
* ]
|
|
154
|
-
* }
|
|
155
|
-
* ]
|
|
156
|
-
* }
|
|
157
|
-
* *\/
|
|
158
|
-
* // example id: to-describe-an-efs-file-system-1481848448460
|
|
159
|
-
* ```
|
|
160
126
|
*
|
|
127
|
+
* @public
|
|
161
128
|
*/
|
|
162
129
|
export declare class DescribeFileSystemsCommand extends DescribeFileSystemsCommand_base {
|
|
163
130
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -77,27 +77,27 @@ declare const DescribeLifecycleConfigurationCommand_base: {
|
|
|
77
77
|
* @throws {@link EFSServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example To describe the lifecycle configuration for a file system
|
|
82
82
|
* ```javascript
|
|
83
83
|
* // This operation describes a file system's LifecycleConfiguration. EFS lifecycle management uses the LifecycleConfiguration object to identify which files to move to the EFS Infrequent Access (IA) storage class.
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
85
|
+
* FileSystemId: "fs-01234567"
|
|
86
86
|
* };
|
|
87
87
|
* const command = new DescribeLifecycleConfigurationCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
89
|
-
* /* response
|
|
89
|
+
* /* response is
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
91
|
+
* LifecyclePolicies: [
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
93
|
+
* TransitionToIA: "AFTER_30_DAYS"
|
|
94
94
|
* }
|
|
95
95
|
* ]
|
|
96
96
|
* }
|
|
97
97
|
* *\/
|
|
98
|
-
* // example id: to-describe-the-lifecycle-configuration-for-a-file-system-1551200664502
|
|
99
98
|
* ```
|
|
100
99
|
*
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class DescribeLifecycleConfigurationCommand extends DescribeLifecycleConfigurationCommand_base {
|
|
103
103
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -86,25 +86,25 @@ declare const DescribeMountTargetSecurityGroupsCommand_base: {
|
|
|
86
86
|
* @throws {@link EFSServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
88
88
|
*
|
|
89
|
-
*
|
|
89
|
+
*
|
|
90
90
|
* @example To describe the security groups for a mount target
|
|
91
91
|
* ```javascript
|
|
92
92
|
* // This operation describes all of the security groups for a file system's mount target.
|
|
93
93
|
* const input = {
|
|
94
|
-
*
|
|
94
|
+
* MountTargetId: "fsmt-12340abc"
|
|
95
95
|
* };
|
|
96
96
|
* const command = new DescribeMountTargetSecurityGroupsCommand(input);
|
|
97
97
|
* const response = await client.send(command);
|
|
98
|
-
* /* response
|
|
98
|
+
* /* response is
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
100
|
+
* SecurityGroups: [
|
|
101
101
|
* "sg-4567abcd"
|
|
102
102
|
* ]
|
|
103
103
|
* }
|
|
104
104
|
* *\/
|
|
105
|
-
* // example id: to-describe-the-security-groups-for-a-mount-target-1481849317823
|
|
106
105
|
* ```
|
|
107
106
|
*
|
|
107
|
+
* @public
|
|
108
108
|
*/
|
|
109
109
|
export declare class DescribeMountTargetSecurityGroupsCommand extends DescribeMountTargetSecurityGroupsCommand_base {
|
|
110
110
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -98,33 +98,33 @@ declare const DescribeMountTargetsCommand_base: {
|
|
|
98
98
|
* @throws {@link EFSServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
100
100
|
*
|
|
101
|
-
*
|
|
101
|
+
*
|
|
102
102
|
* @example To describe the mount targets for a file system
|
|
103
103
|
* ```javascript
|
|
104
104
|
* // This operation describes all of a file system's mount targets.
|
|
105
105
|
* const input = {
|
|
106
|
-
*
|
|
106
|
+
* FileSystemId: "fs-01234567"
|
|
107
107
|
* };
|
|
108
108
|
* const command = new DescribeMountTargetsCommand(input);
|
|
109
109
|
* const response = await client.send(command);
|
|
110
|
-
* /* response
|
|
110
|
+
* /* response is
|
|
111
111
|
* {
|
|
112
|
-
*
|
|
112
|
+
* MountTargets: [
|
|
113
113
|
* {
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
114
|
+
* FileSystemId: "fs-01234567",
|
|
115
|
+
* IpAddress: "192.0.0.2",
|
|
116
|
+
* LifeCycleState: "available",
|
|
117
|
+
* MountTargetId: "fsmt-12340abc",
|
|
118
|
+
* NetworkInterfaceId: "eni-cedf6789",
|
|
119
|
+
* OwnerId: "012345678912",
|
|
120
|
+
* SubnetId: "subnet-1234abcd"
|
|
121
121
|
* }
|
|
122
122
|
* ]
|
|
123
123
|
* }
|
|
124
124
|
* *\/
|
|
125
|
-
* // example id: to-describe-the-mount-targets-for-a-file-system-1481849958584
|
|
126
125
|
* ```
|
|
127
126
|
*
|
|
127
|
+
* @public
|
|
128
128
|
*/
|
|
129
129
|
export declare class DescribeMountTargetsCommand extends DescribeMountTargetsCommand_base {
|
|
130
130
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -97,6 +97,7 @@ declare const DescribeReplicationConfigurationsCommand_base: {
|
|
|
97
97
|
* @throws {@link EFSServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
99
99
|
*
|
|
100
|
+
*
|
|
100
101
|
* @public
|
|
101
102
|
*/
|
|
102
103
|
export declare class DescribeReplicationConfigurationsCommand extends DescribeReplicationConfigurationsCommand_base {
|
|
@@ -85,28 +85,28 @@ declare const DescribeTagsCommand_base: {
|
|
|
85
85
|
* @throws {@link EFSServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
87
87
|
*
|
|
88
|
-
*
|
|
88
|
+
*
|
|
89
89
|
* @example To describe the tags for a file system
|
|
90
90
|
* ```javascript
|
|
91
91
|
* // This operation describes all of a file system's tags.
|
|
92
92
|
* const input = {
|
|
93
|
-
*
|
|
93
|
+
* FileSystemId: "fs-01234567"
|
|
94
94
|
* };
|
|
95
95
|
* const command = new DescribeTagsCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
-
* /* response
|
|
97
|
+
* /* response is
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
99
|
+
* Tags: [
|
|
100
100
|
* {
|
|
101
|
-
*
|
|
102
|
-
*
|
|
101
|
+
* Key: "Name",
|
|
102
|
+
* Value: "MyFileSystem"
|
|
103
103
|
* }
|
|
104
104
|
* ]
|
|
105
105
|
* }
|
|
106
106
|
* *\/
|
|
107
|
-
* // example id: to-describe-the-tags-for-a-file-system-1481850497090
|
|
108
107
|
* ```
|
|
109
108
|
*
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
export declare class DescribeTagsCommand extends DescribeTagsCommand_base {
|
|
112
112
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,6 +79,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link EFSServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
@@ -97,21 +97,24 @@ declare const ModifyMountTargetSecurityGroupsCommand_base: {
|
|
|
97
97
|
* @throws {@link EFSServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example To modify the security groups associated with a mount target for a file system
|
|
102
102
|
* ```javascript
|
|
103
103
|
* // This operation modifies the security groups associated with a mount target for a file system.
|
|
104
104
|
* const input = {
|
|
105
|
-
*
|
|
106
|
-
*
|
|
105
|
+
* MountTargetId: "fsmt-12340abc",
|
|
106
|
+
* SecurityGroups: [
|
|
107
107
|
* "sg-abcd1234"
|
|
108
108
|
* ]
|
|
109
109
|
* };
|
|
110
110
|
* const command = new ModifyMountTargetSecurityGroupsCommand(input);
|
|
111
|
-
* await client.send(command);
|
|
112
|
-
*
|
|
111
|
+
* const response = await client.send(command);
|
|
112
|
+
* /* response is
|
|
113
|
+
* { /* metadata only *\/ }
|
|
114
|
+
* *\/
|
|
113
115
|
* ```
|
|
114
116
|
*
|
|
117
|
+
* @public
|
|
115
118
|
*/
|
|
116
119
|
export declare class ModifyMountTargetSecurityGroupsCommand extends ModifyMountTargetSecurityGroupsCommand_base {
|
|
117
120
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -75,6 +75,7 @@ declare const PutAccountPreferencesCommand_base: {
|
|
|
75
75
|
* @throws {@link EFSServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class PutAccountPreferencesCommand extends PutAccountPreferencesCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const PutBackupPolicyCommand_base: {
|
|
|
76
76
|
* @throws {@link EFSServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class PutBackupPolicyCommand extends PutBackupPolicyCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const PutFileSystemPolicyCommand_base: {
|
|
|
87
87
|
* @throws {@link EFSServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class PutFileSystemPolicyCommand extends PutFileSystemPolicyCommand_base {
|
|
@@ -144,32 +144,32 @@ declare const PutLifecycleConfigurationCommand_base: {
|
|
|
144
144
|
* @throws {@link EFSServiceException}
|
|
145
145
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
146
146
|
*
|
|
147
|
-
*
|
|
147
|
+
*
|
|
148
148
|
* @example Creates a new lifecycleconfiguration object for a file system
|
|
149
149
|
* ```javascript
|
|
150
150
|
* // This operation enables lifecycle management on a file system by creating a new LifecycleConfiguration object. A LifecycleConfiguration object defines when files in an Amazon EFS file system are automatically transitioned to the lower-cost EFS Infrequent Access (IA) storage class. A LifecycleConfiguration applies to all files in a file system.
|
|
151
151
|
* const input = {
|
|
152
|
-
*
|
|
153
|
-
*
|
|
152
|
+
* FileSystemId: "fs-01234567",
|
|
153
|
+
* LifecyclePolicies: [
|
|
154
154
|
* {
|
|
155
|
-
*
|
|
155
|
+
* TransitionToIA: "AFTER_30_DAYS"
|
|
156
156
|
* }
|
|
157
157
|
* ]
|
|
158
158
|
* };
|
|
159
159
|
* const command = new PutLifecycleConfigurationCommand(input);
|
|
160
160
|
* const response = await client.send(command);
|
|
161
|
-
* /* response
|
|
161
|
+
* /* response is
|
|
162
162
|
* {
|
|
163
|
-
*
|
|
163
|
+
* LifecyclePolicies: [
|
|
164
164
|
* {
|
|
165
|
-
*
|
|
165
|
+
* TransitionToIA: "AFTER_30_DAYS"
|
|
166
166
|
* }
|
|
167
167
|
* ]
|
|
168
168
|
* }
|
|
169
169
|
* *\/
|
|
170
|
-
* // example id: creates-a-new-lifecycleconfiguration-object-for-a-file-system-1551201594692
|
|
171
170
|
* ```
|
|
172
171
|
*
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
export declare class PutLifecycleConfigurationCommand extends PutLifecycleConfigurationCommand_base {
|
|
175
175
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -75,6 +75,7 @@ declare const TagResourceCommand_base: {
|
|
|
75
75
|
* @throws {@link EFSServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
@@ -72,6 +72,7 @@ declare const UntagResourceCommand_base: {
|
|
|
72
72
|
* @throws {@link EFSServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
74
74
|
*
|
|
75
|
+
*
|
|
75
76
|
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
@@ -116,6 +116,7 @@ declare const UpdateFileSystemCommand_base: {
|
|
|
116
116
|
* @throws {@link EFSServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
118
118
|
*
|
|
119
|
+
*
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class UpdateFileSystemCommand extends UpdateFileSystemCommand_base {
|
|
@@ -89,6 +89,7 @@ declare const UpdateFileSystemProtectionCommand_base: {
|
|
|
89
89
|
* @throws {@link EFSServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
91
91
|
*
|
|
92
|
+
*
|
|
92
93
|
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class UpdateFileSystemProtectionCommand extends UpdateFileSystemProtectionCommand_base {
|
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.777.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-efs",
|
|
@@ -21,7 +21,7 @@
|
|
|
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.777.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",
|