@aws-sdk/client-efs 3.295.0 → 3.297.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.
Files changed (40) hide show
  1. package/dist-types/EFS.d.ts +31 -0
  2. package/dist-types/EFSClient.d.ts +24 -4
  3. package/dist-types/commands/CreateAccessPointCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateFileSystemCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateMountTargetCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateTagsCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAccessPointCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteFileSystemCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMountTargetCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeAccessPointsCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeAccountPreferencesCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeBackupPolicyCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeMountTargetsCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeReplicationConfigurationsCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +16 -0
  26. package/dist-types/commands/PutAccountPreferencesCommand.d.ts +16 -0
  27. package/dist-types/commands/PutBackupPolicyCommand.d.ts +16 -0
  28. package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +16 -0
  29. package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +16 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateFileSystemCommand.d.ts +16 -0
  33. package/dist-types/models/EFSServiceException.d.ts +2 -0
  34. package/dist-types/models/models_0.d.ts +176 -1
  35. package/dist-types/pagination/DescribeAccessPointsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/DescribeFileSystemsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/DescribeTagsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/Interfaces.d.ts +3 -0
  39. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  40. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { DescribeMountTargetsRequest, DescribeMountTargetsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeMountTargetsCommand}.
8
10
  */
9
11
  export interface DescribeMountTargetsCommandInput extends DescribeMountTargetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeMountTargetsCommand}.
13
17
  */
14
18
  export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the descriptions of all the current mount targets, or a specific mount target,
18
23
  * for a file system. When requesting all of the current mount targets, the order of mount
19
24
  * targets returned in the response is unspecified.</p>
@@ -31,6 +36,8 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param DescribeMountTargetsCommandInput - {@link DescribeMountTargetsCommandInput}
40
+ * @returns {@link DescribeMountTargetsCommandOutput}
34
41
  * @see {@link DescribeMountTargetsCommandInput} for command's `input` shape.
35
42
  * @see {@link DescribeMountTargetsCommandOutput} for command's `response` shape.
36
43
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -85,11 +92,20 @@ export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsR
85
92
  export declare class DescribeMountTargetsCommand extends $Command<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput, EFSClientResolvedConfig> {
86
93
  readonly input: DescribeMountTargetsCommandInput;
87
94
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
95
+ /**
96
+ * @public
97
+ */
88
98
  constructor(input: DescribeMountTargetsCommandInput);
89
99
  /**
90
100
  * @internal
91
101
  */
92
102
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput>;
103
+ /**
104
+ * @internal
105
+ */
93
106
  private serialize;
107
+ /**
108
+ * @internal
109
+ */
94
110
  private deserialize;
95
111
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { DescribeReplicationConfigurationsRequest, DescribeReplicationConfigurationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeReplicationConfigurationsCommand}.
8
10
  */
9
11
  export interface DescribeReplicationConfigurationsCommandInput extends DescribeReplicationConfigurationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeReplicationConfigurationsCommand}.
13
17
  */
14
18
  export interface DescribeReplicationConfigurationsCommandOutput extends DescribeReplicationConfigurationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the replication configuration for a specific file system. If a file system is
18
23
  * not specified, all of the replication configurations for the Amazon Web Services account in an
19
24
  * Amazon Web Services Region are retrieved.</p>
@@ -27,6 +32,8 @@ export interface DescribeReplicationConfigurationsCommandOutput extends Describe
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DescribeReplicationConfigurationsCommandInput - {@link DescribeReplicationConfigurationsCommandInput}
36
+ * @returns {@link DescribeReplicationConfigurationsCommandOutput}
30
37
  * @see {@link DescribeReplicationConfigurationsCommandInput} for command's `input` shape.
31
38
  * @see {@link DescribeReplicationConfigurationsCommandOutput} for command's `response` shape.
32
39
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -54,11 +61,20 @@ export interface DescribeReplicationConfigurationsCommandOutput extends Describe
54
61
  export declare class DescribeReplicationConfigurationsCommand extends $Command<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig> {
55
62
  readonly input: DescribeReplicationConfigurationsCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: DescribeReplicationConfigurationsCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeTagsCommand}.
8
10
  */
9
11
  export interface DescribeTagsCommandInput extends DescribeTagsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeTagsCommand}.
13
17
  */
14
18
  export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * <note>
@@ -36,6 +41,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
45
+ * @returns {@link DescribeTagsCommandOutput}
39
46
  * @see {@link DescribeTagsCommandInput} for command's `input` shape.
40
47
  * @see {@link DescribeTagsCommandOutput} for command's `response` shape.
