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