@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
|
@@ -268,6 +268,7 @@ export interface EFS {
|
|
|
268
268
|
options: __HttpHandlerOptions,
|
|
269
269
|
cb: (err: any, data?: DeleteTagsCommandOutput) => void
|
|
270
270
|
): void;
|
|
271
|
+
describeAccessPoints(): Promise<DescribeAccessPointsCommandOutput>;
|
|
271
272
|
describeAccessPoints(
|
|
272
273
|
args: DescribeAccessPointsCommandInput,
|
|
273
274
|
options?: __HttpHandlerOptions
|
|
@@ -281,6 +282,7 @@ export interface EFS {
|
|
|
281
282
|
options: __HttpHandlerOptions,
|
|
282
283
|
cb: (err: any, data?: DescribeAccessPointsCommandOutput) => void
|
|
283
284
|
): void;
|
|
285
|
+
describeAccountPreferences(): Promise<DescribeAccountPreferencesCommandOutput>;
|
|
284
286
|
describeAccountPreferences(
|
|
285
287
|
args: DescribeAccountPreferencesCommandInput,
|
|
286
288
|
options?: __HttpHandlerOptions
|
|
@@ -320,6 +322,7 @@ export interface EFS {
|
|
|
320
322
|
options: __HttpHandlerOptions,
|
|
321
323
|
cb: (err: any, data?: DescribeFileSystemPolicyCommandOutput) => void
|
|
322
324
|
): void;
|
|
325
|
+
describeFileSystems(): Promise<DescribeFileSystemsCommandOutput>;
|
|
323
326
|
describeFileSystems(
|
|
324
327
|
args: DescribeFileSystemsCommandInput,
|
|
325
328
|
options?: __HttpHandlerOptions
|
|
@@ -346,6 +349,7 @@ export interface EFS {
|
|
|
346
349
|
options: __HttpHandlerOptions,
|
|
347
350
|
cb: (err: any, data?: DescribeLifecycleConfigurationCommandOutput) => void
|
|
348
351
|
): void;
|
|
352
|
+
describeMountTargets(): Promise<DescribeMountTargetsCommandOutput>;
|
|
349
353
|
describeMountTargets(
|
|
350
354
|
args: DescribeMountTargetsCommandInput,
|
|
351
355
|
options?: __HttpHandlerOptions
|
|
@@ -378,6 +382,7 @@ export interface EFS {
|
|
|
378
382
|
data?: DescribeMountTargetSecurityGroupsCommandOutput
|
|
379
383
|
) => void
|
|
380
384
|
): void;
|
|
385
|
+
describeReplicationConfigurations(): Promise<DescribeReplicationConfigurationsCommandOutput>;
|
|
381
386
|
describeReplicationConfigurations(
|
|
382
387
|
args: DescribeReplicationConfigurationsCommandInput,
|
|
383
388
|
options?: __HttpHandlerOptions
|
|
@@ -25,6 +25,15 @@ declare const CreateAccessPointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateAccessPointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateAccessPointCommandInput,
|
|
32
|
+
CreateAccessPointCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateAccessPointCommand extends CreateAccessPointCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const CreateFileSystemCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [CreateFileSystemCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CreateFileSystemCommandInput,
|
|
31
|
+
CreateFileSystemCommandOutput,
|
|
32
|
+
EFSClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CreateFileSystemCommand extends CreateFileSystemCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateMountTargetCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateMountTargetCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateMountTargetCommandInput,
|
|
32
|
+
CreateMountTargetCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateMountTargetCommand extends CreateMountTargetCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateReplicationConfigurationCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateReplicationConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateReplicationConfigurationCommandInput,
|
|
32
|
+
CreateReplicationConfigurationCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateReplicationConfigurationCommand extends CreateReplicationConfigurationCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const CreateTagsCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: CreateTagsCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
CreateTagsCommandInput,
|
|
26
|
+
CreateTagsCommandOutput,
|
|
27
|
+
EFSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class CreateTagsCommand extends CreateTagsCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const DeleteAccessPointCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteAccessPointCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteAccessPointCommandInput,
|
|
27
|
+
DeleteAccessPointCommandOutput,
|
|
28
|
+
EFSClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class DeleteAccessPointCommand extends DeleteAccessPointCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteFileSystemCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteFileSystemCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteFileSystemCommandInput,
|
|
26
|
+
DeleteFileSystemCommandOutput,
|
|
27
|
+
EFSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteFileSystemCommand extends DeleteFileSystemCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const DeleteFileSystemPolicyCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteFileSystemPolicyCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteFileSystemPolicyCommandInput,
|
|
27
|
+
DeleteFileSystemPolicyCommandOutput,
|
|
28
|
+
EFSClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class DeleteFileSystemPolicyCommand extends DeleteFileSystemPolicyCommand_base {}
|
|
@@ -20,6 +20,15 @@ declare const DeleteMountTargetCommand_base: {
|
|
|
20
20
|
ServiceInputTypes,
|
|
21
21
|
ServiceOutputTypes
|
|
22
22
|
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteMountTargetCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteMountTargetCommandInput,
|
|
27
|
+
DeleteMountTargetCommandOutput,
|
|
28
|
+
EFSClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
23
32
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
33
|
};
|
|
25
34
|
export declare class DeleteMountTargetCommand extends DeleteMountTargetCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteReplicationConfigurationCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteReplicationConfigurationCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteReplicationConfigurationCommandInput,
|
|
28
|
+
DeleteReplicationConfigurationCommandOutput,
|
|
29
|
+
EFSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteReplicationConfigurationCommand extends DeleteReplicationConfigurationCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const DeleteTagsCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: DeleteTagsCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
DeleteTagsCommandInput,
|
|
26
|
+
DeleteTagsCommandOutput,
|
|
27
|
+
EFSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class DeleteTagsCommand extends DeleteTagsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeAccessPointsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeAccessPointsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeAccessPointsCommandInput,
|
|
32
|
+
DescribeAccessPointsCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeAccessPointsCommand extends DescribeAccessPointsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeAccountPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeAccountPreferencesCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeAccountPreferencesCommandInput,
|
|
32
|
+
DescribeAccountPreferencesCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeAccountPreferencesCommand extends DescribeAccountPreferencesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeBackupPolicyCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeBackupPolicyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeBackupPolicyCommandInput,
|
|
32
|
+
DescribeBackupPolicyCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeBackupPolicyCommand extends DescribeBackupPolicyCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeFileSystemPolicyCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeFileSystemPolicyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeFileSystemPolicyCommandInput,
|
|
32
|
+
DescribeFileSystemPolicyCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeFileSystemPolicyCommand extends DescribeFileSystemPolicyCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeFileSystemsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeFileSystemsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeFileSystemsCommandInput,
|
|
32
|
+
DescribeFileSystemsCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeFileSystemsCommand extends DescribeFileSystemsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeLifecycleConfigurationCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeLifecycleConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeLifecycleConfigurationCommandInput,
|
|
32
|
+
DescribeLifecycleConfigurationCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeLifecycleConfigurationCommand extends DescribeLifecycleConfigurationCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeMountTargetSecurityGroupsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeMountTargetSecurityGroupsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeMountTargetSecurityGroupsCommandInput,
|
|
32
|
+
DescribeMountTargetSecurityGroupsCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeMountTargetSecurityGroupsCommand extends DescribeMountTargetSecurityGroupsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeMountTargetsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeMountTargetsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeMountTargetsCommandInput,
|
|
32
|
+
DescribeMountTargetsCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeMountTargetsCommand extends DescribeMountTargetsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DescribeReplicationConfigurationsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [DescribeReplicationConfigurationsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeReplicationConfigurationsCommandInput,
|
|
32
|
+
DescribeReplicationConfigurationsCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DescribeReplicationConfigurationsCommand extends DescribeReplicationConfigurationsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DescribeTagsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DescribeTagsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DescribeTagsCommandInput,
|
|
28
|
+
DescribeTagsCommandOutput,
|
|
29
|
+
EFSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DescribeTagsCommand extends DescribeTagsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTagsForResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ModifyMountTargetSecurityGroupsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ModifyMountTargetSecurityGroupsCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ModifyMountTargetSecurityGroupsCommandInput,
|
|
28
|
+
ModifyMountTargetSecurityGroupsCommandOutput,
|
|
29
|
+
EFSClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ModifyMountTargetSecurityGroupsCommand extends ModifyMountTargetSecurityGroupsCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const PutAccountPreferencesCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutAccountPreferencesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutAccountPreferencesCommandInput,
|
|
32
|
+
PutAccountPreferencesCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class PutAccountPreferencesCommand extends PutAccountPreferencesCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const PutBackupPolicyCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: PutBackupPolicyCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
PutBackupPolicyCommandInput,
|
|
31
|
+
PutBackupPolicyCommandOutput,
|
|
32
|
+
EFSClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class PutBackupPolicyCommand extends PutBackupPolicyCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const PutFileSystemPolicyCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutFileSystemPolicyCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutFileSystemPolicyCommandInput,
|
|
32
|
+
PutFileSystemPolicyCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class PutFileSystemPolicyCommand extends PutFileSystemPolicyCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const PutLifecycleConfigurationCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PutLifecycleConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PutLifecycleConfigurationCommandInput,
|
|
32
|
+
PutLifecycleConfigurationCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class PutLifecycleConfigurationCommand extends PutLifecycleConfigurationCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const TagResourceCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: TagResourceCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
TagResourceCommandInput,
|
|
26
|
+
TagResourceCommandOutput,
|
|
27
|
+
EFSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const UntagResourceCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: UntagResourceCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
UntagResourceCommandInput,
|
|
26
|
+
UntagResourceCommandOutput,
|
|
27
|
+
EFSClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const UpdateFileSystemCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: UpdateFileSystemCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
UpdateFileSystemCommandInput,
|
|
31
|
+
UpdateFileSystemCommandOutput,
|
|
32
|
+
EFSClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class UpdateFileSystemCommand extends UpdateFileSystemCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const UpdateFileSystemProtectionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateFileSystemProtectionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateFileSystemProtectionCommandInput,
|
|
32
|
+
UpdateFileSystemProtectionCommandOutput,
|
|
33
|
+
EFSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class UpdateFileSystemProtectionCommand extends UpdateFileSystemProtectionCommand_base {}
|