@aws-sdk/client-efs 3.183.0 → 3.185.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 (47) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/EFS.js +129 -122
  4. package/dist-es/EFSClient.js +28 -22
  5. package/dist-es/commands/CreateAccessPointCommand.js +28 -21
  6. package/dist-es/commands/CreateFileSystemCommand.js +28 -21
  7. package/dist-es/commands/CreateMountTargetCommand.js +28 -21
  8. package/dist-es/commands/CreateReplicationConfigurationCommand.js +28 -21
  9. package/dist-es/commands/CreateTagsCommand.js +29 -22
  10. package/dist-es/commands/DeleteAccessPointCommand.js +29 -22
  11. package/dist-es/commands/DeleteFileSystemCommand.js +29 -22
  12. package/dist-es/commands/DeleteFileSystemPolicyCommand.js +29 -22
  13. package/dist-es/commands/DeleteMountTargetCommand.js +29 -22
  14. package/dist-es/commands/DeleteReplicationConfigurationCommand.js +29 -22
  15. package/dist-es/commands/DeleteTagsCommand.js +29 -22
  16. package/dist-es/commands/DescribeAccessPointsCommand.js +28 -21
  17. package/dist-es/commands/DescribeAccountPreferencesCommand.js +28 -21
  18. package/dist-es/commands/DescribeBackupPolicyCommand.js +28 -21
  19. package/dist-es/commands/DescribeFileSystemPolicyCommand.js +28 -21
  20. package/dist-es/commands/DescribeFileSystemsCommand.js +28 -21
  21. package/dist-es/commands/DescribeLifecycleConfigurationCommand.js +28 -21
  22. package/dist-es/commands/DescribeMountTargetSecurityGroupsCommand.js +28 -21
  23. package/dist-es/commands/DescribeMountTargetsCommand.js +28 -21
  24. package/dist-es/commands/DescribeReplicationConfigurationsCommand.js +28 -21
  25. package/dist-es/commands/DescribeTagsCommand.js +28 -21
  26. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  27. package/dist-es/commands/ModifyMountTargetSecurityGroupsCommand.js +29 -22
  28. package/dist-es/commands/PutAccountPreferencesCommand.js +28 -21
  29. package/dist-es/commands/PutBackupPolicyCommand.js +28 -21
  30. package/dist-es/commands/PutFileSystemPolicyCommand.js +28 -21
  31. package/dist-es/commands/PutLifecycleConfigurationCommand.js +28 -21
  32. package/dist-es/commands/TagResourceCommand.js +29 -22
  33. package/dist-es/commands/UntagResourceCommand.js +29 -22
  34. package/dist-es/commands/UpdateFileSystemCommand.js +28 -21
  35. package/dist-es/endpoints.js +8 -8
  36. package/dist-es/models/EFSServiceException.js +10 -5
  37. package/dist-es/models/models_0.js +449 -560
  38. package/dist-es/pagination/DescribeAccessPointsPaginator.js +68 -25
  39. package/dist-es/pagination/DescribeFileSystemsPaginator.js +68 -25
  40. package/dist-es/pagination/DescribeTagsPaginator.js +68 -25
  41. package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
  42. package/dist-es/protocols/Aws_restJson1.js +3544 -2632
  43. package/dist-es/runtimeConfig.browser.js +12 -26
  44. package/dist-es/runtimeConfig.js +12 -30
  45. package/dist-es/runtimeConfig.native.js +5 -8
  46. package/dist-es/runtimeConfig.shared.js +11 -8
  47. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DescribeTagsRequestFilterSensitiveLog, DescribeTagsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeTagsCommand, serializeAws_restJson1DescribeTagsCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeTagsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeTagsCommand = (function (_super) {
7
+ __extends(DescribeTagsCommand, _super);
8
+ function DescribeTagsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeTagsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "DescribeTagsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "DescribeTagsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeTagsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeTagsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DescribeTagsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeTagsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeTagsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeTagsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeTagsCommand;
38
+ }($Command));
39
+ export { DescribeTagsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ModifyMountTargetSecurityGroupsCommand, serializeAws_restJson1ModifyMountTargetSecurityGroupsCommand, } from "../protocols/Aws_restJson1";
5
- export class ModifyMountTargetSecurityGroupsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ModifyMountTargetSecurityGroupsCommand = (function (_super) {
7
+ __extends(ModifyMountTargetSecurityGroupsCommand, _super);
8
+ function ModifyMountTargetSecurityGroupsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ModifyMountTargetSecurityGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "ModifyMountTargetSecurityGroupsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "ModifyMountTargetSecurityGroupsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ModifyMountTargetSecurityGroupsRequestFilterSensitiveLog,
21
- outputFilterSensitiveLog: (output) => output,
24
+ outputFilterSensitiveLog: function (output) { return output; },
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ModifyMountTargetSecurityGroupsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ModifyMountTargetSecurityGroupsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ModifyMountTargetSecurityGroupsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ModifyMountTargetSecurityGroupsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ModifyMountTargetSecurityGroupsCommand;
38
+ }($Command));
39
+ export { ModifyMountTargetSecurityGroupsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { PutAccountPreferencesRequestFilterSensitiveLog, PutAccountPreferencesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutAccountPreferencesCommand, serializeAws_restJson1PutAccountPreferencesCommand, } from "../protocols/Aws_restJson1";
5
- export class PutAccountPreferencesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutAccountPreferencesCommand = (function (_super) {
7
+ __extends(PutAccountPreferencesCommand, _super);
8
+ function PutAccountPreferencesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutAccountPreferencesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "PutAccountPreferencesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "PutAccountPreferencesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutAccountPreferencesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: PutAccountPreferencesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PutAccountPreferencesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutAccountPreferencesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutAccountPreferencesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutAccountPreferencesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutAccountPreferencesCommand;
38
+ }($Command));
39
+ export { PutAccountPreferencesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { BackupPolicyDescriptionFilterSensitiveLog, PutBackupPolicyRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutBackupPolicyCommand, serializeAws_restJson1PutBackupPolicyCommand, } from "../protocols/Aws_restJson1";
5
- export class PutBackupPolicyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutBackupPolicyCommand = (function (_super) {
7
+ __extends(PutBackupPolicyCommand, _super);
8
+ function PutBackupPolicyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutBackupPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "PutBackupPolicyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "PutBackupPolicyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutBackupPolicyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: BackupPolicyDescriptionFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PutBackupPolicyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutBackupPolicyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutBackupPolicyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutBackupPolicyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutBackupPolicyCommand;
38
+ }($Command));
39
+ export { PutBackupPolicyCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { FileSystemPolicyDescriptionFilterSensitiveLog, PutFileSystemPolicyRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutFileSystemPolicyCommand, serializeAws_restJson1PutFileSystemPolicyCommand, } from "../protocols/Aws_restJson1";
5
- export class PutFileSystemPolicyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutFileSystemPolicyCommand = (function (_super) {
7
+ __extends(PutFileSystemPolicyCommand, _super);
8
+ function PutFileSystemPolicyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutFileSystemPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "PutFileSystemPolicyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "PutFileSystemPolicyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutFileSystemPolicyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: FileSystemPolicyDescriptionFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PutFileSystemPolicyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutFileSystemPolicyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutFileSystemPolicyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutFileSystemPolicyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutFileSystemPolicyCommand;
38
+ }($Command));
39
+ export { PutFileSystemPolicyCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { LifecycleConfigurationDescriptionFilterSensitiveLog, PutLifecycleConfigurationRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1PutLifecycleConfigurationCommand, serializeAws_restJson1PutLifecycleConfigurationCommand, } from "../protocols/Aws_restJson1";
5
- export class PutLifecycleConfigurationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var PutLifecycleConfigurationCommand = (function (_super) {
7
+ __extends(PutLifecycleConfigurationCommand, _super);
8
+ function PutLifecycleConfigurationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ PutLifecycleConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "PutLifecycleConfigurationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "PutLifecycleConfigurationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: PutLifecycleConfigurationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: LifecycleConfigurationDescriptionFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ PutLifecycleConfigurationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1PutLifecycleConfigurationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ PutLifecycleConfigurationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1PutLifecycleConfigurationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return PutLifecycleConfigurationCommand;
38
+ }($Command));
39
+ export { PutLifecycleConfigurationCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class TagResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var TagResourceCommand = (function (_super) {
7
+ __extends(TagResourceCommand, _super);
8
+ function TagResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "TagResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "TagResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
21
- outputFilterSensitiveLog: (output) => output,
24
+ outputFilterSensitiveLog: function (output) { return output; },
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ TagResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1TagResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ TagResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1TagResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return TagResourceCommand;
38
+ }($Command));
39
+ export { TagResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UntagResourceRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class UntagResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UntagResourceCommand = (function (_super) {
7
+ __extends(UntagResourceCommand, _super);
8
+ function UntagResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "UntagResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "UntagResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
21
- outputFilterSensitiveLog: (output) => output,
24
+ outputFilterSensitiveLog: function (output) { return output; },
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UntagResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1UntagResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UntagResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1UntagResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UntagResourceCommand;
38
+ }($Command));
39
+ export { UntagResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { FileSystemDescriptionFilterSensitiveLog, UpdateFileSystemRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1UpdateFileSystemCommand, serializeAws_restJson1UpdateFileSystemCommand, } from "../protocols/Aws_restJson1";
5
- export class UpdateFileSystemCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateFileSystemCommand = (function (_super) {
7
+ __extends(UpdateFileSystemCommand, _super);
8
+ function UpdateFileSystemCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateFileSystemCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "EFSClient";
15
- const commandName = "UpdateFileSystemCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "EFSClient";
18
+ var commandName = "UpdateFileSystemCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateFileSystemRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: FileSystemDescriptionFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateFileSystemCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1UpdateFileSystemCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateFileSystemCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1UpdateFileSystemCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateFileSystemCommand;
38
+ }($Command));
39
+ export { UpdateFileSystemCommand };