@aws-sdk/client-application-discovery-service 3.687.0 → 3.692.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-types/models/models_0.d.ts +159 -159
- package/dist-types/ts3.4/models/models_0.d.ts +159 -159
- package/package.json +35 -35
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
3
3
|
export interface AgentConfigurationStatus {
|
|
4
|
-
agentId?: string;
|
|
5
|
-
operationSucceeded?: boolean;
|
|
6
|
-
description?: string;
|
|
4
|
+
agentId?: string | undefined;
|
|
5
|
+
operationSucceeded?: boolean | undefined;
|
|
6
|
+
description?: string | undefined;
|
|
7
7
|
}
|
|
8
8
|
export interface AgentNetworkInfo {
|
|
9
|
-
ipAddress?: string;
|
|
10
|
-
macAddress?: string;
|
|
9
|
+
ipAddress?: string | undefined;
|
|
10
|
+
macAddress?: string | undefined;
|
|
11
11
|
}
|
|
12
12
|
export declare const AgentStatus: {
|
|
13
13
|
readonly BLACKLISTED: "BLACKLISTED";
|
|
@@ -19,16 +19,16 @@ export declare const AgentStatus: {
|
|
|
19
19
|
};
|
|
20
20
|
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
21
21
|
export interface AgentInfo {
|
|
22
|
-
agentId?: string;
|
|
23
|
-
hostName?: string;
|
|
24
|
-
agentNetworkInfoList?: AgentNetworkInfo[];
|
|
25
|
-
connectorId?: string;
|
|
26
|
-
version?: string;
|
|
27
|
-
health?: AgentStatus;
|
|
28
|
-
lastHealthPingTime?: string;
|
|
29
|
-
collectionStatus?: string;
|
|
30
|
-
agentType?: string;
|
|
31
|
-
registeredTime?: string;
|
|
22
|
+
agentId?: string | undefined;
|
|
23
|
+
hostName?: string | undefined;
|
|
24
|
+
agentNetworkInfoList?: AgentNetworkInfo[] | undefined;
|
|
25
|
+
connectorId?: string | undefined;
|
|
26
|
+
version?: string | undefined;
|
|
27
|
+
health?: AgentStatus | undefined;
|
|
28
|
+
lastHealthPingTime?: string | undefined;
|
|
29
|
+
collectionStatus?: string | undefined;
|
|
30
|
+
agentType?: string | undefined;
|
|
31
|
+
registeredTime?: string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface AssociateConfigurationItemsToApplicationRequest {
|
|
34
34
|
applicationConfigurationId: string | undefined;
|
|
@@ -72,7 +72,7 @@ export declare class ServerInternalErrorException extends __BaseException {
|
|
|
72
72
|
}
|
|
73
73
|
export interface DeleteAgent {
|
|
74
74
|
agentId: string | undefined;
|
|
75
|
-
force?: boolean;
|
|
75
|
+
force?: boolean | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface BatchDeleteAgentsRequest {
|
|
78
78
|
deleteAgents: DeleteAgent[] | undefined;
|
|
@@ -90,11 +90,11 @@ export interface BatchDeleteAgentError {
|
|
|
90
90
|
errorCode: DeleteAgentErrorCode | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface BatchDeleteAgentsResponse {
|
|
93
|
-
errors?: BatchDeleteAgentError[];
|
|
93
|
+
errors?: BatchDeleteAgentError[] | undefined;
|
|
94
94
|
}
|
|
95
95
|
export interface BatchDeleteImportDataRequest {
|
|
96
96
|
importTaskIds: string[] | undefined;
|
|
97
|
-
deleteHistory?: boolean;
|
|
97
|
+
deleteHistory?: boolean | undefined;
|
|
98
98
|
}
|
|
99
99
|
export declare const BatchDeleteImportDataErrorCode: {
|
|
100
100
|
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
@@ -104,19 +104,19 @@ export declare const BatchDeleteImportDataErrorCode: {
|
|
|
104
104
|
export type BatchDeleteImportDataErrorCode =
|
|
105
105
|
(typeof BatchDeleteImportDataErrorCode)[keyof typeof BatchDeleteImportDataErrorCode];
|
|
106
106
|
export interface BatchDeleteImportDataError {
|
|
107
|
-
importTaskId?: string;
|
|
108
|
-
errorCode?: BatchDeleteImportDataErrorCode;
|
|
109
|
-
errorDescription?: string;
|
|
107
|
+
importTaskId?: string | undefined;
|
|
108
|
+
errorCode?: BatchDeleteImportDataErrorCode | undefined;
|
|
109
|
+
errorDescription?: string | undefined;
|
|
110
110
|
}
|
|
111
111
|
export interface BatchDeleteImportDataResponse {
|
|
112
|
-
errors?: BatchDeleteImportDataError[];
|
|
112
|
+
errors?: BatchDeleteImportDataError[] | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface CreateApplicationRequest {
|
|
115
115
|
name: string | undefined;
|
|
116
|
-
description?: string;
|
|
116
|
+
description?: string | undefined;
|
|
117
117
|
}
|
|
118
118
|
export interface CreateApplicationResponse {
|
|
119
|
-
configurationId?: string;
|
|
119
|
+
configurationId?: string | undefined;
|
|
120
120
|
}
|
|
121
121
|
export interface Tag {
|
|
122
122
|
key: string | undefined;
|
|
@@ -140,7 +140,7 @@ export interface DeleteApplicationsRequest {
|
|
|
140
140
|
export interface DeleteApplicationsResponse {}
|
|
141
141
|
export interface DeleteTagsRequest {
|
|
142
142
|
configurationIds: string[] | undefined;
|
|
143
|
-
tags?: Tag[];
|
|
143
|
+
tags?: Tag[] | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface DeleteTagsResponse {}
|
|
146
146
|
export interface Filter {
|
|
@@ -149,14 +149,14 @@ export interface Filter {
|
|
|
149
149
|
condition: string | undefined;
|
|
150
150
|
}
|
|
151
151
|
export interface DescribeAgentsRequest {
|
|
152
|
-
agentIds?: string[];
|
|
153
|
-
filters?: Filter[];
|
|
154
|
-
maxResults?: number;
|
|
155
|
-
nextToken?: string;
|
|
152
|
+
agentIds?: string[] | undefined;
|
|
153
|
+
filters?: Filter[] | undefined;
|
|
154
|
+
maxResults?: number | undefined;
|
|
155
|
+
nextToken?: string | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface DescribeAgentsResponse {
|
|
158
|
-
agentsInfo?: AgentInfo[];
|
|
159
|
-
nextToken?: string;
|
|
158
|
+
agentsInfo?: AgentInfo[] | undefined;
|
|
159
|
+
nextToken?: string | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface DescribeBatchDeleteConfigurationTaskRequest {
|
|
162
162
|
taskId: string | undefined;
|
|
@@ -167,14 +167,14 @@ export declare const DeletionConfigurationItemType: {
|
|
|
167
167
|
export type DeletionConfigurationItemType =
|
|
168
168
|
(typeof DeletionConfigurationItemType)[keyof typeof DeletionConfigurationItemType];
|
|
169
169
|
export interface DeletionWarning {
|
|
170
|
-
configurationId?: string;
|
|
171
|
-
warningCode?: number;
|
|
172
|
-
warningText?: string;
|
|
170
|
+
configurationId?: string | undefined;
|
|
171
|
+
warningCode?: number | undefined;
|
|
172
|
+
warningText?: string | undefined;
|
|
173
173
|
}
|
|
174
174
|
export interface FailedConfiguration {
|
|
175
|
-
configurationId?: string;
|
|
176
|
-
errorStatusCode?: number;
|
|
177
|
-
errorMessage?: string;
|
|
175
|
+
configurationId?: string | undefined;
|
|
176
|
+
errorStatusCode?: number | undefined;
|
|
177
|
+
errorMessage?: string | undefined;
|
|
178
178
|
}
|
|
179
179
|
export declare const BatchDeleteConfigurationTaskStatus: {
|
|
180
180
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -186,29 +186,29 @@ export declare const BatchDeleteConfigurationTaskStatus: {
|
|
|
186
186
|
export type BatchDeleteConfigurationTaskStatus =
|
|
187
187
|
(typeof BatchDeleteConfigurationTaskStatus)[keyof typeof BatchDeleteConfigurationTaskStatus];
|
|
188
188
|
export interface BatchDeleteConfigurationTask {
|
|
189
|
-
taskId?: string;
|
|
190
|
-
status?: BatchDeleteConfigurationTaskStatus;
|
|
191
|
-
startTime?: Date;
|
|
192
|
-
endTime?: Date;
|
|
193
|
-
configurationType?: DeletionConfigurationItemType;
|
|
194
|
-
requestedConfigurations?: string[];
|
|
195
|
-
deletedConfigurations?: string[];
|
|
196
|
-
failedConfigurations?: FailedConfiguration[];
|
|
197
|
-
deletionWarnings?: DeletionWarning[];
|
|
189
|
+
taskId?: string | undefined;
|
|
190
|
+
status?: BatchDeleteConfigurationTaskStatus | undefined;
|
|
191
|
+
startTime?: Date | undefined;
|
|
192
|
+
endTime?: Date | undefined;
|
|
193
|
+
configurationType?: DeletionConfigurationItemType | undefined;
|
|
194
|
+
requestedConfigurations?: string[] | undefined;
|
|
195
|
+
deletedConfigurations?: string[] | undefined;
|
|
196
|
+
failedConfigurations?: FailedConfiguration[] | undefined;
|
|
197
|
+
deletionWarnings?: DeletionWarning[] | undefined;
|
|
198
198
|
}
|
|
199
199
|
export interface DescribeBatchDeleteConfigurationTaskResponse {
|
|
200
|
-
task?: BatchDeleteConfigurationTask;
|
|
200
|
+
task?: BatchDeleteConfigurationTask | undefined;
|
|
201
201
|
}
|
|
202
202
|
export interface DescribeConfigurationsRequest {
|
|
203
203
|
configurationIds: string[] | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface DescribeConfigurationsResponse {
|
|
206
|
-
configurations?: Record<string, string>[];
|
|
206
|
+
configurations?: Record<string, string>[] | undefined;
|
|
207
207
|
}
|
|
208
208
|
export interface DescribeContinuousExportsRequest {
|
|
209
|
-
exportIds?: string[];
|
|
210
|
-
maxResults?: number;
|
|
211
|
-
nextToken?: string;
|
|
209
|
+
exportIds?: string[] | undefined;
|
|
210
|
+
maxResults?: number | undefined;
|
|
211
|
+
nextToken?: string | undefined;
|
|
212
212
|
}
|
|
213
213
|
export declare const DataSource: {
|
|
214
214
|
readonly AGENT: "AGENT";
|
|
@@ -226,18 +226,18 @@ export declare const ContinuousExportStatus: {
|
|
|
226
226
|
export type ContinuousExportStatus =
|
|
227
227
|
(typeof ContinuousExportStatus)[keyof typeof ContinuousExportStatus];
|
|
228
228
|
export interface ContinuousExportDescription {
|
|
229
|
-
exportId?: string;
|
|
230
|
-
status?: ContinuousExportStatus;
|
|
231
|
-
statusDetail?: string;
|
|
232
|
-
s3Bucket?: string;
|
|
233
|
-
startTime?: Date;
|
|
234
|
-
stopTime?: Date;
|
|
235
|
-
dataSource?: DataSource;
|
|
236
|
-
schemaStorageConfig?: Record<string, string
|
|
229
|
+
exportId?: string | undefined;
|
|
230
|
+
status?: ContinuousExportStatus | undefined;
|
|
231
|
+
statusDetail?: string | undefined;
|
|
232
|
+
s3Bucket?: string | undefined;
|
|
233
|
+
startTime?: Date | undefined;
|
|
234
|
+
stopTime?: Date | undefined;
|
|
235
|
+
dataSource?: DataSource | undefined;
|
|
236
|
+
schemaStorageConfig?: Record<string, string> | undefined;
|
|
237
237
|
}
|
|
238
238
|
export interface DescribeContinuousExportsResponse {
|
|
239
|
-
descriptions?: ContinuousExportDescription[];
|
|
240
|
-
nextToken?: string;
|
|
239
|
+
descriptions?: ContinuousExportDescription[] | undefined;
|
|
240
|
+
nextToken?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
243
243
|
readonly name: "OperationNotPermittedException";
|
|
@@ -247,9 +247,9 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
247
247
|
);
|
|
248
248
|
}
|
|
249
249
|
export interface DescribeExportConfigurationsRequest {
|
|
250
|
-
exportIds?: string[];
|
|
251
|
-
maxResults?: number;
|
|
252
|
-
nextToken?: string;
|
|
250
|
+
exportIds?: string[] | undefined;
|
|
251
|
+
maxResults?: number | undefined;
|
|
252
|
+
nextToken?: string | undefined;
|
|
253
253
|
}
|
|
254
254
|
export declare const ExportStatus: {
|
|
255
255
|
readonly FAILED: "FAILED";
|
|
@@ -261,15 +261,15 @@ export interface ExportInfo {
|
|
|
261
261
|
exportId: string | undefined;
|
|
262
262
|
exportStatus: ExportStatus | undefined;
|
|
263
263
|
statusMessage: string | undefined;
|
|
264
|
-
configurationsDownloadUrl?: string;
|
|
264
|
+
configurationsDownloadUrl?: string | undefined;
|
|
265
265
|
exportRequestTime: Date | undefined;
|
|
266
|
-
isTruncated?: boolean;
|
|
267
|
-
requestedStartTime?: Date;
|
|
268
|
-
requestedEndTime?: Date;
|
|
266
|
+
isTruncated?: boolean | undefined;
|
|
267
|
+
requestedStartTime?: Date | undefined;
|
|
268
|
+
requestedEndTime?: Date | undefined;
|
|
269
269
|
}
|
|
270
270
|
export interface DescribeExportConfigurationsResponse {
|
|
271
|
-
exportsInfo?: ExportInfo[];
|
|
272
|
-
nextToken?: string;
|
|
271
|
+
exportsInfo?: ExportInfo[] | undefined;
|
|
272
|
+
nextToken?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface ExportFilter {
|
|
275
275
|
name: string | undefined;
|
|
@@ -277,14 +277,14 @@ export interface ExportFilter {
|
|
|
277
277
|
condition: string | undefined;
|
|
278
278
|
}
|
|
279
279
|
export interface DescribeExportTasksRequest {
|
|
280
|
-
exportIds?: string[];
|
|
281
|
-
filters?: ExportFilter[];
|
|
282
|
-
maxResults?: number;
|
|
283
|
-
nextToken?: string;
|
|
280
|
+
exportIds?: string[] | undefined;
|
|
281
|
+
filters?: ExportFilter[] | undefined;
|
|
282
|
+
maxResults?: number | undefined;
|
|
283
|
+
nextToken?: string | undefined;
|
|
284
284
|
}
|
|
285
285
|
export interface DescribeExportTasksResponse {
|
|
286
|
-
exportsInfo?: ExportInfo[];
|
|
287
|
-
nextToken?: string;
|
|
286
|
+
exportsInfo?: ExportInfo[] | undefined;
|
|
287
|
+
nextToken?: string | undefined;
|
|
288
288
|
}
|
|
289
289
|
export declare const ImportTaskFilterName: {
|
|
290
290
|
readonly IMPORT_TASK_ID: "IMPORT_TASK_ID";
|
|
@@ -294,13 +294,13 @@ export declare const ImportTaskFilterName: {
|
|
|
294
294
|
export type ImportTaskFilterName =
|
|
295
295
|
(typeof ImportTaskFilterName)[keyof typeof ImportTaskFilterName];
|
|
296
296
|
export interface ImportTaskFilter {
|
|
297
|
-
name?: ImportTaskFilterName;
|
|
298
|
-
values?: string[];
|
|
297
|
+
name?: ImportTaskFilterName | undefined;
|
|
298
|
+
values?: string[] | undefined;
|
|
299
299
|
}
|
|
300
300
|
export interface DescribeImportTasksRequest {
|
|
301
|
-
filters?: ImportTaskFilter[];
|
|
302
|
-
maxResults?: number;
|
|
303
|
-
nextToken?: string;
|
|
301
|
+
filters?: ImportTaskFilter[] | undefined;
|
|
302
|
+
maxResults?: number | undefined;
|
|
303
|
+
nextToken?: string | undefined;
|
|
304
304
|
}
|
|
305
305
|
export declare const ImportStatus: {
|
|
306
306
|
readonly DELETE_COMPLETE: "DELETE_COMPLETE";
|
|
@@ -317,32 +317,32 @@ export declare const ImportStatus: {
|
|
|
317
317
|
};
|
|
318
318
|
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
319
319
|
export interface ImportTask {
|
|
320
|
-
importTaskId?: string;
|
|
321
|
-
clientRequestToken?: string;
|
|
322
|
-
name?: string;
|
|
323
|
-
importUrl?: string;
|
|
324
|
-
status?: ImportStatus;
|
|
325
|
-
importRequestTime?: Date;
|
|
326
|
-
importCompletionTime?: Date;
|
|
327
|
-
importDeletedTime?: Date;
|
|
328
|
-
serverImportSuccess?: number;
|
|
329
|
-
serverImportFailure?: number;
|
|
330
|
-
applicationImportSuccess?: number;
|
|
331
|
-
applicationImportFailure?: number;
|
|
332
|
-
errorsAndFailedEntriesZip?: string;
|
|
320
|
+
importTaskId?: string | undefined;
|
|
321
|
+
clientRequestToken?: string | undefined;
|
|
322
|
+
name?: string | undefined;
|
|
323
|
+
importUrl?: string | undefined;
|
|
324
|
+
status?: ImportStatus | undefined;
|
|
325
|
+
importRequestTime?: Date | undefined;
|
|
326
|
+
importCompletionTime?: Date | undefined;
|
|
327
|
+
importDeletedTime?: Date | undefined;
|
|
328
|
+
serverImportSuccess?: number | undefined;
|
|
329
|
+
serverImportFailure?: number | undefined;
|
|
330
|
+
applicationImportSuccess?: number | undefined;
|
|
331
|
+
applicationImportFailure?: number | undefined;
|
|
332
|
+
errorsAndFailedEntriesZip?: string | undefined;
|
|
333
333
|
}
|
|
334
334
|
export interface DescribeImportTasksResponse {
|
|
335
|
-
nextToken?: string;
|
|
336
|
-
tasks?: ImportTask[];
|
|
335
|
+
nextToken?: string | undefined;
|
|
336
|
+
tasks?: ImportTask[] | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface TagFilter {
|
|
339
339
|
name: string | undefined;
|
|
340
340
|
values: string[] | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface DescribeTagsRequest {
|
|
343
|
-
filters?: TagFilter[];
|
|
344
|
-
maxResults?: number;
|
|
345
|
-
nextToken?: string;
|
|
343
|
+
filters?: TagFilter[] | undefined;
|
|
344
|
+
maxResults?: number | undefined;
|
|
345
|
+
nextToken?: string | undefined;
|
|
346
346
|
}
|
|
347
347
|
export declare const ConfigurationItemType: {
|
|
348
348
|
readonly APPLICATION: "APPLICATION";
|
|
@@ -353,15 +353,15 @@ export declare const ConfigurationItemType: {
|
|
|
353
353
|
export type ConfigurationItemType =
|
|
354
354
|
(typeof ConfigurationItemType)[keyof typeof ConfigurationItemType];
|
|
355
355
|
export interface ConfigurationTag {
|
|
356
|
-
configurationType?: ConfigurationItemType;
|
|
357
|
-
configurationId?: string;
|
|
358
|
-
key?: string;
|
|
359
|
-
value?: string;
|
|
360
|
-
timeOfCreation?: Date;
|
|
356
|
+
configurationType?: ConfigurationItemType | undefined;
|
|
357
|
+
configurationId?: string | undefined;
|
|
358
|
+
key?: string | undefined;
|
|
359
|
+
value?: string | undefined;
|
|
360
|
+
timeOfCreation?: Date | undefined;
|
|
361
361
|
}
|
|
362
362
|
export interface DescribeTagsResponse {
|
|
363
|
-
tags?: ConfigurationTag[];
|
|
364
|
-
nextToken?: string;
|
|
363
|
+
tags?: ConfigurationTag[] | undefined;
|
|
364
|
+
nextToken?: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
367
367
|
applicationConfigurationId: string | undefined;
|
|
@@ -369,7 +369,7 @@ export interface DisassociateConfigurationItemsFromApplicationRequest {
|
|
|
369
369
|
}
|
|
370
370
|
export interface DisassociateConfigurationItemsFromApplicationResponse {}
|
|
371
371
|
export interface ExportConfigurationsResponse {
|
|
372
|
-
exportId?: string;
|
|
372
|
+
exportId?: string | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface GetDiscoverySummaryRequest {}
|
|
375
375
|
export interface CustomerAgentlessCollectorInfo {
|
|
@@ -409,14 +409,14 @@ export interface CustomerMeCollectorInfo {
|
|
|
409
409
|
unknownMeCollectors: number | undefined;
|
|
410
410
|
}
|
|
411
411
|
export interface GetDiscoverySummaryResponse {
|
|
412
|
-
servers?: number;
|
|
413
|
-
applications?: number;
|
|
414
|
-
serversMappedToApplications?: number;
|
|
415
|
-
serversMappedtoTags?: number;
|
|
416
|
-
agentSummary?: CustomerAgentInfo;
|
|
417
|
-
connectorSummary?: CustomerConnectorInfo;
|
|
418
|
-
meCollectorSummary?: CustomerMeCollectorInfo;
|
|
419
|
-
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
|
|
412
|
+
servers?: number | undefined;
|
|
413
|
+
applications?: number | undefined;
|
|
414
|
+
serversMappedToApplications?: number | undefined;
|
|
415
|
+
serversMappedtoTags?: number | undefined;
|
|
416
|
+
agentSummary?: CustomerAgentInfo | undefined;
|
|
417
|
+
connectorSummary?: CustomerConnectorInfo | undefined;
|
|
418
|
+
meCollectorSummary?: CustomerMeCollectorInfo | undefined;
|
|
419
|
+
agentlessCollectorSummary?: CustomerAgentlessCollectorInfo | undefined;
|
|
420
420
|
}
|
|
421
421
|
export declare const OrderString: {
|
|
422
422
|
readonly ASC: "ASC";
|
|
@@ -425,37 +425,37 @@ export declare const OrderString: {
|
|
|
425
425
|
export type OrderString = (typeof OrderString)[keyof typeof OrderString];
|
|
426
426
|
export interface OrderByElement {
|
|
427
427
|
fieldName: string | undefined;
|
|
428
|
-
sortOrder?: OrderString;
|
|
428
|
+
sortOrder?: OrderString | undefined;
|
|
429
429
|
}
|
|
430
430
|
export interface ListConfigurationsRequest {
|
|
431
431
|
configurationType: ConfigurationItemType | undefined;
|
|
432
|
-
filters?: Filter[];
|
|
433
|
-
maxResults?: number;
|
|
434
|
-
nextToken?: string;
|
|
435
|
-
orderBy?: OrderByElement[];
|
|
432
|
+
filters?: Filter[] | undefined;
|
|
433
|
+
maxResults?: number | undefined;
|
|
434
|
+
nextToken?: string | undefined;
|
|
435
|
+
orderBy?: OrderByElement[] | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface ListConfigurationsResponse {
|
|
438
|
-
configurations?: Record<string, string>[];
|
|
439
|
-
nextToken?: string;
|
|
438
|
+
configurations?: Record<string, string>[] | undefined;
|
|
439
|
+
nextToken?: string | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface ListServerNeighborsRequest {
|
|
442
442
|
configurationId: string | undefined;
|
|
443
|
-
portInformationNeeded?: boolean;
|
|
444
|
-
neighborConfigurationIds?: string[];
|
|
445
|
-
maxResults?: number;
|
|
446
|
-
nextToken?: string;
|
|
443
|
+
portInformationNeeded?: boolean | undefined;
|
|
444
|
+
neighborConfigurationIds?: string[] | undefined;
|
|
445
|
+
maxResults?: number | undefined;
|
|
446
|
+
nextToken?: string | undefined;
|
|
447
447
|
}
|
|
448
448
|
export interface NeighborConnectionDetail {
|
|
449
449
|
sourceServerId: string | undefined;
|
|
450
450
|
destinationServerId: string | undefined;
|
|
451
|
-
destinationPort?: number;
|
|
452
|
-
transportProtocol?: string;
|
|
451
|
+
destinationPort?: number | undefined;
|
|
452
|
+
transportProtocol?: string | undefined;
|
|
453
453
|
connectionsCount: number | undefined;
|
|
454
454
|
}
|
|
455
455
|
export interface ListServerNeighborsResponse {
|
|
456
456
|
neighbors: NeighborConnectionDetail[] | undefined;
|
|
457
|
-
nextToken?: string;
|
|
458
|
-
knownDependencyCount?: number;
|
|
457
|
+
nextToken?: string | undefined;
|
|
458
|
+
knownDependencyCount?: number | undefined;
|
|
459
459
|
}
|
|
460
460
|
export declare class LimitExceededException extends __BaseException {
|
|
461
461
|
readonly name: "LimitExceededException";
|
|
@@ -469,7 +469,7 @@ export interface StartBatchDeleteConfigurationTaskRequest {
|
|
|
469
469
|
configurationIds: string[] | undefined;
|
|
470
470
|
}
|
|
471
471
|
export interface StartBatchDeleteConfigurationTaskResponse {
|
|
472
|
-
taskId?: string;
|
|
472
|
+
taskId?: string | undefined;
|
|
473
473
|
}
|
|
474
474
|
export declare class ConflictErrorException extends __BaseException {
|
|
475
475
|
readonly name: "ConflictErrorException";
|
|
@@ -487,17 +487,17 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
487
487
|
}
|
|
488
488
|
export interface StartContinuousExportRequest {}
|
|
489
489
|
export interface StartContinuousExportResponse {
|
|
490
|
-
exportId?: string;
|
|
491
|
-
s3Bucket?: string;
|
|
492
|
-
startTime?: Date;
|
|
493
|
-
dataSource?: DataSource;
|
|
494
|
-
schemaStorageConfig?: Record<string, string
|
|
490
|
+
exportId?: string | undefined;
|
|
491
|
+
s3Bucket?: string | undefined;
|
|
492
|
+
startTime?: Date | undefined;
|
|
493
|
+
dataSource?: DataSource | undefined;
|
|
494
|
+
schemaStorageConfig?: Record<string, string> | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface StartDataCollectionByAgentIdsRequest {
|
|
497
497
|
agentIds: string[] | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface StartDataCollectionByAgentIdsResponse {
|
|
500
|
-
agentsConfigurationStatus?: AgentConfigurationStatus[];
|
|
500
|
+
agentsConfigurationStatus?: AgentConfigurationStatus[] | undefined;
|
|
501
501
|
}
|
|
502
502
|
export declare const ExportDataFormat: {
|
|
503
503
|
readonly CSV: "CSV";
|
|
@@ -505,8 +505,8 @@ export declare const ExportDataFormat: {
|
|
|
505
505
|
export type ExportDataFormat =
|
|
506
506
|
(typeof ExportDataFormat)[keyof typeof ExportDataFormat];
|
|
507
507
|
export interface UsageMetricBasis {
|
|
508
|
-
name?: string;
|
|
509
|
-
percentageAdjust?: number;
|
|
508
|
+
name?: string | undefined;
|
|
509
|
+
percentageAdjust?: number | undefined;
|
|
510
510
|
}
|
|
511
511
|
export declare const OfferingClass: {
|
|
512
512
|
readonly CONVERTIBLE: "CONVERTIBLE";
|
|
@@ -536,13 +536,13 @@ export declare const Tenancy: {
|
|
|
536
536
|
};
|
|
537
537
|
export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
|
|
538
538
|
export interface Ec2RecommendationsExportPreferences {
|
|
539
|
-
enabled?: boolean;
|
|
540
|
-
cpuPerformanceMetricBasis?: UsageMetricBasis;
|
|
541
|
-
ramPerformanceMetricBasis?: UsageMetricBasis;
|
|
542
|
-
tenancy?: Tenancy;
|
|
543
|
-
excludedInstanceTypes?: string[];
|
|
544
|
-
preferredRegion?: string;
|
|
545
|
-
reservedInstanceOptions?: ReservedInstanceOptions;
|
|
539
|
+
enabled?: boolean | undefined;
|
|
540
|
+
cpuPerformanceMetricBasis?: UsageMetricBasis | undefined;
|
|
541
|
+
ramPerformanceMetricBasis?: UsageMetricBasis | undefined;
|
|
542
|
+
tenancy?: Tenancy | undefined;
|
|
543
|
+
excludedInstanceTypes?: string[] | undefined;
|
|
544
|
+
preferredRegion?: string | undefined;
|
|
545
|
+
reservedInstanceOptions?: ReservedInstanceOptions | undefined;
|
|
546
546
|
}
|
|
547
547
|
export type ExportPreferences =
|
|
548
548
|
| ExportPreferences.Ec2RecommendationsPreferencesMember
|
|
@@ -565,40 +565,40 @@ export declare namespace ExportPreferences {
|
|
|
565
565
|
const visit: <T>(value: ExportPreferences, visitor: Visitor<T>) => T;
|
|
566
566
|
}
|
|
567
567
|
export interface StartExportTaskRequest {
|
|
568
|
-
exportDataFormat?: ExportDataFormat[];
|
|
569
|
-
filters?: ExportFilter[];
|
|
570
|
-
startTime?: Date;
|
|
571
|
-
endTime?: Date;
|
|
572
|
-
preferences?: ExportPreferences;
|
|
568
|
+
exportDataFormat?: ExportDataFormat[] | undefined;
|
|
569
|
+
filters?: ExportFilter[] | undefined;
|
|
570
|
+
startTime?: Date | undefined;
|
|
571
|
+
endTime?: Date | undefined;
|
|
572
|
+
preferences?: ExportPreferences | undefined;
|
|
573
573
|
}
|
|
574
574
|
export interface StartExportTaskResponse {
|
|
575
|
-
exportId?: string;
|
|
575
|
+
exportId?: string | undefined;
|
|
576
576
|
}
|
|
577
577
|
export interface StartImportTaskRequest {
|
|
578
|
-
clientRequestToken?: string;
|
|
578
|
+
clientRequestToken?: string | undefined;
|
|
579
579
|
name: string | undefined;
|
|
580
580
|
importUrl: string | undefined;
|
|
581
581
|
}
|
|
582
582
|
export interface StartImportTaskResponse {
|
|
583
|
-
task?: ImportTask;
|
|
583
|
+
task?: ImportTask | undefined;
|
|
584
584
|
}
|
|
585
585
|
export interface StopContinuousExportRequest {
|
|
586
586
|
exportId: string | undefined;
|
|
587
587
|
}
|
|
588
588
|
export interface StopContinuousExportResponse {
|
|
589
|
-
startTime?: Date;
|
|
590
|
-
stopTime?: Date;
|
|
589
|
+
startTime?: Date | undefined;
|
|
590
|
+
stopTime?: Date | undefined;
|
|
591
591
|
}
|
|
592
592
|
export interface StopDataCollectionByAgentIdsRequest {
|
|
593
593
|
agentIds: string[] | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface StopDataCollectionByAgentIdsResponse {
|
|
596
|
-
agentsConfigurationStatus?: AgentConfigurationStatus[];
|
|
596
|
+
agentsConfigurationStatus?: AgentConfigurationStatus[] | undefined;
|
|
597
597
|
}
|
|
598
598
|
export interface UpdateApplicationRequest {
|
|
599
599
|
configurationId: string | undefined;
|
|
600
|
-
name?: string;
|
|
601
|
-
description?: string;
|
|
600
|
+
name?: string | undefined;
|
|
601
|
+
description?: string | undefined;
|
|
602
602
|
}
|
|
603
603
|
export interface UpdateApplicationResponse {}
|
|
604
604
|
export declare const AgentNetworkInfoFilterSensitiveLog: (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-application-discovery-service",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|