@aws-sdk/client-application-discovery-service 3.296.0 → 3.297.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.
Files changed (33) hide show
  1. package/dist-types/ApplicationDiscoveryService.d.ts +26 -0
  2. package/dist-types/ApplicationDiscoveryServiceClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateConfigurationItemsToApplicationCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchDeleteImportDataCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateTagsCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteApplicationsCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeAgentsCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeConfigurationsCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeContinuousExportsCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeExportConfigurationsCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeExportTasksCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeImportTasksCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
  16. package/dist-types/commands/DisassociateConfigurationItemsFromApplicationCommand.d.ts +16 -0
  17. package/dist-types/commands/ExportConfigurationsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetDiscoverySummaryCommand.d.ts +16 -0
  19. package/dist-types/commands/ListConfigurationsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListServerNeighborsCommand.d.ts +16 -0
  21. package/dist-types/commands/StartContinuousExportCommand.d.ts +16 -0
  22. package/dist-types/commands/StartDataCollectionByAgentIdsCommand.d.ts +16 -0
  23. package/dist-types/commands/StartExportTaskCommand.d.ts +16 -0
  24. package/dist-types/commands/StartImportTaskCommand.d.ts +16 -0
  25. package/dist-types/commands/StopContinuousExportCommand.d.ts +16 -0
  26. package/dist-types/commands/StopDataCollectionByAgentIdsCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
  28. package/dist-types/models/ApplicationDiscoveryServiceServiceException.d.ts +2 -0
  29. package/dist-types/models/models_0.d.ts +211 -4
  30. package/dist-types/pagination/DescribeContinuousExportsPaginator.d.ts +3 -0
  31. package/dist-types/pagination/DescribeImportTasksPaginator.d.ts +3 -0
  32. package/dist-types/pagination/Interfaces.d.ts +3 -0
  33. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>Information about agents or connectors that were instructed to start collecting data.
5
6
  * Information includes the agent/connector ID, a description of the operation, and whether the
6
7
  * agent/connector configuration was updated.</p>
@@ -23,6 +24,7 @@ export interface AgentConfigurationStatus {
23
24
  description?: string;
24
25
  }
25
26
  /**
27
+ * @public
26
28
  * <p>Network details about the host where the agent/connector resides.</p>
27
29
  */
