@aws-sdk/client-efs 3.288.0 → 3.290.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 +28 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +71 -0
- package/dist-types/commands/CreateMountTargetCommand.d.ts +78 -0
- package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +40 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +29 -0
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +12 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +26 -0
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +15 -0
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +27 -0
- package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +26 -0
- package/dist-types/commands/DescribeAccessPointsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +4 -0
- package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +18 -0
- package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +15 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +46 -0
- package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +32 -0
- package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +34 -0
- package/dist-types/commands/DescribeMountTargetsCommand.d.ts +46 -0
- package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +19 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +33 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +38 -0
- package/dist-types/commands/PutAccountPreferencesCommand.d.ts +8 -0
- package/dist-types/commands/PutBackupPolicyCommand.d.ts +18 -0
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +20 -0
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +40 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +30 -0
- package/package.json +29 -29
|
@@ -42,6 +42,34 @@ export interface CreateAccessPointCommandOutput extends AccessPointDescription,
|
|
|
42
42
|
* @see {@link CreateAccessPointCommandOutput} for command's `response` shape.
|
|
43
43
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
44
44
|
*
|
|
45
|
+
* @throws {@link AccessPointAlreadyExists} (client fault)
|
|
46
|
+
* <p>Returned if the access point that you are trying to create already exists, with the
|
|
47
|
+
* creation token you provided in the request.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link AccessPointLimitExceeded} (client fault)
|
|
50
|
+
* <p>Returned if the Amazon Web Services account has already created the maximum number of access points
|
|
51
|
+
* allowed per file system. For more informaton, see <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region">https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region</a>.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link BadRequest} (client fault)
|
|
54
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
55
|
+
* parameter value or a missing required parameter.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
58
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
59
|
+
* requester's Amazon Web Services account.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
62
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerError} (server fault)
|
|
65
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>Returned when the <code>CreateAccessPoint</code> API action is called too quickly and
|
|
69
|
+
* the number of Access Points on the file system is nearing the
|
|
70
|
+
* <a href="https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region">limit of 120</a>.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
45
73
|
*/
|
|
46
74
|
export declare class CreateAccessPointCommand extends $Command<CreateAccessPointCommandInput, CreateAccessPointCommandOutput, EFSClientResolvedConfig> {
|
|
47
75
|
readonly input: CreateAccessPointCommandInput;
|
|
@@ -77,6 +77,77 @@ export interface CreateFileSystemCommandOutput extends FileSystemDescription, __
|
|
|
77
77
|
* @see {@link CreateFileSystemCommandOutput} for command's `response` shape.
|
|
78
78
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link BadRequest} (client fault)
|
|
81
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
82
|
+
* parameter value or a missing required parameter.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link FileSystemAlreadyExists} (client fault)
|
|
85
|
+
* <p>Returned if the file system you are trying to create already exists, with the
|
|
86
|
+
* creation token you provided.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link FileSystemLimitExceeded} (client fault)
|
|
89
|
+
* <p>Returned if the Amazon Web Services account has already created the maximum number of file systems
|
|
90
|
+
* allowed per account.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link InsufficientThroughputCapacity} (server fault)
|
|
93
|
+
* <p>Returned if there's not enough capacity to provision additional throughput. This value
|
|
94
|
+
* might be returned when you try to create a file system in provisioned throughput mode,
|
|
95
|
+
* when you attempt to increase the provisioned throughput of an existing file system, or
|
|
96
|
+
* when you attempt to change an existing file system from Bursting Throughput to
|
|
97
|
+
* Provisioned Throughput mode. Try again later.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link InternalServerError} (server fault)
|
|
100
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ThroughputLimitExceeded} (client fault)
|
|
103
|
+
* <p>Returned if the throughput mode or amount of provisioned throughput can't be changed
|
|
104
|
+
* because the throughput limit of 1024 MiB/s has been reached.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link UnsupportedAvailabilityZone} (client fault)
|
|
107
|
+
* <p>Returned if the requested Amazon EFS functionality is not available in the specified Availability Zone.</p>
|
|
108
|
+
*
|
|
109
|
+
*
|
|
110
|
+
* @example To create a new file system
|
|
111
|
+
* ```javascript
|
|
112
|
+
* // This operation creates a new, encrypted file system with automatic backups enabled, and the default generalpurpose performance mode.
|
|
113
|
+
* const input = {
|
|
114
|
+
* "Backup": true,
|
|
115
|
+
* "CreationToken": "tokenstring",
|
|
116
|
+
* "Encrypted": true,
|
|
117
|
+
* "PerformanceMode": "generalPurpose",
|
|
118
|
+
* "Tags": [
|
|
119
|
+
* {
|
|
120
|
+
* "Key": "Name",
|
|
121
|
+
* "Value": "MyFileSystem"
|
|
122
|
+
* }
|
|
123
|
+
* ]
|
|
124
|
+
* };
|
|
125
|
+
* const command = new CreateFileSystemCommand(input);
|
|
126
|
+
* const response = await client.send(command);
|
|
127
|
+
* /* response ==
|
|
128
|
+
* {
|
|
129
|
+
* "CreationTime": "1481841524.0",
|
|
130
|
+
* "CreationToken": "tokenstring",
|
|
131
|
+
* "Encrypted": true,
|
|
132
|
+
* "FileSystemId": "fs-01234567",
|
|
133
|
+
* "LifeCycleState": "creating",
|
|
134
|
+
* "NumberOfMountTargets": 0,
|
|
135
|
+
* "OwnerId": "012345678912",
|
|
136
|
+
* "PerformanceMode": "generalPurpose",
|
|
137
|
+
* "SizeInBytes": {
|
|
138
|
+
* "Value": 0
|
|
139
|
+
* },
|
|
140
|
+
* "Tags": [
|
|
141
|
+
* {
|
|
142
|
+
* "Key": "Name",
|
|
143
|
+
* "Value": "MyFileSystem"
|
|
144
|
+
* }
|
|
145
|
+
* ]
|
|
146
|
+
* }
|
|
147
|
+
* *\/
|
|
148
|
+
* // example id: to-create-a-new-file-system-1481840798547
|
|
149
|
+
* ```
|
|
150
|
+
*
|
|
80
151
|
*/
|
|
81
152
|
export declare class CreateFileSystemCommand extends $Command<CreateFileSystemCommandInput, CreateFileSystemCommandOutput, EFSClientResolvedConfig> {
|
|
82
153
|
readonly input: CreateFileSystemCommandInput;
|
|
@@ -168,6 +168,84 @@ export interface CreateMountTargetCommandOutput extends MountTargetDescription,
|
|
|
168
168
|
* @see {@link CreateMountTargetCommandOutput} for command's `response` shape.
|
|
169
169
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
170
170
|
*
|
|
171
|
+
* @throws {@link AvailabilityZonesMismatch} (client fault)
|
|
172
|
+
* <p>Returned if the Availability Zone that was specified for a mount target is
|
|
173
|
+
* different from the Availability Zone that was specified for One Zone storage.
|
|
174
|
+
* For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/availability-durability.html">Regional and One Zone storage redundancy</a>.</p>
|
|
175
|
+
*
|
|
176
|
+
* @throws {@link BadRequest} (client fault)
|
|
177
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
178
|
+
* parameter value or a missing required parameter.</p>
|
|
179
|
+
*
|
|
180
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
181
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
182
|
+
* requester's Amazon Web Services account.</p>
|
|
183
|
+
*
|
|
184
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
185
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
186
|
+
*
|
|
187
|
+
* @throws {@link InternalServerError} (server fault)
|
|
188
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
189
|
+
*
|
|
190
|
+
* @throws {@link IpAddressInUse} (client fault)
|
|
191
|
+
* <p>Returned if the request specified an <code>IpAddress</code> that is already in use
|
|
192
|
+
* in the subnet.</p>
|
|
193
|
+
*
|
|
194
|
+
* @throws {@link MountTargetConflict} (client fault)
|
|
195
|
+
* <p>Returned if the mount target would violate one of the specified restrictions based
|
|
196
|
+
* on the file system's existing mount targets.</p>
|
|
197
|
+
*
|
|
198
|
+
* @throws {@link NetworkInterfaceLimitExceeded} (client fault)
|
|
199
|
+
* <p>The calling account has reached the limit for elastic network interfaces for the
|
|
200
|
+
* specific Amazon Web Services Region. Either delete some network interfaces or request
|
|
201
|
+
* that the account quota be raised. For more information, see <a href="https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html">Amazon VPC Quotas</a>
|
|
202
|
+
* in the <i>Amazon VPC User Guide</i> (see the <b>Network
|
|
203
|
+
* interfaces per Region</b> entry in the <b>Network
|
|
204
|
+
* interfaces</b> table). </p>
|
|
205
|
+
*
|
|
206
|
+
* @throws {@link NoFreeAddressesInSubnet} (client fault)
|
|
207
|
+
* <p>Returned if <code>IpAddress</code> was not specified in the request and there are
|
|
208
|
+
* no free IP addresses in the subnet.</p>
|
|
209
|
+
*
|
|
210
|
+
* @throws {@link SecurityGroupLimitExceeded} (client fault)
|
|
211
|
+
* <p>Returned if the size of <code>SecurityGroups</code> specified in the request is
|
|
212
|
+
* greater than five.</p>
|
|
213
|
+
*
|
|
214
|
+
* @throws {@link SecurityGroupNotFound} (client fault)
|
|
215
|
+
* <p>Returned if one of the specified security groups doesn't exist in the subnet's
|
|
216
|
+
* virtual private cloud (VPC).</p>
|
|
217
|
+
*
|
|
218
|
+
* @throws {@link SubnetNotFound} (client fault)
|
|
219
|
+
* <p>Returned if there is no subnet with ID <code>SubnetId</code> provided in the
|
|
220
|
+
* request.</p>
|
|
221
|
+
*
|
|
222
|
+
* @throws {@link UnsupportedAvailabilityZone} (client fault)
|
|
223
|
+
* <p>Returned if the requested Amazon EFS functionality is not available in the specified Availability Zone.</p>
|
|
224
|
+
*
|
|
225
|
+
*
|
|
226
|
+
* @example To create a new mount target
|
|
227
|
+
* ```javascript
|
|
228
|
+
* // This operation creates a new mount target for an EFS file system.
|
|
229
|
+
* const input = {
|
|
230
|
+
* "FileSystemId": "fs-01234567",
|
|
231
|
+
* "SubnetId": "subnet-1234abcd"
|
|
232
|
+
* };
|
|
233
|
+
* const command = new CreateMountTargetCommand(input);
|
|
234
|
+
* const response = await client.send(command);
|
|
235
|
+
* /* response ==
|
|
236
|
+
* {
|
|
237
|
+
* "FileSystemId": "fs-01234567",
|
|
238
|
+
* "IpAddress": "192.0.0.2",
|
|
239
|
+
* "LifeCycleState": "creating",
|
|
240
|
+
* "MountTargetId": "fsmt-12340abc",
|
|
241
|
+
* "NetworkInterfaceId": "eni-cedf6789",
|
|
242
|
+
* "OwnerId": "012345678912",
|
|
243
|
+
* "SubnetId": "subnet-1234abcd"
|
|
244
|
+
* }
|
|
245
|
+
* *\/
|
|
246
|
+
* // example id: to-create-a-new-mount-target-1481842289329
|
|
247
|
+
* ```
|
|
248
|
+
*
|
|
171
249
|
*/
|
|
172
250
|
export declare class CreateMountTargetCommand extends $Command<CreateMountTargetCommandInput, CreateMountTargetCommandOutput, EFSClientResolvedConfig> {
|
|
173
251
|
readonly input: CreateMountTargetCommandInput;
|
|
@@ -110,6 +110,46 @@ export interface CreateReplicationConfigurationCommandOutput extends Replication
|
|
|
110
110
|
* @see {@link CreateReplicationConfigurationCommandOutput} for command's `response` shape.
|
|
111
111
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
112
112
|
*
|
|
113
|
+
* @throws {@link BadRequest} (client fault)
|
|
114
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
115
|
+
* parameter value or a missing required parameter.</p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link FileSystemLimitExceeded} (client fault)
|
|
118
|
+
* <p>Returned if the Amazon Web Services account has already created the maximum number of file systems
|
|
119
|
+
* allowed per account.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
122
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
123
|
+
* requester's Amazon Web Services account.</p>
|
|
124
|
+
*
|
|
125
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
126
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
127
|
+
*
|
|
128
|
+
* @throws {@link InsufficientThroughputCapacity} (server fault)
|
|
129
|
+
* <p>Returned if there's not enough capacity to provision additional throughput. This value
|
|
130
|
+
* might be returned when you try to create a file system in provisioned throughput mode,
|
|
131
|
+
* when you attempt to increase the provisioned throughput of an existing file system, or
|
|
132
|
+
* when you attempt to change an existing file system from Bursting Throughput to
|
|
133
|
+
* Provisioned Throughput mode. Try again later.</p>
|
|
134
|
+
*
|
|
135
|
+
* @throws {@link InternalServerError} (server fault)
|
|
136
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
137
|
+
*
|
|
138
|
+
* @throws {@link ReplicationNotFound} (client fault)
|
|
139
|
+
* <p>Returned if the specified file system does not have a replication
|
|
140
|
+
* configuration.</p>
|
|
141
|
+
*
|
|
142
|
+
* @throws {@link ThroughputLimitExceeded} (client fault)
|
|
143
|
+
* <p>Returned if the throughput mode or amount of provisioned throughput can't be changed
|
|
144
|
+
* because the throughput limit of 1024 MiB/s has been reached.</p>
|
|
145
|
+
*
|
|
146
|
+
* @throws {@link UnsupportedAvailabilityZone} (client fault)
|
|
147
|
+
* <p>Returned if the requested Amazon EFS functionality is not available in the specified Availability Zone.</p>
|
|
148
|
+
*
|
|
149
|
+
* @throws {@link ValidationException} (client fault)
|
|
150
|
+
* <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
|
|
151
|
+
*
|
|
152
|
+
*
|
|
113
153
|
*/
|
|
114
154
|
export declare class CreateReplicationConfigurationCommand extends $Command<CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput, EFSClientResolvedConfig> {
|
|
115
155
|
readonly input: CreateReplicationConfigurationCommandInput;
|
|
@@ -40,6 +40,35 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
|
|
|
40
40
|
* @see {@link CreateTagsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequest} (client fault)
|
|
44
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
45
|
+
* parameter value or a missing required parameter.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
48
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
49
|
+
* requester's Amazon Web Services account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerError} (server fault)
|
|
52
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
55
|
+
* @example To create a new tag
|
|
56
|
+
* ```javascript
|
|
57
|
+
* // This operation creates a new tag for an EFS file system.
|
|
58
|
+
* const input = {
|
|
59
|
+
* "FileSystemId": "fs-01234567",
|
|
60
|
+
* "Tags": [
|
|
61
|
+
* {
|
|
62
|
+
* "Key": "Name",
|
|
63
|
+
* "Value": "MyFileSystem"
|
|
64
|
+
* }
|
|
65
|
+
* ]
|
|
66
|
+
* };
|
|
67
|
+
* const command = new CreateTagsCommand(input);
|
|
68
|
+
* await client.send(command);
|
|
69
|
+
* // example id: to-create-a-new-tag-1481843409357
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
43
72
|
*/
|
|
44
73
|
export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, EFSClientResolvedConfig> {
|
|
45
74
|
readonly input: CreateTagsCommandInput;
|
|
@@ -32,6 +32,18 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link DeleteAccessPointCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
36
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
37
|
+
* requester's Amazon Web Services account.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequest} (client fault)
|
|
40
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
41
|
+
* parameter value or a missing required parameter.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerError} (server fault)
|
|
44
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
35
47
|
*/
|
|
36
48
|
export declare class DeleteAccessPointCommand extends $Command<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput, EFSClientResolvedConfig> {
|
|
37
49
|
readonly input: DeleteAccessPointCommandInput;
|
|
@@ -48,6 +48,32 @@ export interface DeleteFileSystemCommandOutput extends __MetadataBearer {
|
|
|
48
48
|
* @see {@link DeleteFileSystemCommandOutput} for command's `response` shape.
|
|
49
49
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
50
50
|
*
|
|
51
|
+
* @throws {@link BadRequest} (client fault)
|
|
52
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
53
|
+
* parameter value or a missing required parameter.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link FileSystemInUse} (client fault)
|
|
56
|
+
* <p>Returned if a file system has mount targets.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
59
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
60
|
+
* requester's Amazon Web Services account.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerError} (server fault)
|
|
63
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
66
|
+
* @example To delete a file system
|
|
67
|
+
* ```javascript
|
|
68
|
+
* // This operation deletes an EFS file system.
|
|
69
|
+
* const input = {
|
|
70
|
+
* "FileSystemId": "fs-01234567"
|
|
71
|
+
* };
|
|
72
|
+
* const command = new DeleteFileSystemCommand(input);
|
|
73
|
+
* await client.send(command);
|
|
74
|
+
* // example id: to-delete-a-file-system-1481847318348
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
51
77
|
*/
|
|
52
78
|
export declare class DeleteFileSystemCommand extends $Command<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput, EFSClientResolvedConfig> {
|
|
53
79
|
readonly input: DeleteFileSystemCommandInput;
|
|
@@ -32,6 +32,21 @@ export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link DeleteFileSystemPolicyCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequest} (client fault)
|
|
36
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
37
|
+
* parameter value or a missing required parameter.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
40
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
41
|
+
* requester's Amazon Web Services account.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
44
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
35
50
|
*/
|
|
36
51
|
export declare class DeleteFileSystemPolicyCommand extends $Command<DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
|
|
37
52
|
readonly input: DeleteFileSystemPolicyCommandInput;
|
|
@@ -59,6 +59,33 @@ export interface DeleteMountTargetCommandOutput extends __MetadataBearer {
|
|
|
59
59
|
* @see {@link DeleteMountTargetCommandOutput} for command's `response` shape.
|
|
60
60
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
61
61
|
*
|
|
62
|
+
* @throws {@link BadRequest} (client fault)
|
|
63
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
64
|
+
* parameter value or a missing required parameter.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link DependencyTimeout} (server fault)
|
|
67
|
+
* <p>The service timed out trying to fulfill the request, and the client should try the
|
|
68
|
+
* call again.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerError} (server fault)
|
|
71
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link MountTargetNotFound} (client fault)
|
|
74
|
+
* <p>Returned if there is no mount target with the specified ID found in the
|
|
75
|
+
* caller's Amazon Web Services account.</p>
|
|
76
|
+
*
|
|
77
|
+
*
|
|
78
|
+
* @example To delete a mount target
|
|
79
|
+
* ```javascript
|
|
80
|
+
* // This operation deletes a mount target.
|
|
81
|
+
* const input = {
|
|
82
|
+
* "MountTargetId": "fsmt-12340abc"
|
|
83
|
+
* };
|
|
84
|
+
* const command = new DeleteMountTargetCommand(input);
|
|
85
|
+
* await client.send(command);
|
|
86
|
+
* // example id: to-delete-a-mount-target-1481847635607
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
62
89
|
*/
|
|
63
90
|
export declare class DeleteMountTargetCommand extends $Command<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput, EFSClientResolvedConfig> {
|
|
64
91
|
readonly input: DeleteMountTargetCommandInput;
|
|
@@ -34,6 +34,22 @@ export interface DeleteReplicationConfigurationCommandOutput extends __MetadataB
|
|
|
34
34
|
* @see {@link DeleteReplicationConfigurationCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequest} (client fault)
|
|
38
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
39
|
+
* parameter value or a missing required parameter.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
42
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
43
|
+
* requester's Amazon Web Services account.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ReplicationNotFound} (client fault)
|
|
49
|
+
* <p>Returned if the specified file system does not have a replication
|
|
50
|
+
* configuration.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
37
53
|
*/
|
|
38
54
|
export declare class DeleteReplicationConfigurationCommand extends $Command<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput, EFSClientResolvedConfig> {
|
|
39
55
|
readonly input: DeleteReplicationConfigurationCommandInput;
|
|
@@ -40,6 +40,32 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {
|
|
|
40
40
|
* @see {@link DeleteTagsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequest} (client fault)
|
|
44
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
45
|
+
* parameter value or a missing required parameter.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
48
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
49
|
+
* requester's Amazon Web Services account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerError} (server fault)
|
|
52
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
55
|
+
* @example To delete tags for an EFS file system
|
|
56
|
+
* ```javascript
|
|
57
|
+
* // This operation deletes tags for an EFS file system.
|
|
58
|
+
* const input = {
|
|
59
|
+
* "FileSystemId": "fs-01234567",
|
|
60
|
+
* "TagKeys": [
|
|
61
|
+
* "Name"
|
|
62
|
+
* ]
|
|
63
|
+
* };
|
|
64
|
+
* const command = new DeleteTagsCommand(input);
|
|
65
|
+
* await client.send(command);
|
|
66
|
+
* // example id: to-delete-tags-for-an-efs-file-system-1481848189061
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
43
69
|
*/
|
|
44
70
|
export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, EFSClientResolvedConfig> {
|
|
45
71
|
readonly input: DeleteTagsCommandInput;
|
|
@@ -32,6 +32,22 @@ export interface DescribeAccessPointsCommandOutput extends DescribeAccessPointsR
|
|
|
32
32
|
* @see {@link DescribeAccessPointsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
36
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
37
|
+
* requester's Amazon Web Services account.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequest} (client fault)
|
|
40
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
41
|
+
* parameter value or a missing required parameter.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
44
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
45
|
+
* requester's Amazon Web Services account.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerError} (server fault)
|
|
48
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
35
51
|
*/
|
|
36
52
|
export declare class DescribeAccessPointsCommand extends $Command<DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput, EFSClientResolvedConfig> {
|
|
37
53
|
readonly input: DescribeAccessPointsCommandInput;
|
|
@@ -30,6 +30,10 @@ export interface DescribeAccountPreferencesCommandOutput extends DescribeAccount
|
|
|
30
30
|
* @see {@link DescribeAccountPreferencesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerError} (server fault)
|
|
34
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
35
|
+
*
|
|
36
|
+
*
|
|
33
37
|
*/
|
|
34
38
|
export declare class DescribeAccountPreferencesCommand extends $Command<DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput, EFSClientResolvedConfig> {
|
|
35
39
|
readonly input: DescribeAccountPreferencesCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DescribeBackupPolicyCommandOutput extends BackupPolicyDescripti
|
|
|
29
29
|
* @see {@link DescribeBackupPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
34
|
+
* parameter value or a missing required parameter.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
37
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
38
|
+
* requester's Amazon Web Services account.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link PolicyNotFound} (client fault)
|
|
44
|
+
* <p>Returned if the default file system policy is in effect for the EFS file system specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DescribeBackupPolicyCommand extends $Command<DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput, EFSClientResolvedConfig> {
|
|
34
52
|
readonly input: DescribeBackupPolicyCommandInput;
|
|
@@ -30,6 +30,21 @@ export interface DescribeFileSystemPolicyCommandOutput extends FileSystemPolicyD
|
|
|
30
30
|
* @see {@link DescribeFileSystemPolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
35
|
+
* parameter value or a missing required parameter.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
38
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
39
|
+
* requester's Amazon Web Services account.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link PolicyNotFound} (client fault)
|
|
45
|
+
* <p>Returned if the default file system policy is in effect for the EFS file system specified.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
33
48
|
*/
|
|
34
49
|
export declare class DescribeFileSystemPolicyCommand extends $Command<DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
|
|
35
50
|
readonly input: DescribeFileSystemPolicyCommandInput;
|
|
@@ -48,6 +48,52 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
48
48
|
* @see {@link DescribeFileSystemsCommandOutput} for command's `response` shape.
|
|
49
49
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
50
50
|
*
|
|
51
|
+
* @throws {@link BadRequest} (client fault)
|
|
52
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
53
|
+
* parameter value or a missing required parameter.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
56
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
57
|
+
* requester's Amazon Web Services account.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerError} (server fault)
|
|
60
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
63
|
+
* @example To describe an EFS file system
|
|
64
|
+
* ```javascript
|
|
65
|
+
* // This operation describes all of the EFS file systems in an account.
|
|
66
|
+
* const input = {};
|
|
67
|
+
* const command = new DescribeFileSystemsCommand(input);
|
|
68
|
+
* const response = await client.send(command);
|
|
69
|
+
* /* response ==
|
|
70
|
+
* {
|
|
71
|
+
* "FileSystems": [
|
|
72
|
+
* {
|
|
73
|
+
* "CreationTime": "1481841524.0",
|
|
74
|
+
* "CreationToken": "tokenstring",
|
|
75
|
+
* "FileSystemId": "fs-01234567",
|
|
76
|
+
* "LifeCycleState": "available",
|
|
77
|
+
* "Name": "MyFileSystem",
|
|
78
|
+
* "NumberOfMountTargets": 1,
|
|
79
|
+
* "OwnerId": "012345678912",
|
|
80
|
+
* "PerformanceMode": "generalPurpose",
|
|
81
|
+
* "SizeInBytes": {
|
|
82
|
+
* "Value": 6144
|
|
83
|
+
* },
|
|
84
|
+
* "Tags": [
|
|
85
|
+
* {
|
|
86
|
+
* "Key": "Name",
|
|
87
|
+
* "Value": "MyFileSystem"
|
|
88
|
+
* }
|
|
89
|
+
* ]
|
|
90
|
+
* }
|
|
91
|
+
* ]
|
|
92
|
+
* }
|
|
93
|
+
* *\/
|
|
94
|
+
* // example id: to-describe-an-efs-file-system-1481848448460
|
|
95
|
+
* ```
|
|
96
|
+
*
|
|
51
97
|
*/
|
|
52
98
|
export declare class DescribeFileSystemsCommand extends $Command<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput, EFSClientResolvedConfig> {
|
|
53
99
|
readonly input: DescribeFileSystemsCommandInput;
|
|
@@ -37,6 +37,38 @@ export interface DescribeLifecycleConfigurationCommandOutput extends LifecycleCo
|
|
|
37
37
|
* @see {@link DescribeLifecycleConfigurationCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link BadRequest} (client fault)
|
|
41
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
42
|
+
* parameter value or a missing required parameter.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
45
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
46
|
+
* requester's Amazon Web Services account.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InternalServerError} (server fault)
|
|
49
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
52
|
+
* @example To describe the lifecycle configuration for a file system
|
|
53
|
+
* ```javascript
|
|
54
|
+
* // 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.
|
|
55
|
+
* const input = {
|
|
56
|
+
* "FileSystemId": "fs-01234567"
|
|
57
|
+
* };
|
|
58
|
+
* const command = new DescribeLifecycleConfigurationCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* /* response ==
|
|
61
|
+
* {
|
|
62
|
+
* "LifecyclePolicies": [
|
|
63
|
+
* {
|
|
64
|
+
* "TransitionToIA": "AFTER_30_DAYS"
|
|
65
|
+
* }
|
|
66
|
+
* ]
|
|
67
|
+
* }
|
|
68
|
+
* *\/
|
|
69
|
+
* // example id: to-describe-the-lifecycle-configuration-for-a-file-system-1551200664502
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
40
72
|
*/
|
|
41
73
|
export declare class DescribeLifecycleConfigurationCommand extends $Command<DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput, EFSClientResolvedConfig> {
|
|
42
74
|
readonly input: DescribeLifecycleConfigurationCommandInput;
|
|
@@ -44,6 +44,40 @@ export interface DescribeMountTargetSecurityGroupsCommandOutput extends Describe
|
|
|
44
44
|
* @see {@link DescribeMountTargetSecurityGroupsCommandOutput} for command's `response` shape.
|
|
45
45
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
46
46
|
*
|
|
47
|
+
* @throws {@link BadRequest} (client fault)
|
|
48
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
49
|
+
* parameter value or a missing required parameter.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link IncorrectMountTargetState} (client fault)
|
|
52
|
+
* <p>Returned if the mount target is not in the correct state for the
|
|
53
|
+
* operation.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServerError} (server fault)
|
|
56
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link MountTargetNotFound} (client fault)
|
|
59
|
+
* <p>Returned if there is no mount target with the specified ID found in the
|
|
60
|
+
* caller's Amazon Web Services account.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
63
|
+
* @example To describe the security groups for a mount target
|
|
64
|
+
* ```javascript
|
|
65
|
+
* // This operation describes all of the security groups for a file system's mount target.
|
|
66
|
+
* const input = {
|
|
67
|
+
* "MountTargetId": "fsmt-12340abc"
|
|
68
|
+
* };
|
|
69
|
+
* const command = new DescribeMountTargetSecurityGroupsCommand(input);
|
|
70
|
+
* const response = await client.send(command);
|
|
71
|
+
* /* response ==
|
|
72
|
+
* {
|
|
73
|
+
* "SecurityGroups": [
|
|
74
|
+
* "sg-4567abcd"
|
|
75
|
+
* ]
|
|
76
|
+
* }
|
|
77
|
+
* *\/
|
|
78
|
+
* // example id: to-describe-the-security-groups-for-a-mount-target-1481849317823
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
47
81
|
*/
|
|
48
82
|
export declare class DescribeMountTargetSecurityGroupsCommand extends $Command<DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig> {
|
|
49
83
|
readonly input: DescribeMountTargetSecurityGroupsCommandInput;
|
|
@@ -35,6 +35,52 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR
|
|
|
35
35
|
* @see {@link DescribeMountTargetsCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
39
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
40
|
+
* requester's Amazon Web Services account.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BadRequest} (client fault)
|
|
43
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
44
|
+
* parameter value or a missing required parameter.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
47
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
48
|
+
* requester's Amazon Web Services account.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InternalServerError} (server fault)
|
|
51
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link MountTargetNotFound} (client fault)
|
|
54
|
+
* <p>Returned if there is no mount target with the specified ID found in the
|
|
55
|
+
* caller's Amazon Web Services account.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
58
|
+
* @example To describe the mount targets for a file system
|
|
59
|
+
* ```javascript
|
|
60
|
+
* // This operation describes all of a file system's mount targets.
|
|
61
|
+
* const input = {
|
|
62
|
+
* "FileSystemId": "fs-01234567"
|
|
63
|
+
* };
|
|
64
|
+
* const command = new DescribeMountTargetsCommand(input);
|
|
65
|
+
* const response = await client.send(command);
|
|
66
|
+
* /* response ==
|
|
67
|
+
* {
|
|
68
|
+
* "MountTargets": [
|
|
69
|
+
* {
|
|
70
|
+
* "FileSystemId": "fs-01234567",
|
|
71
|
+
* "IpAddress": "192.0.0.2",
|
|
72
|
+
* "LifeCycleState": "available",
|
|
73
|
+
* "MountTargetId": "fsmt-12340abc",
|
|
74
|
+
* "NetworkInterfaceId": "eni-cedf6789",
|
|
75
|
+
* "OwnerId": "012345678912",
|
|
76
|
+
* "SubnetId": "subnet-1234abcd"
|
|
77
|
+
* }
|
|
78
|
+
* ]
|
|
79
|
+
* }
|
|
80
|
+
* *\/
|
|
81
|
+
* // example id: to-describe-the-mount-targets-for-a-file-system-1481849958584
|
|
82
|
+
* ```
|
|
83
|
+
*
|
|
38
84
|
*/
|
|
39
85
|
export declare class DescribeMountTargetsCommand extends $Command<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput, EFSClientResolvedConfig> {
|
|
40
86
|
readonly input: DescribeMountTargetsCommandInput;
|
|
@@ -31,6 +31,25 @@ export interface DescribeReplicationConfigurationsCommandOutput extends Describe
|
|
|
31
31
|
* @see {@link DescribeReplicationConfigurationsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequest} (client fault)
|
|
35
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
36
|
+
* parameter value or a missing required parameter.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
39
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
40
|
+
* requester's Amazon Web Services account.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerError} (server fault)
|
|
43
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ReplicationNotFound} (client fault)
|
|
46
|
+
* <p>Returned if the specified file system does not have a replication
|
|
47
|
+
* configuration.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class DescribeReplicationConfigurationsCommand extends $Command<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig> {
|
|
36
55
|
readonly input: DescribeReplicationConfigurationsCommandInput;
|
|
@@ -40,6 +40,39 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
40
40
|
* @see {@link DescribeTagsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequest} (client fault)
|
|
44
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
45
|
+
* parameter value or a missing required parameter.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
48
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
49
|
+
* requester's Amazon Web Services account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerError} (server fault)
|
|
52
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
55
|
+
* @example To describe the tags for a file system
|
|
56
|
+
* ```javascript
|
|
57
|
+
* // This operation describes all of a file system's tags.
|
|
58
|
+
* const input = {
|
|
59
|
+
* "FileSystemId": "fs-01234567"
|
|
60
|
+
* };
|
|
61
|
+
* const command = new DescribeTagsCommand(input);
|
|
62
|
+
* const response = await client.send(command);
|
|
63
|
+
* /* response ==
|
|
64
|
+
* {
|
|
65
|
+
* "Tags": [
|
|
66
|
+
* {
|
|
67
|
+
* "Key": "Name",
|
|
68
|
+
* "Value": "MyFileSystem"
|
|
69
|
+
* }
|
|
70
|
+
* ]
|
|
71
|
+
* }
|
|
72
|
+
* *\/
|
|
73
|
+
* // example id: to-describe-the-tags-for-a-file-system-1481850497090
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
43
76
|
*/
|
|
44
77
|
export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, EFSClientResolvedConfig> {
|
|
45
78
|
readonly input: DescribeTagsCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
34
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
35
|
+
* requester's Amazon Web Services account.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequest} (client fault)
|
|
38
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
39
|
+
* parameter value or a missing required parameter.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
42
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
43
|
+
* requester's Amazon Web Services account.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EFSClientResolvedConfig> {
|
|
35
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -48,6 +48,44 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata
|
|
|
48
48
|
* @see {@link ModifyMountTargetSecurityGroupsCommandOutput} for command's `response` shape.
|
|
49
49
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
50
50
|
*
|
|
51
|
+
* @throws {@link BadRequest} (client fault)
|
|
52
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
53
|
+
* parameter value or a missing required parameter.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link IncorrectMountTargetState} (client fault)
|
|
56
|
+
* <p>Returned if the mount target is not in the correct state for the
|
|
57
|
+
* operation.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerError} (server fault)
|
|
60
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link MountTargetNotFound} (client fault)
|
|
63
|
+
* <p>Returned if there is no mount target with the specified ID found in the
|
|
64
|
+
* caller's Amazon Web Services account.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link SecurityGroupLimitExceeded} (client fault)
|
|
67
|
+
* <p>Returned if the size of <code>SecurityGroups</code> specified in the request is
|
|
68
|
+
* greater than five.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link SecurityGroupNotFound} (client fault)
|
|
71
|
+
* <p>Returned if one of the specified security groups doesn't exist in the subnet's
|
|
72
|
+
* virtual private cloud (VPC).</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
75
|
+
* @example To modify the security groups associated with a mount target for a file system
|
|
76
|
+
* ```javascript
|
|
77
|
+
* // This operation modifies the security groups associated with a mount target for a file system.
|
|
78
|
+
* const input = {
|
|
79
|
+
* "MountTargetId": "fsmt-12340abc",
|
|
80
|
+
* "SecurityGroups": [
|
|
81
|
+
* "sg-abcd1234"
|
|
82
|
+
* ]
|
|
83
|
+
* };
|
|
84
|
+
* const command = new ModifyMountTargetSecurityGroupsCommand(input);
|
|
85
|
+
* await client.send(command);
|
|
86
|
+
* // example id: to-modify-the-security-groups-associated-with-a-mount-target-for-a-file-system-1481850772562
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
51
89
|
*/
|
|
52
90
|
export declare class ModifyMountTargetSecurityGroupsCommand extends $Command<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig> {
|
|
53
91
|
readonly input: ModifyMountTargetSecurityGroupsCommandInput;
|
|
@@ -39,6 +39,14 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference
|
|
|
39
39
|
* @see {@link PutAccountPreferencesCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link BadRequest} (client fault)
|
|
43
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
44
|
+
* parameter value or a missing required parameter.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
42
50
|
*/
|
|
43
51
|
export declare class PutAccountPreferencesCommand extends $Command<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput, EFSClientResolvedConfig> {
|
|
44
52
|
readonly input: PutAccountPreferencesCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _
|
|
|
29
29
|
* @see {@link PutBackupPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
34
|
+
* parameter value or a missing required parameter.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
37
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
38
|
+
* requester's Amazon Web Services account.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
41
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerError} (server fault)
|
|
44
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>Returned if the Backup service is not available in the Amazon Web Services Region in which the request was made.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class PutBackupPolicyCommand extends $Command<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput, EFSClientResolvedConfig> {
|
|
34
52
|
readonly input: PutBackupPolicyCommandInput;
|
|
@@ -40,6 +40,26 @@ export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescri
|
|
|
40
40
|
* @see {@link PutFileSystemPolicyCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequest} (client fault)
|
|
44
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
45
|
+
* parameter value or a missing required parameter.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
48
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
49
|
+
* requester's Amazon Web Services account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
52
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InternalServerError} (server fault)
|
|
55
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InvalidPolicyException} (client fault)
|
|
58
|
+
* <p>Returned if the <code>FileSystemPolicy</code> is malformed or contains an error such
|
|
59
|
+
* as a parameter value that is not valid or a missing required parameter. Returned in the
|
|
60
|
+
* case of a policy lockout safety check error.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
43
63
|
*/
|
|
44
64
|
export declare class PutFileSystemPolicyCommand extends $Command<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
|
|
45
65
|
readonly input: PutFileSystemPolicyCommandInput;
|
|
@@ -75,6 +75,46 @@ export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigu
|
|
|
75
75
|
* @see {@link PutLifecycleConfigurationCommandOutput} for command's `response` shape.
|
|
76
76
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
77
77
|
*
|
|
78
|
+
* @throws {@link BadRequest} (client fault)
|
|
79
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
80
|
+
* parameter value or a missing required parameter.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
83
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
84
|
+
* requester's Amazon Web Services account.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
87
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InternalServerError} (server fault)
|
|
90
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @example Creates a new lifecycleconfiguration object for a file system
|
|
94
|
+
* ```javascript
|
|
95
|
+
* // 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.
|
|
96
|
+
* const input = {
|
|
97
|
+
* "FileSystemId": "fs-01234567",
|
|
98
|
+
* "LifecyclePolicies": [
|
|
99
|
+
* {
|
|
100
|
+
* "TransitionToIA": "AFTER_30_DAYS"
|
|
101
|
+
* }
|
|
102
|
+
* ]
|
|
103
|
+
* };
|
|
104
|
+
* const command = new PutLifecycleConfigurationCommand(input);
|
|
105
|
+
* const response = await client.send(command);
|
|
106
|
+
* /* response ==
|
|
107
|
+
* {
|
|
108
|
+
* "LifecyclePolicies": [
|
|
109
|
+
* {
|
|
110
|
+
* "TransitionToIA": "AFTER_30_DAYS"
|
|
111
|
+
* }
|
|
112
|
+
* ]
|
|
113
|
+
* }
|
|
114
|
+
* *\/
|
|
115
|
+
* // example id: creates-a-new-lifecycleconfiguration-object-for-a-file-system-1551201594692
|
|
116
|
+
* ```
|
|
117
|
+
*
|
|
78
118
|
*/
|
|
79
119
|
export declare class PutLifecycleConfigurationCommand extends $Command<PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput, EFSClientResolvedConfig> {
|
|
80
120
|
readonly input: PutLifecycleConfigurationCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
34
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
35
|
+
* requester's Amazon Web Services account.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequest} (client fault)
|
|
38
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
39
|
+
* parameter value or a missing required parameter.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
42
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
43
|
+
* requester's Amazon Web Services account.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EFSClientResolvedConfig> {
|
|
35
51
|
readonly input: TagResourceCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessPointNotFound} (client fault)
|
|
34
|
+
* <p>Returned if the specified <code>AccessPointId</code> value doesn't exist in the
|
|
35
|
+
* requester's Amazon Web Services account.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link BadRequest} (client fault)
|
|
38
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
39
|
+
* parameter value or a missing required parameter.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
42
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
43
|
+
* requester's Amazon Web Services account.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EFSClientResolvedConfig> {
|
|
35
51
|
readonly input: UntagResourceCommandInput;
|
|
@@ -30,6 +30,36 @@ export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __
|
|
|
30
30
|
* @see {@link UpdateFileSystemCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>Returned if the request is malformed or contains an error such as an invalid
|
|
35
|
+
* parameter value or a missing required parameter.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
38
|
+
* <p>Returned if the specified <code>FileSystemId</code> value doesn't exist in the
|
|
39
|
+
* requester's Amazon Web Services account.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link IncorrectFileSystemLifeCycleState} (client fault)
|
|
42
|
+
* <p>Returned if the file system's lifecycle state is not "available".</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InsufficientThroughputCapacity} (server fault)
|
|
45
|
+
* <p>Returned if there's not enough capacity to provision additional throughput. This value
|
|
46
|
+
* might be returned when you try to create a file system in provisioned throughput mode,
|
|
47
|
+
* when you attempt to increase the provisioned throughput of an existing file system, or
|
|
48
|
+
* when you attempt to change an existing file system from Bursting Throughput to
|
|
49
|
+
* Provisioned Throughput mode. Try again later.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InternalServerError} (server fault)
|
|
52
|
+
* <p>Returned if an error occurred on the server side.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThroughputLimitExceeded} (client fault)
|
|
55
|
+
* <p>Returned if the throughput mode or amount of provisioned throughput can't be changed
|
|
56
|
+
* because the throughput limit of 1024 MiB/s has been reached.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link TooManyRequests} (client fault)
|
|
59
|
+
* <p>Returned if you don’t wait at least 24 hours before either changing the throughput mode, or
|
|
60
|
+
* decreasing the Provisioned Throughput value.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
33
63
|
*/
|
|
34
64
|
export declare class UpdateFileSystemCommand extends $Command<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput, EFSClientResolvedConfig> {
|
|
35
65
|
readonly input: UpdateFileSystemCommandInput;
|
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.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
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-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|