@aws-sdk/client-application-discovery-service 3.170.0 → 3.178.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/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ApplicationDiscoveryService.d.ts +0 -25
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchDeleteImportDataCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteApplicationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAgentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeContinuousExportsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeExportConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExportConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDiscoverySummaryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListServerNeighborsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartContinuousExportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartDataCollectionByAgentIdsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartImportTaskCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopContinuousExportCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopDataCollectionByAgentIdsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -232
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
3
|
-
|
|
4
3
|
export interface AgentConfigurationStatus {
|
|
5
4
|
agentId?: string;
|
|
6
|
-
|
|
7
5
|
operationSucceeded?: boolean;
|
|
8
|
-
|
|
9
6
|
description?: string;
|
|
10
7
|
}
|
|
11
|
-
|
|
12
8
|
export interface AgentNetworkInfo {
|
|
13
9
|
ipAddress?: string;
|
|
14
|
-
|
|
15
10
|
macAddress?: string;
|
|
16
11
|
}
|
|
17
12
|
export declare enum AgentStatus {
|
|
@@ -22,75 +17,54 @@ export declare enum AgentStatus {
|
|
|
22
17
|
UNHEALTHY = "UNHEALTHY",
|
|
23
18
|
UNKNOWN = "UNKNOWN",
|
|
24
19
|
}
|
|
25
|
-
|
|
26
20
|
export interface AgentInfo {
|
|
27
21
|
agentId?: string;
|
|
28
|
-
|
|
29
22
|
hostName?: string;
|
|
30
|
-
|
|
31
23
|
agentNetworkInfoList?: AgentNetworkInfo[];
|
|
32
|
-
|
|
33
24
|
connectorId?: string;
|
|
34
|
-
|
|
35
25
|
version?: string;
|
|
36
|
-
|
|
37
26
|
health?: AgentStatus | string;
|
|
38
|
-
|
|
39
27
|
lastHealthPingTime?: string;
|
|
40
|
-
|
|
41
28
|
collectionStatus?: string;
|
|
42
|
-
|
|
43
29
|
agentType?: string;
|
|
44
|
-
|
|
45
30
|
registeredTime?: string;
|
|
46
31
|
}
|
|
47
32
|
export interface AssociateConfigurationItemsToApplicationRequest {
|
|
48
33
|
applicationConfigurationId: string | undefined;
|
|
49
|
-
|
|
50
34
|
configurationIds: string[] | undefined;
|
|
51
35
|
}
|
|
52
36
|
export interface AssociateConfigurationItemsToApplicationResponse {}
|
|
53
|
-
|
|
54
37
|
export declare class AuthorizationErrorException extends __BaseException {
|
|
55
38
|
readonly name: "AuthorizationErrorException";
|
|
56
39
|
readonly $fault: "client";
|
|
57
|
-
|
|
58
40
|
constructor(
|
|
59
41
|
opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>
|
|
60
42
|
);
|
|
61
43
|
}
|
|
62
|
-
|
|
63
44
|
export declare class HomeRegionNotSetException extends __BaseException {
|
|
64
45
|
readonly name: "HomeRegionNotSetException";
|
|
65
46
|
readonly $fault: "client";
|
|
66
|
-
|
|
67
47
|
constructor(
|
|
68
48
|
opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>
|
|
69
49
|
);
|
|
70
50
|
}
|
|
71
|
-
|
|
72
51
|
export declare class InvalidParameterException extends __BaseException {
|
|
73
52
|
readonly name: "InvalidParameterException";
|
|
74
53
|
readonly $fault: "client";
|
|
75
|
-
|
|
76
54
|
constructor(
|
|
77
55
|
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
78
56
|
);
|
|
79
57
|
}
|
|
80
|
-
|
|
81
58
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
82
59
|
readonly name: "InvalidParameterValueException";
|
|
83
60
|
readonly $fault: "client";
|
|
84
|
-
|
|
85
61
|
constructor(
|
|
86
62
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
87
63
|
);
|
|
88
64
|
}
|
|
89
|
-
|
|
90
65
|
export declare class ServerInternalErrorException extends __BaseException {
|
|
91
66
|
readonly name: "ServerInternalErrorException";
|
|
92
67
|
readonly $fault: "server";
|
|
93
|
-
|
|
94
68
|
constructor(
|
|
95
69
|
opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>
|
|
96
70
|
);
|
|
@@ -103,12 +77,9 @@ export declare enum BatchDeleteImportDataErrorCode {
|
|
|
103
77
|
NOT_FOUND = "NOT_FOUND",
|
|
104
78
|
OVER_LIMIT = "OVER_LIMIT",
|
|
105
79
|
}
|
|
106
|
-
|
|
107
80
|
export interface BatchDeleteImportDataError {
|
|
108
81
|
importTaskId?: string;
|
|
109
|
-
|
|
110
82
|
errorCode?: BatchDeleteImportDataErrorCode | string;
|
|
111
|
-
|
|
112
83
|
errorDescription?: string;
|
|
113
84
|
}
|
|
114
85
|
export interface BatchDeleteImportDataResponse {
|
|
@@ -116,29 +87,23 @@ export interface BatchDeleteImportDataResponse {
|
|
|
116
87
|
}
|
|
117
88
|
export interface CreateApplicationRequest {
|
|
118
89
|
name: string | undefined;
|
|
119
|
-
|
|
120
90
|
description?: string;
|
|
121
91
|
}
|
|
122
92
|
export interface CreateApplicationResponse {
|
|
123
93
|
configurationId?: string;
|
|
124
94
|
}
|
|
125
|
-
|
|
126
95
|
export interface Tag {
|
|
127
96
|
key: string | undefined;
|
|
128
|
-
|
|
129
97
|
value: string | undefined;
|
|
130
98
|
}
|
|
131
99
|
export interface CreateTagsRequest {
|
|
132
100
|
configurationIds: string[] | undefined;
|
|
133
|
-
|
|
134
101
|
tags: Tag[] | undefined;
|
|
135
102
|
}
|
|
136
103
|
export interface CreateTagsResponse {}
|
|
137
|
-
|
|
138
104
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
139
105
|
readonly name: "ResourceNotFoundException";
|
|
140
106
|
readonly $fault: "client";
|
|
141
|
-
|
|
142
107
|
constructor(
|
|
143
108
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
144
109
|
);
|
|
@@ -149,30 +114,22 @@ export interface DeleteApplicationsRequest {
|
|
|
149
114
|
export interface DeleteApplicationsResponse {}
|
|
150
115
|
export interface DeleteTagsRequest {
|
|
151
116
|
configurationIds: string[] | undefined;
|
|
152
|
-
|
|
153
117
|
tags?: Tag[];
|
|
154
118
|
}
|
|
155
119
|
export interface DeleteTagsResponse {}
|
|
156
|
-
|
|
157
120
|
export interface Filter {
|
|
158
121
|
name: string | undefined;
|
|
159
|
-
|
|
160
122
|
values: string[] | undefined;
|
|
161
|
-
|
|
162
123
|
condition: string | undefined;
|
|
163
124
|
}
|
|
164
125
|
export interface DescribeAgentsRequest {
|
|
165
126
|
agentIds?: string[];
|
|
166
|
-
|
|
167
127
|
filters?: Filter[];
|
|
168
|
-
|
|
169
128
|
maxResults?: number;
|
|
170
|
-
|
|
171
129
|
nextToken?: string;
|
|
172
130
|
}
|
|
173
131
|
export interface DescribeAgentsResponse {
|
|
174
132
|
agentsInfo?: AgentInfo[];
|
|
175
|
-
|
|
176
133
|
nextToken?: string;
|
|
177
134
|
}
|
|
178
135
|
export interface DescribeConfigurationsRequest {
|
|
@@ -183,9 +140,7 @@ export interface DescribeConfigurationsResponse {
|
|
|
183
140
|
}
|
|
184
141
|
export interface DescribeContinuousExportsRequest {
|
|
185
142
|
exportIds?: string[];
|
|
186
|
-
|
|
187
143
|
maxResults?: number;
|
|
188
|
-
|
|
189
144
|
nextToken?: string;
|
|
190
145
|
}
|
|
191
146
|
export declare enum DataSource {
|
|
@@ -200,43 +155,30 @@ export declare enum ContinuousExportStatus {
|
|
|
200
155
|
STOP_FAILED = "STOP_FAILED",
|
|
201
156
|
STOP_IN_PROGRESS = "STOP_IN_PROGRESS",
|
|
202
157
|
}
|
|
203
|
-
|
|
204
158
|
export interface ContinuousExportDescription {
|
|
205
159
|
exportId?: string;
|
|
206
|
-
|
|
207
160
|
status?: ContinuousExportStatus | string;
|
|
208
|
-
|
|
209
161
|
statusDetail?: string;
|
|
210
|
-
|
|
211
162
|
s3Bucket?: string;
|
|
212
|
-
|
|
213
163
|
startTime?: Date;
|
|
214
|
-
|
|
215
164
|
stopTime?: Date;
|
|
216
|
-
|
|
217
165
|
dataSource?: DataSource | string;
|
|
218
|
-
|
|
219
166
|
schemaStorageConfig?: Record<string, string>;
|
|
220
167
|
}
|
|
221
168
|
export interface DescribeContinuousExportsResponse {
|
|
222
169
|
descriptions?: ContinuousExportDescription[];
|
|
223
|
-
|
|
224
170
|
nextToken?: string;
|
|
225
171
|
}
|
|
226
|
-
|
|
227
172
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
228
173
|
readonly name: "OperationNotPermittedException";
|
|
229
174
|
readonly $fault: "client";
|
|
230
|
-
|
|
231
175
|
constructor(
|
|
232
176
|
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
233
177
|
);
|
|
234
178
|
}
|
|
235
179
|
export interface DescribeExportConfigurationsRequest {
|
|
236
180
|
exportIds?: string[];
|
|
237
|
-
|
|
238
181
|
maxResults?: number;
|
|
239
|
-
|
|
240
182
|
nextToken?: string;
|
|
241
183
|
}
|
|
242
184
|
export declare enum ExportStatus {
|
|
@@ -244,49 +186,33 @@ export declare enum ExportStatus {
|
|
|
244
186
|
IN_PROGRESS = "IN_PROGRESS",
|
|
245
187
|
SUCCEEDED = "SUCCEEDED",
|
|
246
188
|
}
|
|
247
|
-
|
|
248
189
|
export interface ExportInfo {
|
|
249
190
|
exportId: string | undefined;
|
|
250
|
-
|
|
251
191
|
exportStatus: ExportStatus | string | undefined;
|
|
252
|
-
|
|
253
192
|
statusMessage: string | undefined;
|
|
254
|
-
|
|
255
193
|
configurationsDownloadUrl?: string;
|
|
256
|
-
|
|
257
194
|
exportRequestTime: Date | undefined;
|
|
258
|
-
|
|
259
195
|
isTruncated?: boolean;
|
|
260
|
-
|
|
261
196
|
requestedStartTime?: Date;
|
|
262
|
-
|
|
263
197
|
requestedEndTime?: Date;
|
|
264
198
|
}
|
|
265
199
|
export interface DescribeExportConfigurationsResponse {
|
|
266
200
|
exportsInfo?: ExportInfo[];
|
|
267
|
-
|
|
268
201
|
nextToken?: string;
|
|
269
202
|
}
|
|
270
|
-
|
|
271
203
|
export interface ExportFilter {
|
|
272
204
|
name: string | undefined;
|
|
273
|
-
|
|
274
205
|
values: string[] | undefined;
|
|
275
|
-
|
|
276
206
|
condition: string | undefined;
|
|
277
207
|
}
|
|
278
208
|
export interface DescribeExportTasksRequest {
|
|
279
209
|
exportIds?: string[];
|
|
280
|
-
|
|
281
210
|
filters?: ExportFilter[];
|
|
282
|
-
|
|
283
211
|
maxResults?: number;
|
|
284
|
-
|
|
285
212
|
nextToken?: string;
|
|
286
213
|
}
|
|
287
214
|
export interface DescribeExportTasksResponse {
|
|
288
215
|
exportsInfo?: ExportInfo[];
|
|
289
|
-
|
|
290
216
|
nextToken?: string;
|
|
291
217
|
}
|
|
292
218
|
export declare enum ImportTaskFilterName {
|
|
@@ -294,17 +220,13 @@ export declare enum ImportTaskFilterName {
|
|
|
294
220
|
NAME = "NAME",
|
|
295
221
|
STATUS = "STATUS",
|
|
296
222
|
}
|
|
297
|
-
|
|
298
223
|
export interface ImportTaskFilter {
|
|
299
224
|
name?: ImportTaskFilterName | string;
|
|
300
|
-
|
|
301
225
|
values?: string[];
|
|
302
226
|
}
|
|
303
227
|
export interface DescribeImportTasksRequest {
|
|
304
228
|
filters?: ImportTaskFilter[];
|
|
305
|
-
|
|
306
229
|
maxResults?: number;
|
|
307
|
-
|
|
308
230
|
nextToken?: string;
|
|
309
231
|
}
|
|
310
232
|
export declare enum ImportStatus {
|
|
@@ -320,50 +242,32 @@ export declare enum ImportStatus {
|
|
|
320
242
|
IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS",
|
|
321
243
|
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
322
244
|
}
|
|
323
|
-
|
|
324
245
|
export interface ImportTask {
|
|
325
246
|
importTaskId?: string;
|
|
326
|
-
|
|
327
247
|
clientRequestToken?: string;
|
|
328
|
-
|
|
329
248
|
name?: string;
|
|
330
|
-
|
|
331
249
|
importUrl?: string;
|
|
332
|
-
|
|
333
250
|
status?: ImportStatus | string;
|
|
334
|
-
|
|
335
251
|
importRequestTime?: Date;
|
|
336
|
-
|
|
337
252
|
importCompletionTime?: Date;
|
|
338
|
-
|
|
339
253
|
importDeletedTime?: Date;
|
|
340
|
-
|
|
341
254
|
serverImportSuccess?: number;
|
|
342
|
-
|
|
343
255
|
serverImportFailure?: number;
|
|
344
|
-
|
|
345
256
|
applicationImportSuccess?: number;
|
|
346
|
-
|
|
347
257
|
applicationImportFailure?: number;
|
|
348
|
-
|
|
349
258
|
errorsAndFailedEntriesZip?: string;
|
|
350
259
|
}
|
|
351
260
|
export interface DescribeImportTasksResponse {
|
|
352
261
|
nextToken?: string;
|
|
353
|
-
|
|
354
262
|
tasks?: ImportTask[];
|
|
355
263
|
}
|
|
356
|
-
|
|
357
264
|
export interface TagFilter {
|
|
358
265
|
name: string | undefined;
|
|
359
|
-
|
|
360
266
|
values: string[] | undefined;
|
|
361
267
|
}
|
|
362
268
|
export interface DescribeTagsRequest {
|
|
363
269
|
filters?: TagFilter[];
|
|
364
|
-
|
|
365
270
|
maxResults?: number;
|
|
366
|
-
|
|
367
271
|
nextToken?: string;
|
|
368
272
|
}
|
|
369
273
|
export declare enum ConfigurationItemType {
|
|
@@ -372,26 +276,19 @@ export declare enum ConfigurationItemType {
|
|
|
372
276
|
PROCESS = "PROCESS",
|
|
373
277
|
SERVER = "SERVER",
|
|
374
278
|
}
|
|
375
|
-
|
|
376
279
|
export interface ConfigurationTag {
|
|
377
280
|
configurationType?: ConfigurationItemType | string;
|
|
378
|
-
|
|
379
281
|
configurationId?: string;
|
|
380
|
-
|
|
381
282
|
key?: string;
|
|
382
|
-
|
|
383
283
|
value?: string;
|
|
384
|
-
|
|
385
284
|
timeOfCreation?: Date;
|
|
386
285
|
}
|
|
387
286
|
export interface DescribeTagsResponse {
|
|
388
287
|
tags?: ConfigurationTag[];
|
|
389
|
-
|
|
390
288
|
nextToken?: string;
|
|
391
289
|
}
|
|
392
290
|
export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
393
291
|
applicationConfigurationId: string | undefined;
|
|
394
|
-
|
|
395
292
|
configurationIds: string[] | undefined;
|
|
396
293
|
}
|
|
397
294
|
export interface DisassociateConfigurationItemsFromApplicationResponse {}
|
|
@@ -408,67 +305,40 @@ export interface CustomerAgentlessCollectorInfo {
|
|
|
408
305
|
totalAgentlessCollectors: number | undefined;
|
|
409
306
|
unknownAgentlessCollectors: number | undefined;
|
|
410
307
|
}
|
|
411
|
-
|
|
412
308
|
export interface CustomerAgentInfo {
|
|
413
309
|
activeAgents: number | undefined;
|
|
414
|
-
|
|
415
310
|
healthyAgents: number | undefined;
|
|
416
|
-
|
|
417
311
|
blackListedAgents: number | undefined;
|
|
418
|
-
|
|
419
312
|
shutdownAgents: number | undefined;
|
|
420
|
-
|
|
421
313
|
unhealthyAgents: number | undefined;
|
|
422
|
-
|
|
423
314
|
totalAgents: number | undefined;
|
|
424
|
-
|
|
425
315
|
unknownAgents: number | undefined;
|
|
426
316
|
}
|
|
427
|
-
|
|
428
317
|
export interface CustomerConnectorInfo {
|
|
429
318
|
activeConnectors: number | undefined;
|
|
430
|
-
|
|
431
319
|
healthyConnectors: number | undefined;
|
|
432
|
-
|
|
433
320
|
blackListedConnectors: number | undefined;
|
|
434
|
-
|
|
435
321
|
shutdownConnectors: number | undefined;
|
|
436
|
-
|
|
437
322
|
unhealthyConnectors: number | undefined;
|
|
438
|
-
|
|
439
323
|
totalConnectors: number | undefined;
|
|
440
|
-
|
|
441
324
|
unknownConnectors: number | undefined;
|
|
442
325
|
}
|
|
443
|
-
|
|
444
326
|
export interface CustomerMeCollectorInfo {
|
|
445
327
|
activeMeCollectors: number | undefined;
|
|
446
|
-
|
|
447
328
|
healthyMeCollectors: number | undefined;
|
|
448
|
-
|
|
449
329
|
denyListedMeCollectors: number | undefined;
|
|
450
|
-
|
|
451
330
|
shutdownMeCollectors: number | undefined;
|
|
452
|
-
|
|
453
331
|
unhealthyMeCollectors: number | undefined;
|
|
454
|
-
|
|
455
332
|
totalMeCollectors: number | undefined;
|
|
456
|
-
|
|
457
333
|
unknownMeCollectors: number | undefined;
|
|
458
334
|
}
|
|
459
335
|
export interface GetDiscoverySummaryResponse {
|
|
460
336
|
servers?: number;
|
|
461
|
-
|
|
462
337
|
applications?: number;
|
|
463
|
-
|
|
464
338
|
serversMappedToApplications?: number;
|
|
465
|
-
|
|
466
339
|
serversMappedtoTags?: number;
|
|
467
|
-
|
|
468
340
|
agentSummary?: CustomerAgentInfo;
|
|
469
|
-
|
|
470
341
|
connectorSummary?: CustomerConnectorInfo;
|
|
471
|
-
|
|
472
342
|
meCollectorSummary?: CustomerMeCollectorInfo;
|
|
473
343
|
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
|
|
474
344
|
}
|
|
@@ -476,72 +346,50 @@ export declare enum OrderString {
|
|
|
476
346
|
ASC = "ASC",
|
|
477
347
|
DESC = "DESC",
|
|
478
348
|
}
|
|
479
|
-
|
|
480
349
|
export interface OrderByElement {
|
|
481
350
|
fieldName: string | undefined;
|
|
482
|
-
|
|
483
351
|
sortOrder?: OrderString | string;
|
|
484
352
|
}
|
|
485
353
|
export interface ListConfigurationsRequest {
|
|
486
354
|
configurationType: ConfigurationItemType | string | undefined;
|
|
487
|
-
|
|
488
355
|
filters?: Filter[];
|
|
489
|
-
|
|
490
356
|
maxResults?: number;
|
|
491
|
-
|
|
492
357
|
nextToken?: string;
|
|
493
|
-
|
|
494
358
|
orderBy?: OrderByElement[];
|
|
495
359
|
}
|
|
496
360
|
export interface ListConfigurationsResponse {
|
|
497
361
|
configurations?: Record<string, string>[];
|
|
498
|
-
|
|
499
362
|
nextToken?: string;
|
|
500
363
|
}
|
|
501
364
|
export interface ListServerNeighborsRequest {
|
|
502
365
|
configurationId: string | undefined;
|
|
503
|
-
|
|
504
366
|
portInformationNeeded?: boolean;
|
|
505
|
-
|
|
506
367
|
neighborConfigurationIds?: string[];
|
|
507
|
-
|
|
508
368
|
maxResults?: number;
|
|
509
|
-
|
|
510
369
|
nextToken?: string;
|
|
511
370
|
}
|
|
512
|
-
|
|
513
371
|
export interface NeighborConnectionDetail {
|
|
514
372
|
sourceServerId: string | undefined;
|
|
515
|
-
|
|
516
373
|
destinationServerId: string | undefined;
|
|
517
|
-
|
|
518
374
|
destinationPort?: number;
|
|
519
|
-
|
|
520
375
|
transportProtocol?: string;
|
|
521
|
-
|
|
522
376
|
connectionsCount: number | undefined;
|
|
523
377
|
}
|
|
524
378
|
export interface ListServerNeighborsResponse {
|
|
525
379
|
neighbors: NeighborConnectionDetail[] | undefined;
|
|
526
|
-
|
|
527
380
|
nextToken?: string;
|
|
528
|
-
|
|
529
381
|
knownDependencyCount?: number;
|
|
530
382
|
}
|
|
531
|
-
|
|
532
383
|
export declare class ConflictErrorException extends __BaseException {
|
|
533
384
|
readonly name: "ConflictErrorException";
|
|
534
385
|
readonly $fault: "client";
|
|
535
|
-
|
|
536
386
|
constructor(
|
|
537
387
|
opts: __ExceptionOptionType<ConflictErrorException, __BaseException>
|
|
538
388
|
);
|
|
539
389
|
}
|
|
540
|
-
|
|
541
390
|
export declare class ResourceInUseException extends __BaseException {
|
|
542
391
|
readonly name: "ResourceInUseException";
|
|
543
392
|
readonly $fault: "client";
|
|
544
|
-
|
|
545
393
|
constructor(
|
|
546
394
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
547
395
|
);
|
|
@@ -549,13 +397,9 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
549
397
|
export interface StartContinuousExportRequest {}
|
|
550
398
|
export interface StartContinuousExportResponse {
|
|
551
399
|
exportId?: string;
|
|
552
|
-
|
|
553
400
|
s3Bucket?: string;
|
|
554
|
-
|
|
555
401
|
startTime?: Date;
|
|
556
|
-
|
|
557
402
|
dataSource?: DataSource | string;
|
|
558
|
-
|
|
559
403
|
schemaStorageConfig?: Record<string, string>;
|
|
560
404
|
}
|
|
561
405
|
export interface StartDataCollectionByAgentIdsRequest {
|
|
@@ -570,11 +414,8 @@ export declare enum ExportDataFormat {
|
|
|
570
414
|
}
|
|
571
415
|
export interface StartExportTaskRequest {
|
|
572
416
|
exportDataFormat?: (ExportDataFormat | string)[];
|
|
573
|
-
|
|
574
417
|
filters?: ExportFilter[];
|
|
575
|
-
|
|
576
418
|
startTime?: Date;
|
|
577
|
-
|
|
578
419
|
endTime?: Date;
|
|
579
420
|
}
|
|
580
421
|
export interface StartExportTaskResponse {
|
|
@@ -582,9 +423,7 @@ export interface StartExportTaskResponse {
|
|
|
582
423
|
}
|
|
583
424
|
export interface StartImportTaskRequest {
|
|
584
425
|
clientRequestToken?: string;
|
|
585
|
-
|
|
586
426
|
name: string | undefined;
|
|
587
|
-
|
|
588
427
|
importUrl: string | undefined;
|
|
589
428
|
}
|
|
590
429
|
export interface StartImportTaskResponse {
|
|
@@ -595,7 +434,6 @@ export interface StopContinuousExportRequest {
|
|
|
595
434
|
}
|
|
596
435
|
export interface StopContinuousExportResponse {
|
|
597
436
|
startTime?: Date;
|
|
598
|
-
|
|
599
437
|
stopTime?: Date;
|
|
600
438
|
}
|
|
601
439
|
export interface StopDataCollectionByAgentIdsRequest {
|
|
@@ -606,267 +444,197 @@ export interface StopDataCollectionByAgentIdsResponse {
|
|
|
606
444
|
}
|
|
607
445
|
export interface UpdateApplicationRequest {
|
|
608
446
|
configurationId: string | undefined;
|
|
609
|
-
|
|
610
447
|
name?: string;
|
|
611
|
-
|
|
612
448
|
description?: string;
|
|
613
449
|
}
|
|
614
450
|
export interface UpdateApplicationResponse {}
|
|
615
|
-
|
|
616
451
|
export declare const AgentConfigurationStatusFilterSensitiveLog: (
|
|
617
452
|
obj: AgentConfigurationStatus
|
|
618
453
|
) => any;
|
|
619
|
-
|
|
620
454
|
export declare const AgentNetworkInfoFilterSensitiveLog: (
|
|
621
455
|
obj: AgentNetworkInfo
|
|
622
456
|
) => any;
|
|
623
|
-
|
|
624
457
|
export declare const AgentInfoFilterSensitiveLog: (obj: AgentInfo) => any;
|
|
625
|
-
|
|
626
458
|
export declare const AssociateConfigurationItemsToApplicationRequestFilterSensitiveLog: (
|
|
627
459
|
obj: AssociateConfigurationItemsToApplicationRequest
|
|
628
460
|
) => any;
|
|
629
|
-
|
|
630
461
|
export declare const AssociateConfigurationItemsToApplicationResponseFilterSensitiveLog: (
|
|
631
462
|
obj: AssociateConfigurationItemsToApplicationResponse
|
|
632
463
|
) => any;
|
|
633
|
-
|
|
634
464
|
export declare const BatchDeleteImportDataRequestFilterSensitiveLog: (
|
|
635
465
|
obj: BatchDeleteImportDataRequest
|
|
636
466
|
) => any;
|
|
637
|
-
|
|
638
467
|
export declare const BatchDeleteImportDataErrorFilterSensitiveLog: (
|
|
639
468
|
obj: BatchDeleteImportDataError
|
|
640
469
|
) => any;
|
|
641
|
-
|
|
642
470
|
export declare const BatchDeleteImportDataResponseFilterSensitiveLog: (
|
|
643
471
|
obj: BatchDeleteImportDataResponse
|
|
644
472
|
) => any;
|
|
645
|
-
|
|
646
473
|
export declare const CreateApplicationRequestFilterSensitiveLog: (
|
|
647
474
|
obj: CreateApplicationRequest
|
|
648
475
|
) => any;
|
|
649
|
-
|
|
650
476
|
export declare const CreateApplicationResponseFilterSensitiveLog: (
|
|
651
477
|
obj: CreateApplicationResponse
|
|
652
478
|
) => any;
|
|
653
|
-
|
|
654
479
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
655
|
-
|
|
656
480
|
export declare const CreateTagsRequestFilterSensitiveLog: (
|
|
657
481
|
obj: CreateTagsRequest
|
|
658
482
|
) => any;
|
|
659
|
-
|
|
660
483
|
export declare const CreateTagsResponseFilterSensitiveLog: (
|
|
661
484
|
obj: CreateTagsResponse
|
|
662
485
|
) => any;
|
|
663
|
-
|
|
664
486
|
export declare const DeleteApplicationsRequestFilterSensitiveLog: (
|
|
665
487
|
obj: DeleteApplicationsRequest
|
|
666
488
|
) => any;
|
|
667
|
-
|
|
668
489
|
export declare const DeleteApplicationsResponseFilterSensitiveLog: (
|
|
669
490
|
obj: DeleteApplicationsResponse
|
|
670
491
|
) => any;
|
|
671
|
-
|
|
672
492
|
export declare const DeleteTagsRequestFilterSensitiveLog: (
|
|
673
493
|
obj: DeleteTagsRequest
|
|
674
494
|
) => any;
|
|
675
|
-
|
|
676
495
|
export declare const DeleteTagsResponseFilterSensitiveLog: (
|
|
677
496
|
obj: DeleteTagsResponse
|
|
678
497
|
) => any;
|
|
679
|
-
|
|
680
498
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
681
|
-
|
|
682
499
|
export declare const DescribeAgentsRequestFilterSensitiveLog: (
|
|
683
500
|
obj: DescribeAgentsRequest
|
|
684
501
|
) => any;
|
|
685
|
-
|
|
686
502
|
export declare const DescribeAgentsResponseFilterSensitiveLog: (
|
|
687
503
|
obj: DescribeAgentsResponse
|
|
688
504
|
) => any;
|
|
689
|
-
|
|
690
505
|
export declare const DescribeConfigurationsRequestFilterSensitiveLog: (
|
|
691
506
|
obj: DescribeConfigurationsRequest
|
|
692
507
|
) => any;
|
|
693
|
-
|
|
694
508
|
export declare const DescribeConfigurationsResponseFilterSensitiveLog: (
|
|
695
509
|
obj: DescribeConfigurationsResponse
|
|
696
510
|
) => any;
|
|
697
|
-
|
|
698
511
|
export declare const DescribeContinuousExportsRequestFilterSensitiveLog: (
|
|
699
512
|
obj: DescribeContinuousExportsRequest
|
|
700
513
|
) => any;
|
|
701
|
-
|
|
702
514
|
export declare const ContinuousExportDescriptionFilterSensitiveLog: (
|
|
703
515
|
obj: ContinuousExportDescription
|
|
704
516
|
) => any;
|
|
705
|
-
|
|
706
517
|
export declare const DescribeContinuousExportsResponseFilterSensitiveLog: (
|
|
707
518
|
obj: DescribeContinuousExportsResponse
|
|
708
519
|
) => any;
|
|
709
|
-
|
|
710
520
|
export declare const DescribeExportConfigurationsRequestFilterSensitiveLog: (
|
|
711
521
|
obj: DescribeExportConfigurationsRequest
|
|
712
522
|
) => any;
|
|
713
|
-
|
|
714
523
|
export declare const ExportInfoFilterSensitiveLog: (obj: ExportInfo) => any;
|
|
715
|
-
|
|
716
524
|
export declare const DescribeExportConfigurationsResponseFilterSensitiveLog: (
|
|
717
525
|
obj: DescribeExportConfigurationsResponse
|
|
718
526
|
) => any;
|
|
719
|
-
|
|
720
527
|
export declare const ExportFilterFilterSensitiveLog: (obj: ExportFilter) => any;
|
|
721
|
-
|
|
722
528
|
export declare const DescribeExportTasksRequestFilterSensitiveLog: (
|
|
723
529
|
obj: DescribeExportTasksRequest
|
|
724
530
|
) => any;
|
|
725
|
-
|
|
726
531
|
export declare const DescribeExportTasksResponseFilterSensitiveLog: (
|
|
727
532
|
obj: DescribeExportTasksResponse
|
|
728
533
|
) => any;
|
|
729
|
-
|
|
730
534
|
export declare const ImportTaskFilterFilterSensitiveLog: (
|
|
731
535
|
obj: ImportTaskFilter
|
|
732
536
|
) => any;
|
|
733
|
-
|
|
734
537
|
export declare const DescribeImportTasksRequestFilterSensitiveLog: (
|
|
735
538
|
obj: DescribeImportTasksRequest
|
|
736
539
|
) => any;
|
|
737
|
-
|
|
738
540
|
export declare const ImportTaskFilterSensitiveLog: (obj: ImportTask) => any;
|
|
739
|
-
|
|
740
541
|
export declare const DescribeImportTasksResponseFilterSensitiveLog: (
|
|
741
542
|
obj: DescribeImportTasksResponse
|
|
742
543
|
) => any;
|
|
743
|
-
|
|
744
544
|
export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
|
|
745
|
-
|
|
746
545
|
export declare const DescribeTagsRequestFilterSensitiveLog: (
|
|
747
546
|
obj: DescribeTagsRequest
|
|
748
547
|
) => any;
|
|
749
|
-
|
|
750
548
|
export declare const ConfigurationTagFilterSensitiveLog: (
|
|
751
549
|
obj: ConfigurationTag
|
|
752
550
|
) => any;
|
|
753
|
-
|
|
754
551
|
export declare const DescribeTagsResponseFilterSensitiveLog: (
|
|
755
552
|
obj: DescribeTagsResponse
|
|
756
553
|
) => any;
|
|
757
|
-
|
|
758
554
|
export declare const DisassociateConfigurationItemsFromApplicationRequestFilterSensitiveLog: (
|
|
759
555
|
obj: DisassociateConfigurationItemsFromApplicationRequest
|
|
760
556
|
) => any;
|
|
761
|
-
|
|
762
557
|
export declare const DisassociateConfigurationItemsFromApplicationResponseFilterSensitiveLog: (
|
|
763
558
|
obj: DisassociateConfigurationItemsFromApplicationResponse
|
|
764
559
|
) => any;
|
|
765
|
-
|
|
766
560
|
export declare const ExportConfigurationsResponseFilterSensitiveLog: (
|
|
767
561
|
obj: ExportConfigurationsResponse
|
|
768
562
|
) => any;
|
|
769
|
-
|
|
770
563
|
export declare const GetDiscoverySummaryRequestFilterSensitiveLog: (
|
|
771
564
|
obj: GetDiscoverySummaryRequest
|
|
772
565
|
) => any;
|
|
773
|
-
|
|
774
566
|
export declare const CustomerAgentlessCollectorInfoFilterSensitiveLog: (
|
|
775
567
|
obj: CustomerAgentlessCollectorInfo
|
|
776
568
|
) => any;
|
|
777
|
-
|
|
778
569
|
export declare const CustomerAgentInfoFilterSensitiveLog: (
|
|
779
570
|
obj: CustomerAgentInfo
|
|
780
571
|
) => any;
|
|
781
|
-
|
|
782
572
|
export declare const CustomerConnectorInfoFilterSensitiveLog: (
|
|
783
573
|
obj: CustomerConnectorInfo
|
|
784
574
|
) => any;
|
|
785
|
-
|
|
786
575
|
export declare const CustomerMeCollectorInfoFilterSensitiveLog: (
|
|
787
576
|
obj: CustomerMeCollectorInfo
|
|
788
577
|
) => any;
|
|
789
|
-
|
|
790
578
|
export declare const GetDiscoverySummaryResponseFilterSensitiveLog: (
|
|
791
579
|
obj: GetDiscoverySummaryResponse
|
|
792
580
|
) => any;
|
|
793
|
-
|
|
794
581
|
export declare const OrderByElementFilterSensitiveLog: (
|
|
795
582
|
obj: OrderByElement
|
|
796
583
|
) => any;
|
|
797
|
-
|
|
798
584
|
export declare const ListConfigurationsRequestFilterSensitiveLog: (
|
|
799
585
|
obj: ListConfigurationsRequest
|
|
800
586
|
) => any;
|
|
801
|
-
|
|
802
587
|
export declare const ListConfigurationsResponseFilterSensitiveLog: (
|
|
803
588
|
obj: ListConfigurationsResponse
|
|
804
589
|
) => any;
|
|
805
|
-
|
|
806
590
|
export declare const ListServerNeighborsRequestFilterSensitiveLog: (
|
|
807
591
|
obj: ListServerNeighborsRequest
|
|
808
592
|
) => any;
|
|
809
|
-
|
|
810
593
|
export declare const NeighborConnectionDetailFilterSensitiveLog: (
|
|
811
594
|
obj: NeighborConnectionDetail
|
|
812
595
|
) => any;
|
|
813
|
-
|
|
814
596
|
export declare const ListServerNeighborsResponseFilterSensitiveLog: (
|
|
815
597
|
obj: ListServerNeighborsResponse
|
|
816
598
|
) => any;
|
|
817
|
-
|
|
818
599
|
export declare const StartContinuousExportRequestFilterSensitiveLog: (
|
|
819
600
|
obj: StartContinuousExportRequest
|
|
820
601
|
) => any;
|
|
821
|
-
|
|
822
602
|
export declare const StartContinuousExportResponseFilterSensitiveLog: (
|
|
823
603
|
obj: StartContinuousExportResponse
|
|
824
604
|
) => any;
|
|
825
|
-
|
|
826
605
|
export declare const StartDataCollectionByAgentIdsRequestFilterSensitiveLog: (
|
|
827
606
|
obj: StartDataCollectionByAgentIdsRequest
|
|
828
607
|
) => any;
|
|
829
|
-
|
|
830
608
|
export declare const StartDataCollectionByAgentIdsResponseFilterSensitiveLog: (
|
|
831
609
|
obj: StartDataCollectionByAgentIdsResponse
|
|
832
610
|
) => any;
|
|
833
|
-
|
|
834
611
|
export declare const StartExportTaskRequestFilterSensitiveLog: (
|
|
835
612
|
obj: StartExportTaskRequest
|
|
836
613
|
) => any;
|
|
837
|
-
|
|
838
614
|
export declare const StartExportTaskResponseFilterSensitiveLog: (
|
|
839
615
|
obj: StartExportTaskResponse
|
|
840
616
|
) => any;
|
|
841
|
-
|
|
842
617
|
export declare const StartImportTaskRequestFilterSensitiveLog: (
|
|
843
618
|
obj: StartImportTaskRequest
|
|
844
619
|
) => any;
|
|
845
|
-
|
|
846
620
|
export declare const StartImportTaskResponseFilterSensitiveLog: (
|
|
847
621
|
obj: StartImportTaskResponse
|
|
848
622
|
) => any;
|
|
849
|
-
|
|
850
623
|
export declare const StopContinuousExportRequestFilterSensitiveLog: (
|
|
851
624
|
obj: StopContinuousExportRequest
|
|
852
625
|
) => any;
|
|
853
|
-
|
|
854
626
|
export declare const StopContinuousExportResponseFilterSensitiveLog: (
|
|
855
627
|
obj: StopContinuousExportResponse
|
|
856
628
|
) => any;
|
|
857
|
-
|
|
858
629
|
export declare const StopDataCollectionByAgentIdsRequestFilterSensitiveLog: (
|
|
859
630
|
obj: StopDataCollectionByAgentIdsRequest
|
|
860
631
|
) => any;
|
|
861
|
-
|
|
862
632
|
export declare const StopDataCollectionByAgentIdsResponseFilterSensitiveLog: (
|
|
863
633
|
obj: StopDataCollectionByAgentIdsResponse
|
|
864
634
|
) => any;
|
|
865
|
-
|
|
866
635
|
export declare const UpdateApplicationRequestFilterSensitiveLog: (
|
|
867
636
|
obj: UpdateApplicationRequest
|
|
868
637
|
) => any;
|
|
869
|
-
|
|
870
638
|
export declare const UpdateApplicationResponseFilterSensitiveLog: (
|
|
871
639
|
obj: UpdateApplicationResponse
|
|
872
640
|
) => any;
|