@aws-sdk/client-efs 3.533.0 → 3.536.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/EFS.d.ts +6 -1
- package/dist-types/EFSClient.d.ts +1 -1
- package/dist-types/commands/CreateAccessPointCommand.d.ts +2 -1
- package/dist-types/commands/CreateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/CreateMountTargetCommand.d.ts +2 -1
- package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/CreateTagsCommand.d.ts +4 -3
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +4 -3
- package/dist-types/commands/DescribeAccessPointsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMountTargetsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTagsCommand.d.ts +4 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +2 -1
- package/dist-types/commands/PutAccountPreferencesCommand.d.ts +2 -1
- package/dist-types/commands/PutBackupPolicyCommand.d.ts +2 -1
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +2 -1
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFileSystemProtectionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +296 -296
- package/dist-types/ts3.4/EFS.d.ts +5 -0
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateFileSystemProtectionCommand.d.ts +9 -0
- package/package.json +40 -40
package/dist-types/EFS.d.ts
CHANGED
|
@@ -101,12 +101,14 @@ export interface EFS {
|
|
|
101
101
|
/**
|
|
102
102
|
* @see {@link DescribeAccessPointsCommand}
|
|
103
103
|
*/
|
|
104
|
+
describeAccessPoints(): Promise<DescribeAccessPointsCommandOutput>;
|
|
104
105
|
describeAccessPoints(args: DescribeAccessPointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccessPointsCommandOutput>;
|
|
105
106
|
describeAccessPoints(args: DescribeAccessPointsCommandInput, cb: (err: any, data?: DescribeAccessPointsCommandOutput) => void): void;
|
|
106
107
|
describeAccessPoints(args: DescribeAccessPointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccessPointsCommandOutput) => void): void;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link DescribeAccountPreferencesCommand}
|
|
109
110
|
*/
|
|
111
|
+
describeAccountPreferences(): Promise<DescribeAccountPreferencesCommandOutput>;
|
|
110
112
|
describeAccountPreferences(args: DescribeAccountPreferencesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountPreferencesCommandOutput>;
|
|
111
113
|
describeAccountPreferences(args: DescribeAccountPreferencesCommandInput, cb: (err: any, data?: DescribeAccountPreferencesCommandOutput) => void): void;
|
|
112
114
|
describeAccountPreferences(args: DescribeAccountPreferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountPreferencesCommandOutput) => void): void;
|
|
@@ -125,6 +127,7 @@ export interface EFS {
|
|
|
125
127
|
/**
|
|
126
128
|
* @see {@link DescribeFileSystemsCommand}
|
|
127
129
|
*/
|
|
130
|
+
describeFileSystems(): Promise<DescribeFileSystemsCommandOutput>;
|
|
128
131
|
describeFileSystems(args: DescribeFileSystemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFileSystemsCommandOutput>;
|
|
129
132
|
describeFileSystems(args: DescribeFileSystemsCommandInput, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
|
|
130
133
|
describeFileSystems(args: DescribeFileSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
|
|
@@ -137,6 +140,7 @@ export interface EFS {
|
|
|
137
140
|
/**
|
|
138
141
|
* @see {@link DescribeMountTargetsCommand}
|
|
139
142
|
*/
|
|
143
|
+
describeMountTargets(): Promise<DescribeMountTargetsCommandOutput>;
|
|
140
144
|
describeMountTargets(args: DescribeMountTargetsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMountTargetsCommandOutput>;
|
|
141
145
|
describeMountTargets(args: DescribeMountTargetsCommandInput, cb: (err: any, data?: DescribeMountTargetsCommandOutput) => void): void;
|
|
142
146
|
describeMountTargets(args: DescribeMountTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMountTargetsCommandOutput) => void): void;
|
|
@@ -149,6 +153,7 @@ export interface EFS {
|
|
|
149
153
|
/**
|
|
150
154
|
* @see {@link DescribeReplicationConfigurationsCommand}
|
|
151
155
|
*/
|
|
156
|
+
describeReplicationConfigurations(): Promise<DescribeReplicationConfigurationsCommandOutput>;
|
|
152
157
|
describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationConfigurationsCommandOutput>;
|
|
153
158
|
describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, cb: (err: any, data?: DescribeReplicationConfigurationsCommandOutput) => void): void;
|
|
154
159
|
describeReplicationConfigurations(args: DescribeReplicationConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationConfigurationsCommandOutput) => void): void;
|
|
@@ -220,12 +225,12 @@ export interface EFS {
|
|
|
220
225
|
updateFileSystemProtection(args: UpdateFileSystemProtectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileSystemProtectionCommandOutput) => void): void;
|
|
221
226
|
}
|
|
222
227
|
/**
|
|
223
|
-
* @public
|
|
224
228
|
* <fullname>Amazon Elastic File System</fullname>
|
|
225
229
|
* <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for
|
|
226
230
|
* use with Amazon EC2 Linux and Mac instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and
|
|
227
231
|
* remove files, so that your applications have the storage they need, when they need it. For
|
|
228
232
|
* more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>
|
|
233
|
+
* @public
|
|
229
234
|
*/
|
|
230
235
|
export declare class EFS extends EFSClient implements EFS {
|
|
231
236
|
}
|
|
@@ -182,12 +182,12 @@ export type EFSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHa
|
|
|
182
182
|
export interface EFSClientResolvedConfig extends EFSClientResolvedConfigType {
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
|
-
* @public
|
|
186
185
|
* <fullname>Amazon Elastic File System</fullname>
|
|
187
186
|
* <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for
|
|
188
187
|
* use with Amazon EC2 Linux and Mac instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and
|
|
189
188
|
* remove files, so that your applications have the storage they need, when they need it. For
|
|
190
189
|
* more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
export declare class EFSClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, EFSClientResolvedConfig> {
|
|
193
193
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateAccessPointCommandOutput extends AccessPointDescription,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateAccessPointCommand_base: {
|
|
24
24
|
new (input: CreateAccessPointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAccessPointCommandInput, CreateAccessPointCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateAccessPointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAccessPointCommandInput, CreateAccessPointCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an EFS access point. An access point is an application-specific view
|
|
30
30
|
* into an EFS file system that applies an operating system user and group, and a file
|
|
31
31
|
* system path, to any file system request made through the access point. The operating system
|
|
@@ -149,6 +149,7 @@ declare const CreateAccessPointCommand_base: {
|
|
|
149
149
|
* @throws {@link EFSServiceException}
|
|
150
150
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
151
151
|
*
|
|
152
|
+
* @public
|
|
152
153
|
*/
|
|
153
154
|
export declare class CreateAccessPointCommand extends CreateAccessPointCommand_base {
|
|
154
155
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateFileSystemCommandOutput extends FileSystemDescription, __
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateFileSystemCommand_base: {
|
|
24
24
|
new (input: CreateFileSystemCommandInput): import("@smithy/smithy-client").CommandImpl<CreateFileSystemCommandInput, CreateFileSystemCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [CreateFileSystemCommandInput]): import("@smithy/smithy-client").CommandImpl<CreateFileSystemCommandInput, CreateFileSystemCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new, empty file system. The operation requires a creation token in the
|
|
30
30
|
* request that Amazon EFS uses to ensure idempotent creation (calling the operation with same
|
|
31
31
|
* creation token has no effect). If a file system does not currently exist that is owned by the
|
|
@@ -182,6 +182,7 @@ 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
|
|
185
186
|
* @example To create a new file system
|
|
186
187
|
* ```javascript
|
|
187
188
|
* // This operation creates a new, encrypted file system with automatic backups enabled, and the default generalpurpose performance mode.
|
|
@@ -22,10 +22,10 @@ export interface CreateMountTargetCommandOutput extends MountTargetDescription,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateMountTargetCommand_base: {
|
|
24
24
|
new (input: CreateMountTargetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMountTargetCommandInput, CreateMountTargetCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateMountTargetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMountTargetCommandInput, CreateMountTargetCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a mount target for a file system. You can then mount the file system on EC2
|
|
30
30
|
* instances by using the mount target.</p>
|
|
31
31
|
* <p>You can create one mount target in each Availability Zone in your VPC. All EC2
|
|
@@ -260,6 +260,7 @@ declare const CreateMountTargetCommand_base: {
|
|
|
260
260
|
* @throws {@link EFSServiceException}
|
|
261
261
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
262
262
|
*
|
|
263
|
+
* @public
|
|
263
264
|
* @example To create a new mount target
|
|
264
265
|
* ```javascript
|
|
265
266
|
* // This operation creates a new mount target for an EFS file system.
|
|
@@ -22,10 +22,10 @@ export interface CreateReplicationConfigurationCommandOutput extends Replication
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateReplicationConfigurationCommand_base: {
|
|
24
24
|
new (input: CreateReplicationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateReplicationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a replication configuration that replicates an existing EFS file system
|
|
30
30
|
* to a new, read-only file system. For more information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/efs-replication.html">Amazon EFS replication</a> in the
|
|
31
31
|
* <i>Amazon EFS User Guide</i>. The replication configuration
|
|
@@ -203,6 +203,7 @@ declare const CreateReplicationConfigurationCommand_base: {
|
|
|
203
203
|
* @throws {@link EFSServiceException}
|
|
204
204
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
205
205
|
*
|
|
206
|
+
* @public
|
|
206
207
|
*/
|
|
207
208
|
export declare class CreateReplicationConfigurationCommand extends CreateReplicationConfigurationCommand_base {
|
|
208
209
|
}
|
|
@@ -22,12 +22,10 @@ export interface CreateTagsCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateTagsCommand_base: {
|
|
24
24
|
new (input: CreateTagsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTagsCommandInput, CreateTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateTagsCommandInput): import("@smithy/smithy-client").CommandImpl<CreateTagsCommandInput, CreateTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <note>
|
|
32
30
|
* <p>DEPRECATED - <code>CreateTags</code> is deprecated and not maintained. To create tags for EFS
|
|
33
31
|
* resources, use the API action.</p>
|
|
@@ -38,6 +36,8 @@ declare const CreateTagsCommand_base: {
|
|
|
38
36
|
* tag to your file system, Amazon EFS returns it in the response to the <a>DescribeFileSystems</a> operation. </p>
|
|
39
37
|
* <p>This operation requires permission for the <code>elasticfilesystem:CreateTags</code>
|
|
40
38
|
* action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @deprecated Use TagResource.
|
|
41
41
|
* @example
|
|
42
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
43
43
|
* ```javascript
|
|
@@ -79,6 +79,7 @@ declare const CreateTagsCommand_base: {
|
|
|
79
79
|
* @throws {@link EFSServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
* @example To create a new tag
|
|
83
84
|
* ```javascript
|
|
84
85
|
* // This operation creates a new tag for an EFS file system.
|
|
@@ -22,10 +22,10 @@ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAccessPointCommand_base: {
|
|
24
24
|
new (input: DeleteAccessPointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAccessPointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified access point. After deletion is complete, new clients can no
|
|
30
30
|
* longer connect to the access points. Clients connected to the access point at the time of
|
|
31
31
|
* deletion will continue to function until they terminate their connection.</p>
|
|
@@ -65,6 +65,7 @@ declare const DeleteAccessPointCommand_base: {
|
|
|
65
65
|
* @throws {@link EFSServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class DeleteAccessPointCommand extends DeleteAccessPointCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteFileSystemCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteFileSystemCommand_base: {
|
|
24
24
|
new (input: DeleteFileSystemCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteFileSystemCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a file system, permanently severing access to its contents. Upon return, the
|
|
30
30
|
* file system no longer exists and you can't access any contents of the deleted file
|
|
31
31
|
* system.</p>
|
|
@@ -84,6 +84,7 @@ declare const DeleteFileSystemCommand_base: {
|
|
|
84
84
|
* @throws {@link EFSServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
* @example To delete a file system
|
|
88
89
|
* ```javascript
|
|
89
90
|
* // This operation deletes an EFS file system.
|
|
@@ -22,10 +22,10 @@ export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteFileSystemPolicyCommand_base: {
|
|
24
24
|
new (input: DeleteFileSystemPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteFileSystemPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the <code>FileSystemPolicy</code> for the specified file system.
|
|
30
30
|
* The default <code>FileSystemPolicy</code> goes into effect once the existing policy is deleted.
|
|
31
31
|
* For more information about the default file system policy, see <a href="https://docs.aws.amazon.com/efs/latest/ug/res-based-policies-efs.html">Using Resource-based Policies with EFS</a>.</p>
|
|
@@ -68,6 +68,7 @@ declare const DeleteFileSystemPolicyCommand_base: {
|
|
|
68
68
|
* @throws {@link EFSServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class DeleteFileSystemPolicyCommand extends DeleteFileSystemPolicyCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteMountTargetCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteMountTargetCommand_base: {
|
|
24
24
|
new (input: DeleteMountTargetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteMountTargetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified mount target.</p>
|
|
30
30
|
* <p>This operation forcibly breaks any mounts of the file system by using the mount target
|
|
31
31
|
* that is being deleted, which might disrupt instances or applications using those mounts. To
|
|
@@ -96,6 +96,7 @@ declare const DeleteMountTargetCommand_base: {
|
|
|
96
96
|
* @throws {@link EFSServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
* @example To delete a mount target
|
|
100
101
|
* ```javascript
|
|
101
102
|
* // This operation deletes a mount target.
|
|
@@ -22,10 +22,10 @@ export interface DeleteReplicationConfigurationCommandOutput extends __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteReplicationConfigurationCommand_base: {
|
|
24
24
|
new (input: DeleteReplicationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteReplicationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a replication configuration. Deleting a replication configuration ends the
|
|
30
30
|
* replication process. After a replication configuration is deleted, the destination file system
|
|
31
31
|
* becomes <code>Writeable</code> and its replication overwrite protection is re-enabled. For
|
|
@@ -71,6 +71,7 @@ declare const DeleteReplicationConfigurationCommand_base: {
|
|
|
71
71
|
* @throws {@link EFSServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DeleteReplicationConfigurationCommand extends DeleteReplicationConfigurationCommand_base {
|
|
76
77
|
}
|
|
@@ -22,12 +22,10 @@ export interface DeleteTagsCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteTagsCommand_base: {
|
|
24
24
|
new (input: DeleteTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTagsCommandInput, DeleteTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTagsCommandInput, DeleteTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <note>
|
|
32
30
|
* <p>DEPRECATED - <code>DeleteTags</code> is deprecated and not maintained. To remove tags from EFS
|
|
33
31
|
* resources, use the API action.</p>
|
|
@@ -38,6 +36,8 @@ declare const DeleteTagsCommand_base: {
|
|
|
38
36
|
* <i>Billing and Cost Management User Guide</i>.</p>
|
|
39
37
|
* <p>This operation requires permissions for the <code>elasticfilesystem:DeleteTags</code>
|
|
40
38
|
* action.</p>
|
|
39
|
+
*
|
|
40
|
+
* @deprecated Use UntagResource.
|
|
41
41
|
* @example
|
|
42
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
43
43
|
* ```javascript
|
|
@@ -76,6 +76,7 @@ declare const DeleteTagsCommand_base: {
|
|
|
76
76
|
* @throws {@link EFSServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
* @example To delete tags for an EFS file system
|
|
80
81
|
* ```javascript
|
|
81
82
|
* // This operation deletes tags for an EFS file system.
|
|
@@ -22,10 +22,10 @@ export interface DescribeAccessPointsCommandOutput extends DescribeAccessPointsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeAccessPointsCommand_base: {
|
|
24
24
|
new (input: DescribeAccessPointsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeAccessPointsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the description of a specific Amazon EFS access point if the
|
|
30
30
|
* <code>AccessPointId</code> is provided. If you provide an EFS
|
|
31
31
|
* <code>FileSystemId</code>, it returns descriptions of all access points for that file
|
|
@@ -108,6 +108,7 @@ declare const DescribeAccessPointsCommand_base: {
|
|
|
108
108
|
* @throws {@link EFSServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
110
110
|
*
|
|
111
|
+
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class DescribeAccessPointsCommand extends DescribeAccessPointsCommand_base {
|
|
113
114
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeAccountPreferencesCommandOutput extends DescribeAccount
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeAccountPreferencesCommand_base: {
|
|
24
24
|
new (input: DescribeAccountPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeAccountPreferencesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the account preferences settings for the Amazon Web Services account associated with the user making the request, in the current Amazon Web Services Region.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DescribeAccountPreferencesCommand_base: {
|
|
|
63
63
|
* @throws {@link EFSServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DescribeAccountPreferencesCommand extends DescribeAccountPreferencesCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeBackupPolicyCommandOutput extends BackupPolicyDescripti
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeBackupPolicyCommand_base: {
|
|
24
24
|
new (input: DescribeBackupPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeBackupPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the backup policy for the specified EFS file system.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -72,6 +72,7 @@ declare const DescribeBackupPolicyCommand_base: {
|
|
|
72
72
|
* @throws {@link EFSServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DescribeBackupPolicyCommand extends DescribeBackupPolicyCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFileSystemPolicyCommandOutput extends FileSystemPolicyD
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFileSystemPolicyCommand_base: {
|
|
24
24
|
new (input: DescribeFileSystemPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeFileSystemPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the <code>FileSystemPolicy</code> for the specified EFS file
|
|
30
30
|
* system.</p>
|
|
31
31
|
* <p>This operation requires permissions for the <code>elasticfilesystem:DescribeFileSystemPolicy</code> action.</p>
|
|
@@ -70,6 +70,7 @@ declare const DescribeFileSystemPolicyCommand_base: {
|
|
|
70
70
|
* @throws {@link EFSServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DescribeFileSystemPolicyCommand extends DescribeFileSystemPolicyCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeFileSystemsCommand_base: {
|
|
24
24
|
new (input: DescribeFileSystemsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeFileSystemsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the description of a specific Amazon EFS file system if either the file system
|
|
30
30
|
* <code>CreationToken</code> or the <code>FileSystemId</code> is provided. Otherwise, it
|
|
31
31
|
* returns descriptions of all file systems owned by the caller's Amazon Web Services account in the
|
|
@@ -122,6 +122,7 @@ declare const DescribeFileSystemsCommand_base: {
|
|
|
122
122
|
* @throws {@link EFSServiceException}
|
|
123
123
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
124
124
|
*
|
|
125
|
+
* @public
|
|
125
126
|
* @example To describe an EFS file system
|
|
126
127
|
* ```javascript
|
|
127
128
|
* // This operation describes all of the EFS file systems in an account.
|
|
@@ -22,10 +22,10 @@ export interface DescribeLifecycleConfigurationCommandOutput extends LifecycleCo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeLifecycleConfigurationCommand_base: {
|
|
24
24
|
new (input: DescribeLifecycleConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeLifecycleConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the current <code>LifecycleConfiguration</code> object for the specified Amazon
|
|
30
30
|
* EFS file system. Lifecycle management uses the <code>LifecycleConfiguration</code> object
|
|
31
31
|
* to identify when to move files between storage classes. For a file system without a
|
|
@@ -76,6 +76,7 @@ declare const DescribeLifecycleConfigurationCommand_base: {
|
|
|
76
76
|
* @throws {@link EFSServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
* @example To describe the lifecycle configuration for a file system
|
|
80
81
|
* ```javascript
|
|
81
82
|
* // 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.
|
|
@@ -22,10 +22,10 @@ export interface DescribeMountTargetSecurityGroupsCommandOutput extends Describe
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeMountTargetSecurityGroupsCommand_base: {
|
|
24
24
|
new (input: DescribeMountTargetSecurityGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeMountTargetSecurityGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the security groups currently in effect for a mount target. This operation
|
|
30
30
|
* requires that the network interface of the mount target has been created and the lifecycle
|
|
31
31
|
* state of the mount target is not <code>deleted</code>.</p>
|
|
@@ -85,6 +85,7 @@ declare const DescribeMountTargetSecurityGroupsCommand_base: {
|
|
|
85
85
|
* @throws {@link EFSServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
* @example To describe the security groups for a mount target
|
|
89
90
|
* ```javascript
|
|
90
91
|
* // This operation describes all of the security groups for a file system's mount target.
|
|
@@ -22,10 +22,10 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeMountTargetsCommand_base: {
|
|
24
24
|
new (input: DescribeMountTargetsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeMountTargetsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the descriptions of all the current mount targets, or a specific mount target,
|
|
30
30
|
* for a file system. When requesting all of the current mount targets, the order of mount
|
|
31
31
|
* targets returned in the response is unspecified.</p>
|
|
@@ -97,6 +97,7 @@ declare const DescribeMountTargetsCommand_base: {
|
|
|
97
97
|
* @throws {@link EFSServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
* @example To describe the mount targets for a file system
|
|
101
102
|
* ```javascript
|
|
102
103
|
* // This operation describes all of a file system's mount targets.
|
|
@@ -22,10 +22,10 @@ export interface DescribeReplicationConfigurationsCommandOutput extends Describe
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeReplicationConfigurationsCommand_base: {
|
|
24
24
|
new (input: DescribeReplicationConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeReplicationConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the replication configuration for a specific file system. If a file system is
|
|
30
30
|
* not specified, all of the replication configurations for the Amazon Web Services account in an
|
|
31
31
|
* Amazon Web Services Region are retrieved.</p>
|
|
@@ -92,6 +92,7 @@ declare const DescribeReplicationConfigurationsCommand_base: {
|
|
|
92
92
|
* @throws {@link EFSServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class DescribeReplicationConfigurationsCommand extends DescribeReplicationConfigurationsCommand_base {
|
|
97
98
|
}
|
|
@@ -22,12 +22,10 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeTagsCommand_base: {
|
|
24
24
|
new (input: DescribeTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTagsCommandInput, DescribeTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTagsCommandInput, DescribeTagsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* <note>
|
|
32
30
|
* <p>DEPRECATED - The <code>DescribeTags</code> action is deprecated and not maintained. To view
|
|
33
31
|
* tags associated with EFS resources, use the <code>ListTagsForResource</code> API
|
|
@@ -38,6 +36,8 @@ declare const DescribeTagsCommand_base: {
|
|
|
38
36
|
* responses of a multiple-call iteration (when using pagination) is unspecified. </p>
|
|
39
37
|
* <p> This operation requires permissions for the
|
|
40
38
|
* <code>elasticfilesystem:DescribeTags</code> action. </p>
|
|
39
|
+
*
|
|
40
|
+
* @deprecated Use ListTagsForResource.
|
|
41
41
|
* @example
|
|
42
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
43
43
|
* ```javascript
|
|
@@ -84,6 +84,7 @@ declare const DescribeTagsCommand_base: {
|
|
|
84
84
|
* @throws {@link EFSServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
* @example To describe the tags for a file system
|
|
88
89
|
* ```javascript
|
|
89
90
|
* // This operation describes all of a file system's tags.
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all tags for a top-level EFS resource. You must provide the ID of the
|
|
30
30
|
* resource that you want to retrieve the tags for.</p>
|
|
31
31
|
* <p>This operation requires permissions for the <code>elasticfilesystem:DescribeAccessPoints</code> action.</p>
|
|
@@ -78,6 +78,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
78
78
|
* @throws {@link EFSServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
83
84
|
}
|
|
@@ -22,10 +22,10 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata
|
|
|
22
22
|
}
|
|
23
23
|
declare const ModifyMountTargetSecurityGroupsCommand_base: {
|
|
24
24
|
new (input: ModifyMountTargetSecurityGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ModifyMountTargetSecurityGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Modifies the set of security groups in effect for a mount target.</p>
|
|
30
30
|
* <p>When you create a mount target, Amazon EFS also creates a new network interface. For
|
|
31
31
|
* more information, see <a>CreateMountTarget</a>. This operation replaces the security groups in effect for the
|
|
@@ -96,6 +96,7 @@ declare const ModifyMountTargetSecurityGroupsCommand_base: {
|
|
|
96
96
|
* @throws {@link EFSServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
98
98
|
*
|
|
99
|
+
* @public
|
|
99
100
|
* @example To modify the security groups associated with a mount target for a file system
|
|
100
101
|
* ```javascript
|
|
101
102
|
* // This operation modifies the security groups associated with a mount target for a file system.
|
|
@@ -22,10 +22,10 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutAccountPreferencesCommand_base: {
|
|
24
24
|
new (input: PutAccountPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutAccountPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Use this operation to set the account preference in the current Amazon Web Services Region
|
|
30
30
|
* to use long 17 character (63 bit) or short 8 character (32 bit) resource IDs for new
|
|
31
31
|
* EFS file system and mount target resources. All existing resource IDs are not
|
|
@@ -74,6 +74,7 @@ declare const PutAccountPreferencesCommand_base: {
|
|
|
74
74
|
* @throws {@link EFSServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class PutAccountPreferencesCommand extends PutAccountPreferencesCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutBackupPolicyCommand_base: {
|
|
24
24
|
new (input: PutBackupPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutBackupPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput, EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the file system's backup policy. Use this action to start or stop automatic backups of the file system. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const PutBackupPolicyCommand_base: {
|
|
|
75
75
|
* @throws {@link EFSServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from EFS service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class PutBackupPolicyCommand extends PutBackupPolicyCommand_base {
|
|
80
81
|
}
|