@aws-sdk/client-efs 3.489.0 → 3.495.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 (51) hide show
  1. package/dist-cjs/EFS.js +1 -73
  2. package/dist-cjs/EFSClient.js +1 -43
  3. package/dist-cjs/commands/CreateAccessPointCommand.js +1 -28
  4. package/dist-cjs/commands/CreateFileSystemCommand.js +1 -28
  5. package/dist-cjs/commands/CreateMountTargetCommand.js +1 -28
  6. package/dist-cjs/commands/CreateReplicationConfigurationCommand.js +1 -28
  7. package/dist-cjs/commands/CreateTagsCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteAccessPointCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteFileSystemCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteFileSystemPolicyCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteMountTargetCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteReplicationConfigurationCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteTagsCommand.js +1 -28
  14. package/dist-cjs/commands/DescribeAccessPointsCommand.js +1 -28
  15. package/dist-cjs/commands/DescribeAccountPreferencesCommand.js +1 -28
  16. package/dist-cjs/commands/DescribeBackupPolicyCommand.js +1 -28
  17. package/dist-cjs/commands/DescribeFileSystemPolicyCommand.js +1 -28
  18. package/dist-cjs/commands/DescribeFileSystemsCommand.js +1 -28
  19. package/dist-cjs/commands/DescribeLifecycleConfigurationCommand.js +1 -28
  20. package/dist-cjs/commands/DescribeMountTargetSecurityGroupsCommand.js +1 -28
  21. package/dist-cjs/commands/DescribeMountTargetsCommand.js +1 -28
  22. package/dist-cjs/commands/DescribeReplicationConfigurationsCommand.js +1 -28
  23. package/dist-cjs/commands/DescribeTagsCommand.js +1 -28
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  25. package/dist-cjs/commands/ModifyMountTargetSecurityGroupsCommand.js +1 -28
  26. package/dist-cjs/commands/PutAccountPreferencesCommand.js +1 -28
  27. package/dist-cjs/commands/PutBackupPolicyCommand.js +1 -28
  28. package/dist-cjs/commands/PutFileSystemPolicyCommand.js +1 -28
  29. package/dist-cjs/commands/PutLifecycleConfigurationCommand.js +1 -28
  30. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  31. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  32. package/dist-cjs/commands/UpdateFileSystemCommand.js +1 -28
  33. package/dist-cjs/commands/UpdateFileSystemProtectionCommand.js +1 -28
  34. package/dist-cjs/commands/index.js +1 -34
  35. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  36. package/dist-cjs/extensionConfiguration.js +1 -2
  37. package/dist-cjs/index.js +3993 -11
  38. package/dist-cjs/models/EFSServiceException.js +1 -12
  39. package/dist-cjs/models/index.js +1 -4
  40. package/dist-cjs/models/models_0.js +1 -555
  41. package/dist-cjs/pagination/DescribeAccessPointsPaginator.js +1 -7
  42. package/dist-cjs/pagination/DescribeFileSystemsPaginator.js +1 -7
  43. package/dist-cjs/pagination/DescribeMountTargetsPaginator.js +1 -7
  44. package/dist-cjs/pagination/DescribeReplicationConfigurationsPaginator.js +1 -7
  45. package/dist-cjs/pagination/DescribeTagsPaginator.js +1 -7
  46. package/dist-cjs/pagination/Interfaces.js +1 -2
  47. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
  48. package/dist-cjs/pagination/index.js +1 -10
  49. package/dist-cjs/protocols/Aws_restJson1.js +1 -2464
  50. package/dist-cjs/runtimeExtensions.js +1 -22
  51. package/package.json +40 -40
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeMountTargetSecurityGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeMountTargetSecurityGroupsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "DescribeMountTargetSecurityGroups", {})
22
- .n("EFSClient", "DescribeMountTargetSecurityGroupsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeMountTargetSecurityGroupsCommand)
25
- .de(Aws_restJson1_1.de_DescribeMountTargetSecurityGroupsCommand)
26
- .build() {
27
- }
28
- exports.DescribeMountTargetSecurityGroupsCommand = DescribeMountTargetSecurityGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeMountTargetsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeMountTargetsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "DescribeMountTargets", {})
22
- .n("EFSClient", "DescribeMountTargetsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeMountTargetsCommand)
25
- .de(Aws_restJson1_1.de_DescribeMountTargetsCommand)
26
- .build() {
27
- }
28
- exports.DescribeMountTargetsCommand = DescribeMountTargetsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeReplicationConfigurationsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeReplicationConfigurationsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "DescribeReplicationConfigurations", {})
22
- .n("EFSClient", "DescribeReplicationConfigurationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeReplicationConfigurationsCommand)
25
- .de(Aws_restJson1_1.de_DescribeReplicationConfigurationsCommand)
26
- .build() {
27
- }
28
- exports.DescribeReplicationConfigurationsCommand = DescribeReplicationConfigurationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeTagsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DescribeTagsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "DescribeTags", {})
22
- .n("EFSClient", "DescribeTagsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DescribeTagsCommand)
25
- .de(Aws_restJson1_1.de_DescribeTagsCommand)
26
- .build() {
27
- }
28
- exports.DescribeTagsCommand = DescribeTagsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "ListTagsForResource", {})
22
- .n("EFSClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ModifyMountTargetSecurityGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ModifyMountTargetSecurityGroupsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "ModifyMountTargetSecurityGroups", {})
22
- .n("EFSClient", "ModifyMountTargetSecurityGroupsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ModifyMountTargetSecurityGroupsCommand)
25
- .de(Aws_restJson1_1.de_ModifyMountTargetSecurityGroupsCommand)
26
- .build() {
27
- }
28
- exports.ModifyMountTargetSecurityGroupsCommand = ModifyMountTargetSecurityGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutAccountPreferencesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutAccountPreferencesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "PutAccountPreferences", {})
22
- .n("EFSClient", "PutAccountPreferencesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutAccountPreferencesCommand)
25
- .de(Aws_restJson1_1.de_PutAccountPreferencesCommand)
26
- .build() {
27
- }
28
- exports.PutAccountPreferencesCommand = PutAccountPreferencesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutBackupPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutBackupPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "PutBackupPolicy", {})
22
- .n("EFSClient", "PutBackupPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutBackupPolicyCommand)
25
- .de(Aws_restJson1_1.de_PutBackupPolicyCommand)
26
- .build() {
27
- }
28
- exports.PutBackupPolicyCommand = PutBackupPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutFileSystemPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutFileSystemPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "PutFileSystemPolicy", {})
22
- .n("EFSClient", "PutFileSystemPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutFileSystemPolicyCommand)
25
- .de(Aws_restJson1_1.de_PutFileSystemPolicyCommand)
26
- .build() {
27
- }
28
- exports.PutFileSystemPolicyCommand = PutFileSystemPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutLifecycleConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutLifecycleConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "PutLifecycleConfiguration", {})
22
- .n("EFSClient", "PutLifecycleConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutLifecycleConfigurationCommand)
25
- .de(Aws_restJson1_1.de_PutLifecycleConfigurationCommand)
26
- .build() {
27
- }
28
- exports.PutLifecycleConfigurationCommand = PutLifecycleConfigurationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "TagResource", {})
22
- .n("EFSClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_TagResourceCommand)
25
- .de(Aws_restJson1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "UntagResource", {})
22
- .n("EFSClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
25
- .de(Aws_restJson1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFileSystemCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateFileSystemCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "UpdateFileSystem", {})
22
- .n("EFSClient", "UpdateFileSystemCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateFileSystemCommand)
25
- .de(Aws_restJson1_1.de_UpdateFileSystemCommand)
26
- .build() {
27
- }
28
- exports.UpdateFileSystemCommand = UpdateFileSystemCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFileSystemProtectionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateFileSystemProtectionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("MagnolioAPIService_v20150201", "UpdateFileSystemProtection", {})
22
- .n("EFSClient", "UpdateFileSystemProtectionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateFileSystemProtectionCommand)
25
- .de(Aws_restJson1_1.de_UpdateFileSystemProtectionCommand)
26
- .build() {
27
- }
28
- exports.UpdateFileSystemProtectionCommand = UpdateFileSystemProtectionCommand;
1
+ module.exports = require("../index.js");
@@ -1,34 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CreateAccessPointCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateFileSystemCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateMountTargetCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateReplicationConfigurationCommand"), exports);
8
- tslib_1.__exportStar(require("./CreateTagsCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteAccessPointCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteFileSystemCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteFileSystemPolicyCommand"), exports);
12
- tslib_1.__exportStar(require("./DeleteMountTargetCommand"), exports);
13
- tslib_1.__exportStar(require("./DeleteReplicationConfigurationCommand"), exports);
14
- tslib_1.__exportStar(require("./DeleteTagsCommand"), exports);
15
- tslib_1.__exportStar(require("./DescribeAccessPointsCommand"), exports);
16
- tslib_1.__exportStar(require("./DescribeAccountPreferencesCommand"), exports);
17
- tslib_1.__exportStar(require("./DescribeBackupPolicyCommand"), exports);
18
- tslib_1.__exportStar(require("./DescribeFileSystemPolicyCommand"), exports);
19
- tslib_1.__exportStar(require("./DescribeFileSystemsCommand"), exports);
20
- tslib_1.__exportStar(require("./DescribeLifecycleConfigurationCommand"), exports);
21
- tslib_1.__exportStar(require("./DescribeMountTargetSecurityGroupsCommand"), exports);
22
- tslib_1.__exportStar(require("./DescribeMountTargetsCommand"), exports);
23
- tslib_1.__exportStar(require("./DescribeReplicationConfigurationsCommand"), exports);
24
- tslib_1.__exportStar(require("./DescribeTagsCommand"), exports);
25
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
26
- tslib_1.__exportStar(require("./ModifyMountTargetSecurityGroupsCommand"), exports);
27
- tslib_1.__exportStar(require("./PutAccountPreferencesCommand"), exports);
28
- tslib_1.__exportStar(require("./PutBackupPolicyCommand"), exports);
29
- tslib_1.__exportStar(require("./PutFileSystemPolicyCommand"), exports);
30
- tslib_1.__exportStar(require("./PutLifecycleConfigurationCommand"), exports);
31
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
32
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
33
- tslib_1.__exportStar(require("./UpdateFileSystemCommand"), exports);
34
- tslib_1.__exportStar(require("./UpdateFileSystemProtectionCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "elasticfilesystem",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");