@aws-sdk/client-accessanalyzer 3.454.0 → 3.458.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/README.md +84 -37
- package/dist-cjs/AccessAnalyzer.js +8 -0
- package/dist-cjs/commands/CheckAccessNotGrantedCommand.js +52 -0
- package/dist-cjs/commands/CheckNoNewAccessCommand.js +52 -0
- package/dist-cjs/commands/GetFindingV2Command.js +51 -0
- package/dist-cjs/commands/ListFindingsV2Command.js +51 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +83 -1
- package/dist-cjs/pagination/GetFindingV2Paginator.js +29 -0
- package/dist-cjs/pagination/ListFindingsV2Paginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +426 -2
- package/dist-es/AccessAnalyzer.js +8 -0
- package/dist-es/commands/CheckAccessNotGrantedCommand.js +48 -0
- package/dist-es/commands/CheckNoNewAccessCommand.js +48 -0
- package/dist-es/commands/GetFindingV2Command.js +47 -0
- package/dist-es/commands/ListFindingsV2Command.js +47 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +78 -0
- package/dist-es/pagination/GetFindingV2Paginator.js +25 -0
- package/dist-es/pagination/ListFindingsV2Paginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +417 -1
- package/dist-types/AccessAnalyzer.d.ts +52 -9
- package/dist-types/AccessAnalyzerClient.d.ts +30 -11
- package/dist-types/commands/CheckAccessNotGrantedCommand.d.ts +107 -0
- package/dist-types/commands/CheckNoNewAccessCommand.d.ts +106 -0
- package/dist-types/commands/CreateAnalyzerCommand.d.ts +5 -0
- package/dist-types/commands/GetAnalyzerCommand.d.ts +5 -0
- package/dist-types/commands/GetFindingV2Command.d.ts +146 -0
- package/dist-types/commands/ListAnalyzersCommand.d.ts +5 -0
- package/dist-types/commands/ListFindingsV2Command.d.ts +123 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +24 -9
- package/dist-types/models/models_0.d.ts +705 -11
- package/dist-types/pagination/GetFindingV2Paginator.d.ts +7 -0
- package/dist-types/pagination/ListFindingsV2Paginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/AccessAnalyzer.d.ts +68 -0
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CheckAccessNotGrantedCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CheckNoNewAccessCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetFindingV2Command.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListFindingsV2Command.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +238 -1
- package/dist-types/ts3.4/pagination/GetFindingV2Paginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFindingsV2Paginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetFindingV2CommandInput, GetFindingV2CommandOutput } from "../commands/GetFindingV2Command";
|
|
3
|
+
import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateGetFindingV2(config: AccessAnalyzerPaginationConfiguration, input: GetFindingV2CommandInput, ...additionalArguments: any): Paginator<GetFindingV2CommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListFindingsV2CommandInput, ListFindingsV2CommandOutput } from "../commands/ListFindingsV2Command";
|
|
3
|
+
import { AccessAnalyzerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListFindingsV2(config: AccessAnalyzerPaginationConfiguration, input: ListFindingsV2CommandInput, ...additionalArguments: any): Paginator<ListFindingsV2CommandOutput>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./GetFindingV2Paginator";
|
|
1
2
|
export * from "./Interfaces";
|
|
2
3
|
export * from "./ListAccessPreviewFindingsPaginator";
|
|
3
4
|
export * from "./ListAccessPreviewsPaginator";
|
|
@@ -5,5 +6,6 @@ export * from "./ListAnalyzedResourcesPaginator";
|
|
|
5
6
|
export * from "./ListAnalyzersPaginator";
|
|
6
7
|
export * from "./ListArchiveRulesPaginator";
|
|
7
8
|
export * from "./ListFindingsPaginator";
|
|
9
|
+
export * from "./ListFindingsV2Paginator";
|
|
8
10
|
export * from "./ListPolicyGenerationsPaginator";
|
|
9
11
|
export * from "./ValidatePolicyPaginator";
|
|
@@ -2,6 +2,8 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput } from "../commands/ApplyArchiveRuleCommand";
|
|
4
4
|
import { CancelPolicyGenerationCommandInput, CancelPolicyGenerationCommandOutput } from "../commands/CancelPolicyGenerationCommand";
|
|
5
|
+
import { CheckAccessNotGrantedCommandInput, CheckAccessNotGrantedCommandOutput } from "../commands/CheckAccessNotGrantedCommand";
|
|
6
|
+
import { CheckNoNewAccessCommandInput, CheckNoNewAccessCommandOutput } from "../commands/CheckNoNewAccessCommand";
|
|
5
7
|
import { CreateAccessPreviewCommandInput, CreateAccessPreviewCommandOutput } from "../commands/CreateAccessPreviewCommand";
|
|
6
8
|
import { CreateAnalyzerCommandInput, CreateAnalyzerCommandOutput } from "../commands/CreateAnalyzerCommand";
|
|
7
9
|
import { CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput } from "../commands/CreateArchiveRuleCommand";
|
|
@@ -12,6 +14,7 @@ import { GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput } fro
|
|
|
12
14
|
import { GetAnalyzerCommandInput, GetAnalyzerCommandOutput } from "../commands/GetAnalyzerCommand";
|
|
13
15
|
import { GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput } from "../commands/GetArchiveRuleCommand";
|
|
14
16
|
import { GetFindingCommandInput, GetFindingCommandOutput } from "../commands/GetFindingCommand";
|
|
17
|
+
import { GetFindingV2CommandInput, GetFindingV2CommandOutput } from "../commands/GetFindingV2Command";
|
|
15
18
|
import { GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput } from "../commands/GetGeneratedPolicyCommand";
|
|
16
19
|
import { ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput } from "../commands/ListAccessPreviewFindingsCommand";
|
|
17
20
|
import { ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput } from "../commands/ListAccessPreviewsCommand";
|
|
@@ -19,6 +22,7 @@ import { ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput }
|
|
|
19
22
|
import { ListAnalyzersCommandInput, ListAnalyzersCommandOutput } from "../commands/ListAnalyzersCommand";
|
|
20
23
|
import { ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput } from "../commands/ListArchiveRulesCommand";
|
|
21
24
|
import { ListFindingsCommandInput, ListFindingsCommandOutput } from "../commands/ListFindingsCommand";
|
|
25
|
+
import { ListFindingsV2CommandInput, ListFindingsV2CommandOutput } from "../commands/ListFindingsV2Command";
|
|
22
26
|
import { ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput } from "../commands/ListPolicyGenerationsCommand";
|
|
23
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
28
|
import { StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput } from "../commands/StartPolicyGenerationCommand";
|
|
@@ -36,6 +40,14 @@ export declare const se_ApplyArchiveRuleCommand: (input: ApplyArchiveRuleCommand
|
|
|
36
40
|
* serializeAws_restJson1CancelPolicyGenerationCommand
|
|
37
41
|
*/
|
|
38
42
|
export declare const se_CancelPolicyGenerationCommand: (input: CancelPolicyGenerationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1CheckAccessNotGrantedCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_CheckAccessNotGrantedCommand: (input: CheckAccessNotGrantedCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1CheckNoNewAccessCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_CheckNoNewAccessCommand: (input: CheckNoNewAccessCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
51
|
/**
|
|
40
52
|
* serializeAws_restJson1CreateAccessPreviewCommand
|
|
41
53
|
*/
|
|
@@ -76,6 +88,10 @@ export declare const se_GetArchiveRuleCommand: (input: GetArchiveRuleCommandInpu
|
|
|
76
88
|
* serializeAws_restJson1GetFindingCommand
|
|
77
89
|
*/
|
|
78
90
|
export declare const se_GetFindingCommand: (input: GetFindingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
+
/**
|
|
92
|
+
* serializeAws_restJson1GetFindingV2Command
|
|
93
|
+
*/
|
|
94
|
+
export declare const se_GetFindingV2Command: (input: GetFindingV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
95
|
/**
|
|
80
96
|
* serializeAws_restJson1GetGeneratedPolicyCommand
|
|
81
97
|
*/
|
|
@@ -104,6 +120,10 @@ export declare const se_ListArchiveRulesCommand: (input: ListArchiveRulesCommand
|
|
|
104
120
|
* serializeAws_restJson1ListFindingsCommand
|
|
105
121
|
*/
|
|
106
122
|
export declare const se_ListFindingsCommand: (input: ListFindingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
/**
|
|
124
|
+
* serializeAws_restJson1ListFindingsV2Command
|
|
125
|
+
*/
|
|
126
|
+
export declare const se_ListFindingsV2Command: (input: ListFindingsV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
127
|
/**
|
|
108
128
|
* serializeAws_restJson1ListPolicyGenerationsCommand
|
|
109
129
|
*/
|
|
@@ -148,6 +168,14 @@ export declare const de_ApplyArchiveRuleCommand: (output: __HttpResponse, contex
|
|
|
148
168
|
* deserializeAws_restJson1CancelPolicyGenerationCommand
|
|
149
169
|
*/
|
|
150
170
|
export declare const de_CancelPolicyGenerationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelPolicyGenerationCommandOutput>;
|
|
171
|
+
/**
|
|
172
|
+
* deserializeAws_restJson1CheckAccessNotGrantedCommand
|
|
173
|
+
*/
|
|
174
|
+
export declare const de_CheckAccessNotGrantedCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CheckAccessNotGrantedCommandOutput>;
|
|
175
|
+
/**
|
|
176
|
+
* deserializeAws_restJson1CheckNoNewAccessCommand
|
|
177
|
+
*/
|
|
178
|
+
export declare const de_CheckNoNewAccessCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CheckNoNewAccessCommandOutput>;
|
|
151
179
|
/**
|
|
152
180
|
* deserializeAws_restJson1CreateAccessPreviewCommand
|
|
153
181
|
*/
|
|
@@ -188,6 +216,10 @@ export declare const de_GetArchiveRuleCommand: (output: __HttpResponse, context:
|
|
|
188
216
|
* deserializeAws_restJson1GetFindingCommand
|
|
189
217
|
*/
|
|
190
218
|
export declare const de_GetFindingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFindingCommandOutput>;
|
|
219
|
+
/**
|
|
220
|
+
* deserializeAws_restJson1GetFindingV2Command
|
|
221
|
+
*/
|
|
222
|
+
export declare const de_GetFindingV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFindingV2CommandOutput>;
|
|
191
223
|
/**
|
|
192
224
|
* deserializeAws_restJson1GetGeneratedPolicyCommand
|
|
193
225
|
*/
|
|
@@ -216,6 +248,10 @@ export declare const de_ListArchiveRulesCommand: (output: __HttpResponse, contex
|
|
|
216
248
|
* deserializeAws_restJson1ListFindingsCommand
|
|
217
249
|
*/
|
|
218
250
|
export declare const de_ListFindingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFindingsCommandOutput>;
|
|
251
|
+
/**
|
|
252
|
+
* deserializeAws_restJson1ListFindingsV2Command
|
|
253
|
+
*/
|
|
254
|
+
export declare const de_ListFindingsV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFindingsV2CommandOutput>;
|
|
219
255
|
/**
|
|
220
256
|
* deserializeAws_restJson1ListPolicyGenerationsCommand
|
|
221
257
|
*/
|
|
@@ -8,6 +8,14 @@ import {
|
|
|
8
8
|
CancelPolicyGenerationCommandInput,
|
|
9
9
|
CancelPolicyGenerationCommandOutput,
|
|
10
10
|
} from "./commands/CancelPolicyGenerationCommand";
|
|
11
|
+
import {
|
|
12
|
+
CheckAccessNotGrantedCommandInput,
|
|
13
|
+
CheckAccessNotGrantedCommandOutput,
|
|
14
|
+
} from "./commands/CheckAccessNotGrantedCommand";
|
|
15
|
+
import {
|
|
16
|
+
CheckNoNewAccessCommandInput,
|
|
17
|
+
CheckNoNewAccessCommandOutput,
|
|
18
|
+
} from "./commands/CheckNoNewAccessCommand";
|
|
11
19
|
import {
|
|
12
20
|
CreateAccessPreviewCommandInput,
|
|
13
21
|
CreateAccessPreviewCommandOutput,
|
|
@@ -48,6 +56,10 @@ import {
|
|
|
48
56
|
GetFindingCommandInput,
|
|
49
57
|
GetFindingCommandOutput,
|
|
50
58
|
} from "./commands/GetFindingCommand";
|
|
59
|
+
import {
|
|
60
|
+
GetFindingV2CommandInput,
|
|
61
|
+
GetFindingV2CommandOutput,
|
|
62
|
+
} from "./commands/GetFindingV2Command";
|
|
51
63
|
import {
|
|
52
64
|
GetGeneratedPolicyCommandInput,
|
|
53
65
|
GetGeneratedPolicyCommandOutput,
|
|
@@ -76,6 +88,10 @@ import {
|
|
|
76
88
|
ListFindingsCommandInput,
|
|
77
89
|
ListFindingsCommandOutput,
|
|
78
90
|
} from "./commands/ListFindingsCommand";
|
|
91
|
+
import {
|
|
92
|
+
ListFindingsV2CommandInput,
|
|
93
|
+
ListFindingsV2CommandOutput,
|
|
94
|
+
} from "./commands/ListFindingsV2Command";
|
|
79
95
|
import {
|
|
80
96
|
ListPolicyGenerationsCommandInput,
|
|
81
97
|
ListPolicyGenerationsCommandOutput,
|
|
@@ -139,6 +155,32 @@ export interface AccessAnalyzer {
|
|
|
139
155
|
options: __HttpHandlerOptions,
|
|
140
156
|
cb: (err: any, data?: CancelPolicyGenerationCommandOutput) => void
|
|
141
157
|
): void;
|
|
158
|
+
checkAccessNotGranted(
|
|
159
|
+
args: CheckAccessNotGrantedCommandInput,
|
|
160
|
+
options?: __HttpHandlerOptions
|
|
161
|
+
): Promise<CheckAccessNotGrantedCommandOutput>;
|
|
162
|
+
checkAccessNotGranted(
|
|
163
|
+
args: CheckAccessNotGrantedCommandInput,
|
|
164
|
+
cb: (err: any, data?: CheckAccessNotGrantedCommandOutput) => void
|
|
165
|
+
): void;
|
|
166
|
+
checkAccessNotGranted(
|
|
167
|
+
args: CheckAccessNotGrantedCommandInput,
|
|
168
|
+
options: __HttpHandlerOptions,
|
|
169
|
+
cb: (err: any, data?: CheckAccessNotGrantedCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
checkNoNewAccess(
|
|
172
|
+
args: CheckNoNewAccessCommandInput,
|
|
173
|
+
options?: __HttpHandlerOptions
|
|
174
|
+
): Promise<CheckNoNewAccessCommandOutput>;
|
|
175
|
+
checkNoNewAccess(
|
|
176
|
+
args: CheckNoNewAccessCommandInput,
|
|
177
|
+
cb: (err: any, data?: CheckNoNewAccessCommandOutput) => void
|
|
178
|
+
): void;
|
|
179
|
+
checkNoNewAccess(
|
|
180
|
+
args: CheckNoNewAccessCommandInput,
|
|
181
|
+
options: __HttpHandlerOptions,
|
|
182
|
+
cb: (err: any, data?: CheckNoNewAccessCommandOutput) => void
|
|
183
|
+
): void;
|
|
142
184
|
createAccessPreview(
|
|
143
185
|
args: CreateAccessPreviewCommandInput,
|
|
144
186
|
options?: __HttpHandlerOptions
|
|
@@ -269,6 +311,19 @@ export interface AccessAnalyzer {
|
|
|
269
311
|
options: __HttpHandlerOptions,
|
|
270
312
|
cb: (err: any, data?: GetFindingCommandOutput) => void
|
|
271
313
|
): void;
|
|
314
|
+
getFindingV2(
|
|
315
|
+
args: GetFindingV2CommandInput,
|
|
316
|
+
options?: __HttpHandlerOptions
|
|
317
|
+
): Promise<GetFindingV2CommandOutput>;
|
|
318
|
+
getFindingV2(
|
|
319
|
+
args: GetFindingV2CommandInput,
|
|
320
|
+
cb: (err: any, data?: GetFindingV2CommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
getFindingV2(
|
|
323
|
+
args: GetFindingV2CommandInput,
|
|
324
|
+
options: __HttpHandlerOptions,
|
|
325
|
+
cb: (err: any, data?: GetFindingV2CommandOutput) => void
|
|
326
|
+
): void;
|
|
272
327
|
getGeneratedPolicy(
|
|
273
328
|
args: GetGeneratedPolicyCommandInput,
|
|
274
329
|
options?: __HttpHandlerOptions
|
|
@@ -360,6 +415,19 @@ export interface AccessAnalyzer {
|
|
|
360
415
|
options: __HttpHandlerOptions,
|
|
361
416
|
cb: (err: any, data?: ListFindingsCommandOutput) => void
|
|
362
417
|
): void;
|
|
418
|
+
listFindingsV2(
|
|
419
|
+
args: ListFindingsV2CommandInput,
|
|
420
|
+
options?: __HttpHandlerOptions
|
|
421
|
+
): Promise<ListFindingsV2CommandOutput>;
|
|
422
|
+
listFindingsV2(
|
|
423
|
+
args: ListFindingsV2CommandInput,
|
|
424
|
+
cb: (err: any, data?: ListFindingsV2CommandOutput) => void
|
|
425
|
+
): void;
|
|
426
|
+
listFindingsV2(
|
|
427
|
+
args: ListFindingsV2CommandInput,
|
|
428
|
+
options: __HttpHandlerOptions,
|
|
429
|
+
cb: (err: any, data?: ListFindingsV2CommandOutput) => void
|
|
430
|
+
): void;
|
|
363
431
|
listPolicyGenerations(
|
|
364
432
|
args: ListPolicyGenerationsCommandInput,
|
|
365
433
|
options?: __HttpHandlerOptions
|
|
@@ -53,6 +53,14 @@ import {
|
|
|
53
53
|
CancelPolicyGenerationCommandInput,
|
|
54
54
|
CancelPolicyGenerationCommandOutput,
|
|
55
55
|
} from "./commands/CancelPolicyGenerationCommand";
|
|
56
|
+
import {
|
|
57
|
+
CheckAccessNotGrantedCommandInput,
|
|
58
|
+
CheckAccessNotGrantedCommandOutput,
|
|
59
|
+
} from "./commands/CheckAccessNotGrantedCommand";
|
|
60
|
+
import {
|
|
61
|
+
CheckNoNewAccessCommandInput,
|
|
62
|
+
CheckNoNewAccessCommandOutput,
|
|
63
|
+
} from "./commands/CheckNoNewAccessCommand";
|
|
56
64
|
import {
|
|
57
65
|
CreateAccessPreviewCommandInput,
|
|
58
66
|
CreateAccessPreviewCommandOutput,
|
|
@@ -93,6 +101,10 @@ import {
|
|
|
93
101
|
GetFindingCommandInput,
|
|
94
102
|
GetFindingCommandOutput,
|
|
95
103
|
} from "./commands/GetFindingCommand";
|
|
104
|
+
import {
|
|
105
|
+
GetFindingV2CommandInput,
|
|
106
|
+
GetFindingV2CommandOutput,
|
|
107
|
+
} from "./commands/GetFindingV2Command";
|
|
96
108
|
import {
|
|
97
109
|
GetGeneratedPolicyCommandInput,
|
|
98
110
|
GetGeneratedPolicyCommandOutput,
|
|
@@ -121,6 +133,10 @@ import {
|
|
|
121
133
|
ListFindingsCommandInput,
|
|
122
134
|
ListFindingsCommandOutput,
|
|
123
135
|
} from "./commands/ListFindingsCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListFindingsV2CommandInput,
|
|
138
|
+
ListFindingsV2CommandOutput,
|
|
139
|
+
} from "./commands/ListFindingsV2Command";
|
|
124
140
|
import {
|
|
125
141
|
ListPolicyGenerationsCommandInput,
|
|
126
142
|
ListPolicyGenerationsCommandOutput,
|
|
@@ -167,6 +183,8 @@ export { __Client };
|
|
|
167
183
|
export type ServiceInputTypes =
|
|
168
184
|
| ApplyArchiveRuleCommandInput
|
|
169
185
|
| CancelPolicyGenerationCommandInput
|
|
186
|
+
| CheckAccessNotGrantedCommandInput
|
|
187
|
+
| CheckNoNewAccessCommandInput
|
|
170
188
|
| CreateAccessPreviewCommandInput
|
|
171
189
|
| CreateAnalyzerCommandInput
|
|
172
190
|
| CreateArchiveRuleCommandInput
|
|
@@ -177,6 +195,7 @@ export type ServiceInputTypes =
|
|
|
177
195
|
| GetAnalyzerCommandInput
|
|
178
196
|
| GetArchiveRuleCommandInput
|
|
179
197
|
| GetFindingCommandInput
|
|
198
|
+
| GetFindingV2CommandInput
|
|
180
199
|
| GetGeneratedPolicyCommandInput
|
|
181
200
|
| ListAccessPreviewFindingsCommandInput
|
|
182
201
|
| ListAccessPreviewsCommandInput
|
|
@@ -184,6 +203,7 @@ export type ServiceInputTypes =
|
|
|
184
203
|
| ListAnalyzersCommandInput
|
|
185
204
|
| ListArchiveRulesCommandInput
|
|
186
205
|
| ListFindingsCommandInput
|
|
206
|
+
| ListFindingsV2CommandInput
|
|
187
207
|
| ListPolicyGenerationsCommandInput
|
|
188
208
|
| ListTagsForResourceCommandInput
|
|
189
209
|
| StartPolicyGenerationCommandInput
|
|
@@ -196,6 +216,8 @@ export type ServiceInputTypes =
|
|
|
196
216
|
export type ServiceOutputTypes =
|
|
197
217
|
| ApplyArchiveRuleCommandOutput
|
|
198
218
|
| CancelPolicyGenerationCommandOutput
|
|
219
|
+
| CheckAccessNotGrantedCommandOutput
|
|
220
|
+
| CheckNoNewAccessCommandOutput
|
|
199
221
|
| CreateAccessPreviewCommandOutput
|
|
200
222
|
| CreateAnalyzerCommandOutput
|
|
201
223
|
| CreateArchiveRuleCommandOutput
|
|
@@ -206,6 +228,7 @@ export type ServiceOutputTypes =
|
|
|
206
228
|
| GetAnalyzerCommandOutput
|
|
207
229
|
| GetArchiveRuleCommandOutput
|
|
208
230
|
| GetFindingCommandOutput
|
|
231
|
+
| GetFindingV2CommandOutput
|
|
209
232
|
| GetGeneratedPolicyCommandOutput
|
|
210
233
|
| ListAccessPreviewFindingsCommandOutput
|
|
211
234
|
| ListAccessPreviewsCommandOutput
|
|
@@ -213,6 +236,7 @@ export type ServiceOutputTypes =
|
|
|
213
236
|
| ListAnalyzersCommandOutput
|
|
214
237
|
| ListArchiveRulesCommandOutput
|
|
215
238
|
| ListFindingsCommandOutput
|
|
239
|
+
| ListFindingsV2CommandOutput
|
|
216
240
|
| ListPolicyGenerationsCommandOutput
|
|
217
241
|
| ListTagsForResourceCommandOutput
|
|
218
242
|
| StartPolicyGenerationCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AccessAnalyzerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AccessAnalyzerClient";
|
|
14
|
+
import {
|
|
15
|
+
CheckAccessNotGrantedRequest,
|
|
16
|
+
CheckAccessNotGrantedResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CheckAccessNotGrantedCommandInput
|
|
20
|
+
extends CheckAccessNotGrantedRequest {}
|
|
21
|
+
export interface CheckAccessNotGrantedCommandOutput
|
|
22
|
+
extends CheckAccessNotGrantedResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CheckAccessNotGrantedCommand extends $Command<
|
|
25
|
+
CheckAccessNotGrantedCommandInput,
|
|
26
|
+
CheckAccessNotGrantedCommandOutput,
|
|
27
|
+
AccessAnalyzerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CheckAccessNotGrantedCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CheckAccessNotGrantedCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CheckAccessNotGrantedCommandInput,
|
|
38
|
+
CheckAccessNotGrantedCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AccessAnalyzerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AccessAnalyzerClient";
|
|
14
|
+
import {
|
|
15
|
+
CheckNoNewAccessRequest,
|
|
16
|
+
CheckNoNewAccessResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CheckNoNewAccessCommandInput extends CheckNoNewAccessRequest {}
|
|
20
|
+
export interface CheckNoNewAccessCommandOutput
|
|
21
|
+
extends CheckNoNewAccessResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CheckNoNewAccessCommand extends $Command<
|
|
24
|
+
CheckNoNewAccessCommandInput,
|
|
25
|
+
CheckNoNewAccessCommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CheckNoNewAccessCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CheckNoNewAccessCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CheckNoNewAccessCommandInput, CheckNoNewAccessCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AccessAnalyzerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AccessAnalyzerClient";
|
|
14
|
+
import { GetFindingV2Request, GetFindingV2Response } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetFindingV2CommandInput extends GetFindingV2Request {}
|
|
17
|
+
export interface GetFindingV2CommandOutput
|
|
18
|
+
extends GetFindingV2Response,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetFindingV2Command extends $Command<
|
|
21
|
+
GetFindingV2CommandInput,
|
|
22
|
+
GetFindingV2CommandOutput,
|
|
23
|
+
AccessAnalyzerClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetFindingV2CommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetFindingV2CommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetFindingV2CommandInput, GetFindingV2CommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
AccessAnalyzerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../AccessAnalyzerClient";
|
|
14
|
+
import {
|
|
15
|
+
ListFindingsV2Request,
|
|
16
|
+
ListFindingsV2Response,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListFindingsV2CommandInput extends ListFindingsV2Request {}
|
|
20
|
+
export interface ListFindingsV2CommandOutput
|
|
21
|
+
extends ListFindingsV2Response,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListFindingsV2Command extends $Command<
|
|
24
|
+
ListFindingsV2CommandInput,
|
|
25
|
+
ListFindingsV2CommandOutput,
|
|
26
|
+
AccessAnalyzerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListFindingsV2CommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListFindingsV2CommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AccessAnalyzerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListFindingsV2CommandInput, ListFindingsV2CommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./ApplyArchiveRuleCommand";
|
|
2
2
|
export * from "./CancelPolicyGenerationCommand";
|
|
3
|
+
export * from "./CheckAccessNotGrantedCommand";
|
|
4
|
+
export * from "./CheckNoNewAccessCommand";
|
|
3
5
|
export * from "./CreateAccessPreviewCommand";
|
|
4
6
|
export * from "./CreateAnalyzerCommand";
|
|
5
7
|
export * from "./CreateArchiveRuleCommand";
|
|
@@ -10,6 +12,7 @@ export * from "./GetAnalyzedResourceCommand";
|
|
|
10
12
|
export * from "./GetAnalyzerCommand";
|
|
11
13
|
export * from "./GetArchiveRuleCommand";
|
|
12
14
|
export * from "./GetFindingCommand";
|
|
15
|
+
export * from "./GetFindingV2Command";
|
|
13
16
|
export * from "./GetGeneratedPolicyCommand";
|
|
14
17
|
export * from "./ListAccessPreviewFindingsCommand";
|
|
15
18
|
export * from "./ListAccessPreviewsCommand";
|
|
@@ -17,6 +20,7 @@ export * from "./ListAnalyzedResourcesCommand";
|
|
|
17
20
|
export * from "./ListAnalyzersCommand";
|
|
18
21
|
export * from "./ListArchiveRulesCommand";
|
|
19
22
|
export * from "./ListFindingsCommand";
|
|
23
|
+
export * from "./ListFindingsV2Command";
|
|
20
24
|
export * from "./ListPolicyGenerationsCommand";
|
|
21
25
|
export * from "./ListTagsForResourceCommand";
|
|
22
26
|
export * from "./StartPolicyGenerationCommand";
|