@aws-sdk/client-application-discovery-service 3.379.1 → 3.385.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.
@@ -8,10 +8,12 @@ import { ApplicationDiscoveryServiceServiceException as __BaseException } from "
8
8
  */
9
9
  export interface AgentConfigurationStatus {
10
10
  /**
11
+ * @public
11
12
  * <p>The agent ID.</p>
12
13
  */
13
14
  agentId?: string;
14
15
  /**
16
+ * @public
15
17
  * <p>Information about the status of the <code>StartDataCollection</code> and
16
18
  * <code>StopDataCollection</code> operations. The system has recorded the data collection
17
19
  * operation. The agent receives this command the next time it polls for a new command.
@@ -19,6 +21,7 @@ export interface AgentConfigurationStatus {
19
21
  */
20
22
  operationSucceeded?: boolean;
21
23
  /**
24
+ * @public
22
25
  * <p>A description of the operation performed.</p>
23
26
  */
24
27
  description?: string;
@@ -29,10 +32,12 @@ export interface AgentConfigurationStatus {
29
32
  */
30
33
  export interface AgentNetworkInfo {
31
34
  /**
35
+ * @public
32
36
  * <p>The IP address for the host where the agent/collector resides.</p>
33
37
  */
34
38
  ipAddress?: string;
35
39
  /**
40
+ * @public
36
41
  * <p>The MAC address for the host where the agent/collector resides.</p>
37
42
  */
38
43
  macAddress?: string;
@@ -62,43 +67,53 @@ export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
62
67
  */
63
68
  export interface AgentInfo {
64
69
  /**
70
+ * @public
65
71
  * <p>The agent or collector ID.</p>
66
72
  */
67
73
  agentId?: string;
68
74
  /**
75
+ * @public
69
76
  * <p>The name of the host where the agent or collector resides. The host can be a server or
70
77
  * virtual machine.</p>
71
78
  */
72
79
  hostName?: string;
73
80
  /**
81
+ * @public
74
82
  * <p>Network details about the host where the agent or collector resides.</p>
75
83
  */
76
84
  agentNetworkInfoList?: AgentNetworkInfo[];
77
85
  /**
86
+ * @public
78
87
  * <p>The ID of the connector.</p>
79
88
  */
80
89
  connectorId?: string;
81
90
  /**
91
+ * @public
82
92
  * <p>The agent or collector version.</p>
83
93
  */
84
94
  version?: string;
85
95
  /**
96
+ * @public
86
97
  * <p>The health of the agent.</p>
87
98
  */
88
99
  health?: AgentStatus | string;
89
100
  /**
101
+ * @public
90
102
  * <p>Time since agent health was reported.</p>
91
103
  */
92
104
  lastHealthPingTime?: string;
93
105
  /**
106
+ * @public
94
107
  * <p>Status of the collection process for an agent.</p>
95
108
  */
96
109
  collectionStatus?: string;
97
110
  /**
111
+ * @public
98
112
  * <p>Type of agent.</p>
99
113
  */
100
114
  agentType?: string;
101
115
  /**
116
+ * @public
102
117
  * <p>Agent's first registration timestamp in UTC.</p>
103
118
  */
104
119
  registeredTime?: string;
@@ -108,10 +123,12 @@ export interface AgentInfo {
108
123
  */
109
124
  export interface AssociateConfigurationItemsToApplicationRequest {
110
125
  /**
126
+ * @public
111
127
  * <p>The configuration ID of an application with which items are to be associated.</p>
112
128
  */
113
129
  applicationConfigurationId: string | undefined;
114
130
  /**
131
+ * @public
115
132
  * <p>The ID of each configuration item to be associated with an application.</p>
116
133
  */
117
134
  configurationIds: string[] | undefined;
@@ -188,6 +205,7 @@ export declare class ServerInternalErrorException extends __BaseException {
188
205
  */
189
206
  export interface BatchDeleteImportDataRequest {
190
207
  /**
208
+ * @public
191
209
  * <p>The IDs for the import tasks that you want to delete.</p>
192
210
  */
193
211
  importTaskIds: string[] | undefined;
@@ -212,14 +230,17 @@ export type BatchDeleteImportDataErrorCode = (typeof BatchDeleteImportDataErrorC
212
230
  */
213
231
  export interface BatchDeleteImportDataError {
214
232
  /**
233
+ * @public
215
234
  * <p>The unique import ID associated with the error that occurred.</p>
216
235
  */
217
236
  importTaskId?: string;
218
237
  /**
238
+ * @public
219
239
  * <p>The type of error that occurred for a specific import task.</p>
220
240
  */
221
241
  errorCode?: BatchDeleteImportDataErrorCode | string;
222
242
  /**
243
+ * @public
223
244
  * <p>The description of the error that occurred for a specific import task.</p>
224
245
  */
225
246
  errorDescription?: string;
@@ -229,6 +250,7 @@ export interface BatchDeleteImportDataError {
229
250
  */
230
251
  export interface BatchDeleteImportDataResponse {
231
252
  /**
253
+ * @public
232
254
  * <p>Error messages returned for each import task that you deleted as a response for this
233
255
  * command.</p>
234
256
  */
@@ -239,10 +261,12 @@ export interface BatchDeleteImportDataResponse {
239
261
  */
240
262
  export interface CreateApplicationRequest {
241
263
  /**
264
+ * @public
242
265
  * <p>Name of the application to be created.</p>
243
266
  */
244
267
  name: string | undefined;
245
268
  /**
269
+ * @public
246
270
  * <p>Description of the application to be created.</p>
247
271
  */
248
272
  description?: string;
@@ -252,6 +276,7 @@ export interface CreateApplicationRequest {
252
276
  */
253
277
  export interface CreateApplicationResponse {
254
278
  /**
279
+ * @public
255
280
  * <p>Configuration ID of an application to be created.</p>
256
281
  */
257
282
  configurationId?: string;
@@ -265,10 +290,12 @@ export interface CreateApplicationResponse {
265
290
  */
266
291
  export interface Tag {
267
292
  /**
293
+ * @public
268
294
  * <p>The type of tag on which to filter.</p>
269
295
  */
270
296
  key: string | undefined;
271
297
  /**
298
+ * @public
272
299
  * <p>A value for a tag key on which to filter.</p>
273
300
  */
274
301
  value: string | undefined;
@@ -278,10 +305,12 @@ export interface Tag {
278
305
  */
279
306
  export interface CreateTagsRequest {
280
307
  /**
308
+ * @public
281
309
  * <p>A list of configuration items that you want to tag.</p>
282
310
  */
283
311
  configurationIds: string[] | undefined;
284
312
  /**
313
+ * @public
285
314
  * <p>Tags that you want to associate with one or more configuration items. Specify the tags
286
315
  * that you want to create in a <i>key</i>-<i>value</i> format. For
287
316
  * example:</p>
@@ -314,6 +343,7 @@ export declare class ResourceNotFoundException extends __BaseException {
314
343
  */
315
344
  export interface DeleteApplicationsRequest {
316
345
  /**
346
+ * @public
317
347
  * <p>Configuration ID of an application to be deleted.</p>
318
348
  */
319
349
  configurationIds: string[] | undefined;
@@ -328,10 +358,12 @@ export interface DeleteApplicationsResponse {
328
358
  */
329
359
  export interface DeleteTagsRequest {
330
360
  /**
361
+ * @public
331
362
  * <p>A list of configuration items with tags that you want to delete.</p>
332
363
  */
333
364
  configurationIds: string[] | undefined;
334
365
  /**
366
+ * @public
335
367
  * <p>Tags that you want to delete from one or more configuration items. Specify the tags
336
368
  * that you want to delete in a <i>key</i>-<i>value</i> format. For
337
369
  * example:</p>
@@ -355,16 +387,19 @@ export interface DeleteTagsResponse {
355
387
  */
356
388
  export interface Filter {
357
389
  /**
390
+ * @public
358
391
  * <p>The name of the filter.</p>
359
392
  */
360
393
  name: string | undefined;
361
394
  /**
395
+ * @public
362
396
  * <p>A string value on which to filter. For example, if you choose the
363
397
  * <code>destinationServer.osVersion</code> filter name, you could specify <code>Ubuntu</code>
364
398
  * for the value.</p>
365
399
  */
366
400
  values: string[] | undefined;
367
401
  /**
402
+ * @public
368
403
  * <p>A conditional operator. The following operators are valid: EQUALS, NOT_EQUALS,
369
404
  * CONTAINS, NOT_CONTAINS. If you specify multiple filters, the system utilizes all filters as
370
405
  * though concatenated by <i>AND</i>. If you specify multiple values for a
@@ -379,11 +414,13 @@ export interface Filter {
379
414
  */
380
415
  export interface DescribeAgentsRequest {
381
416
  /**
417
+ * @public
382
418
  * <p>The agent or the collector IDs for which you want information. If you specify no IDs,
383
419
  * the system returns information about all agents/collectors associated with your user.</p>
384
420
  */
385
421
  agentIds?: string[];
386
422
  /**
423
+ * @public
387
424
  * <p>You can filter the request using various logical operators and a
388
425
  * <i>key</i>-<i>value</i> format. For example: </p>
389
426
  * <p>
@@ -392,11 +429,13 @@ export interface DescribeAgentsRequest {
392
429
  */
393
430
  filters?: Filter[];
394
431
  /**
432
+ * @public
395
433
  * <p>The total number of agents/collectors to return in a single page of output. The maximum
396
434
  * value is 100.</p>
397
435
  */
398
436
  maxResults?: number;
399
437
  /**
438
+ * @public
400
439
  * <p>Token to retrieve the next set of results. For example, if you previously specified 100
401
440
  * IDs for <code>DescribeAgentsRequest$agentIds</code> but set
402
441
  * <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along
@@ -409,6 +448,7 @@ export interface DescribeAgentsRequest {
409
448
  */
410
449
  export interface DescribeAgentsResponse {
411
450
  /**
451
+ * @public
412
452
  * <p>Lists agents or the collector by ID or lists all agents/collectors associated with your
413
453
  * user, if you did not specify an agent/collector ID. The output includes agent/collector
414
454
  * IDs, IP addresses, media access control (MAC) addresses, agent/collector health, host name
@@ -416,6 +456,7 @@ export interface DescribeAgentsResponse {
416
456
  */
417
457
  agentsInfo?: AgentInfo[];
418
458
  /**
459
+ * @public
419
460
  * <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for
420
461
  * <code>DescribeAgentsRequest$agentIds</code> but set
421
462
  * <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along
@@ -428,6 +469,7 @@ export interface DescribeAgentsResponse {
428
469
  */
429
470
  export interface DescribeConfigurationsRequest {
430
471
  /**
472
+ * @public
431
473
  * <p>One or more configuration IDs.</p>
432
474
  */
433
475
  configurationIds: string[] | undefined;
@@ -437,6 +479,7 @@ export interface DescribeConfigurationsRequest {
437
479
  */
438
480
  export interface DescribeConfigurationsResponse {
439
481
  /**
482
+ * @public
440
483
  * <p>A key in the response map. The value is an array of data.</p>
441
484
  */
442
485
  configurations?: Record<string, string>[];
@@ -446,15 +489,18 @@ export interface DescribeConfigurationsResponse {
446
489
  */
447
490
  export interface DescribeContinuousExportsRequest {
448
491
  /**
492
+ * @public
449
493
  * <p>The unique IDs assigned to the exports.</p>
450
494
  */
451
495
  exportIds?: string[];
452
496
  /**
497
+ * @public
453
498
  * <p>A number between 1 and 100 specifying the maximum number of continuous export
454
499
  * descriptions returned.</p>
455
500
  */
456
501
  maxResults?: number;
457
502
  /**
503
+ * @public
458
504
  * <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
459
505
  */
460
506
  nextToken?: string;
@@ -493,10 +539,12 @@ export type ContinuousExportStatus = (typeof ContinuousExportStatus)[keyof typeo
493
539
  */
494
540
  export interface ContinuousExportDescription {
495
541
  /**
542
+ * @public
496
543
  * <p>The unique ID assigned to this export.</p>
497
544
  */
498
545
  exportId?: string;
499
546
  /**
547
+ * @public
500
548
  * <p>Describes the status of the export. Can be one of the following values:</p>
501
549
  * <ul>
502
550
  * <li>
@@ -528,6 +576,7 @@ export interface ContinuousExportDescription {
528
576
  */
529
577
  status?: ContinuousExportStatus | string;
530
578
  /**
579
+ * @public
531
580
  * <p>Contains information about any errors that have occurred. This data type can have the
532
581
  * following values:</p>
533
582
  * <ul>
@@ -607,23 +656,28 @@ export interface ContinuousExportDescription {
607
656
  */
608
657
  statusDetail?: string;
609
658
  /**
659
+ * @public
610
660
  * <p>The name of the s3 bucket where the export data parquet files are stored.</p>
611
661
  */
612
662
  s3Bucket?: string;
613
663
  /**
664
+ * @public
614
665
  * <p>The timestamp representing when the continuous export was started.</p>
615
666
  */
616
667
  startTime?: Date;
617
668
  /**
669
+ * @public
618
670
  * <p>The timestamp that represents when this continuous export was stopped.</p>
619
671
  */
620
672
  stopTime?: Date;
621
673
  /**
674
+ * @public
622
675
  * <p>The type of data collector used to gather this data (currently only offered for
623
676
  * AGENT).</p>
624
677
  */
625
678
  dataSource?: DataSource | string;
626
679
  /**
680
+ * @public
627
681
  * <p>An object which describes how the data is stored.</p>
628
682
  * <ul>
629
683
  * <li>
@@ -640,10 +694,12 @@ export interface ContinuousExportDescription {
640
694
  */
641
695
  export interface DescribeContinuousExportsResponse {
642
696
  /**
697
+ * @public
643
698
  * <p>A list of continuous export descriptions.</p>
644
699
  */
645
700
  descriptions?: ContinuousExportDescription[];
646
701
  /**
702
+ * @public
647
703
  * <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
648
704
  */
649
705
  nextToken?: string;
@@ -665,15 +721,18 @@ export declare class OperationNotPermittedException extends __BaseException {
665
721
  */
666
722
  export interface DescribeExportConfigurationsRequest {
667
723
  /**
724
+ * @public
668
725
  * <p>A list of continuous export IDs to search for.</p>
669
726
  */
670
727
  exportIds?: string[];
671
728
  /**
729
+ * @public
672
730
  * <p>A number between 1 and 100 specifying the maximum number of continuous export
673
731
  * descriptions returned.</p>
674
732
  */
675
733
  maxResults?: number;
676
734
  /**
735
+ * @public
677
736
  * <p>The token from the previous call to describe-export-tasks.</p>
678
737
  */
679
738
  nextToken?: string;
@@ -698,27 +757,33 @@ export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
698
757
  */
699
758
  export interface ExportInfo {
700
759
  /**
760
+ * @public
701
761
  * <p>A unique identifier used to query an export.</p>
702
762
  */
703
763
  exportId: string | undefined;
704
764
  /**
765
+ * @public
705
766
  * <p>The status of the data export job.</p>
706
767
  */
707
768
  exportStatus: ExportStatus | string | undefined;
708
769
  /**
770
+ * @public
709
771
  * <p>A status message provided for API callers.</p>
710
772
  */
711
773
  statusMessage: string | undefined;
712
774
  /**
775
+ * @public
713
776
  * <p>A URL for an Amazon S3 bucket where you can review the exported data. The URL is
714
777
  * displayed only if the export succeeded.</p>
715
778
  */
716
779
  configurationsDownloadUrl?: string;
717
780
  /**
781
+ * @public
718
782
  * <p>The time that the data export was initiated.</p>
719
783
  */
720
784
  exportRequestTime: Date | undefined;
721
785
  /**
786
+ * @public
722
787
  * <p>If true, the export of agent information exceeded the size limit for a single export
723
788
  * and the exported data is incomplete for the requested time range. To address this, select a
724
789
  * smaller time range for the export by using <code>startDate</code> and
@@ -726,12 +791,14 @@ export interface ExportInfo {
726
791
  */
727
792
  isTruncated?: boolean;
728
793
  /**
794
+ * @public
729
795
  * <p>The value of <code>startTime</code> parameter in the <code>StartExportTask</code>
730
796
  * request. If no <code>startTime</code> was requested, this result does not appear in
731
797
  * <code>ExportInfo</code>.</p>
732
798
  */
733
799
  requestedStartTime?: Date;
734
800
  /**
801
+ * @public
735
802
  * <p>The <code>endTime</code> used in the <code>StartExportTask</code> request. If no
736
803
  * <code>endTime</code> was requested, this result does not appear in
737
804
  * <code>ExportInfo</code>.</p>
@@ -743,10 +810,12 @@ export interface ExportInfo {
743
810
  */
744
811
  export interface DescribeExportConfigurationsResponse {
745
812
  /**
813
+ * @public
746
814
  * <p></p>
747
815
  */
748
816
  exportsInfo?: ExportInfo[];
749
817
  /**
818
+ * @public
750
819
  * <p>The token from the previous call to describe-export-tasks.</p>
751
820
  */
752
821
  nextToken?: string;
@@ -758,16 +827,19 @@ export interface DescribeExportConfigurationsResponse {
758
827
  */
759
828
  export interface ExportFilter {
760
829
  /**
830
+ * @public
761
831
  * <p>A single <code>ExportFilter</code> name. Supported filters:
762
832
  * <code>agentIds</code>.</p>
763
833
  */
764
834
  name: string | undefined;
765
835
  /**
836
+ * @public
766
837
  * <p>A single agent ID for a Discovery Agent. An agent ID can be found using the <a href="http://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeAgents.html">DescribeAgents</a> action. Typically an ADS agent ID is in the form
767
838
  * <code>o-0123456789abcdef0</code>.</p>
768
839
  */
769
840
  values: string[] | undefined;
770
841
  /**
842
+ * @public
771
843
  * <p>Supported condition: <code>EQUALS</code>
772
844
  * </p>
773
845
  */
@@ -778,10 +850,12 @@ export interface ExportFilter {
778
850
  */
779
851
  export interface DescribeExportTasksRequest {
780
852
  /**
853
+ * @public
781
854
  * <p>One or more unique identifiers used to query the status of an export request.</p>
782
855
  */
783
856
  exportIds?: string[];
784
857
  /**
858
+ * @public
785
859
  * <p>One or more filters.</p>
786
860
  * <ul>
787
861
  * <li>
@@ -793,6 +867,7 @@ export interface DescribeExportTasksRequest {
793
867
  */
794
868
  filters?: ExportFilter[];
795
869
  /**
870
+ * @public
796
871
  * <p>The maximum number of volume results returned by <code>DescribeExportTasks</code> in
797
872
  * paginated output. When this parameter is used, <code>DescribeExportTasks</code> only returns
798
873
  * <code>maxResults</code> results in a single page along with a <code>nextToken</code>
@@ -800,6 +875,7 @@ export interface DescribeExportTasksRequest {
800
875
  */
801
876
  maxResults?: number;
802
877
  /**
878
+ * @public
803
879
  * <p>The <code>nextToken</code> value returned from a previous paginated
804
880
  * <code>DescribeExportTasks</code> request where <code>maxResults</code> was used and the
805
881
  * results exceeded the value of that parameter. Pagination continues from the end of the
@@ -813,12 +889,14 @@ export interface DescribeExportTasksRequest {
813
889
  */
814
890
  export interface DescribeExportTasksResponse {
815
891
  /**
892
+ * @public
816
893
  * <p>Contains one or more sets of export request details. When the status of a request is
817
894
  * <code>SUCCEEDED</code>, the response includes a URL for an Amazon S3 bucket where you can
818
895
  * view the data in a CSV file.</p>
819
896
  */
820
897
  exportsInfo?: ExportInfo[];
821
898
  /**
899
+ * @public
822
900
  * <p>The <code>nextToken</code> value to include in a future
823
901
  * <code>DescribeExportTasks</code> request. When the results of a
824
902
  * <code>DescribeExportTasks</code> request exceed <code>maxResults</code>, this value can be
@@ -850,10 +928,12 @@ export type ImportTaskFilterName = (typeof ImportTaskFilterName)[keyof typeof Im
850
928
  */
851
929
  export interface ImportTaskFilter {
852
930
  /**
931
+ * @public
853
932
  * <p>The name, status, or import task ID for a specific import task.</p>
854
933
  */
855
934
  name?: ImportTaskFilterName | string;
856
935
  /**
936
+ * @public
857
937
  * <p>An array of strings that you can provide to match against a specific name, status, or
858
938
  * import task ID to filter the results for your import task queries.</p>
859
939
  */
@@ -864,16 +944,19 @@ export interface ImportTaskFilter {
864
944
  */
865
945
  export interface DescribeImportTasksRequest {
866
946
  /**
947
+ * @public
867
948
  * <p>An array of name-value pairs that you provide to filter the results for the
868
949
  * <code>DescribeImportTask</code> request to a specific subset of results. Currently, wildcard
869
950
  * values aren't supported for filters.</p>
870
951
  */
871
952
  filters?: ImportTaskFilter[];
872
953
  /**
954
+ * @public
873
955
  * <p>The maximum number of results that you want this request to return, up to 100.</p>
874
956
  */
875
957
  maxResults?: number;
876
958
  /**
959
+ * @public
877
960
  * <p>The token to request a specific page of results.</p>
878
961
  */
879
962
  nextToken?: string;
@@ -906,27 +989,32 @@ export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
906
989
  */
907
990
  export interface ImportTask {
908
991
  /**
992
+ * @public
909
993
  * <p>The unique ID for a specific import task. These IDs aren't globally unique, but they are
910
994
  * unique within an Amazon Web Services account.</p>
911
995
  */
912
996
  importTaskId?: string;
913
997
  /**
998
+ * @public
914
999
  * <p>A unique token used to prevent the same import request from occurring more than once. If
915
1000
  * you didn't provide a token, a token was automatically generated when the import task request
916
1001
  * was sent.</p>
917
1002
  */
918
1003
  clientRequestToken?: string;
919
1004
  /**
1005
+ * @public
920
1006
  * <p>A descriptive name for an import task. You can use this name to filter future requests
921
1007
  * related to this import task, such as identifying applications and servers that were included
922
1008
  * in this import task. We recommend that you use a meaningful name for each import task.</p>
923
1009
  */
924
1010
  name?: string;
925
1011
  /**
1012
+ * @public
926
1013
  * <p>The URL for your import file that you've uploaded to Amazon S3.</p>
927
1014
  */
928
1015
  importUrl?: string;
929
1016
  /**
1017
+ * @public
930
1018
  * <p>The status of the import task. An import can have the status of
931
1019
  * <code>IMPORT_COMPLETE</code> and still have some records fail to import from the overall
932
1020
  * request. More information can be found in the downloadable archive defined in the
@@ -935,40 +1023,48 @@ export interface ImportTask {
935
1023
  */
936
1024
  status?: ImportStatus | string;
937
1025
  /**
1026
+ * @public
938
1027
  * <p>The time that the import task request was made, presented in the Unix time stamp
939
1028
  * format.</p>
940
1029
  */
941
1030
  importRequestTime?: Date;
942
1031
  /**
1032
+ * @public
943
1033
  * <p>The time that the import task request finished, presented in the Unix time stamp
944
1034
  * format.</p>
945
1035
  */
946
1036
  importCompletionTime?: Date;
947
1037
  /**
1038
+ * @public
948
1039
  * <p>The time that the import task request was deleted, presented in the Unix time stamp
949
1040
  * format.</p>
950
1041
  */
951
1042
  importDeletedTime?: Date;
952
1043
  /**
1044
+ * @public
953
1045
  * <p>The total number of server records in the import file that were successfully
954
1046
  * imported.</p>
955
1047
  */
956
1048
  serverImportSuccess?: number;
957
1049
  /**
1050
+ * @public
958
1051
  * <p>The total number of server records in the import file that failed to be imported.</p>
959
1052
  */
960
1053
  serverImportFailure?: number;
961
1054
  /**
1055
+ * @public
962
1056
  * <p>The total number of application records in the import file that were successfully
963
1057
  * imported.</p>
964
1058
  */
965
1059
  applicationImportSuccess?: number;
966
1060
  /**
1061
+ * @public
967
1062
  * <p>The total number of application records in the import file that failed to be
968
1063
  * imported.</p>
969
1064
  */
970
1065
  applicationImportFailure?: number;
971
1066
  /**
1067
+ * @public
972
1068
  * <p>A link to a compressed archive folder (in the ZIP format) that contains an error log and a
973
1069
  * file of failed records. You can use these two files to quickly identify records that failed,
974
1070
  * why they failed, and correct those records. Afterward, you can upload the corrected file to
@@ -986,10 +1082,12 @@ export interface ImportTask {
986
1082
  */
987
1083
  export interface DescribeImportTasksResponse {
988
1084
  /**
1085
+ * @public
989
1086
  * <p>The token to request the next page of results.</p>
990
1087
  */
991
1088
  nextToken?: string;
992
1089
  /**
1090
+ * @public
993
1091
  * <p>A returned array of import tasks that match any applied filters, up to the specified
994
1092
  * number of maximum results.</p>
995
1093
  */
@@ -1002,10 +1100,12 @@ export interface DescribeImportTasksResponse {
1002
1100
  */
1003
1101
  export interface TagFilter {
1004
1102
  /**
1103
+ * @public
1005
1104
  * <p>A name of the tag filter.</p>
1006
1105
  */
1007
1106
  name: string | undefined;
1008
1107
  /**
1108
+ * @public
1009
1109
  * <p>Values for the tag filter.</p>
1010
1110
  */
1011
1111
  values: string[] | undefined;
@@ -1015,17 +1115,20 @@ export interface TagFilter {
1015
1115
  */
1016
1116
  export interface DescribeTagsRequest {
1017
1117
  /**
1118
+ * @public
1018
1119
  * <p>You can filter the list using a <i>key</i>-<i>value</i>
1019
1120
  * format. You can separate these items by using logical operators. Allowed filters include
1020
1121
  * <code>tagKey</code>, <code>tagValue</code>, and <code>configurationId</code>. </p>
1021
1122
  */
1022
1123
  filters?: TagFilter[];
1023
1124
  /**
1125
+ * @public
1024
1126
  * <p>The total number of items to return in a single page of output. The maximum value is
1025
1127
  * 100.</p>
1026
1128
  */
1027
1129
  maxResults?: number;
1028
1130
  /**
1131
+ * @public
1029
1132
  * <p>A token to start the list. Use this token to get the next set of results.</p>
1030
1133
  */
1031
1134
  nextToken?: string;
@@ -1051,25 +1154,30 @@ export type ConfigurationItemType = (typeof ConfigurationItemType)[keyof typeof
1051
1154
  */
1052
1155
  export interface ConfigurationTag {
1053
1156
  /**
1157
+ * @public
1054
1158
  * <p>A type of IT asset to tag.</p>
1055
1159
  */
1056
1160
  configurationType?: ConfigurationItemType | string;
1057
1161
  /**
1162
+ * @public
1058
1163
  * <p>The configuration ID for the item to tag. You can specify a list of keys and
1059
1164
  * values.</p>
1060
1165
  */
1061
1166
  configurationId?: string;
1062
1167
  /**
1168
+ * @public
1063
1169
  * <p>A type of tag on which to filter. For example,
1064
1170
  * <i>serverType</i>.</p>
1065
1171
  */
1066
1172
  key?: string;
1067
1173
  /**
1174
+ * @public
1068
1175
  * <p>A value on which to filter. For example <i>key = serverType</i> and
1069
1176
  * <i>value = web server</i>.</p>
1070
1177
  */
1071
1178
  value?: string;
1072
1179
  /**
1180
+ * @public
1073
1181
  * <p>The time the configuration tag was created in Coordinated Universal Time
1074
1182
  * (UTC).</p>
1075
1183
  */
@@ -1080,11 +1188,13 @@ export interface ConfigurationTag {
1080
1188
  */
1081
1189
  export interface DescribeTagsResponse {
1082
1190
  /**
1191
+ * @public
1083
1192
  * <p>Depending on the input, this is a list of configuration items tagged with a specific
1084
1193
  * tag, or a list of tags for a specific configuration item.</p>
1085
1194
  */
1086
1195
  tags?: ConfigurationTag[];
1087
1196
  /**
1197
+ * @public
1088
1198
  * <p>The call returns a token. Use this token to get the next set of results.</p>
1089
1199
  */
1090
1200
  nextToken?: string;
@@ -1094,10 +1204,12 @@ export interface DescribeTagsResponse {
1094
1204
  */
1095
1205
  export interface DisassociateConfigurationItemsFromApplicationRequest {
1096
1206
  /**
1207
+ * @public
1097
1208
  * <p>Configuration ID of an application from which each item is disassociated.</p>
1098
1209
  */
1099
1210
  applicationConfigurationId: string | undefined;
1100
1211
  /**
1212
+ * @public
1101
1213
  * <p>Configuration ID of each item to be disassociated from an application.</p>
1102
1214
  */
1103
1215
  configurationIds: string[] | undefined;
@@ -1112,6 +1224,7 @@ export interface DisassociateConfigurationItemsFromApplicationResponse {
1112
1224
  */
1113
1225
  export interface ExportConfigurationsResponse {
1114
1226
  /**
1227
+ * @public
1115
1228
  * <p>A unique identifier that you can use to query the export status.</p>
1116
1229
  */
1117
1230
  exportId?: string;
@@ -1127,31 +1240,38 @@ export interface GetDiscoverySummaryRequest {
1127
1240
  */
1128
1241
  export interface CustomerAgentlessCollectorInfo {
1129
1242
  /**
1243
+ * @public
1130
1244
  * <p>The number of active Agentless Collector collectors. </p>
1131
1245
  */
1132
1246
  activeAgentlessCollectors: number | undefined;
1133
1247
  /**
1248
+ * @public
1134
1249
  * <p>The number of healthy Agentless Collector collectors. </p>
1135
1250
  */
1136
1251
  healthyAgentlessCollectors: number | undefined;
1137
1252
  /**
1253
+ * @public
1138
1254
  * <p>The number of deny-listed Agentless Collector collectors. </p>
1139
1255
  */
1140
1256
  denyListedAgentlessCollectors: number | undefined;
1141
1257
  /**
1258
+ * @public
1142
1259
  * <p>The number of Agentless Collector collectors with <code>SHUTDOWN</code> status.
1143
1260
  * </p>
1144
1261
  */
1145
1262
  shutdownAgentlessCollectors: number | undefined;
1146
1263
  /**
1264
+ * @public
1147
1265
  * <p> The number of unhealthy Agentless Collector collectors. </p>
1148
1266
  */
1149
1267
  unhealthyAgentlessCollectors: number | undefined;
1150
1268
  /**
1269
+ * @public
1151
1270
  * <p> The total number of Agentless Collector collectors. </p>
1152
1271
  */
1153
1272
  totalAgentlessCollectors: number | undefined;
1154
1273
  /**
1274
+ * @public
1155
1275
  * <p> The number of unknown Agentless Collector collectors. </p>
1156
1276
  */
1157
1277
  unknownAgentlessCollectors: number | undefined;
@@ -1162,30 +1282,37 @@ export interface CustomerAgentlessCollectorInfo {
1162
1282
  */
1163
1283
  export interface CustomerAgentInfo {
1164
1284
  /**
1285
+ * @public
1165
1286
  * <p>Number of active discovery agents.</p>
1166
1287
  */
1167
1288
  activeAgents: number | undefined;
1168
1289
  /**
1290
+ * @public
1169
1291
  * <p>Number of healthy discovery agents</p>
1170
1292
  */
1171
1293
  healthyAgents: number | undefined;
1172
1294
  /**
1295
+ * @public
1173
1296
  * <p>Number of blacklisted discovery agents.</p>
1174
1297
  */
1175
1298
  blackListedAgents: number | undefined;
1176
1299
  /**
1300
+ * @public
1177
1301
  * <p>Number of discovery agents with status SHUTDOWN.</p>
1178
1302
  */
1179
1303
  shutdownAgents: number | undefined;
1180
1304
  /**
1305
+ * @public
1181
1306
  * <p>Number of unhealthy discovery agents.</p>
1182
1307
  */
1183
1308
  unhealthyAgents: number | undefined;
1184
1309
  /**
1310
+ * @public
1185
1311
  * <p>Total number of discovery agents.</p>
1186
1312
  */
1187
1313
  totalAgents: number | undefined;
1188
1314
  /**
1315
+ * @public
1189
1316
  * <p>Number of unknown discovery agents.</p>
1190
1317
  */
1191
1318
  unknownAgents: number | undefined;
@@ -1196,30 +1323,37 @@ export interface CustomerAgentInfo {
1196
1323
  */
1197
1324
  export interface CustomerConnectorInfo {
1198
1325
  /**
1326
+ * @public
1199
1327
  * <p>Number of active discovery connectors.</p>
1200
1328
  */
1201
1329
  activeConnectors: number | undefined;
1202
1330
  /**
1331
+ * @public
1203
1332
  * <p>Number of healthy discovery connectors.</p>
1204
1333
  */
1205
1334
  healthyConnectors: number | undefined;
1206
1335
  /**
1336
+ * @public
1207
1337
  * <p>Number of blacklisted discovery connectors.</p>
1208
1338
  */
1209
1339
  blackListedConnectors: number | undefined;
1210
1340
  /**
1341
+ * @public
1211
1342
  * <p>Number of discovery connectors with status SHUTDOWN,</p>
1212
1343
  */
1213
1344
  shutdownConnectors: number | undefined;
1214
1345
  /**
1346
+ * @public
1215
1347
  * <p>Number of unhealthy discovery connectors.</p>
1216
1348
  */
1217
1349
  unhealthyConnectors: number | undefined;
1218
1350
  /**
1351
+ * @public
1219
1352
  * <p>Total number of discovery connectors.</p>
1220
1353
  */
1221
1354
  totalConnectors: number | undefined;
1222
1355
  /**
1356
+ * @public
1223
1357
  * <p>Number of unknown discovery connectors.</p>
1224
1358
  */
1225
1359
  unknownConnectors: number | undefined;
@@ -1230,30 +1364,37 @@ export interface CustomerConnectorInfo {
1230
1364
  */
1231
1365
  export interface CustomerMeCollectorInfo {
1232
1366
  /**
1367
+ * @public
1233
1368
  * <p> The number of active Migration Evaluator collectors. </p>
1234
1369
  */
1235
1370
  activeMeCollectors: number | undefined;
1236
1371
  /**
1372
+ * @public
1237
1373
  * <p> The number of healthy Migration Evaluator collectors. </p>
1238
1374
  */
1239
1375
  healthyMeCollectors: number | undefined;
1240
1376
  /**
1377
+ * @public
1241
1378
  * <p> The number of deny-listed Migration Evaluator collectors. </p>
1242
1379
  */
1243
1380
  denyListedMeCollectors: number | undefined;
1244
1381
  /**
1382
+ * @public
1245
1383
  * <p> The number of Migration Evaluator collectors with <code>SHUTDOWN</code> status. </p>
1246
1384
  */
1247
1385
  shutdownMeCollectors: number | undefined;
1248
1386
  /**
1387
+ * @public
1249
1388
  * <p> The number of unhealthy Migration Evaluator collectors. </p>
1250
1389
  */
1251
1390
  unhealthyMeCollectors: number | undefined;
1252
1391
  /**
1392
+ * @public
1253
1393
  * <p> The total number of Migration Evaluator collectors. </p>
1254
1394
  */
1255
1395
  totalMeCollectors: number | undefined;
1256
1396
  /**
1397
+ * @public
1257
1398
  * <p> The number of unknown Migration Evaluator collectors. </p>
1258
1399
  */
1259
1400
  unknownMeCollectors: number | undefined;
@@ -1263,34 +1404,42 @@ export interface CustomerMeCollectorInfo {
1263
1404
  */
1264
1405
  export interface GetDiscoverySummaryResponse {
1265
1406
  /**
1407
+ * @public
1266
1408
  * <p>The number of servers discovered.</p>
1267
1409
  */
1268
1410
  servers?: number;
1269
1411
  /**
1412
+ * @public
1270
1413
  * <p>The number of applications discovered.</p>
1271
1414
  */
1272
1415
  applications?: number;
1273
1416
  /**
1417
+ * @public
1274
1418
  * <p>The number of servers mapped to applications.</p>
1275
1419
  */
1276
1420
  serversMappedToApplications?: number;
1277
1421
  /**
1422
+ * @public
1278
1423
  * <p>The number of servers mapped to tags.</p>
1279
1424
  */
1280
1425
  serversMappedtoTags?: number;
1281
1426
  /**
1427
+ * @public
1282
1428
  * <p>Details about discovered agents, including agent status and health.</p>
1283
1429
  */
1284
1430
  agentSummary?: CustomerAgentInfo;
1285
1431
  /**
1432
+ * @public
1286
1433
  * <p>Details about discovered connectors, including connector status and health.</p>
1287
1434
  */
1288
1435
  connectorSummary?: CustomerConnectorInfo;
1289
1436
  /**
1437
+ * @public
1290
1438
  * <p> Details about Migration Evaluator collectors, including collector status and health. </p>
1291
1439
  */
1292
1440
  meCollectorSummary?: CustomerMeCollectorInfo;
1293
1441
  /**
1442
+ * @public
1294
1443
  * <p> Details about Agentless Collector collectors, including status. </p>
1295
1444
  */
1296
1445
  agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
@@ -1313,10 +1462,12 @@ export type OrderString = (typeof OrderString)[keyof typeof OrderString];
1313
1462
  */
1314
1463
  export interface OrderByElement {
1315
1464
  /**
1465
+ * @public
1316
1466
  * <p>The field on which to order.</p>
1317
1467
  */
1318
1468
  fieldName: string | undefined;
1319
1469
  /**
1470
+ * @public
1320
1471
  * <p>Ordering direction.</p>
1321
1472
  */
1322
1473
  sortOrder?: OrderString | string;
@@ -1326,10 +1477,12 @@ export interface OrderByElement {
1326
1477
  */
1327
1478
  export interface ListConfigurationsRequest {
1328
1479
  /**
1480
+ * @public
1329
1481
  * <p>A valid configuration identified by Application Discovery Service. </p>
1330
1482
  */
1331
1483
  configurationType: ConfigurationItemType | string | undefined;
1332
1484
  /**
1485
+ * @public
1333
1486
  * <p>You can filter the request using various logical operators and a
1334
1487
  * <i>key</i>-<i>value</i> format. For example: </p>
1335
1488
  * <p>
@@ -1341,10 +1494,12 @@ export interface ListConfigurationsRequest {
1341
1494
  */
1342
1495
  filters?: Filter[];
1343
1496
  /**
1497
+ * @public
1344
1498
  * <p>The total number of items to return. The maximum value is 100.</p>
1345
1499
  */
1346
1500
  maxResults?: number;
1347
1501
  /**
1502
+ * @public
1348
1503
  * <p>Token to retrieve the next set of results. For example, if a previous call to
1349
1504
  * ListConfigurations returned 100 items, but you set
1350
1505
  * <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results
@@ -1352,6 +1507,7 @@ export interface ListConfigurationsRequest {
1352
1507
  */
1353
1508
  nextToken?: string;
1354
1509
  /**
1510
+ * @public
1355
1511
  * <p>Certain filter criteria return output that can be sorted in ascending or descending
1356
1512
  * order. For a list of output characteristics for each filter, 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
1357
1513
  * Service User Guide</i>.</p>
@@ -1363,11 +1519,13 @@ export interface ListConfigurationsRequest {
1363
1519
  */
1364
1520
  export interface ListConfigurationsResponse {
1365
1521
  /**
1522
+ * @public
1366
1523
  * <p>Returns configuration details, including the configuration ID, attribute names, and
1367
1524
  * attribute values.</p>
1368
1525
  */
1369
1526
  configurations?: Record<string, string>[];
1370
1527
  /**
1528
+ * @public
1371
1529
  * <p>Token to retrieve the next set of results. For example, if your call to
1372
1530
  * ListConfigurations returned 100 items, but you set
1373
1531
  * <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results
@@ -1381,23 +1539,28 @@ export interface ListConfigurationsResponse {
1381
1539
  */
1382
1540
  export interface ListServerNeighborsRequest {
1383
1541
  /**
1542
+ * @public
1384
1543
  * <p>Configuration ID of the server for which neighbors are being listed.</p>
1385
1544
  */
1386
1545
  configurationId: string | undefined;
1387
1546
  /**
1547
+ * @public
1388
1548
  * <p>Flag to indicate if port and protocol information is needed as part of the
1389
1549
  * response.</p>
1390
1550
  */
1391
1551
  portInformationNeeded?: boolean;
1392
1552
  /**
1553
+ * @public
1393
1554
  * <p>List of configuration IDs to test for one-hop-away.</p>
1394
1555
  */
1395
1556
  neighborConfigurationIds?: string[];
1396
1557
  /**
1558
+ * @public
1397
1559
  * <p>Maximum number of results to return in a single page of output.</p>
1398
1560
  */
1399
1561
  maxResults?: number;
1400
1562
  /**
1563
+ * @public
1401
1564
  * <p>Token to retrieve the next set of results. For example, if you previously specified 100
1402
1565
  * IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set
1403
1566
  * <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results
@@ -1411,22 +1574,27 @@ export interface ListServerNeighborsRequest {
1411
1574
  */
1412
1575
  export interface NeighborConnectionDetail {
1413
1576
  /**
1577
+ * @public
1414
1578
  * <p>The ID of the server that opened the network connection.</p>
1415
1579
  */
1416
1580
  sourceServerId: string | undefined;
1417
1581
  /**
1582
+ * @public
1418
1583
  * <p>The ID of the server that accepted the network connection.</p>
1419
1584
  */
1420
1585
  destinationServerId: string | undefined;
1421
1586
  /**
1587
+ * @public
1422
1588
  * <p>The destination network port for the connection.</p>
1423
1589
  */
1424
1590
  destinationPort?: number;
1425
1591
  /**
1592
+ * @public
1426
1593
  * <p>The network protocol used for the connection.</p>
1427
1594
  */
1428
1595
  transportProtocol?: string;
1429
1596
  /**
1597
+ * @public
1430
1598
  * <p>The number of open network connections with the neighboring server.</p>
1431
1599
  */
1432
1600
  connectionsCount: number | undefined;
@@ -1436,10 +1604,12 @@ export interface NeighborConnectionDetail {
1436
1604
  */
1437
1605
  export interface ListServerNeighborsResponse {
1438
1606
  /**
1607
+ * @public
1439
1608
  * <p>List of distinct servers that are one hop away from the given server.</p>
1440
1609
  */
1441
1610
  neighbors: NeighborConnectionDetail[] | undefined;
1442
1611
  /**
1612
+ * @public
1443
1613
  * <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for
1444
1614
  * <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set
1445
1615
  * <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results
@@ -1448,6 +1618,7 @@ export interface ListServerNeighborsResponse {
1448
1618
  */
1449
1619
  nextToken?: string;
1450
1620
  /**
1621
+ * @public
1451
1622
  * <p>Count of distinct servers that are one hop away from the given server.</p>
1452
1623
  */
1453
1624
  knownDependencyCount?: number;
@@ -1490,23 +1661,28 @@ export interface StartContinuousExportRequest {
1490
1661
  */
1491
1662
  export interface StartContinuousExportResponse {
1492
1663
  /**
1664
+ * @public
1493
1665
  * <p>The unique ID assigned to this export.</p>
1494
1666
  */
1495
1667
  exportId?: string;
1496
1668
  /**
1669
+ * @public
1497
1670
  * <p>The name of the s3 bucket where the export data parquet files are stored.</p>
1498
1671
  */
1499
1672
  s3Bucket?: string;
1500
1673
  /**
1674
+ * @public
1501
1675
  * <p>The timestamp representing when the continuous export was started.</p>
1502
1676
  */
1503
1677
  startTime?: Date;
1504
1678
  /**
1679
+ * @public
1505
1680
  * <p>The type of data collector used to gather this data (currently only offered for
1506
1681
  * AGENT).</p>
1507
1682
  */
1508
1683
  dataSource?: DataSource | string;
1509
1684
  /**
1685
+ * @public
1510
1686
  * <p>A dictionary which describes how the data is stored.</p>
1511
1687
  * <ul>
1512
1688
  * <li>
@@ -1523,6 +1699,7 @@ export interface StartContinuousExportResponse {
1523
1699
  */
1524
1700
  export interface StartDataCollectionByAgentIdsRequest {
1525
1701
  /**
1702
+ * @public
1526
1703
  * <p>The IDs of the agents from which to start collecting data. If you send a request to an
1527
1704
  * agent ID that you do not have permission to contact, according to your Amazon Web Services account, the
1528
1705
  * service does not throw an exception. Instead, it returns the error in the
@@ -1538,6 +1715,7 @@ export interface StartDataCollectionByAgentIdsRequest {
1538
1715
  */
1539
1716
  export interface StartDataCollectionByAgentIdsResponse {
1540
1717
  /**
1718
+ * @public
1541
1719
  * <p>Information about agents that were instructed to start collecting data. Information
1542
1720
  * includes the agent ID, a description of the operation performed, and whether the agent
1543
1721
  * configuration was updated.</p>
@@ -1563,12 +1741,14 @@ export type ExportDataFormat = (typeof ExportDataFormat)[keyof typeof ExportData
1563
1741
  */
1564
1742
  export interface UsageMetricBasis {
1565
1743
  /**
1744
+ * @public
1566
1745
  * <p>
1567
1746
  * A utilization metric that is used by the recommendations.
1568
1747
  * </p>
1569
1748
  */
1570
1749
  name?: string;
1571
1750
  /**
1751
+ * @public
1572
1752
  * <p>
1573
1753
  * Specifies the percentage of the specified utilization metric that is used by the recommendations.
1574
1754
  * </p>
@@ -1620,18 +1800,21 @@ export type TermLength = (typeof TermLength)[keyof typeof TermLength];
1620
1800
  */
1621
1801
  export interface ReservedInstanceOptions {
1622
1802
  /**
1803
+ * @public
1623
1804
  * <p>
1624
1805
  * The payment plan to use for your Reserved Instance.
1625
1806
  * </p>
1626
1807
  */
1627
1808
  purchasingOption: PurchasingOption | string | undefined;
1628
1809
  /**
1810
+ * @public
1629
1811
  * <p>
1630
1812
  * The flexibility to change the instance types needed for your Reserved Instance.
1631
1813
  * </p>
1632
1814
  */
1633
1815
  offeringClass: OfferingClass | string | undefined;
1634
1816
  /**
1817
+ * @public
1635
1818
  * <p>
1636
1819
  * The preferred duration of the Reserved Instance term.
1637
1820
  * </p>
@@ -1659,6 +1842,7 @@ export type Tenancy = (typeof Tenancy)[keyof typeof Tenancy];
1659
1842
  */
1660
1843
  export interface Ec2RecommendationsExportPreferences {
1661
1844
  /**
1845
+ * @public
1662
1846
  * <p>
1663
1847
  * If set to true, the export
1664
1848
  * <a href="https://docs.aws.amazon.com/application-discovery/latest/APIReference/API_StartExportTask.html#API_StartExportTask_RequestSyntax">preferences</a>
@@ -1667,30 +1851,35 @@ export interface Ec2RecommendationsExportPreferences {
1667
1851
  */
1668
1852
  enabled?: boolean;
1669
1853
  /**
1854
+ * @public
1670
1855
  * <p>
1671
1856
  * The recommended EC2 instance type that matches the CPU usage metric of server performance data.
1672
1857
  * </p>
1673
1858
  */
1674
1859
  cpuPerformanceMetricBasis?: UsageMetricBasis;
1675
1860
  /**
1861
+ * @public
1676
1862
  * <p>
1677
1863
  * The recommended EC2 instance type that matches the Memory usage metric of server performance data.
1678
1864
  * </p>
1679
1865
  */
1680
1866
  ramPerformanceMetricBasis?: UsageMetricBasis;
1681
1867
  /**
1868
+ * @public
1682
1869
  * <p>
1683
1870
  * The target tenancy to use for your recommended EC2 instances.
1684
1871
  * </p>
1685
1872
  */
1686
1873
  tenancy?: Tenancy | string;
1687
1874
  /**
1875
+ * @public
1688
1876
  * <p>
1689
1877
  * An array of instance types to exclude from recommendations.
1690
1878
  * </p>
1691
1879
  */
1692
1880
  excludedInstanceTypes?: string[];
1693
1881
  /**
1882
+ * @public
1694
1883
  * <p>
1695
1884
  * The target Amazon Web Services Region for the recommendations.
1696
1885
  * You can use any of the Region codes available for the chosen service,
@@ -1699,6 +1888,7 @@ export interface Ec2RecommendationsExportPreferences {
1699
1888
  */
1700
1889
  preferredRegion?: string;
1701
1890
  /**
1891
+ * @public
1702
1892
  * <p>
1703
1893
  * The contract type for a reserved instance.
1704
1894
  * If blank, we assume an On-Demand instance is preferred.
@@ -1720,6 +1910,7 @@ export type ExportPreferences = ExportPreferences.Ec2RecommendationsPreferencesM
1720
1910
  */
1721
1911
  export declare namespace ExportPreferences {
1722
1912
  /**
1913
+ * @public
1723
1914
  * <p>
1724
1915
  * If enabled, exported data includes EC2 instance type matches for on-premises servers
1725
1916
  * discovered through Amazon Web Services Application Discovery Service.
@@ -1729,6 +1920,9 @@ export declare namespace ExportPreferences {
1729
1920
  ec2RecommendationsPreferences: Ec2RecommendationsExportPreferences;
1730
1921
  $unknown?: never;
1731
1922
  }
1923
+ /**
1924
+ * @public
1925
+ */
1732
1926
  interface $UnknownMember {
1733
1927
  ec2RecommendationsPreferences?: never;
1734
1928
  $unknown: [string, any];
@@ -1744,6 +1938,7 @@ export declare namespace ExportPreferences {
1744
1938
  */
1745
1939
  export interface StartExportTaskRequest {
1746
1940
  /**
1941
+ * @public
1747
1942
  * <p>The file format for the returned export data. Default value is <code>CSV</code>.
1748
1943
  * <b>Note:</b>
1749
1944
  * <i>The</i>
@@ -1753,6 +1948,7 @@ export interface StartExportTaskRequest {
1753
1948
  */
1754
1949
  exportDataFormat?: (ExportDataFormat | string)[];
1755
1950
  /**
1951
+ * @public
1756
1952
  * <p>If a filter is present, it selects the single <code>agentId</code> of the Application
1757
1953
  * Discovery Agent for which data is exported. The <code>agentId</code> can be found in the
1758
1954
  * results of the <code>DescribeAgents</code> API or CLI. If no filter is present,
@@ -1762,18 +1958,21 @@ export interface StartExportTaskRequest {
1762
1958
  */
1763
1959
  filters?: ExportFilter[];
1764
1960
  /**
1961
+ * @public
1765
1962
  * <p>The start timestamp for exported data from the single Application Discovery Agent
1766
1963
  * selected in the filters. If no value is specified, data is exported starting from the first
1767
1964
  * data collected by the agent.</p>
1768
1965
  */
1769
1966
  startTime?: Date;
1770
1967
  /**
1968
+ * @public
1771
1969
  * <p>The end timestamp for exported data from the single Application Discovery Agent
1772
1970
  * selected in the filters. If no value is specified, exported data includes the most recent data
1773
1971
  * collected by the agent.</p>
1774
1972
  */
1775
1973
  endTime?: Date;
1776
1974
  /**
1975
+ * @public
1777
1976
  * <p>
1778
1977
  * Indicates the type of data that needs to be exported. Only one
1779
1978
  * <a href="https://docs.aws.amazon.com/application-discovery/latest/APIReference/API_ExportPreferences.html">ExportPreferences</a> can be enabled at any time.
@@ -1786,6 +1985,7 @@ export interface StartExportTaskRequest {
1786
1985
  */
1787
1986
  export interface StartExportTaskResponse {
1788
1987
  /**
1988
+ * @public
1789
1989
  * <p>A unique identifier used to query the status of an export request.</p>
1790
1990
  */
1791
1991
  exportId?: string;
@@ -1795,6 +1995,7 @@ export interface StartExportTaskResponse {
1795
1995
  */
1796
1996
  export interface StartImportTaskRequest {
1797
1997
  /**
1998
+ * @public
1798
1999
  * <p>Optional. A unique token that you can provide to prevent the same import request from
1799
2000
  * occurring more than once. If you don't provide a token, a token is automatically
1800
2001
  * generated.</p>
@@ -1804,12 +2005,14 @@ export interface StartImportTaskRequest {
1804
2005
  */
1805
2006
  clientRequestToken?: string;
1806
2007
  /**
2008
+ * @public
1807
2009
  * <p>A descriptive name for this request. You can use this name to filter future requests
1808
2010
  * related to this import task, such as identifying applications and servers that were included
1809
2011
  * in this import task. We recommend that you use a meaningful name for each import task.</p>
1810
2012
  */
1811
2013
  name: string | undefined;
1812
2014
  /**
2015
+ * @public
1813
2016
  * <p>The URL for your import file that you've uploaded to Amazon S3.</p>
1814
2017
  * <note>
1815
2018
  * <p>If you're using the Amazon Web Services CLI, this URL is structured as follows:
@@ -1824,6 +2027,7 @@ export interface StartImportTaskRequest {
1824
2027
  */
1825
2028
  export interface StartImportTaskResponse {
1826
2029
  /**
2030
+ * @public
1827
2031
  * <p>An array of information related to the import task request including status information,
1828
2032
  * times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
1829
2033
  */
@@ -1834,6 +2038,7 @@ export interface StartImportTaskResponse {
1834
2038
  */
1835
2039
  export interface StopContinuousExportRequest {
1836
2040
  /**
2041
+ * @public
1837
2042
  * <p>The unique ID assigned to this export.</p>
1838
2043
  */
1839
2044
  exportId: string | undefined;
@@ -1843,11 +2048,13 @@ export interface StopContinuousExportRequest {
1843
2048
  */
1844
2049
  export interface StopContinuousExportResponse {
1845
2050
  /**
2051
+ * @public
1846
2052
  * <p>Timestamp that represents when this continuous export started collecting
1847
2053
  * data.</p>
1848
2054
  */
1849
2055
  startTime?: Date;
1850
2056
  /**
2057
+ * @public
1851
2058
  * <p>Timestamp that represents when this continuous export was stopped.</p>
1852
2059
  */
1853
2060
  stopTime?: Date;
@@ -1857,6 +2064,7 @@ export interface StopContinuousExportResponse {
1857
2064
  */
1858
2065
  export interface StopDataCollectionByAgentIdsRequest {
1859
2066
  /**
2067
+ * @public
1860
2068
  * <p>The IDs of the agents from which to stop collecting data.</p>
1861
2069
  */
1862
2070
  agentIds: string[] | undefined;
@@ -1866,6 +2074,7 @@ export interface StopDataCollectionByAgentIdsRequest {
1866
2074
  */
1867
2075
  export interface StopDataCollectionByAgentIdsResponse {
1868
2076
  /**
2077
+ * @public
1869
2078
  * <p>Information about the agents that were instructed to stop collecting data. Information
1870
2079
  * includes the agent ID, a description of the operation performed, and whether the agent
1871
2080
  * configuration was updated.</p>
@@ -1877,14 +2086,17 @@ export interface StopDataCollectionByAgentIdsResponse {
1877
2086
  */
1878
2087
  export interface UpdateApplicationRequest {
1879
2088
  /**
2089
+ * @public
1880
2090
  * <p>Configuration ID of the application to be updated.</p>
1881
2091
  */
1882
2092
  configurationId: string | undefined;
1883
2093
  /**
2094
+ * @public
1884
2095
  * <p>New name of the application to be updated.</p>
1885
2096
  */
1886
2097
  name?: string;
1887
2098
  /**
2099
+ * @public
1888
2100
  * <p>New description of the application to be updated.</p>
1889
2101
  */
1890
2102
  description?: string;
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.379.1",
4
+ "version": "3.385.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.385.0",
25
+ "@aws-sdk/credential-provider-node": "3.385.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",