28
30
  export interface AgentNetworkInfo {
@@ -35,6 +37,9 @@ export interface AgentNetworkInfo {
35
37
  */
36
38
  macAddress?: string;
37
39
  }
40
+ /**
41
+ * @public
42
+ */
38
43
  export declare enum AgentStatus {
39
44
  BLACKLISTED = "BLACKLISTED",
40
45
  HEALTHY = "HEALTHY",
@@ -44,6 +49,7 @@ export declare enum AgentStatus {
44
49
  UNKNOWN = "UNKNOWN"
45
50
  }
46
51
  /**
52
+ * @public
47
53
  * <p>Information about agents or connectors associated with the user’s Amazon Web Services account.
48
54
  * Information includes agent or connector IDs, IP addresses, media access control (MAC)
49
55
  * addresses, agent or connector health, hostname where the agent or connector resides, and agent
@@ -92,6 +98,9 @@ export interface AgentInfo {
92
98
  */
93
99
  registeredTime?: string;
94
100
  }
101
+ /**
102
+ * @public
103
+ */
95
104
  export interface AssociateConfigurationItemsToApplicationRequest {
96
105
  /**
97
106
  * <p>The configuration ID of an application with which items are to be associated.</p>
@@ -102,9 +111,13 @@ export interface AssociateConfigurationItemsToApplicationRequest {
102
111
  */
103
112
  configurationIds: string[] | undefined;
104
113
  }
114
+ /**
115
+ * @public
116
+ */
105
117
  export interface AssociateConfigurationItemsToApplicationResponse {
106
118
  }
107
119
  /**
120
+ * @public
108
121
  * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
109
122
  * policy associated with this account.</p>
110
123
  */
@@ -117,6 +130,7 @@ export declare class AuthorizationErrorException extends __BaseException {
117
130
  constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
118
131
  }
119
132
  /**
133
+ * @public
120
134
  * <p>The home region is not set. Set the home region to continue.</p>
121
135
  */
122
136
  export declare class HomeRegionNotSetException extends __BaseException {
@@ -128,6 +142,7 @@ export declare class HomeRegionNotSetException extends __BaseException {
128
142
  constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
129
143
  }
130
144
  /**
145
+ * @public
131
146
  * <p>One or more parameters are not valid. Verify the parameters and try again.</p>
132
147
  */
133
148
  export declare class InvalidParameterException extends __BaseException {
@@ -139,6 +154,7 @@ export declare class InvalidParameterException extends __BaseException {
139
154
  constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
140
155
  }
141
156
  /**
157
+ * @public
142
158
  * <p>The value of one or more parameters are either invalid or out of range. Verify the
143
159
  * parameter values and try again.</p>
144
160
  */
@@ -151,6 +167,7 @@ export declare class InvalidParameterValueException extends __BaseException {
151
167
  constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
152
168
  }
153
169
  /**
170
+ * @public
154
171
  * <p>The server experienced an internal error. Try again.</p>
155
172
  */
156
173
  export declare class ServerInternalErrorException extends __BaseException {
@@ -161,18 +178,25 @@ export declare class ServerInternalErrorException extends __BaseException {
161
178
  */
162
179
  constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
163
180
  }
181
+ /**
182
+ * @public
183
+ */
164
184
  export interface BatchDeleteImportDataRequest {
165
185
  /**
166
186
  * <p>The IDs for the import tasks that you want to delete.</p>
167
187
  */
168
188
  importTaskIds: string[] | undefined;
169
189
  }
190
+ /**
191
+ * @public
192
+ */
170
193
  export declare enum BatchDeleteImportDataErrorCode {
171
194
  INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
172
195
  NOT_FOUND = "NOT_FOUND",
173
196
  OVER_LIMIT = "OVER_LIMIT"
174
197
  }
175
198
  /**
199
+ * @public
176
200
  * <p>Error messages returned for each import task that you deleted as a response for this
177
201
  * command.</p>
178
202
  */
@@ -190,6 +214,9 @@ export interface BatchDeleteImportDataError {
190
214
  */
191
215
  errorDescription?: string;
192
216
  }
217
+ /**
218
+ * @public
219
+ */
193
220
  export interface BatchDeleteImportDataResponse {
194
221
  /**
195
222
  * <p>Error messages returned for each import task that you deleted as a response for this
@@ -197,6 +224,9 @@ export interface BatchDeleteImportDataResponse {
197
224
  */
198
225
  errors?: BatchDeleteImportDataError[];
199
226
  }
227
+ /**
228
+ * @public
229
+ */
200
230
  export interface CreateApplicationRequest {
201
231
  /**
202
232
  * <p>Name of the application to be created.</p>
@@ -207,6 +237,9 @@ export interface CreateApplicationRequest {
207
237
  */
208
238
  description?: string;
209
239
  }
240
+ /**
241
+ * @public
242
+ */
210
243
  export interface CreateApplicationResponse {
211
244
  /**
212
245
  * <p>Configuration ID of an application to be created.</p>
@@ -214,6 +247,7 @@ export interface CreateApplicationResponse {
214
247
  configurationId?: string;
215
248
  }
216
249
  /**
250
+ * @public
217
251
  * <p>Metadata that help you categorize IT assets.</p>
218
252
  * <important>
219
253
  * <p>Do not store sensitive information (like personal data) in tags.</p>
@@ -229,6 +263,9 @@ export interface Tag {
229
263
  */
230
264
  value: string | undefined;
231
265
  }
266
+ /**
267
+ * @public
268
+ */
232
269
  export interface CreateTagsRequest {
233
270
  /**
234
271
  * <p>A list of configuration items that you want to tag.</p>
@@ -239,14 +276,18 @@ export interface CreateTagsRequest {
239
276
  * that you want to create in a <i>key</i>-<i>value</i> format. For
240
277
  * example:</p>
241
278
  * <p>
242
- * <code>{"key": "serverType", "value": "webServer"}</code>
279
+ * <code>\{"key": "serverType", "value": "webServer"\}</code>
243
280
  * </p>
244
281
  */
245
282
  tags: Tag[] | undefined;
246
283
  }
284
+ /**
285
+ * @public
286
+ */
247
287
  export interface CreateTagsResponse {
248
288
  }
249
289
  /**
290
+ * @public
250
291
  * <p>The specified configuration ID was not located. Verify the configuration ID and try
251
292
  * again.</p>
252
293
  */
@@ -258,14 +299,23 @@ export declare class ResourceNotFoundException extends __BaseException {
258
299
  */
259
300
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
260
301
  }
302
+ /**
303
+ * @public
304
+ */
261
305
  export interface DeleteApplicationsRequest {
262
306
  /**
263
307
  * <p>Configuration ID of an application to be deleted.</p>
264
308
  */
265
309
  configurationIds: string[] | undefined;
266
310
  }
311
+ /**
312
+ * @public
313
+ */
267
314
  export interface DeleteApplicationsResponse {
268
315
  }
316
+ /**
317
+ * @public
318
+ */
269
319
  export interface DeleteTagsRequest {
270
320
  /**
271
321
  * <p>A list of configuration items with tags that you want to delete.</p>
@@ -276,14 +326,18 @@ export interface DeleteTagsRequest {
276
326
  * that you want to delete in a <i>key</i>-<i>value</i> format. For
277
327
  * example:</p>
278
328
  * <p>
279
- * <code>{"key": "serverType", "value": "webServer"}</code>
329
+ * <code>\{"key": "serverType", "value": "webServer"\}</code>
280
330
  * </p>
281
331
  */
282
332
  tags?: Tag[];
283
333
  }
334
+ /**
335
+ * @public
336
+ */
284
337
  export interface DeleteTagsResponse {
285
338
  }
286
339
  /**
340
+ * @public
287
341
  * <p>A filter that can use conditional operators.</p>
288
342
  * <p>For more information about filters, see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-api-queries.html">Querying Discovered
289
343
  * Configuration Items</a> in the <i>Amazon Web Services Application Discovery Service User
@@ -310,6 +364,9 @@ export interface Filter {
310
364
  */
311
365
  condition: string | undefined;
312
366
  }
367
+ /**
368
+ * @public
369
+ */
313
370
  export interface DescribeAgentsRequest {
314
371
  /**
315
372
  * <p>The agent or the Connector IDs for which you want information. If you specify no IDs,
@@ -321,7 +378,7 @@ export interface DescribeAgentsRequest {
321
378
  * <p>You can filter the request using various logical operators and a
322
379
  * <i>key</i>-<i>value</i> format. For example: </p>
323
380
  * <p>
324
- * <code>{"key": "collectionStatus", "value": "STARTED"}</code>
381
+ * <code>\{"key": "collectionStatus", "value": "STARTED"\}</code>
325
382
  * </p>
326
383
  */
327
384
  filters?: Filter[];
@@ -338,6 +395,9 @@ export interface DescribeAgentsRequest {
338
395
  */
339
396
  nextToken?: string;
340
397
  }
398
+ /**
399
+ * @public
400
+ */
341
401
  export interface DescribeAgentsResponse {
342
402
  /**
343
403
  * <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your
@@ -354,18 +414,27 @@ export interface DescribeAgentsResponse {
354
414
  */
355
415
  nextToken?: string;
356
416
  }
417
+ /**
418
+ * @public
419
+ */
357
420
  export interface DescribeConfigurationsRequest {
358
421
  /**
359
422
  * <p>One or more configuration IDs.</p>
360
423
  */
361
424
  configurationIds: string[] | undefined;
362
425
  }
426
+ /**
427
+ * @public
428
+ */
363
429
  export interface DescribeConfigurationsResponse {
364
430
  /**
365
431
  * <p>A key in the response map. The value is an array of data.</p>
366
432
  */
367
433
  configurations?: Record<string, string>[];
368
434
  }
435
+ /**
436
+ * @public
437
+ */
369
438
  export interface DescribeContinuousExportsRequest {
370
439
  /**
371
440
  * <p>The unique IDs assigned to the exports.</p>
@@ -381,9 +450,15 @@ export interface DescribeContinuousExportsRequest {
381
450
  */
382
451
  nextToken?: string;
383
452
  }
453
+ /**
454
+ * @public
455
+ */
384
456
  export declare enum DataSource {
385
457
  AGENT = "AGENT"
386
458
  }
459
+ /**
460
+ * @public
461
+ */
387
462
  export declare enum ContinuousExportStatus {
388
463
  ACTIVE = "ACTIVE",
389
464
  ERROR = "ERROR",
@@ -394,6 +469,7 @@ export declare enum ContinuousExportStatus {
394
469
  STOP_IN_PROGRESS = "STOP_IN_PROGRESS"
395
470
  }
396
471
  /**
472
+ * @public
397
473
  * <p>A list of continuous export descriptions.</p>
398
474
  */
399
475
  export interface ContinuousExportDescription {
@@ -542,6 +618,9 @@ export interface ContinuousExportDescription {
542
618
  */
543
619
  schemaStorageConfig?: Record<string, string>;
544
620
  }
621
+ /**
622
+ * @public
623
+ */
545
624
  export interface DescribeContinuousExportsResponse {
546
625
  /**
547
626
  * <p>A list of continuous export descriptions.</p>
@@ -553,6 +632,7 @@ export interface DescribeContinuousExportsResponse {
553
632
  nextToken?: string;
554
633
  }
555
634
  /**
635
+ * @public
556
636
  * <p>This operation is not permitted.</p>
557
637
  */
558
638
  export declare class OperationNotPermittedException extends __BaseException {
@@ -563,6 +643,9 @@ export declare class OperationNotPermittedException extends __BaseException {
563
643
  */
564
644
  constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
565
645
  }
646
+ /**
647
+ * @public
648
+ */
566
649
  export interface DescribeExportConfigurationsRequest {
567
650
  /**
568
651
  * <p>A list of continuous export IDs to search for.</p>
@@ -578,12 +661,16 @@ export interface DescribeExportConfigurationsRequest {
578
661
  */
579
662
  nextToken?: string;
580
663
  }
664
+ /**
665
+ * @public
666
+ */
581
667
  export declare enum ExportStatus {
582
668
  FAILED = "FAILED",
583
669
  IN_PROGRESS = "IN_PROGRESS",
584
670
  SUCCEEDED = "SUCCEEDED"
585
671
  }
586
672
  /**
673
+ * @public
587
674
  * <p>Information regarding the export status of discovered data. The value is an array of
588
675
  * objects.</p>
589
676
  */
@@ -629,6 +716,9 @@ export interface ExportInfo {
629
716
  */
630
717
  requestedEndTime?: Date;
631
718
  }
719
+ /**
720
+ * @public
721
+ */
632
722
  export interface DescribeExportConfigurationsResponse {
633
723
  /**
634
724
  * <p></p>
@@ -640,6 +730,7 @@ export interface DescribeExportConfigurationsResponse {
640
730
  nextToken?: string;
641
731
  }
642
732
  /**
733
+ * @public
643
734
  * <p>Used to select which agent's data is to be exported. A single agent ID may be selected
644
735
  * for export using the <a href="http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_StartExportTask.html">StartExportTask</a> action.</p>
645
736
  */
@@ -660,6 +751,9 @@ export interface ExportFilter {
660
751
  */
661
752
  condition: string | undefined;
662
753
  }
754
+ /**
755
+ * @public
756
+ */
663
757
  export interface DescribeExportTasksRequest {
664
758
  /**
665
759
  * <p>One or more unique identifiers used to query the status of an export request.</p>
@@ -692,6 +786,9 @@ export interface DescribeExportTasksRequest {
692
786
  */
693
787
  nextToken?: string;
694
788
  }
789
+ /**
790
+ * @public
791
+ */
695
792
  export interface DescribeExportTasksResponse {
696
793
  /**
697
794
  * <p>Contains one or more sets of export request details. When the status of a request is
@@ -708,12 +805,16 @@ export interface DescribeExportTasksResponse {
708
805
  */
709
806
  nextToken?: string;
710
807
  }
808
+ /**
809
+ * @public
810
+ */
711
811
  export declare enum ImportTaskFilterName {
712
812
  IMPORT_TASK_ID = "IMPORT_TASK_ID",
713
813
  NAME = "NAME",
714
814
  STATUS = "STATUS"
715
815
  }
716
816
  /**
817
+ * @public
717
818
  * <p>A name-values pair of elements you can use to filter the results when querying your import
718
819
  * tasks. Currently, wildcards are not supported for filters.</p>
719
820
  * <note>
@@ -731,6 +832,9 @@ export interface ImportTaskFilter {
731
832
  */
732
833
  values?: string[];
733
834
  }
835
+ /**
836
+ * @public
837
+ */
734
838
  export interface DescribeImportTasksRequest {
735
839
  /**
736
840
  * <p>An array of name-value pairs that you provide to filter the results for the
@@ -747,6 +851,9 @@ export interface DescribeImportTasksRequest {
747
851
  */
748
852
  nextToken?: string;
749
853
  }
854
+ /**
855
+ * @public
856
+ */
750
857
  export declare enum ImportStatus {
751
858
  DELETE_COMPLETE = "DELETE_COMPLETE",
752
859
  DELETE_FAILED = "DELETE_FAILED",
@@ -761,6 +868,7 @@ export declare enum ImportStatus {
761
868
  INTERNAL_ERROR = "INTERNAL_ERROR"
762
869
  }
763
870
  /**
871
+ * @public
764
872
  * <p>An array of information related to the import task request that includes status
765
873
  * information, times, IDs, the Amazon S3 Object URL for the import file, and more.</p>
766
874
  */
@@ -841,6 +949,9 @@ export interface ImportTask {
841
949
  */
842
950
  errorsAndFailedEntriesZip?: string;
843
951
  }
952
+ /**
953
+ * @public
954
+ */
844
955
  export interface DescribeImportTasksResponse {
845
956
  /**
846
957
  * <p>The token to request the next page of results.</p>
@@ -853,6 +964,7 @@ export interface DescribeImportTasksResponse {
853
964
  tasks?: ImportTask[];
854
965
  }
855
966
  /**
967
+ * @public
856
968
  * <p>The tag filter. Valid names are: <code>tagKey</code>, <code>tagValue</code>,
857
969
  * <code>configurationId</code>.</p>
858
970
  */
@@ -866,6 +978,9 @@ export interface TagFilter {
866
978
  */
867
979
  values: string[] | undefined;
868
980
  }
981
+ /**
982
+ * @public
983
+ */
869
984
  export interface DescribeTagsRequest {
870
985
  /**
871
986
  * <p>You can filter the list using a <i>key</i>-<i>value</i>
@@ -883,6 +998,9 @@ export interface DescribeTagsRequest {
883
998
  */
884
999
  nextToken?: string;
885
1000
  }
1001
+ /**
1002
+ * @public
1003
+ */
886
1004
  export declare enum ConfigurationItemType {
887
1005
  APPLICATION = "APPLICATION",
888
1006
  CONNECTIONS = "CONNECTION",
@@ -890,6 +1008,7 @@ export declare enum ConfigurationItemType {
890
1008
  SERVER = "SERVER"
891
1009
  }
892
1010
  /**
1011
+ * @public
893
1012
  * <p>Tags for a configuration item. Tags are metadata that help you categorize IT
894
1013
  * assets.</p>
895
1014
  */
@@ -919,6 +1038,9 @@ export interface ConfigurationTag {
919
1038
  */
920
1039
  timeOfCreation?: Date;
921
1040
  }
1041
+ /**
1042
+ * @public
1043
+ */
922
1044
  export interface DescribeTagsResponse {
923
1045
  /**
924
1046
  * <p>Depending on the input, this is a list of configuration items tagged with a specific
@@ -930,6 +1052,9 @@ export interface DescribeTagsResponse {
930
1052
  */
931
1053
  nextToken?: string;
932
1054
  }
1055
+ /**
1056
+ * @public
1057
+ */
933
1058
  export interface DisassociateConfigurationItemsFromApplicationRequest {
934
1059
  /**
935
1060
  * <p>Configuration ID of an application from which each item is disassociated.</p>
@@ -940,16 +1065,28 @@ export interface DisassociateConfigurationItemsFromApplicationRequest {
940
1065
  */
941
1066
  configurationIds: string[] | undefined;
942
1067
  }
1068
+ /**
1069
+ * @public
1070
+ */
943
1071
  export interface DisassociateConfigurationItemsFromApplicationResponse {
944
1072
  }
1073
+ /**
1074
+ * @public
1075
+ */
945
1076
  export interface ExportConfigurationsResponse {
946
1077
  /**
947
1078
  * <p>A unique identifier that you can use to query the export status.</p>
948
1079
  */
949
1080
  exportId?: string;
950
1081
  }
1082
+ /**
1083
+ * @public
1084
+ */
951
1085
  export interface GetDiscoverySummaryRequest {
952
1086
  }
1087
+ /**
1088
+ * @public
1089
+ */
953
1090
  export interface CustomerAgentlessCollectorInfo {
954
1091
  activeAgentlessCollectors: number | undefined;
955
1092
  healthyAgentlessCollectors: number | undefined;
@@ -960,6 +1097,7 @@ export interface CustomerAgentlessCollectorInfo {
960
1097
  unknownAgentlessCollectors: number | undefined;
961
1098
  }
962
1099
  /**
1100
+ * @public
963
1101
  * <p>Inventory data for installed discovery agents.</p>
964
1102
  */
965
1103
  export interface CustomerAgentInfo {
@@ -993,6 +1131,7 @@ export interface CustomerAgentInfo {
993
1131
  unknownAgents: number | undefined;
994
1132
  }
995
1133
  /**
1134
+ * @public
996
1135
  * <p>Inventory data for installed discovery connectors.</p>
997
1136
  */
998
1137
  export interface CustomerConnectorInfo {
@@ -1026,6 +1165,7 @@ export interface CustomerConnectorInfo {
1026
1165
  unknownConnectors: number | undefined;
1027
1166
  }
1028
1167
  /**
1168
+ * @public
1029
1169
  * <p>
1030
1170
  * The inventory data for installed Migration Evaluator collectors.
1031
1171
  * </p>
@@ -1074,6 +1214,9 @@ export interface CustomerMeCollectorInfo {
1074
1214
  */
1075
1215
  unknownMeCollectors: number | undefined;
1076
1216
  }
1217
+ /**
1218
+ * @public
1219
+ */
1077
1220
  export interface GetDiscoverySummaryResponse {
1078
1221
  /**
1079
1222
  * <p>The number of servers discovered.</p>
@@ -1107,11 +1250,15 @@ export interface GetDiscoverySummaryResponse {
1107
1250
  meCollectorSummary?: CustomerMeCollectorInfo;
1108
1251
  agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
1109
1252
  }
1253
+ /**
1254
+ * @public
1255
+ */
1110
1256
  export declare enum OrderString {
1111
1257
  ASC = "ASC",
1112
1258
  DESC = "DESC"
1113
1259
  }
1114
1260
  /**
1261
+ * @public
1115
1262
  * <p>A field and direction for ordered output.</p>
1116
1263
  */
1117
1264
  export interface OrderByElement {
@@ -1124,6 +1271,9 @@ export interface OrderByElement {
1124
1271
  */
1125
1272
  sortOrder?: OrderString | string;
1126
1273
  }
1274
+ /**
1275
+ * @public
1276
+ */
1127
1277
  export interface ListConfigurationsRequest {
1128
1278
  /**
1129
1279
  * <p>A valid configuration identified by Application Discovery Service. </p>
@@ -1133,7 +1283,7 @@ export interface ListConfigurationsRequest {
1133
1283
  * <p>You can filter the request using various logical operators and a
1134
1284
  * <i>key</i>-<i>value</i> format. For example: </p>
1135
1285
  * <p>
1136
- * <code>{"key": "serverType", "value": "webServer"}</code>
1286
+ * <code>\{"key": "serverType", "value": "webServer"\}</code>
1137
1287
  * </p>
1138
1288
  * <p>For a complete list of filter options and guidance about using them with this action,
1139
1289
  * see <a href="https://docs.aws.amazon.com/application-discovery/latest/userguide/discovery-api-queries.html#ListConfigurations">Using the ListConfigurations Action</a> in the <i>Amazon Web Services Application Discovery
@@ -1158,6 +1308,9 @@ export interface ListConfigurationsRequest {
1158
1308
  */
1159
1309
  orderBy?: OrderByElement[];
1160
1310
  }
1311
+ /**
1312
+ * @public
1313
+ */
1161
1314
  export interface ListConfigurationsResponse {
1162
1315
  /**
1163
1316
  * <p>Returns configuration details, including the configuration ID, attribute names, and
@@ -1173,6 +1326,9 @@ export interface ListConfigurationsResponse {
1173
1326
  */
1174
1327
  nextToken?: string;
1175
1328
  }
1329
+ /**
1330
+ * @public
1331
+ */
1176
1332
  export interface ListServerNeighborsRequest {
1177
1333
  /**
1178
1334
  * <p>Configuration ID of the server for which neighbors are being listed.</p>
@@ -1200,6 +1356,7 @@ export interface ListServerNeighborsRequest {
1200
1356
  nextToken?: string;
1201
1357
  }
1202
1358
  /**
1359
+ * @public
1203
1360
  * <p>Details about neighboring servers.</p>
1204
1361
  */
1205
1362
  export interface NeighborConnectionDetail {
@@ -1224,6 +1381,9 @@ export interface NeighborConnectionDetail {
1224
1381
  */
1225
1382
  connectionsCount: number | undefined;
1226
1383
  }
1384
+ /**
1385
+ * @public
1386
+ */
1227
1387
  export interface ListServerNeighborsResponse {
1228
1388
  /**
1229
1389
  * <p>List of distinct servers that are one hop away from the given server.</p>
@@ -1243,6 +1403,7 @@ export interface ListServerNeighborsResponse {
1243
1403
  knownDependencyCount?: number;
1244
1404
  }
1245
1405
  /**
1406
+ * @public
1246
1407
  * <p></p>
1247
1408
  */
1248
1409
  export declare class ConflictErrorException extends __BaseException {
@@ -1254,6 +1415,7 @@ export declare class ConflictErrorException extends __BaseException {
1254
1415
  constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
1255
1416
  }
1256
1417
  /**
1418
+ * @public
1257
1419
  * <p>This issue occurs when the same <code>clientRequestToken</code> is used with the
1258
1420
  * <code>StartImportTask</code> action, but with different parameters. For example, you use the
1259
1421
  * same request token but have two different import URLs, you can encounter this issue. If the
@@ -1268,8 +1430,14 @@ export declare class ResourceInUseException extends __BaseException {
1268
1430
  */
1269
1431
  constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
1270
1432
  }
1433
+ /**
1434
+ * @public
1435
+ */
1271
1436
  export interface StartContinuousExportRequest {
1272
1437
  }
1438
+ /**
1439
+ * @public
1440
+ */
1273
1441
  export interface StartContinuousExportResponse {
1274
1442
  /**
1275
1443
  * <p>The unique ID assigned to this export.</p>
@@ -1300,6 +1468,9 @@ export interface StartContinuousExportResponse {
1300
1468
  */
1301
1469
  schemaStorageConfig?: Record<string, string>;
1302
1470
  }
1471
+ /**
1472
+ * @public
1473
+ */
1303
1474
  export interface StartDataCollectionByAgentIdsRequest {
1304
1475
  /**
1305
1476
  * <p>The IDs of the agents or connectors from which to start collecting data. If you send a
@@ -1312,6 +1483,9 @@ export interface StartDataCollectionByAgentIdsRequest {
1312
1483
  */
1313
1484
  agentIds: string[] | undefined;
1314
1485
  }
1486
+ /**
1487
+ * @public
1488
+ */
1315
1489
  export interface StartDataCollectionByAgentIdsResponse {
1316
1490
  /**
1317
1491
  * <p>Information about agents or the connector that were instructed to start collecting
@@ -1320,10 +1494,16 @@ export interface StartDataCollectionByAgentIdsResponse {
1320
1494
  */
1321
1495
  agentsConfigurationStatus?: AgentConfigurationStatus[];
1322
1496
  }
1497
+ /**
1498
+ * @public
1499
+ */
1323
1500
  export declare enum ExportDataFormat {
1324
1501
  CSV = "CSV",
1325
1502
  GRAPHML = "GRAPHML"
1326
1503
  }
1504
+ /**
1505
+ * @public
1506
+ */
1327
1507
  export interface StartExportTaskRequest {
1328
1508
  /**
1329
1509
  * <p>The file format for the returned export data. Default value is <code>CSV</code>.
@@ -1356,12 +1536,18 @@ export interface StartExportTaskRequest {
1356
1536
  */
1357
1537
  endTime?: Date;
1358
1538
  }
1539
+ /**
1540
+ * @public
1541
+ */
1359
1542
  export interface StartExportTaskResponse {
1360
1543
  /**
1361
1544
  * <p>A unique identifier used to query the status of an export request.</p>
1362
1545
  */
1363
1546
  exportId?: string;
1364
1547
  }
1548
+ /**
1549
+ * @public
1550
+ */
1365
1551
  export interface StartImportTaskRequest {
1366
1552
  /**
1367
1553
  * <p>Optional. A unique token that you can provide to prevent the same import request from
@@ -1388,6 +1574,9 @@ export interface StartImportTaskRequest {
1388
1574
  */
1389
1575
  importUrl: string | undefined;
1390
1576
  }
1577
+ /**
1578
+ * @public
1579
+ */
1391
1580
  export interface StartImportTaskResponse {
1392
1581
  /**
1393
1582
  * <p>An array of information related to the import task request including status information,
@@ -1395,12 +1584,18 @@ export interface StartImportTaskResponse {
1395
1584
  */
1396
1585
  task?: ImportTask;
1397
1586
  }
1587
+ /**
1588
+ * @public
1589
+ */
1398
1590
  export interface StopContinuousExportRequest {
1399
1591
  /**
1400
1592
  * <p>The unique ID assigned to this export.</p>
1401
1593
  */
1402
1594
  exportId: string | undefined;
1403
1595
  }
1596
+ /**
1597
+ * @public
1598
+ */
1404
1599
  export interface StopContinuousExportResponse {
1405
1600
  /**
1406
1601
  * <p>Timestamp that represents when this continuous export started collecting
@@ -1412,12 +1607,18 @@ export interface StopContinuousExportResponse {
1412
1607
  */
1413
1608
  stopTime?: Date;
1414
1609
  }
1610
+ /**
1611
+ * @public
1612
+ */
1415
1613
  export interface StopDataCollectionByAgentIdsRequest {
1416
1614
  /**
1417
1615
  * <p>The IDs of the agents or connectors from which to stop collecting data.</p>
1418
1616
  */
1419
1617
  agentIds: string[] | undefined;
1420
1618
  }
1619
+ /**
1620
+ * @public
1621
+ */
1421
1622
  export interface StopDataCollectionByAgentIdsResponse {
1422
1623
  /**
1423
1624
  * <p>Information about the agents or connector that were instructed to stop collecting data.
@@ -1426,6 +1627,9 @@ export interface StopDataCollectionByAgentIdsResponse {
1426
1627
  */
1427
1628
  agentsConfigurationStatus?: AgentConfigurationStatus[];
1428
1629
  }
1630
+ /**
1631
+ * @public
1632
+ */
1429
1633
  export interface UpdateApplicationRequest {
1430
1634
  /**
1431
1635
  * <p>Configuration ID of the application to be updated.</p>
@@ -1440,6 +1644,9 @@ export interface UpdateApplicationRequest {
1440
1644
  */
1441
1645
  description?: string;
1442
1646
  }
1647
+ /**
1648
+ * @public
1649
+ */
1443
1650
  export interface UpdateApplicationResponse {
1444
1651
  }
1445
1652
  /**