@aws-sdk/client-accessanalyzer 3.183.0 → 3.186.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 (49) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/AccessAnalyzer.js +121 -114
  4. package/dist-es/AccessAnalyzerClient.js +28 -22
  5. package/dist-es/commands/ApplyArchiveRuleCommand.js +29 -22
  6. package/dist-es/commands/CancelPolicyGenerationCommand.js +28 -21
  7. package/dist-es/commands/CreateAccessPreviewCommand.js +28 -21
  8. package/dist-es/commands/CreateAnalyzerCommand.js +28 -21
  9. package/dist-es/commands/CreateArchiveRuleCommand.js +29 -22
  10. package/dist-es/commands/DeleteAnalyzerCommand.js +29 -22
  11. package/dist-es/commands/DeleteArchiveRuleCommand.js +29 -22
  12. package/dist-es/commands/GetAccessPreviewCommand.js +28 -21
  13. package/dist-es/commands/GetAnalyzedResourceCommand.js +28 -21
  14. package/dist-es/commands/GetAnalyzerCommand.js +28 -21
  15. package/dist-es/commands/GetArchiveRuleCommand.js +28 -21
  16. package/dist-es/commands/GetFindingCommand.js +28 -21
  17. package/dist-es/commands/GetGeneratedPolicyCommand.js +28 -21
  18. package/dist-es/commands/ListAccessPreviewFindingsCommand.js +28 -21
  19. package/dist-es/commands/ListAccessPreviewsCommand.js +28 -21
  20. package/dist-es/commands/ListAnalyzedResourcesCommand.js +28 -21
  21. package/dist-es/commands/ListAnalyzersCommand.js +28 -21
  22. package/dist-es/commands/ListArchiveRulesCommand.js +28 -21
  23. package/dist-es/commands/ListFindingsCommand.js +28 -21
  24. package/dist-es/commands/ListPolicyGenerationsCommand.js +28 -21
  25. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  26. package/dist-es/commands/StartPolicyGenerationCommand.js +28 -21
  27. package/dist-es/commands/StartResourceScanCommand.js +29 -22
  28. package/dist-es/commands/TagResourceCommand.js +28 -21
  29. package/dist-es/commands/UntagResourceCommand.js +28 -21
  30. package/dist-es/commands/UpdateArchiveRuleCommand.js +29 -22
  31. package/dist-es/commands/UpdateFindingsCommand.js +29 -22
  32. package/dist-es/commands/ValidatePolicyCommand.js +28 -21
  33. package/dist-es/endpoints.js +8 -8
  34. package/dist-es/models/AccessAnalyzerServiceException.js +10 -5
  35. package/dist-es/models/models_0.js +220 -409
  36. package/dist-es/pagination/ListAccessPreviewFindingsPaginator.js +68 -25
  37. package/dist-es/pagination/ListAccessPreviewsPaginator.js +68 -25
  38. package/dist-es/pagination/ListAnalyzedResourcesPaginator.js +68 -25
  39. package/dist-es/pagination/ListAnalyzersPaginator.js +68 -25
  40. package/dist-es/pagination/ListArchiveRulesPaginator.js +68 -25
  41. package/dist-es/pagination/ListFindingsPaginator.js +68 -25
  42. package/dist-es/pagination/ListPolicyGenerationsPaginator.js +68 -25
  43. package/dist-es/pagination/ValidatePolicyPaginator.js +68 -25
  44. package/dist-es/protocols/Aws_restJson1.js +3152 -2350
  45. package/dist-es/runtimeConfig.browser.js +12 -26
  46. package/dist-es/runtimeConfig.js +12 -30
  47. package/dist-es/runtimeConfig.native.js +5 -8
  48. package/dist-es/runtimeConfig.shared.js +11 -8
  49. package/package.json +33 -33
