@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AccessAnalyzer.d.ts +508 -145
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/AccessAnalyzerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1473 -1366
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAccessPreviewFindingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAccessPreviewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAnalyzedResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAnalyzersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListArchiveRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ValidatePolicyPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- 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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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>;
|