@aws-sdk/client-efs 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/EFS.d.ts +556 -155
- package/dist-types/ts3.4/EFSClient.d.ts +308 -103
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/EFSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1056 -961
- package/dist-types/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { CreateTagsRequest } from "../models/models_0";
|
|
14
|
+
export interface CreateTagsCommandInput extends CreateTagsRequest {}
|
|
15
|
+
export interface CreateTagsCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class CreateTagsCommand extends $Command<
|
|
18
|
+
CreateTagsCommandInput,
|
|
19
|
+
CreateTagsCommandOutput,
|
|
20
|
+
EFSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: CreateTagsCommandInput;
|
|
23
|
+
constructor(input: CreateTagsCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: EFSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteAccessPointRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteAccessPointCommandInput
|
|
15
|
+
extends DeleteAccessPointRequest {}
|
|
16
|
+
export interface DeleteAccessPointCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteAccessPointCommand extends $Command<
|
|
19
|
+
DeleteAccessPointCommandInput,
|
|
20
|
+
DeleteAccessPointCommandOutput,
|
|
21
|
+
EFSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteAccessPointCommandInput;
|
|
24
|
+
constructor(input: DeleteAccessPointCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: EFSClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteFileSystemRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {}
|
|
15
|
+
export interface DeleteFileSystemCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteFileSystemCommand extends $Command<
|
|
18
|
+
DeleteFileSystemCommandInput,
|
|
19
|
+
DeleteFileSystemCommandOutput,
|
|
20
|
+
EFSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteFileSystemCommandInput;
|
|
23
|
+
constructor(input: DeleteFileSystemCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: EFSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteFileSystemPolicyRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteFileSystemPolicyCommandInput
|
|
15
|
+
extends DeleteFileSystemPolicyRequest {}
|
|
16
|
+
export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteFileSystemPolicyCommand extends $Command<
|
|
19
|
+
DeleteFileSystemPolicyCommandInput,
|
|
20
|
+
DeleteFileSystemPolicyCommandOutput,
|
|
21
|
+
EFSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteFileSystemPolicyCommandInput;
|
|
24
|
+
constructor(input: DeleteFileSystemPolicyCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: EFSClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
DeleteFileSystemPolicyCommandInput,
|
|
32
|
+
DeleteFileSystemPolicyCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteMountTargetRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteMountTargetCommandInput
|
|
15
|
+
extends DeleteMountTargetRequest {}
|
|
16
|
+
export interface DeleteMountTargetCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteMountTargetCommand extends $Command<
|
|
19
|
+
DeleteMountTargetCommandInput,
|
|
20
|
+
DeleteMountTargetCommandOutput,
|
|
21
|
+
EFSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteMountTargetCommandInput;
|
|
24
|
+
constructor(input: DeleteMountTargetCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: EFSClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteReplicationConfigurationRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteReplicationConfigurationCommandInput
|
|
15
|
+
extends DeleteReplicationConfigurationRequest {}
|
|
16
|
+
export interface DeleteReplicationConfigurationCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteReplicationConfigurationCommand extends $Command<
|
|
20
|
+
DeleteReplicationConfigurationCommandInput,
|
|
21
|
+
DeleteReplicationConfigurationCommandOutput,
|
|
22
|
+
EFSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteReplicationConfigurationCommandInput;
|
|
25
|
+
constructor(input: DeleteReplicationConfigurationCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: EFSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteReplicationConfigurationCommandInput,
|
|
33
|
+
DeleteReplicationConfigurationCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import { DeleteTagsRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteTagsCommandInput extends DeleteTagsRequest {}
|
|
15
|
+
export interface DeleteTagsCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteTagsCommand extends $Command<
|
|
18
|
+
DeleteTagsCommandInput,
|
|
19
|
+
DeleteTagsCommandOutput,
|
|
20
|
+
EFSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteTagsCommandInput;
|
|
23
|
+
constructor(input: DeleteTagsCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: EFSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAccessPointsRequest,
|
|
15
|
+
DescribeAccessPointsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAccessPointsCommandInput
|
|
18
|
+
extends DescribeAccessPointsRequest {}
|
|
19
|
+
export interface DescribeAccessPointsCommandOutput
|
|
20
|
+
extends DescribeAccessPointsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAccessPointsCommand extends $Command<
|
|
24
|
+
DescribeAccessPointsCommandInput,
|
|
25
|
+
DescribeAccessPointsCommandOutput,
|
|
26
|
+
EFSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAccessPointsCommandInput;
|
|
29
|
+
constructor(input: DescribeAccessPointsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EFSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAccessPointsCommandInput,
|
|
37
|
+
DescribeAccessPointsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAccountPreferencesRequest,
|
|
15
|
+
DescribeAccountPreferencesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAccountPreferencesCommandInput
|
|
18
|
+
extends DescribeAccountPreferencesRequest {}
|
|
19
|
+
export interface DescribeAccountPreferencesCommandOutput
|
|
20
|
+
extends DescribeAccountPreferencesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAccountPreferencesCommand extends $Command<
|
|
24
|
+
DescribeAccountPreferencesCommandInput,
|
|
25
|
+
DescribeAccountPreferencesCommandOutput,
|
|
26
|
+
EFSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAccountPreferencesCommandInput;
|
|
29
|
+
constructor(input: DescribeAccountPreferencesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EFSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAccountPreferencesCommandInput,
|
|
37
|
+
DescribeAccountPreferencesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import {
|
|
14
|
+
BackupPolicyDescription,
|
|
15
|
+
DescribeBackupPolicyRequest,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBackupPolicyCommandInput
|
|
18
|
+
extends DescribeBackupPolicyRequest {}
|
|
19
|
+
export interface DescribeBackupPolicyCommandOutput
|
|
20
|
+
extends BackupPolicyDescription,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBackupPolicyCommand extends $Command<
|
|
24
|
+
DescribeBackupPolicyCommandInput,
|
|
25
|
+
DescribeBackupPolicyCommandOutput,
|
|
26
|
+
EFSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBackupPolicyCommandInput;
|
|
29
|
+
constructor(input: DescribeBackupPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EFSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBackupPolicyCommandInput,
|
|
37
|
+
DescribeBackupPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EFSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EFSClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeFileSystemPolicyRequest,
|
|
15
|
+
FileSystemPolicyDescription,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeFileSystemPolicyCommandInput
|
|
18
|
+
extends DescribeFileSystemPolicyRequest {}
|
|
19
|
+
export interface DescribeFileSystemPolicyCommandOutput
|
|
20
|
+
extends FileSystemPolicyDescription,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeFileSystemPolicyCommand extends $Command<
|
|
24
|
+
DescribeFileSystemPolicyCommandInput,
|
|
25
|
+
DescribeFileSystemPolicyCommandOutput,
|
|
26
|
+
EFSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeFileSystemPolicyCommandInput;
|
|
29
|
+
constructor(input: DescribeFileSystemPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: EFSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeFileSystemPolicyCommandInput,
|
|
37
|
+
DescribeFileSystemPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|