@@ -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 { ApplyArchiveRuleRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ApplyArchiveRuleCommand, serializeAws_restJson1ApplyArchiveRuleCommand, } from "../protocols/Aws_restJson1";
5
- export class ApplyArchiveRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ApplyArchiveRuleCommand = (function (_super) {
7
+ __extends(ApplyArchiveRuleCommand, _super);
8
+ function ApplyArchiveRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ApplyArchiveRuleCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "ApplyArchiveRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "ApplyArchiveRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ApplyArchiveRuleRequestFilterSensitiveLog,
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
+ ApplyArchiveRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ApplyArchiveRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ApplyArchiveRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ApplyArchiveRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ApplyArchiveRuleCommand;
38
+ }($Command));
39
+ export { ApplyArchiveRuleCommand };
@@ -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 { CancelPolicyGenerationRequestFilterSensitiveLog, CancelPolicyGenerationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CancelPolicyGenerationCommand, serializeAws_restJson1CancelPolicyGenerationCommand, } from "../protocols/Aws_restJson1";
5
- export class CancelPolicyGenerationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CancelPolicyGenerationCommand = (function (_super) {
7
+ __extends(CancelPolicyGenerationCommand, _super);
8
+ function CancelPolicyGenerationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CancelPolicyGenerationCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "CancelPolicyGenerationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "CancelPolicyGenerationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CancelPolicyGenerationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CancelPolicyGenerationResponseFilterSensitiveLog,
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
+ CancelPolicyGenerationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CancelPolicyGenerationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CancelPolicyGenerationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CancelPolicyGenerationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CancelPolicyGenerationCommand;
38
+ }($Command));
39
+ export { CancelPolicyGenerationCommand };
@@ -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 { CreateAccessPreviewRequestFilterSensitiveLog, CreateAccessPreviewResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateAccessPreviewCommand, serializeAws_restJson1CreateAccessPreviewCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateAccessPreviewCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateAccessPreviewCommand = (function (_super) {
7
+ __extends(CreateAccessPreviewCommand, _super);
8
+ function CreateAccessPreviewCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateAccessPreviewCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "CreateAccessPreviewCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "CreateAccessPreviewCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateAccessPreviewRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateAccessPreviewResponseFilterSensitiveLog,
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
+ CreateAccessPreviewCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateAccessPreviewCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateAccessPreviewCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateAccessPreviewCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateAccessPreviewCommand;
38
+ }($Command));
39
+ export { CreateAccessPreviewCommand };
@@ -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 { CreateAnalyzerRequestFilterSensitiveLog, CreateAnalyzerResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateAnalyzerCommand, serializeAws_restJson1CreateAnalyzerCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateAnalyzerCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateAnalyzerCommand = (function (_super) {
7
+ __extends(CreateAnalyzerCommand, _super);
8
+ function CreateAnalyzerCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateAnalyzerCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "CreateAnalyzerCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "CreateAnalyzerCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateAnalyzerRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateAnalyzerResponseFilterSensitiveLog,
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
+ CreateAnalyzerCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateAnalyzerCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateAnalyzerCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateAnalyzerCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateAnalyzerCommand;
38
+ }($Command));
39
+ export { CreateAnalyzerCommand };
@@ -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 { CreateArchiveRuleRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateArchiveRuleCommand, serializeAws_restJson1CreateArchiveRuleCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateArchiveRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateArchiveRuleCommand = (function (_super) {
7
+ __extends(CreateArchiveRuleCommand, _super);
8
+ function CreateArchiveRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateArchiveRuleCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "CreateArchiveRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "CreateArchiveRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateArchiveRuleRequestFilterSensitiveLog,
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
+ CreateArchiveRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateArchiveRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateArchiveRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateArchiveRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateArchiveRuleCommand;
38
+ }($Command));
39
+ export { CreateArchiveRuleCommand };
@@ -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 { DeleteAnalyzerRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteAnalyzerCommand, serializeAws_restJson1DeleteAnalyzerCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteAnalyzerCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteAnalyzerCommand = (function (_super) {
7
+ __extends(DeleteAnalyzerCommand, _super);
8
+ function DeleteAnalyzerCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteAnalyzerCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "DeleteAnalyzerCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "DeleteAnalyzerCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteAnalyzerRequestFilterSensitiveLog,
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
+ DeleteAnalyzerCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteAnalyzerCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteAnalyzerCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteAnalyzerCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteAnalyzerCommand;
38
+ }($Command));
39
+ export { DeleteAnalyzerCommand };
@@ -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 { DeleteArchiveRuleRequestFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteArchiveRuleCommand, serializeAws_restJson1DeleteArchiveRuleCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteArchiveRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteArchiveRuleCommand = (function (_super) {
7
+ __extends(DeleteArchiveRuleCommand, _super);
8
+ function DeleteArchiveRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteArchiveRuleCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "DeleteArchiveRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "DeleteArchiveRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteArchiveRuleRequestFilterSensitiveLog,
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
+ DeleteArchiveRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteArchiveRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteArchiveRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteArchiveRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteArchiveRuleCommand;
38
+ }($Command));
39
+ export { DeleteArchiveRuleCommand };
@@ -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 { GetAccessPreviewRequestFilterSensitiveLog, GetAccessPreviewResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetAccessPreviewCommand, serializeAws_restJson1GetAccessPreviewCommand, } from "../protocols/Aws_restJson1";
5
- export class GetAccessPreviewCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetAccessPreviewCommand = (function (_super) {
7
+ __extends(GetAccessPreviewCommand, _super);
8
+ function GetAccessPreviewCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetAccessPreviewCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "GetAccessPreviewCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "GetAccessPreviewCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetAccessPreviewRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetAccessPreviewResponseFilterSensitiveLog,
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
+ GetAccessPreviewCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetAccessPreviewCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetAccessPreviewCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetAccessPreviewCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetAccessPreviewCommand;
38
+ }($Command));
39
+ export { GetAccessPreviewCommand };
@@ -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 { GetAnalyzedResourceRequestFilterSensitiveLog, GetAnalyzedResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetAnalyzedResourceCommand, serializeAws_restJson1GetAnalyzedResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class GetAnalyzedResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetAnalyzedResourceCommand = (function (_super) {
7
+ __extends(GetAnalyzedResourceCommand, _super);
8
+ function GetAnalyzedResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetAnalyzedResourceCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "GetAnalyzedResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "GetAnalyzedResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetAnalyzedResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetAnalyzedResourceResponseFilterSensitiveLog,
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
+ GetAnalyzedResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetAnalyzedResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetAnalyzedResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetAnalyzedResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetAnalyzedResourceCommand;
38
+ }($Command));
39
+ export { GetAnalyzedResourceCommand };
@@ -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 { GetAnalyzerRequestFilterSensitiveLog, GetAnalyzerResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetAnalyzerCommand, serializeAws_restJson1GetAnalyzerCommand, } from "../protocols/Aws_restJson1";
5
- export class GetAnalyzerCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetAnalyzerCommand = (function (_super) {
7
+ __extends(GetAnalyzerCommand, _super);
8
+ function GetAnalyzerCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetAnalyzerCommand.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 = "AccessAnalyzerClient";
15
- const commandName = "GetAnalyzerCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AccessAnalyzerClient";
18
+ var commandName = "GetAnalyzerCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetAnalyzerRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetAnalyzerResponseFilterSensitiveLog,
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
+ GetAnalyzerCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetAnalyzerCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetAnalyzerCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetAnalyzerCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetAnalyzerCommand;
38
+ }($Command));
39
+ export { GetAnalyzerCommand };