41
48
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -77,11 +84,20 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __Metad
77
84
  export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, EFSClientResolvedConfig> {
78
85
  readonly input: DescribeTagsCommandInput;
79
86
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
80
90
  constructor(input: DescribeTagsCommandInput);
81
91
  /**
82
92
  * @internal
83
93
  */
84
94
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
85
98
  private serialize;
99
+ /**
100
+ * @internal
101
+ */
86
102
  private deserialize;
87
103
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all tags for a top-level EFS resource. You must provide the ID of the resource that you want to retrieve the tags for.</p>
18
23
  * <p>This operation requires permissions for the <code>elasticfilesystem:DescribeAccessPoints</code> action.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
35
+ * @returns {@link ListTagsForResourceCommandOutput}
29
36
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
50
57
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EFSClientResolvedConfig> {
51
58
  readonly input: ListTagsForResourceCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListTagsForResourceCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { ModifyMountTargetSecurityGroupsRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ModifyMountTargetSecurityGroupsCommand}.
8
10
  */
9
11
  export interface ModifyMountTargetSecurityGroupsCommandInput extends ModifyMountTargetSecurityGroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ModifyMountTargetSecurityGroupsCommand}.
13
17
  */
14
18
  export interface ModifyMountTargetSecurityGroupsCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Modifies the set of security groups in effect for a mount target.</p>
18
23
  * <p>When you create a mount target, Amazon EFS also creates a new network interface. For
19
24
  * more information, see <a>CreateMountTarget</a>. This operation replaces the security groups in effect for the
@@ -44,6 +49,8 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata
44
49
  * const response = await client.send(command);
45
50
  * ```
46
51
  *
52
+ * @param ModifyMountTargetSecurityGroupsCommandInput - {@link ModifyMountTargetSecurityGroupsCommandInput}
53
+ * @returns {@link ModifyMountTargetSecurityGroupsCommandOutput}
47
54
  * @see {@link ModifyMountTargetSecurityGroupsCommandInput} for command's `input` shape.
48
55
  * @see {@link ModifyMountTargetSecurityGroupsCommandOutput} for command's `response` shape.
49
56
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -90,11 +97,20 @@ export interface ModifyMountTargetSecurityGroupsCommandOutput extends __Metadata
90
97
  export declare class ModifyMountTargetSecurityGroupsCommand extends $Command<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig> {
91
98
  readonly input: ModifyMountTargetSecurityGroupsCommandInput;
92
99
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
100
+ /**
101
+ * @public
102
+ */
93
103
  constructor(input: ModifyMountTargetSecurityGroupsCommandInput);
94
104
  /**
95
105
  * @internal
96
106
  */
97
107
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput>;
108
+ /**
109
+ * @internal
110
+ */
98
111
  private serialize;
112
+ /**
113
+ * @internal
114
+ */
99
115
  private deserialize;
100
116
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { PutAccountPreferencesRequest, PutAccountPreferencesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutAccountPreferencesCommand}.
8
10
  */
9
11
  export interface PutAccountPreferencesCommandInput extends PutAccountPreferencesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutAccountPreferencesCommand}.
13
17
  */
14
18
  export interface PutAccountPreferencesCommandOutput extends PutAccountPreferencesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this operation to set the account preference in the current Amazon Web Services Region
18
23
  * to use long 17 character (63 bit) or short 8 character (32 bit) resource IDs for
19
24
  * new EFS file system and mount target resources. All existing resource IDs are not affected
@@ -35,6 +40,8 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference
35
40
  * const response = await client.send(command);
36
41
  * ```
37
42
  *
43
+ * @param PutAccountPreferencesCommandInput - {@link PutAccountPreferencesCommandInput}
44
+ * @returns {@link PutAccountPreferencesCommandOutput}
38
45
  * @see {@link PutAccountPreferencesCommandInput} for command's `input` shape.
39
46
  * @see {@link PutAccountPreferencesCommandOutput} for command's `response` shape.
40
47
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -51,11 +58,20 @@ export interface PutAccountPreferencesCommandOutput extends PutAccountPreference
51
58
  export declare class PutAccountPreferencesCommand extends $Command<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput, EFSClientResolvedConfig> {
52
59
  readonly input: PutAccountPreferencesCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: PutAccountPreferencesCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { BackupPolicyDescription, PutBackupPolicyRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutBackupPolicyCommand}.
8
10
  */
9
11
  export interface PutBackupPolicyCommandInput extends PutBackupPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutBackupPolicyCommand}.
13
17
  */
14
18
  export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the file system's backup policy. Use this action to start or stop automatic backups of the file system. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutBackupPolicyCommandInput - {@link PutBackupPolicyCommandInput}
34
+ * @returns {@link PutBackupPolicyCommandOutput}
28
35
  * @see {@link PutBackupPolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link PutBackupPolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -51,11 +58,20 @@ export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, _
51
58
  export declare class PutBackupPolicyCommand extends $Command<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput, EFSClientResolvedConfig> {
52
59
  readonly input: PutBackupPolicyCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: PutBackupPolicyCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { FileSystemPolicyDescription, PutFileSystemPolicyRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutFileSystemPolicyCommand}.
8
10
  */
9
11
  export interface PutFileSystemPolicyCommandInput extends PutFileSystemPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutFileSystemPolicyCommand}.
13
17
  */
14
18
  export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescription, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Applies an Amazon EFS <code>FileSystemPolicy</code> to an Amazon EFS file system.
18
23
  * A file system policy is an IAM resource-based policy and can contain multiple policy statements.
19
24
  * A file system always has exactly one file system policy, which can be the default policy or
@@ -36,6 +41,8 @@ export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescri
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param PutFileSystemPolicyCommandInput - {@link PutFileSystemPolicyCommandInput}
45
+ * @returns {@link PutFileSystemPolicyCommandOutput}
39
46
  * @see {@link PutFileSystemPolicyCommandInput} for command's `input` shape.
40
47
  * @see {@link PutFileSystemPolicyCommandOutput} for command's `response` shape.
41
48
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -64,11 +71,20 @@ export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescri
64
71
  export declare class PutFileSystemPolicyCommand extends $Command<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
65
72
  readonly input: PutFileSystemPolicyCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: PutFileSystemPolicyCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { LifecycleConfigurationDescription, PutLifecycleConfigurationRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutLifecycleConfigurationCommand}.
8
10
  */
9
11
  export interface PutLifecycleConfigurationCommandInput extends PutLifecycleConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutLifecycleConfigurationCommand}.
13
17
  */
14
18
  export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigurationDescription, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Use this action to manage EFS lifecycle management and EFS Intelligent-Tiering. A
18
23
  * <code>LifecycleConfiguration</code> consists of one or more <code>LifecyclePolicy</code>
19
24
  * objects that define the following:</p>
@@ -71,6 +76,8 @@ export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigu
71
76
  * const response = await client.send(command);
72
77
  * ```
73
78
  *
79
+ * @param PutLifecycleConfigurationCommandInput - {@link PutLifecycleConfigurationCommandInput}
80
+ * @returns {@link PutLifecycleConfigurationCommandOutput}
74
81
  * @see {@link PutLifecycleConfigurationCommandInput} for command's `input` shape.
75
82
  * @see {@link PutLifecycleConfigurationCommandOutput} for command's `response` shape.
76
83
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -119,11 +126,20 @@ export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigu
119
126
  export declare class PutLifecycleConfigurationCommand extends $Command<PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput, EFSClientResolvedConfig> {
120
127
  readonly input: PutLifecycleConfigurationCommandInput;
121
128
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
129
+ /**
130
+ * @public
131
+ */
122
132
  constructor(input: PutLifecycleConfigurationCommandInput);
123
133
  /**
124
134
  * @internal
125
135
  */
126
136
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput>;
137
+ /**
138
+ * @internal
139
+ */
127
140
  private serialize;
141
+ /**
142
+ * @internal
143
+ */
128
144
  private deserialize;
129
145
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a tag for an EFS resource. You can create tags for EFS file systems and access points using this API operation.</p>
18
23
  * <p>This operation requires permissions for the <code>elasticfilesystem:TagResource</code> action.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
35
+ * @returns {@link TagResourceCommandOutput}
29
36
  * @see {@link TagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
50
57
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EFSClientResolvedConfig> {
51
58
  readonly input: TagResourceCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: TagResourceCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from an EFS resource. You can remove tags from EFS file systems and access points using this API operation.</p>
18
23
  * <p>This operation requires permissions for the <code>elasticfilesystem:UntagResource</code> action.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -50,11 +57,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
50
57
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EFSClientResolvedConfig> {
51
58
  readonly input: UntagResourceCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: UntagResourceCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
5
5
  import { FileSystemDescription, UpdateFileSystemRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateFileSystemCommand}.
8
10
  */
9
11
  export interface UpdateFileSystemCommandInput extends UpdateFileSystemRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateFileSystemCommand}.
13
17
  */
14
18
  export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the throughput mode or the amount of provisioned throughput of an existing file
18
23
  * system.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateFileSystemCommandInput - {@link UpdateFileSystemCommandInput}
35
+ * @returns {@link UpdateFileSystemCommandOutput}
29
36
  * @see {@link UpdateFileSystemCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateFileSystemCommandOutput} for command's `response` shape.
31
38
  * @see {@link EFSClientResolvedConfig | config} for EFSClient's `config` shape.
@@ -64,11 +71,20 @@ export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __
64
71
  export declare class UpdateFileSystemCommand extends $Command<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput, EFSClientResolvedConfig> {
65
72
  readonly input: UpdateFileSystemCommandInput;
66
73
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
+ /**
75
+ * @public
76
+ */
67
77
  constructor(input: UpdateFileSystemCommandInput);
68
78
  /**
69
79
  * @internal
70
80
  */
71
81
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput>;
82
+ /**
83
+ * @internal
84
+ */
72
85
  private serialize;
86
+ /**
87
+ * @internal
88
+ */
73
89
  private deserialize;
74
90
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from EFS service.
4
6
  */
5
7
  export declare class EFSServiceException extends __ServiceException {