@aws-sdk/client-accessanalyzer 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/AccessAnalyzer.d.ts +508 -145
  3. package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +33 -17
  9. package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +33 -17
  11. package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +33 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +33 -17
  30. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +32 -17
  31. package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/AccessAnalyzerServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +1473 -1366
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  39. package/dist-types/ts3.4/pagination/ListAccessPreviewFindingsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListAccessPreviewsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListAnalyzedResourcesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListAnalyzersPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListArchiveRulesPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ValidatePolicyPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  53. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { AccessAnalyzer } from "../AccessAnalyzer";
3
- import { AccessAnalyzerClient } from "../AccessAnalyzerClient";
4
- export interface AccessAnalyzerPaginationConfiguration extends PaginationConfiguration {
5
- client: AccessAnalyzer | AccessAnalyzerClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { AccessAnalyzer } from "../AccessAnalyzer";
3
+ import { AccessAnalyzerClient } from "../AccessAnalyzerClient";
4
+ export interface AccessAnalyzerPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: AccessAnalyzer | AccessAnalyzerClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput } from "../commands/ListAccessPreviewFindingsCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAccessPreviewFindings(config: AccessAnalyzerPaginationConfiguration, input: ListAccessPreviewFindingsCommandInput, ...additionalArguments: any): Paginator<ListAccessPreviewFindingsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAccessPreviewFindingsCommandInput,
4
+ ListAccessPreviewFindingsCommandOutput,
5
+ } from "../commands/ListAccessPreviewFindingsCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAccessPreviewFindings(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListAccessPreviewFindingsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAccessPreviewFindingsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput } from "../commands/ListAccessPreviewsCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAccessPreviews(config: AccessAnalyzerPaginationConfiguration, input: ListAccessPreviewsCommandInput, ...additionalArguments: any): Paginator<ListAccessPreviewsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAccessPreviewsCommandInput,
4
+ ListAccessPreviewsCommandOutput,
5
+ } from "../commands/ListAccessPreviewsCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAccessPreviews(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListAccessPreviewsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAccessPreviewsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput } from "../commands/ListAnalyzedResourcesCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAnalyzedResources(config: AccessAnalyzerPaginationConfiguration, input: ListAnalyzedResourcesCommandInput, ...additionalArguments: any): Paginator<ListAnalyzedResourcesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAnalyzedResourcesCommandInput,
4
+ ListAnalyzedResourcesCommandOutput,
5
+ } from "../commands/ListAnalyzedResourcesCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAnalyzedResources(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListAnalyzedResourcesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAnalyzedResourcesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAnalyzersCommandInput, ListAnalyzersCommandOutput } from "../commands/ListAnalyzersCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAnalyzers(config: AccessAnalyzerPaginationConfiguration, input: ListAnalyzersCommandInput, ...additionalArguments: any): Paginator<ListAnalyzersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAnalyzersCommandInput,
4
+ ListAnalyzersCommandOutput,
5
+ } from "../commands/ListAnalyzersCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAnalyzers(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListAnalyzersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAnalyzersCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput } from "../commands/ListArchiveRulesCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListArchiveRules(config: AccessAnalyzerPaginationConfiguration, input: ListArchiveRulesCommandInput, ...additionalArguments: any): Paginator<ListArchiveRulesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListArchiveRulesCommandInput,
4
+ ListArchiveRulesCommandOutput,
5
+ } from "../commands/ListArchiveRulesCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListArchiveRules(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListArchiveRulesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListArchiveRulesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFindingsCommandInput, ListFindingsCommandOutput } from "../commands/ListFindingsCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFindings(config: AccessAnalyzerPaginationConfiguration, input: ListFindingsCommandInput, ...additionalArguments: any): Paginator<ListFindingsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFindingsCommandInput,
4
+ ListFindingsCommandOutput,
5
+ } from "../commands/ListFindingsCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListFindings(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListFindingsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFindingsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "../commands/ListPolicyGenerationsCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListPolicyGenerations(config: AccessAnalyzerPaginationConfiguration, input: ListPolicyGenerationsCommandInput, ...additionalArguments: any): Paginator<ListPolicyGenerationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListPolicyGenerationsCommandInput,
4
+ ListPolicyGenerationsCommandOutput,
5
+ } from "../commands/ListPolicyGenerationsCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPolicyGenerations(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ListPolicyGenerationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPolicyGenerationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "../commands/ValidatePolicyCommand";
3
- import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateValidatePolicy(config: AccessAnalyzerPaginationConfiguration, input: ValidatePolicyCommandInput, ...additionalArguments: any): Paginator<ValidatePolicyCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ValidatePolicyCommandInput,
4
+ ValidatePolicyCommandOutput,
5
+ } from "../commands/ValidatePolicyCommand";
6
+ import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateValidatePolicy(
8
+ config: AccessAnalyzerPaginationConfiguration,
9
+ input: ValidatePolicyCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ValidatePolicyCommandOutput>;
@@ -1,9 +1,9 @@
1
- export * from "./Interfaces";
2
- export * from "./ListAccessPreviewFindingsPaginator";
3
- export * from "./ListAccessPreviewsPaginator";
4
- export * from "./ListAnalyzedResourcesPaginator";
5
- export * from "./ListAnalyzersPaginator";
6
- export * from "./ListArchiveRulesPaginator";
7
- export * from "./ListFindingsPaginator";
8
- export * from "./ListPolicyGenerationsPaginator";
9
- export * from "./ValidatePolicyPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListAccessPreviewFindingsPaginator";
3
+ export * from "./ListAccessPreviewsPaginator";
4
+ export * from "./ListAnalyzedResourcesPaginator";
5
+ export * from "./ListAnalyzersPaginator";
6
+ export * from "./ListArchiveRulesPaginator";
7
+ export * from "./ListFindingsPaginator";
8
+ export * from "./ListPolicyGenerationsPaginator";
9
+ export * from "./ValidatePolicyPaginator";
@@ -1,86 +1,341 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput } from "../commands/ApplyArchiveRuleCommand";
4
- import { CancelPolicyGenerationCommandInput, CancelPolicyGenerationCommandOutput } from "../commands/CancelPolicyGenerationCommand";
5
- import { CreateAccessPreviewCommandInput, CreateAccessPreviewCommandOutput } from "../commands/CreateAccessPreviewCommand";
6
- import { CreateAnalyzerCommandInput, CreateAnalyzerCommandOutput } from "../commands/CreateAnalyzerCommand";
7
- import { CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput } from "../commands/CreateArchiveRuleCommand";
8
- import { DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput } from "../commands/DeleteAnalyzerCommand";
9
- import { DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput } from "../commands/DeleteArchiveRuleCommand";
10
- import { GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput } from "../commands/GetAccessPreviewCommand";
11
- import { GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput } from "../commands/GetAnalyzedResourceCommand";
12
- import { GetAnalyzerCommandInput, GetAnalyzerCommandOutput } from "../commands/GetAnalyzerCommand";
13
- import { GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput } from "../commands/GetArchiveRuleCommand";
14
- import { GetFindingCommandInput, GetFindingCommandOutput } from "../commands/GetFindingCommand";
15
- import { GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput } from "../commands/GetGeneratedPolicyCommand";
16
- import { ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput } from "../commands/ListAccessPreviewFindingsCommand";
17
- import { ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput } from "../commands/ListAccessPreviewsCommand";
18
- import { ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput } from "../commands/ListAnalyzedResourcesCommand";
19
- import { ListAnalyzersCommandInput, ListAnalyzersCommandOutput } from "../commands/ListAnalyzersCommand";
20
- import { ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput } from "../commands/ListArchiveRulesCommand";
21
- import { ListFindingsCommandInput, ListFindingsCommandOutput } from "../commands/ListFindingsCommand";
22
- import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "../commands/ListPolicyGenerationsCommand";
23
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
24
- import { StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput } from "../commands/StartPolicyGenerationCommand";
25
- import { StartResourceScanCommandInput, StartResourceScanCommandOutput } from "../commands/StartResourceScanCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
27
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
28
- import { UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput } from "../commands/UpdateArchiveRuleCommand";
29
- import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "../commands/UpdateFindingsCommand";
30
- import { ValidatePolicyCommandInput, ValidatePolicyCommandOutput } from "../commands/ValidatePolicyCommand";
31
- export declare const serializeAws_restJson1ApplyArchiveRuleCommand: (input: ApplyArchiveRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1CancelPolicyGenerationCommand: (input: CancelPolicyGenerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1CreateAccessPreviewCommand: (input: CreateAccessPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1CreateAnalyzerCommand: (input: CreateAnalyzerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1CreateArchiveRuleCommand: (input: CreateArchiveRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DeleteAnalyzerCommand: (input: DeleteAnalyzerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeleteArchiveRuleCommand: (input: DeleteArchiveRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1GetAccessPreviewCommand: (input: GetAccessPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1GetAnalyzedResourceCommand: (input: GetAnalyzedResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetAnalyzerCommand: (input: GetAnalyzerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetArchiveRuleCommand: (input: GetArchiveRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetFindingCommand: (input: GetFindingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetGeneratedPolicyCommand: (input: GetGeneratedPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ListAccessPreviewFindingsCommand: (input: ListAccessPreviewFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListAccessPreviewsCommand: (input: ListAccessPreviewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListAnalyzedResourcesCommand: (input: ListAnalyzedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListAnalyzersCommand: (input: ListAnalyzersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListArchiveRulesCommand: (input: ListArchiveRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1ListFindingsCommand: (input: ListFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1ListPolicyGenerationsCommand: (input: ListPolicyGenerationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1StartPolicyGenerationCommand: (input: StartPolicyGenerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1StartResourceScanCommand: (input: StartResourceScanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1UpdateArchiveRuleCommand: (input: UpdateArchiveRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1UpdateFindingsCommand: (input: UpdateFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1ValidatePolicyCommand: (input: ValidatePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const deserializeAws_restJson1ApplyArchiveRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ApplyArchiveRuleCommandOutput>;
60
- export declare const deserializeAws_restJson1CancelPolicyGenerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelPolicyGenerationCommandOutput>;
61
- export declare const deserializeAws_restJson1CreateAccessPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAccessPreviewCommandOutput>;
62
- export declare const deserializeAws_restJson1CreateAnalyzerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAnalyzerCommandOutput>;
63
- export declare const deserializeAws_restJson1CreateArchiveRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateArchiveRuleCommandOutput>;
64
- export declare const deserializeAws_restJson1DeleteAnalyzerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAnalyzerCommandOutput>;
65
- export declare const deserializeAws_restJson1DeleteArchiveRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteArchiveRuleCommandOutput>;
66
- export declare const deserializeAws_restJson1GetAccessPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccessPreviewCommandOutput>;
67
- export declare const deserializeAws_restJson1GetAnalyzedResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnalyzedResourceCommandOutput>;
68
- export declare const deserializeAws_restJson1GetAnalyzerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnalyzerCommandOutput>;
69
- export declare const deserializeAws_restJson1GetArchiveRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetArchiveRuleCommandOutput>;
70
- export declare const deserializeAws_restJson1GetFindingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFindingCommandOutput>;
71
- export declare const deserializeAws_restJson1GetGeneratedPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGeneratedPolicyCommandOutput>;
72
- export declare const deserializeAws_restJson1ListAccessPreviewFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPreviewFindingsCommandOutput>;
73
- export declare const deserializeAws_restJson1ListAccessPreviewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPreviewsCommandOutput>;
74
- export declare const deserializeAws_restJson1ListAnalyzedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnalyzedResourcesCommandOutput>;
75
- export declare const deserializeAws_restJson1ListAnalyzersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnalyzersCommandOutput>;
76
- export declare const deserializeAws_restJson1ListArchiveRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListArchiveRulesCommandOutput>;
77
- export declare const deserializeAws_restJson1ListFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFindingsCommandOutput>;
78
- export declare const deserializeAws_restJson1ListPolicyGenerationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPolicyGenerationsCommandOutput>;
79
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
80
- export declare const deserializeAws_restJson1StartPolicyGenerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartPolicyGenerationCommandOutput>;
81
- export declare const deserializeAws_restJson1StartResourceScanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartResourceScanCommandOutput>;
82
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
83
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
84
- export declare const deserializeAws_restJson1UpdateArchiveRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateArchiveRuleCommandOutput>;
85
- export declare const deserializeAws_restJson1UpdateFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFindingsCommandOutput>;
86
- export declare const deserializeAws_restJson1ValidatePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ValidatePolicyCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ ApplyArchiveRuleCommandInput,
8
+ ApplyArchiveRuleCommandOutput,
9
+ } from "../commands/ApplyArchiveRuleCommand";
10
+ import {
11
+ CancelPolicyGenerationCommandInput,
12
+ CancelPolicyGenerationCommandOutput,
13
+ } from "../commands/CancelPolicyGenerationCommand";
14
+ import {
15
+ CreateAccessPreviewCommandInput,
16
+ CreateAccessPreviewCommandOutput,
17
+ } from "../commands/CreateAccessPreviewCommand";
18
+ import {
19
+ CreateAnalyzerCommandInput,
20
+ CreateAnalyzerCommandOutput,
21
+ } from "../commands/CreateAnalyzerCommand";
22
+ import {
23
+ CreateArchiveRuleCommandInput,
24
+ CreateArchiveRuleCommandOutput,
25
+ } from "../commands/CreateArchiveRuleCommand";
26
+ import {
27
+ DeleteAnalyzerCommandInput,
28
+ DeleteAnalyzerCommandOutput,
29
+ } from "../commands/DeleteAnalyzerCommand";
30
+ import {
31
+ DeleteArchiveRuleCommandInput,
32
+ DeleteArchiveRuleCommandOutput,
33
+ } from "../commands/DeleteArchiveRuleCommand";
34
+ import {
35
+ GetAccessPreviewCommandInput,
36
+ GetAccessPreviewCommandOutput,
37
+ } from "../commands/GetAccessPreviewCommand";
38
+ import {
39
+ GetAnalyzedResourceCommandInput,
40
+ GetAnalyzedResourceCommandOutput,
41
+ } from "../commands/GetAnalyzedResourceCommand";
42
+ import {
43
+ GetAnalyzerCommandInput,
44
+ GetAnalyzerCommandOutput,
45
+ } from "../commands/GetAnalyzerCommand";
46
+ import {
47
+ GetArchiveRuleCommandInput,
48
+ GetArchiveRuleCommandOutput,
49
+ } from "../commands/GetArchiveRuleCommand";
50
+ import {
51
+ GetFindingCommandInput,
52
+ GetFindingCommandOutput,
53
+ } from "../commands/GetFindingCommand";
54
+ import {
55
+ GetGeneratedPolicyCommandInput,
56
+ GetGeneratedPolicyCommandOutput,
57
+ } from "../commands/GetGeneratedPolicyCommand";
58
+ import {
59
+ ListAccessPreviewFindingsCommandInput,
60
+ ListAccessPreviewFindingsCommandOutput,
61
+ } from "../commands/ListAccessPreviewFindingsCommand";
62
+ import {
63
+ ListAccessPreviewsCommandInput,
64
+ ListAccessPreviewsCommandOutput,
65
+ } from "../commands/ListAccessPreviewsCommand";
66
+ import {
67
+ ListAnalyzedResourcesCommandInput,
68
+ ListAnalyzedResourcesCommandOutput,
69
+ } from "../commands/ListAnalyzedResourcesCommand";
70
+ import {
71
+ ListAnalyzersCommandInput,
72
+ ListAnalyzersCommandOutput,
73
+ } from "../commands/ListAnalyzersCommand";
74
+ import {
75
+ ListArchiveRulesCommandInput,
76
+ ListArchiveRulesCommandOutput,
77
+ } from "../commands/ListArchiveRulesCommand";
78
+ import {
79
+ ListFindingsCommandInput,
80
+ ListFindingsCommandOutput,
81
+ } from "../commands/ListFindingsCommand";
82
+ import {
83
+ ListPolicyGenerationsCommandInput,
84
+ ListPolicyGenerationsCommandOutput,
85
+ } from "../commands/ListPolicyGenerationsCommand";
86
+ import {
87
+ ListTagsForResourceCommandInput,
88
+ ListTagsForResourceCommandOutput,
89
+ } from "../commands/ListTagsForResourceCommand";
90
+ import {
91
+ StartPolicyGenerationCommandInput,
92
+ StartPolicyGenerationCommandOutput,
93
+ } from "../commands/StartPolicyGenerationCommand";
94
+ import {
95
+ StartResourceScanCommandInput,
96
+ StartResourceScanCommandOutput,
97
+ } from "../commands/StartResourceScanCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "../commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "../commands/UntagResourceCommand";
106
+ import {
107
+ UpdateArchiveRuleCommandInput,
108
+ UpdateArchiveRuleCommandOutput,
109
+ } from "../commands/UpdateArchiveRuleCommand";
110
+ import {
111
+ UpdateFindingsCommandInput,
112
+ UpdateFindingsCommandOutput,
113
+ } from "../commands/UpdateFindingsCommand";
114
+ import {
115
+ ValidatePolicyCommandInput,
116
+ ValidatePolicyCommandOutput,
117
+ } from "../commands/ValidatePolicyCommand";
118
+ export declare const serializeAws_restJson1ApplyArchiveRuleCommand: (
119
+ input: ApplyArchiveRuleCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1CancelPolicyGenerationCommand: (
123
+ input: CancelPolicyGenerationCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1CreateAccessPreviewCommand: (
127
+ input: CreateAccessPreviewCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1CreateAnalyzerCommand: (
131
+ input: CreateAnalyzerCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1CreateArchiveRuleCommand: (
135
+ input: CreateArchiveRuleCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1DeleteAnalyzerCommand: (
139
+ input: DeleteAnalyzerCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DeleteArchiveRuleCommand: (
143
+ input: DeleteArchiveRuleCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1GetAccessPreviewCommand: (
147
+ input: GetAccessPreviewCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1GetAnalyzedResourceCommand: (
151
+ input: GetAnalyzedResourceCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetAnalyzerCommand: (
155
+ input: GetAnalyzerCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetArchiveRuleCommand: (
159
+ input: GetArchiveRuleCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GetFindingCommand: (
163
+ input: GetFindingCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1GetGeneratedPolicyCommand: (
167
+ input: GetGeneratedPolicyCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1ListAccessPreviewFindingsCommand: (
171
+ input: ListAccessPreviewFindingsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListAccessPreviewsCommand: (
175
+ input: ListAccessPreviewsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListAnalyzedResourcesCommand: (
179
+ input: ListAnalyzedResourcesCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListAnalyzersCommand: (
183
+ input: ListAnalyzersCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ListArchiveRulesCommand: (
187
+ input: ListArchiveRulesCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1ListFindingsCommand: (
191
+ input: ListFindingsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1ListPolicyGenerationsCommand: (
195
+ input: ListPolicyGenerationsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
199
+ input: ListTagsForResourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1StartPolicyGenerationCommand: (
203
+ input: StartPolicyGenerationCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1StartResourceScanCommand: (
207
+ input: StartResourceScanCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1TagResourceCommand: (
211
+ input: TagResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1UntagResourceCommand: (
215
+ input: UntagResourceCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1UpdateArchiveRuleCommand: (
219
+ input: UpdateArchiveRuleCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1UpdateFindingsCommand: (
223
+ input: UpdateFindingsCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1ValidatePolicyCommand: (
227
+ input: ValidatePolicyCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const deserializeAws_restJson1ApplyArchiveRuleCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ApplyArchiveRuleCommandOutput>;
234
+ export declare const deserializeAws_restJson1CancelPolicyGenerationCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<CancelPolicyGenerationCommandOutput>;
238
+ export declare const deserializeAws_restJson1CreateAccessPreviewCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<CreateAccessPreviewCommandOutput>;
242
+ export declare const deserializeAws_restJson1CreateAnalyzerCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<CreateAnalyzerCommandOutput>;
246
+ export declare const deserializeAws_restJson1CreateArchiveRuleCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<CreateArchiveRuleCommandOutput>;
250
+ export declare const deserializeAws_restJson1DeleteAnalyzerCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DeleteAnalyzerCommandOutput>;
254
+ export declare const deserializeAws_restJson1DeleteArchiveRuleCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<DeleteArchiveRuleCommandOutput>;
258
+ export declare const deserializeAws_restJson1GetAccessPreviewCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetAccessPreviewCommandOutput>;
262
+ export declare const deserializeAws_restJson1GetAnalyzedResourceCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetAnalyzedResourceCommandOutput>;
266
+ export declare const deserializeAws_restJson1GetAnalyzerCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetAnalyzerCommandOutput>;
270
+ export declare const deserializeAws_restJson1GetArchiveRuleCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetArchiveRuleCommandOutput>;
274
+ export declare const deserializeAws_restJson1GetFindingCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetFindingCommandOutput>;
278
+ export declare const deserializeAws_restJson1GetGeneratedPolicyCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetGeneratedPolicyCommandOutput>;
282
+ export declare const deserializeAws_restJson1ListAccessPreviewFindingsCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListAccessPreviewFindingsCommandOutput>;
286
+ export declare const deserializeAws_restJson1ListAccessPreviewsCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListAccessPreviewsCommandOutput>;
290
+ export declare const deserializeAws_restJson1ListAnalyzedResourcesCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListAnalyzedResourcesCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListAnalyzersCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListAnalyzersCommandOutput>;
298
+ export declare const deserializeAws_restJson1ListArchiveRulesCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListArchiveRulesCommandOutput>;
302
+ export declare const deserializeAws_restJson1ListFindingsCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListFindingsCommandOutput>;
306
+ export declare const deserializeAws_restJson1ListPolicyGenerationsCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<ListPolicyGenerationsCommandOutput>;
310
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<ListTagsForResourceCommandOutput>;
314
+ export declare const deserializeAws_restJson1StartPolicyGenerationCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<StartPolicyGenerationCommandOutput>;
318
+ export declare const deserializeAws_restJson1StartResourceScanCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<StartResourceScanCommandOutput>;
322
+ export declare const deserializeAws_restJson1TagResourceCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<TagResourceCommandOutput>;
326
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UntagResourceCommandOutput>;
330
+ export declare const deserializeAws_restJson1UpdateArchiveRuleCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<UpdateArchiveRuleCommandOutput>;
334
+ export declare const deserializeAws_restJson1UpdateFindingsCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<UpdateFindingsCommandOutput>;
338
+ export declare const deserializeAws_restJson1ValidatePolicyCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<ValidatePolicyCommandOutput>;