@aws-sdk/client-inspector 3.927.0 → 3.928.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/dist-cjs/index.js +1243 -1407
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/InspectorClient.js +2 -0
- package/dist-es/commands/AddAttributesToFindingsCommand.js +3 -9
- package/dist-es/commands/CreateAssessmentTargetCommand.js +3 -9
- package/dist-es/commands/CreateAssessmentTemplateCommand.js +3 -9
- package/dist-es/commands/CreateExclusionsPreviewCommand.js +3 -9
- package/dist-es/commands/CreateResourceGroupCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentRunCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentTargetCommand.js +3 -9
- package/dist-es/commands/DeleteAssessmentTemplateCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentRunsCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentTargetsCommand.js +3 -9
- package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +3 -9
- package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +3 -9
- package/dist-es/commands/DescribeExclusionsCommand.js +3 -9
- package/dist-es/commands/DescribeFindingsCommand.js +3 -9
- package/dist-es/commands/DescribeResourceGroupsCommand.js +3 -9
- package/dist-es/commands/DescribeRulesPackagesCommand.js +3 -9
- package/dist-es/commands/GetAssessmentReportCommand.js +3 -9
- package/dist-es/commands/GetExclusionsPreviewCommand.js +3 -9
- package/dist-es/commands/GetTelemetryMetadataCommand.js +3 -9
- package/dist-es/commands/ListAssessmentRunAgentsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentRunsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentTargetsCommand.js +3 -9
- package/dist-es/commands/ListAssessmentTemplatesCommand.js +3 -9
- package/dist-es/commands/ListEventSubscriptionsCommand.js +3 -9
- package/dist-es/commands/ListExclusionsCommand.js +3 -9
- package/dist-es/commands/ListFindingsCommand.js +3 -9
- package/dist-es/commands/ListRulesPackagesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PreviewAgentsCommand.js +3 -9
- package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +3 -9
- package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +3 -9
- package/dist-es/commands/SetTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartAssessmentRunCommand.js +3 -9
- package/dist-es/commands/StopAssessmentRunCommand.js +3 -9
- package/dist-es/commands/SubscribeToEventCommand.js +3 -9
- package/dist-es/commands/UnsubscribeFromEventCommand.js +3 -9
- package/dist-es/commands/UpdateAssessmentTargetCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1154 -0
- package/dist-types/InspectorClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +194 -0
- package/dist-types/ts3.4/InspectorClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +200 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -1119
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -449
|
@@ -1,449 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
AddAttributesToFindingsCommandInput,
|
|
8
|
-
AddAttributesToFindingsCommandOutput,
|
|
9
|
-
} from "../commands/AddAttributesToFindingsCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateAssessmentTargetCommandInput,
|
|
12
|
-
CreateAssessmentTargetCommandOutput,
|
|
13
|
-
} from "../commands/CreateAssessmentTargetCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateAssessmentTemplateCommandInput,
|
|
16
|
-
CreateAssessmentTemplateCommandOutput,
|
|
17
|
-
} from "../commands/CreateAssessmentTemplateCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateExclusionsPreviewCommandInput,
|
|
20
|
-
CreateExclusionsPreviewCommandOutput,
|
|
21
|
-
} from "../commands/CreateExclusionsPreviewCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateResourceGroupCommandInput,
|
|
24
|
-
CreateResourceGroupCommandOutput,
|
|
25
|
-
} from "../commands/CreateResourceGroupCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteAssessmentRunCommandInput,
|
|
28
|
-
DeleteAssessmentRunCommandOutput,
|
|
29
|
-
} from "../commands/DeleteAssessmentRunCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteAssessmentTargetCommandInput,
|
|
32
|
-
DeleteAssessmentTargetCommandOutput,
|
|
33
|
-
} from "../commands/DeleteAssessmentTargetCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeleteAssessmentTemplateCommandInput,
|
|
36
|
-
DeleteAssessmentTemplateCommandOutput,
|
|
37
|
-
} from "../commands/DeleteAssessmentTemplateCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeAssessmentRunsCommandInput,
|
|
40
|
-
DescribeAssessmentRunsCommandOutput,
|
|
41
|
-
} from "../commands/DescribeAssessmentRunsCommand";
|
|
42
|
-
import {
|
|
43
|
-
DescribeAssessmentTargetsCommandInput,
|
|
44
|
-
DescribeAssessmentTargetsCommandOutput,
|
|
45
|
-
} from "../commands/DescribeAssessmentTargetsCommand";
|
|
46
|
-
import {
|
|
47
|
-
DescribeAssessmentTemplatesCommandInput,
|
|
48
|
-
DescribeAssessmentTemplatesCommandOutput,
|
|
49
|
-
} from "../commands/DescribeAssessmentTemplatesCommand";
|
|
50
|
-
import {
|
|
51
|
-
DescribeCrossAccountAccessRoleCommandInput,
|
|
52
|
-
DescribeCrossAccountAccessRoleCommandOutput,
|
|
53
|
-
} from "../commands/DescribeCrossAccountAccessRoleCommand";
|
|
54
|
-
import {
|
|
55
|
-
DescribeExclusionsCommandInput,
|
|
56
|
-
DescribeExclusionsCommandOutput,
|
|
57
|
-
} from "../commands/DescribeExclusionsCommand";
|
|
58
|
-
import {
|
|
59
|
-
DescribeFindingsCommandInput,
|
|
60
|
-
DescribeFindingsCommandOutput,
|
|
61
|
-
} from "../commands/DescribeFindingsCommand";
|
|
62
|
-
import {
|
|
63
|
-
DescribeResourceGroupsCommandInput,
|
|
64
|
-
DescribeResourceGroupsCommandOutput,
|
|
65
|
-
} from "../commands/DescribeResourceGroupsCommand";
|
|
66
|
-
import {
|
|
67
|
-
DescribeRulesPackagesCommandInput,
|
|
68
|
-
DescribeRulesPackagesCommandOutput,
|
|
69
|
-
} from "../commands/DescribeRulesPackagesCommand";
|
|
70
|
-
import {
|
|
71
|
-
GetAssessmentReportCommandInput,
|
|
72
|
-
GetAssessmentReportCommandOutput,
|
|
73
|
-
} from "../commands/GetAssessmentReportCommand";
|
|
74
|
-
import {
|
|
75
|
-
GetExclusionsPreviewCommandInput,
|
|
76
|
-
GetExclusionsPreviewCommandOutput,
|
|
77
|
-
} from "../commands/GetExclusionsPreviewCommand";
|
|
78
|
-
import {
|
|
79
|
-
GetTelemetryMetadataCommandInput,
|
|
80
|
-
GetTelemetryMetadataCommandOutput,
|
|
81
|
-
} from "../commands/GetTelemetryMetadataCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListAssessmentRunAgentsCommandInput,
|
|
84
|
-
ListAssessmentRunAgentsCommandOutput,
|
|
85
|
-
} from "../commands/ListAssessmentRunAgentsCommand";
|
|
86
|
-
import {
|
|
87
|
-
ListAssessmentRunsCommandInput,
|
|
88
|
-
ListAssessmentRunsCommandOutput,
|
|
89
|
-
} from "../commands/ListAssessmentRunsCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListAssessmentTargetsCommandInput,
|
|
92
|
-
ListAssessmentTargetsCommandOutput,
|
|
93
|
-
} from "../commands/ListAssessmentTargetsCommand";
|
|
94
|
-
import {
|
|
95
|
-
ListAssessmentTemplatesCommandInput,
|
|
96
|
-
ListAssessmentTemplatesCommandOutput,
|
|
97
|
-
} from "../commands/ListAssessmentTemplatesCommand";
|
|
98
|
-
import {
|
|
99
|
-
ListEventSubscriptionsCommandInput,
|
|
100
|
-
ListEventSubscriptionsCommandOutput,
|
|
101
|
-
} from "../commands/ListEventSubscriptionsCommand";
|
|
102
|
-
import {
|
|
103
|
-
ListExclusionsCommandInput,
|
|
104
|
-
ListExclusionsCommandOutput,
|
|
105
|
-
} from "../commands/ListExclusionsCommand";
|
|
106
|
-
import {
|
|
107
|
-
ListFindingsCommandInput,
|
|
108
|
-
ListFindingsCommandOutput,
|
|
109
|
-
} from "../commands/ListFindingsCommand";
|
|
110
|
-
import {
|
|
111
|
-
ListRulesPackagesCommandInput,
|
|
112
|
-
ListRulesPackagesCommandOutput,
|
|
113
|
-
} from "../commands/ListRulesPackagesCommand";
|
|
114
|
-
import {
|
|
115
|
-
ListTagsForResourceCommandInput,
|
|
116
|
-
ListTagsForResourceCommandOutput,
|
|
117
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
118
|
-
import {
|
|
119
|
-
PreviewAgentsCommandInput,
|
|
120
|
-
PreviewAgentsCommandOutput,
|
|
121
|
-
} from "../commands/PreviewAgentsCommand";
|
|
122
|
-
import {
|
|
123
|
-
RegisterCrossAccountAccessRoleCommandInput,
|
|
124
|
-
RegisterCrossAccountAccessRoleCommandOutput,
|
|
125
|
-
} from "../commands/RegisterCrossAccountAccessRoleCommand";
|
|
126
|
-
import {
|
|
127
|
-
RemoveAttributesFromFindingsCommandInput,
|
|
128
|
-
RemoveAttributesFromFindingsCommandOutput,
|
|
129
|
-
} from "../commands/RemoveAttributesFromFindingsCommand";
|
|
130
|
-
import {
|
|
131
|
-
SetTagsForResourceCommandInput,
|
|
132
|
-
SetTagsForResourceCommandOutput,
|
|
133
|
-
} from "../commands/SetTagsForResourceCommand";
|
|
134
|
-
import {
|
|
135
|
-
StartAssessmentRunCommandInput,
|
|
136
|
-
StartAssessmentRunCommandOutput,
|
|
137
|
-
} from "../commands/StartAssessmentRunCommand";
|
|
138
|
-
import {
|
|
139
|
-
StopAssessmentRunCommandInput,
|
|
140
|
-
StopAssessmentRunCommandOutput,
|
|
141
|
-
} from "../commands/StopAssessmentRunCommand";
|
|
142
|
-
import {
|
|
143
|
-
SubscribeToEventCommandInput,
|
|
144
|
-
SubscribeToEventCommandOutput,
|
|
145
|
-
} from "../commands/SubscribeToEventCommand";
|
|
146
|
-
import {
|
|
147
|
-
UnsubscribeFromEventCommandInput,
|
|
148
|
-
UnsubscribeFromEventCommandOutput,
|
|
149
|
-
} from "../commands/UnsubscribeFromEventCommand";
|
|
150
|
-
import {
|
|
151
|
-
UpdateAssessmentTargetCommandInput,
|
|
152
|
-
UpdateAssessmentTargetCommandOutput,
|
|
153
|
-
} from "../commands/UpdateAssessmentTargetCommand";
|
|
154
|
-
export declare const se_AddAttributesToFindingsCommand: (
|
|
155
|
-
input: AddAttributesToFindingsCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_CreateAssessmentTargetCommand: (
|
|
159
|
-
input: CreateAssessmentTargetCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_CreateAssessmentTemplateCommand: (
|
|
163
|
-
input: CreateAssessmentTemplateCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_CreateExclusionsPreviewCommand: (
|
|
167
|
-
input: CreateExclusionsPreviewCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_CreateResourceGroupCommand: (
|
|
171
|
-
input: CreateResourceGroupCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_DeleteAssessmentRunCommand: (
|
|
175
|
-
input: DeleteAssessmentRunCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_DeleteAssessmentTargetCommand: (
|
|
179
|
-
input: DeleteAssessmentTargetCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_DeleteAssessmentTemplateCommand: (
|
|
183
|
-
input: DeleteAssessmentTemplateCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_DescribeAssessmentRunsCommand: (
|
|
187
|
-
input: DescribeAssessmentRunsCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_DescribeAssessmentTargetsCommand: (
|
|
191
|
-
input: DescribeAssessmentTargetsCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_DescribeAssessmentTemplatesCommand: (
|
|
195
|
-
input: DescribeAssessmentTemplatesCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_DescribeCrossAccountAccessRoleCommand: (
|
|
199
|
-
input: DescribeCrossAccountAccessRoleCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_DescribeExclusionsCommand: (
|
|
203
|
-
input: DescribeExclusionsCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_DescribeFindingsCommand: (
|
|
207
|
-
input: DescribeFindingsCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_DescribeResourceGroupsCommand: (
|
|
211
|
-
input: DescribeResourceGroupsCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_DescribeRulesPackagesCommand: (
|
|
215
|
-
input: DescribeRulesPackagesCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_GetAssessmentReportCommand: (
|
|
219
|
-
input: GetAssessmentReportCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_GetExclusionsPreviewCommand: (
|
|
223
|
-
input: GetExclusionsPreviewCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_GetTelemetryMetadataCommand: (
|
|
227
|
-
input: GetTelemetryMetadataCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const se_ListAssessmentRunAgentsCommand: (
|
|
231
|
-
input: ListAssessmentRunAgentsCommandInput,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<__HttpRequest>;
|
|
234
|
-
export declare const se_ListAssessmentRunsCommand: (
|
|
235
|
-
input: ListAssessmentRunsCommandInput,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<__HttpRequest>;
|
|
238
|
-
export declare const se_ListAssessmentTargetsCommand: (
|
|
239
|
-
input: ListAssessmentTargetsCommandInput,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<__HttpRequest>;
|
|
242
|
-
export declare const se_ListAssessmentTemplatesCommand: (
|
|
243
|
-
input: ListAssessmentTemplatesCommandInput,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<__HttpRequest>;
|
|
246
|
-
export declare const se_ListEventSubscriptionsCommand: (
|
|
247
|
-
input: ListEventSubscriptionsCommandInput,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<__HttpRequest>;
|
|
250
|
-
export declare const se_ListExclusionsCommand: (
|
|
251
|
-
input: ListExclusionsCommandInput,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<__HttpRequest>;
|
|
254
|
-
export declare const se_ListFindingsCommand: (
|
|
255
|
-
input: ListFindingsCommandInput,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<__HttpRequest>;
|
|
258
|
-
export declare const se_ListRulesPackagesCommand: (
|
|
259
|
-
input: ListRulesPackagesCommandInput,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<__HttpRequest>;
|
|
262
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
263
|
-
input: ListTagsForResourceCommandInput,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<__HttpRequest>;
|
|
266
|
-
export declare const se_PreviewAgentsCommand: (
|
|
267
|
-
input: PreviewAgentsCommandInput,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<__HttpRequest>;
|
|
270
|
-
export declare const se_RegisterCrossAccountAccessRoleCommand: (
|
|
271
|
-
input: RegisterCrossAccountAccessRoleCommandInput,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<__HttpRequest>;
|
|
274
|
-
export declare const se_RemoveAttributesFromFindingsCommand: (
|
|
275
|
-
input: RemoveAttributesFromFindingsCommandInput,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<__HttpRequest>;
|
|
278
|
-
export declare const se_SetTagsForResourceCommand: (
|
|
279
|
-
input: SetTagsForResourceCommandInput,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<__HttpRequest>;
|
|
282
|
-
export declare const se_StartAssessmentRunCommand: (
|
|
283
|
-
input: StartAssessmentRunCommandInput,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<__HttpRequest>;
|
|
286
|
-
export declare const se_StopAssessmentRunCommand: (
|
|
287
|
-
input: StopAssessmentRunCommandInput,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<__HttpRequest>;
|
|
290
|
-
export declare const se_SubscribeToEventCommand: (
|
|
291
|
-
input: SubscribeToEventCommandInput,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<__HttpRequest>;
|
|
294
|
-
export declare const se_UnsubscribeFromEventCommand: (
|
|
295
|
-
input: UnsubscribeFromEventCommandInput,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<__HttpRequest>;
|
|
298
|
-
export declare const se_UpdateAssessmentTargetCommand: (
|
|
299
|
-
input: UpdateAssessmentTargetCommandInput,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<__HttpRequest>;
|
|
302
|
-
export declare const de_AddAttributesToFindingsCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<AddAttributesToFindingsCommandOutput>;
|
|
306
|
-
export declare const de_CreateAssessmentTargetCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<CreateAssessmentTargetCommandOutput>;
|
|
310
|
-
export declare const de_CreateAssessmentTemplateCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<CreateAssessmentTemplateCommandOutput>;
|
|
314
|
-
export declare const de_CreateExclusionsPreviewCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<CreateExclusionsPreviewCommandOutput>;
|
|
318
|
-
export declare const de_CreateResourceGroupCommand: (
|
|
319
|
-
output: __HttpResponse,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<CreateResourceGroupCommandOutput>;
|
|
322
|
-
export declare const de_DeleteAssessmentRunCommand: (
|
|
323
|
-
output: __HttpResponse,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<DeleteAssessmentRunCommandOutput>;
|
|
326
|
-
export declare const de_DeleteAssessmentTargetCommand: (
|
|
327
|
-
output: __HttpResponse,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<DeleteAssessmentTargetCommandOutput>;
|
|
330
|
-
export declare const de_DeleteAssessmentTemplateCommand: (
|
|
331
|
-
output: __HttpResponse,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<DeleteAssessmentTemplateCommandOutput>;
|
|
334
|
-
export declare const de_DescribeAssessmentRunsCommand: (
|
|
335
|
-
output: __HttpResponse,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<DescribeAssessmentRunsCommandOutput>;
|
|
338
|
-
export declare const de_DescribeAssessmentTargetsCommand: (
|
|
339
|
-
output: __HttpResponse,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<DescribeAssessmentTargetsCommandOutput>;
|
|
342
|
-
export declare const de_DescribeAssessmentTemplatesCommand: (
|
|
343
|
-
output: __HttpResponse,
|
|
344
|
-
context: __SerdeContext
|
|
345
|
-
) => Promise<DescribeAssessmentTemplatesCommandOutput>;
|
|
346
|
-
export declare const de_DescribeCrossAccountAccessRoleCommand: (
|
|
347
|
-
output: __HttpResponse,
|
|
348
|
-
context: __SerdeContext
|
|
349
|
-
) => Promise<DescribeCrossAccountAccessRoleCommandOutput>;
|
|
350
|
-
export declare const de_DescribeExclusionsCommand: (
|
|
351
|
-
output: __HttpResponse,
|
|
352
|
-
context: __SerdeContext
|
|
353
|
-
) => Promise<DescribeExclusionsCommandOutput>;
|
|
354
|
-
export declare const de_DescribeFindingsCommand: (
|
|
355
|
-
output: __HttpResponse,
|
|
356
|
-
context: __SerdeContext
|
|
357
|
-
) => Promise<DescribeFindingsCommandOutput>;
|
|
358
|
-
export declare const de_DescribeResourceGroupsCommand: (
|
|
359
|
-
output: __HttpResponse,
|
|
360
|
-
context: __SerdeContext
|
|
361
|
-
) => Promise<DescribeResourceGroupsCommandOutput>;
|
|
362
|
-
export declare const de_DescribeRulesPackagesCommand: (
|
|
363
|
-
output: __HttpResponse,
|
|
364
|
-
context: __SerdeContext
|
|
365
|
-
) => Promise<DescribeRulesPackagesCommandOutput>;
|
|
366
|
-
export declare const de_GetAssessmentReportCommand: (
|
|
367
|
-
output: __HttpResponse,
|
|
368
|
-
context: __SerdeContext
|
|
369
|
-
) => Promise<GetAssessmentReportCommandOutput>;
|
|
370
|
-
export declare const de_GetExclusionsPreviewCommand: (
|
|
371
|
-
output: __HttpResponse,
|
|
372
|
-
context: __SerdeContext
|
|
373
|
-
) => Promise<GetExclusionsPreviewCommandOutput>;
|
|
374
|
-
export declare const de_GetTelemetryMetadataCommand: (
|
|
375
|
-
output: __HttpResponse,
|
|
376
|
-
context: __SerdeContext
|
|
377
|
-
) => Promise<GetTelemetryMetadataCommandOutput>;
|
|
378
|
-
export declare const de_ListAssessmentRunAgentsCommand: (
|
|
379
|
-
output: __HttpResponse,
|
|
380
|
-
context: __SerdeContext
|
|
381
|
-
) => Promise<ListAssessmentRunAgentsCommandOutput>;
|
|
382
|
-
export declare const de_ListAssessmentRunsCommand: (
|
|
383
|
-
output: __HttpResponse,
|
|
384
|
-
context: __SerdeContext
|
|
385
|
-
) => Promise<ListAssessmentRunsCommandOutput>;
|
|
386
|
-
export declare const de_ListAssessmentTargetsCommand: (
|
|
387
|
-
output: __HttpResponse,
|
|
388
|
-
context: __SerdeContext
|
|
389
|
-
) => Promise<ListAssessmentTargetsCommandOutput>;
|
|
390
|
-
export declare const de_ListAssessmentTemplatesCommand: (
|
|
391
|
-
output: __HttpResponse,
|
|
392
|
-
context: __SerdeContext
|
|
393
|
-
) => Promise<ListAssessmentTemplatesCommandOutput>;
|
|
394
|
-
export declare const de_ListEventSubscriptionsCommand: (
|
|
395
|
-
output: __HttpResponse,
|
|
396
|
-
context: __SerdeContext
|
|
397
|
-
) => Promise<ListEventSubscriptionsCommandOutput>;
|
|
398
|
-
export declare const de_ListExclusionsCommand: (
|
|
399
|
-
output: __HttpResponse,
|
|
400
|
-
context: __SerdeContext
|
|
401
|
-
) => Promise<ListExclusionsCommandOutput>;
|
|
402
|
-
export declare const de_ListFindingsCommand: (
|
|
403
|
-
output: __HttpResponse,
|
|
404
|
-
context: __SerdeContext
|
|
405
|
-
) => Promise<ListFindingsCommandOutput>;
|
|
406
|
-
export declare const de_ListRulesPackagesCommand: (
|
|
407
|
-
output: __HttpResponse,
|
|
408
|
-
context: __SerdeContext
|
|
409
|
-
) => Promise<ListRulesPackagesCommandOutput>;
|
|
410
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
411
|
-
output: __HttpResponse,
|
|
412
|
-
context: __SerdeContext
|
|
413
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
414
|
-
export declare const de_PreviewAgentsCommand: (
|
|
415
|
-
output: __HttpResponse,
|
|
416
|
-
context: __SerdeContext
|
|
417
|
-
) => Promise<PreviewAgentsCommandOutput>;
|
|
418
|
-
export declare const de_RegisterCrossAccountAccessRoleCommand: (
|
|
419
|
-
output: __HttpResponse,
|
|
420
|
-
context: __SerdeContext
|
|
421
|
-
) => Promise<RegisterCrossAccountAccessRoleCommandOutput>;
|
|
422
|
-
export declare const de_RemoveAttributesFromFindingsCommand: (
|
|
423
|
-
output: __HttpResponse,
|
|
424
|
-
context: __SerdeContext
|
|
425
|
-
) => Promise<RemoveAttributesFromFindingsCommandOutput>;
|
|
426
|
-
export declare const de_SetTagsForResourceCommand: (
|
|
427
|
-
output: __HttpResponse,
|
|
428
|
-
context: __SerdeContext
|
|
429
|
-
) => Promise<SetTagsForResourceCommandOutput>;
|
|
430
|
-
export declare const de_StartAssessmentRunCommand: (
|
|
431
|
-
output: __HttpResponse,
|
|
432
|
-
context: __SerdeContext
|
|
433
|
-
) => Promise<StartAssessmentRunCommandOutput>;
|
|
434
|
-
export declare const de_StopAssessmentRunCommand: (
|
|
435
|
-
output: __HttpResponse,
|
|
436
|
-
context: __SerdeContext
|
|
437
|
-
) => Promise<StopAssessmentRunCommandOutput>;
|
|
438
|
-
export declare const de_SubscribeToEventCommand: (
|
|
439
|
-
output: __HttpResponse,
|
|
440
|
-
context: __SerdeContext
|
|
441
|
-
) => Promise<SubscribeToEventCommandOutput>;
|
|
442
|
-
export declare const de_UnsubscribeFromEventCommand: (
|
|
443
|
-
output: __HttpResponse,
|
|
444
|
-
context: __SerdeContext
|
|
445
|
-
) => Promise<UnsubscribeFromEventCommandOutput>;
|
|
446
|
-
export declare const de_UpdateAssessmentTargetCommand: (
|
|
447
|
-
output: __HttpResponse,
|
|
448
|
-
context: __SerdeContext
|
|
449
|
-
) => Promise<UpdateAssessmentTargetCommandOutput>;
|