@aws-sdk/client-application-discovery-service 3.686.0 → 3.691.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.
@@ -11,7 +11,7 @@ export interface AgentConfigurationStatus {
11
11
  * <p>The agent ID.</p>
12
12
  * @public
13
13
  */
14
- agentId?: string;
14
+ agentId?: string | undefined;
15
15
  /**
16
16
  * <p>Information about the status of the <code>StartDataCollection</code> and
17
17
  * <code>StopDataCollection</code> operations. The system has recorded the data collection
@@ -19,12 +19,12 @@ export interface AgentConfigurationStatus {
19
19
  * </p>
20
20
  * @public
21
21
  */
22
- operationSucceeded?: boolean;
22
+ operationSucceeded?: boolean | undefined;
23
23
  /**
24
24
  * <p>A description of the operation performed.</p>
25
25
  * @public
26
26
  */
27
- description?: string;
27
+ description?: string | undefined;
28
28
  }
29
29
  /**
30
30
  * <p>Network details about the host where the agent/collector resides.</p>
@@ -35,12 +35,12 @@ export interface AgentNetworkInfo {
35
35
  * <p>The IP address for the host where the agent/collector resides.</p>
36
36
  * @public
37
37
  */
38
- ipAddress?: string;
38
+ ipAddress?: string | undefined;
39
39
  /**
40
40
  * <p>The MAC address for the host where the agent/collector resides.</p>
41
41
  * @public
42
42
  */
43
- macAddress?: string;
43
+ macAddress?: string | undefined;
44
44
  }
45
45
  /**
46
46
  * @public
@@ -70,53 +70,53 @@ export interface AgentInfo {
70
70
  * <p>The agent or collector ID.</p>
71
71
  * @public
72
72
  */
73
- agentId?: string;
73
+ agentId?: string | undefined;
74
74
  /**
75
75
  * <p>The name of the host where the agent or collector resides. The host can be a server or
76
76
  * virtual machine.</p>
77
77
  * @public
78
78
  */
79
- hostName?: string;
79
+ hostName?: string | undefined;
80
80
  /**
81
81
  * <p>Network details about the host where the agent or collector resides.</p>
82
82
  * @public
83
83
  */
84
- agentNetworkInfoList?: AgentNetworkInfo[];
84
+ agentNetworkInfoList?: AgentNetworkInfo[] | undefined;
85
85
  /**
86
86
  * <p>The ID of the connector.</p>
87
87
  * @public
88
88
  */
89
- connectorId?: string;
89
+ connectorId?: string | undefined;
90
90
  /**
91
91
  * <p>The agent or collector version.</p>
92
92
  * @public
93
93
  */
94
- version?: string;
94
+ version?: string | undefined;
95
95
  /**
96
96
  * <p>The health of the agent.</p>
97
97
  * @public
98
98
  */
99
- health?: AgentStatus;
99
+ health?: AgentStatus | undefined;
100
100
  /**
101
101
  * <p>Time since agent health was reported.</p>
102
102
  * @public
103
103
  */
104
- lastHealthPingTime?: string;
104
+ lastHealthPingTime?: string | undefined;
105
105
  /**
106
106
  * <p>Status of the collection process for an agent.</p>
107
107
  * @public
108
108
  */
109
- collectionStatus?: string;
109
+ collectionStatus?: string | undefined;
110
110
  /**
111
111
  * <p>Type of agent.</p>
112
112
  * @public
113
113
  */
114
- agentType?: string;
114
+ agentType?: string | undefined;
115
115
  /**
116
116
  * <p>Agent's first registration timestamp in UTC.</p>
117
117
  * @public
118
118
  */
119
- registeredTime?: string;
119
+ registeredTime?: string | undefined;
120
120
  }
121
121
  /**
122
122
  * @public
@@ -223,7 +223,7 @@ export interface DeleteAgent {
223
223
  * </p>
224
224
  * @public
225
225
  */
226
- force?: boolean;
226
+ force?: boolean | undefined;
227
227
  }
228
228
  /**
229
229
  * @public
@@ -291,7 +291,7 @@ export interface BatchDeleteAgentsResponse {
291
291
  * </p>
292
292
  * @public
293
293
  */
294
- errors?: BatchDeleteAgentError[];
294
+ errors?: BatchDeleteAgentError[] | undefined;
295
295
  }
296
296
  /**
297
297
  * @public
@@ -309,7 +309,7 @@ export interface BatchDeleteImportDataRequest {
309
309
  * </p>
310
310
  * @public
311
311
  */
312
- deleteHistory?: boolean;
312
+ deleteHistory?: boolean | undefined;
313
313
  }
314
314
  /**
315
315
  * @public
@@ -334,17 +334,17 @@ export interface BatchDeleteImportDataError {
334
334
  * <p>The unique import ID associated with the error that occurred.</p>
335
335
  * @public
336
336
  */
337
- importTaskId?: string;
337
+ importTaskId?: string | undefined;
338
338
  /**
339
339
  * <p>The type of error that occurred for a specific import task.</p>
340
340
  * @public
341
341
  */
342
- errorCode?: BatchDeleteImportDataErrorCode;
342
+ errorCode?: BatchDeleteImportDataErrorCode | undefined;
343
343
  /**
344
344
  * <p>The description of the error that occurred for a specific import task.</p>
345
345
  * @public
346
346
  */
347
- errorDescription?: string;
347
+ errorDescription?: string | undefined;
348
348
  }
349
349
  /**
350
350
  * @public
@@ -355,7 +355,7 @@ export interface BatchDeleteImportDataResponse {
355
355
  * command.</p>
356
356
  * @public
357
357
  */
358
- errors?: BatchDeleteImportDataError[];
358
+ errors?: BatchDeleteImportDataError[] | undefined;
359
359
  }
360
360
  /**
361
361
  * @public
@@ -370,7 +370,7 @@ export interface CreateApplicationRequest {
370
370
  * <p>Description of the application to be created.</p>
371
371
  * @public
372
372
  */
373
- description?: string;
373
+ description?: string | undefined;
374
374
  }
375
375
  /**
376
376
  * @public
@@ -380,7 +380,7 @@ export interface CreateApplicationResponse {
380
380
  * <p>Configuration ID of an application to be created.</p>
381
381
  * @public
382
382
  */
383
- configurationId?: string;
383
+ configurationId?: string | undefined;
384
384
  }
385
385
  /**
386
386
  * <p>Metadata that help you categorize IT assets.</p>
@@ -472,7 +472,7 @@ export interface DeleteTagsRequest {
472
472
  * </p>
473
473
  * @public
474
474
  */
475
- tags?: Tag[];
475
+ tags?: Tag[] | undefined;
476
476
  }
477
477
  /**
478
478
  * @public
@@ -519,7 +519,7 @@ export interface DescribeAgentsRequest {
519
519
  * the system returns information about all agents/collectors associated with your user.</p>
520
520
  * @public
521
521
  */
522
- agentIds?: string[];
522
+ agentIds?: string[] | undefined;
523
523
  /**
524
524
  * <p>You can filter the request using various logical operators and a
525
525
  * <i>key</i>-<i>value</i> format. For example: </p>
@@ -528,13 +528,13 @@ export interface DescribeAgentsRequest {
528
528
  * </p>
529
529
  * @public
530
530
  */
531
- filters?: Filter[];
531
+ filters?: Filter[] | undefined;
532
532
  /**
533
533
  * <p>The total number of agents/collectors to return in a single page of output. The maximum
534
534
  * value is 100.</p>
535
535
  * @public
536
536
  */
537
- maxResults?: number;
537
+ maxResults?: number | undefined;
538
538
  /**
539
539
  * <p>Token to retrieve the next set of results. For example, if you previously specified 100
540
540
  * IDs for <code>DescribeAgentsRequest$agentIds</code> but set
@@ -542,7 +542,7 @@ export interface DescribeAgentsRequest {
542
542
  * with a token. Use that token in this query to get the next set of 10.</p>
543
543
  * @public
544
544
  */
545
- nextToken?: string;
545
+ nextToken?: string | undefined;
546
546
  }
547
547
  /**
548
548
  * @public
@@ -555,7 +555,7 @@ export interface DescribeAgentsResponse {
555
555
  * where the agent/collector resides, and the version number of each agent/collector.</p>
556
556
  * @public
557
557
  */
558
- agentsInfo?: AgentInfo[];
558
+ agentsInfo?: AgentInfo[] | undefined;
559
559
  /**
560
560
  * <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for
561
561
  * <code>DescribeAgentsRequest$agentIds</code> but set
@@ -563,7 +563,7 @@ export interface DescribeAgentsResponse {
563
563
  * with this token. Use this token in the next query to retrieve the next set of 10.</p>
564
564
  * @public
565
565
  */
566
- nextToken?: string;
566
+ nextToken?: string | undefined;
567
567
  }
568
568
  /**
569
569
  * @public
@@ -601,21 +601,21 @@ export interface DeletionWarning {
601
601
  * </p>
602
602
  * @public
603
603
  */
604
- configurationId?: string;
604
+ configurationId?: string | undefined;
605
605
  /**
606
606
  * <p>
607
607
  * The integer warning code associated with the warning message.
608
608
  * </p>
609
609
  * @public
610
610
  */
611
- warningCode?: number;
611
+ warningCode?: number | undefined;
612
612
  /**
613
613
  * <p>
614
614
  * A descriptive message of the warning the associated configuration ID produced.
615
615
  * </p>
616
616
  * @public
617
617
  */
618
- warningText?: string;
618
+ warningText?: string | undefined;
619
619
  }
620
620
  /**
621
621
  * <p>
@@ -630,21 +630,21 @@ export interface FailedConfiguration {
630
630
  * </p>
631
631
  * @public
632
632
  */
633
- configurationId?: string;
633
+ configurationId?: string | undefined;
634
634
  /**
635
635
  * <p>
636
636
  * The integer error code associated with the error message.
637
637
  * </p>
638
638
  * @public
639
639
  */
640
- errorStatusCode?: number;
640
+ errorStatusCode?: number | undefined;
641
641
  /**
642
642
  * <p>
643
643
  * A descriptive message indicating why the associated configuration failed to delete.
644
644
  * </p>
645
645
  * @public
646
646
  */
647
- errorMessage?: string;
647
+ errorMessage?: string | undefined;
648
648
  }
649
649
  /**
650
650
  * @public
@@ -674,7 +674,7 @@ export interface BatchDeleteConfigurationTask {
674
674
  * </p>
675
675
  * @public
676
676
  */
677
- taskId?: string;
677
+ taskId?: string | undefined;
678
678
  /**
679
679
  * <p>
680
680
  * The current execution status of the deletion task.
@@ -682,42 +682,42 @@ export interface BatchDeleteConfigurationTask {
682
682
  * </p>
683
683
  * @public
684
684
  */
685
- status?: BatchDeleteConfigurationTaskStatus;
685
+ status?: BatchDeleteConfigurationTaskStatus | undefined;
686
686
  /**
687
687
  * <p>
688
688
  * An epoch seconds timestamp (UTC) of when the deletion task was started.
689
689
  * </p>
690
690
  * @public
691
691
  */
692
- startTime?: Date;
692
+ startTime?: Date | undefined;
693
693
  /**
694
694
  * <p>
695
695
  * An epoch seconds timestamp (UTC) of when the deletion task was completed or failed.
696
696
  * </p>
697
697
  * @public
698
698
  */
699
- endTime?: Date;
699
+ endTime?: Date | undefined;
700
700
  /**
701
701
  * <p>
702
702
  * The type of configuration item to delete. Supported types are: SERVER.
703
703
  * </p>
704
704
  * @public
705
705
  */
706
- configurationType?: DeletionConfigurationItemType;
706
+ configurationType?: DeletionConfigurationItemType | undefined;
707
707
  /**
708
708
  * <p>
709
709
  * The list of configuration IDs that were originally requested to be deleted by the deletion task.
710
710
  * </p>
711
711
  * @public
712
712
  */
713
- requestedConfigurations?: string[];
713
+ requestedConfigurations?: string[] | undefined;
714
714
  /**
715
715
  * <p>
716
716
  * The list of configuration IDs that were successfully deleted by the deletion task.
717
717
  * </p>
718
718
  * @public
719
719
  */
720
- deletedConfigurations?: string[];
720
+ deletedConfigurations?: string[] | undefined;
721
721
  /**
722
722
  * <p>
723
723
  * A list of configuration IDs that failed to delete during the deletion task,
@@ -725,7 +725,7 @@ export interface BatchDeleteConfigurationTask {
725
725
  * </p>
726
726
  * @public
727
727
  */
728
- failedConfigurations?: FailedConfiguration[];
728
+ failedConfigurations?: FailedConfiguration[] | undefined;
729
729
  /**
730
730
  * <p>
731
731
  * A list of configuration IDs that produced warnings regarding their deletion,
@@ -733,7 +733,7 @@ export interface BatchDeleteConfigurationTask {
733
733
  * </p>
734
734
  * @public
735
735
  */
736
- deletionWarnings?: DeletionWarning[];
736
+ deletionWarnings?: DeletionWarning[] | undefined;
737
737
  }
738
738
  /**
739
739
  * @public
@@ -745,7 +745,7 @@ export interface DescribeBatchDeleteConfigurationTaskResponse {
745
745
  * </p>
746
746
  * @public
747
747
  */
748
- task?: BatchDeleteConfigurationTask;
748
+ task?: BatchDeleteConfigurationTask | undefined;
749
749
  }
750
750
  /**
751
751
  * @public
@@ -765,7 +765,7 @@ export interface DescribeConfigurationsResponse {
765
765
  * <p>A key in the response map. The value is an array of data.</p>
766
766
  * @public
767
767
  */
768
- configurations?: Record<string, string>[];
768
+ configurations?: Record<string, string>[] | undefined;
769
769
  }
770
770
  /**
771
771
  * @public
@@ -775,18 +775,18 @@ export interface DescribeContinuousExportsRequest {
775
775
  * <p>The unique IDs assigned to the exports.</p>
776
776
  * @public
777
777
  */
778
- exportIds?: string[];
778
+ exportIds?: string[] | undefined;
779
779
  /**
780
780
  * <p>A number between 1 and 100 specifying the maximum number of continuous export
781
781
  * descriptions returned.</p>
782
782
  * @public
783
783
  */
784
- maxResults?: number;
784
+ maxResults?: number | undefined;
785
785
  /**
786
786
  * <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
787
787
  * @public
788
788
  */
789
- nextToken?: string;
789
+ nextToken?: string | undefined;
790
790
  }
791
791
  /**
792
792
  * @public
@@ -825,7 +825,7 @@ export interface ContinuousExportDescription {
825
825
  * <p>The unique ID assigned to this export.</p>
826
826
  * @public
827
827
  */
828
- exportId?: string;
828
+ exportId?: string | undefined;
829
829
  /**
830
830
  * <p>Describes the status of the export. Can be one of the following values:</p>
831
831
  * <ul>
@@ -857,7 +857,7 @@ export interface ContinuousExportDescription {
857
857
  * </ul>
858
858
  * @public
859
859
  */
860
- status?: ContinuousExportStatus;
860
+ status?: ContinuousExportStatus | undefined;
861
861
  /**
862
862
  * <p>Contains information about any errors that have occurred. This data type can have the
863
863
  * following values:</p>
@@ -937,28 +937,28 @@ export interface ContinuousExportDescription {
937
937
  * </ul>
938
938
  * @public
939
939
  */
940
- statusDetail?: string;
940
+ statusDetail?: string | undefined;
941
941
  /**
942
942
  * <p>The name of the s3 bucket where the export data parquet files are stored.</p>
943
943
  * @public
944
944
  */
945
- s3Bucket?: string;
945
+ s3Bucket?: string | undefined;
946
946
  /**
947
947
  * <p>The timestamp representing when the continuous export was started.</p>
948
948
  * @public
949
949
  */
950
- startTime?: Date;
950
+ startTime?: Date | undefined;
951
951
  /**
952
952
  * <p>The timestamp that represents when this continuous export was stopped.</p>
953
953
  * @public
954
954
  */
955
- stopTime?: Date;
955
+ stopTime?: Date | undefined;
956
956
  /**
957
957
  * <p>The type of data collector used to gather this data (currently only offered for
958
958
  * AGENT).</p>
959
959
  * @public
960
960
  */
961
- dataSource?: DataSource;
961
+ dataSource?: DataSource | undefined;
962
962
  /**
963
963
  * <p>An object which describes how the data is stored.</p>
964
964
  * <ul>
@@ -970,7 +970,7 @@ export interface ContinuousExportDescription {
970
970
  * </ul>
971
971
  * @public
972
972
  */
973
- schemaStorageConfig?: Record<string, string>;
973
+ schemaStorageConfig?: Record<string, string> | undefined;
974
974
  }
975
975
  /**
976
976
  * @public
@@ -980,12 +980,12 @@ export interface DescribeContinuousExportsResponse {
980
980
  * <p>A list of continuous export descriptions.</p>
981
981
  * @public
982
982
  */
983
- descriptions?: ContinuousExportDescription[];
983
+ descriptions?: ContinuousExportDescription[] | undefined;
984
984
  /**
985
985
  * <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
986
986
  * @public
987
987
  */
988
- nextToken?: string;
988
+ nextToken?: string | undefined;
989
989
  }
990
990
  /**
991
991
  * <p>This operation is not permitted.</p>
@@ -1007,18 +1007,18 @@ export interface DescribeExportConfigurationsRequest {
1007
1007
  * <p>A list of continuous export IDs to search for.</p>
1008
1008
  * @public
1009
1009
  */
1010
- exportIds?: string[];
1010
+ exportIds?: string[] | undefined;
1011
1011
  /**
1012
1012
  * <p>A number between 1 and 100 specifying the maximum number of continuous export
1013
1013
  * descriptions returned.</p>
1014
1014
  * @public
1015
1015
  */
1016
- maxResults?: number;
1016
+ maxResults?: number | undefined;
1017
1017
  /**
1018
1018
  * <p>The token from the previous call to describe-export-tasks.</p>
1019
1019
  * @public
1020
1020
  */
1021
- nextToken?: string;
1021
+ nextToken?: string | undefined;
1022
1022
  }
1023
1023
  /**
1024
1024
  * @public
@@ -1059,7 +1059,7 @@ export interface ExportInfo {
1059
1059
  * displayed only if the export succeeded.</p>
1060
1060
  * @public
1061
1061
  */
1062
- configurationsDownloadUrl?: string;
1062
+ configurationsDownloadUrl?: string | undefined;
1063
1063
  /**
1064
1064
  * <p>The time that the data export was initiated.</p>
1065
1065
  * @public
@@ -1072,21 +1072,21 @@ export interface ExportInfo {
1072
1072
  * <code>endDate</code>.</p>
1073
1073
  * @public
1074
1074
  */
1075
- isTruncated?: boolean;
1075
+ isTruncated?: boolean | undefined;
1076
1076
  /**
1077
1077
  * <p>The value of <code>startTime</code> parameter in the <code>StartExportTask</code>
1078
1078
  * request. If no <code>startTime</code> was requested, this result does not appear in
1079
1079
  * <code>ExportInfo</code>.</p>
1080
1080
  * @public
1081
1081
  */
1082
- requestedStartTime?: Date;
1082
+ requestedStartTime?: Date | undefined;
1083
1083
  /**
1084
1084
  * <p>The <code>endTime</code> used in the <code>StartExportTask</code> request. If no
1085
1085
  * <code>endTime</code> was requested, this result does not appear in
1086
1086
  * <code>ExportInfo</code>.</p>
1087
1087
  * @public
1088
1088
  */
1089
- requestedEndTime?: Date;
1089
+ requestedEndTime?: Date | undefined;
1090
1090
  }
1091
1091
  /**
1092
1092
  * @public
@@ -1096,12 +1096,12 @@ export interface DescribeExportConfigurationsResponse {
1096
1096
  * <p></p>
1097
1097
  * @public
1098
1098
  */
1099
- exportsInfo?: ExportInfo[];
1099
+ exportsInfo?: ExportInfo[] | undefined;
1100
1100
  /**
1101
1101
  * <p>The token from the previous call to describe-export-tasks.</p>
1102
1102
  * @public
1103
1103
  */
1104
- nextToken?: string;
1104
+ nextToken?: string | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * <p>Used to select which agent's data is to be exported. A single agent ID may be selected
@@ -1136,7 +1136,7 @@ export interface DescribeExportTasksRequest {
1136
1136
  * <p>One or more unique identifiers used to query the status of an export request.</p>
1137
1137
  * @public
1138
1138
  */
1139
- exportIds?: string[];
1139
+ exportIds?: string[] | undefined;
1140
1140
  /**
1141
1141
  * <p>One or more filters.</p>
1142
1142
  * <ul>
@@ -1148,7 +1148,7 @@ export interface DescribeExportTasksRequest {
1148
1148
  * </ul>
1149
1149
  * @public
1150
1150
  */
1151
- filters?: ExportFilter[];
1151
+ filters?: ExportFilter[] | undefined;
1152
1152
  /**
1153
1153
  * <p>The maximum number of volume results returned by <code>DescribeExportTasks</code> in
1154
1154
  * paginated output. When this parameter is used, <code>DescribeExportTasks</code> only returns
@@ -1156,7 +1156,7 @@ export interface DescribeExportTasksRequest {
1156
1156
  * response element.</p>
1157
1157
  * @public
1158
1158
  */
1159
- maxResults?: number;
1159
+ maxResults?: number | undefined;
1160
1160
  /**
1161
1161
  * <p>The <code>nextToken</code> value returned from a previous paginated
1162
1162
  * <code>DescribeExportTasks</code> request where <code>maxResults</code> was used and the
@@ -1165,7 +1165,7 @@ export interface DescribeExportTasksRequest {
1165
1165
  * are no more results to return.</p>
1166
1166
  * @public
1167
1167
  */
1168
- nextToken?: string;
1168
+ nextToken?: string | undefined;
1169
1169
  }
1170
1170
  /**
1171
1171
  * @public
@@ -1177,7 +1177,7 @@ export interface DescribeExportTasksResponse {
1177
1177
  * view the data in a CSV file.</p>
1178
1178
  * @public
1179
1179
  */
1180
- exportsInfo?: ExportInfo[];
1180
+ exportsInfo?: ExportInfo[] | undefined;
1181
1181
  /**
1182
1182
  * <p>The <code>nextToken</code> value to include in a future
1183
1183
  * <code>DescribeExportTasks</code> request. When the results of a
@@ -1186,7 +1186,7 @@ export interface DescribeExportTasksResponse {
1186
1186
  * to return.</p>
1187
1187
  * @public
1188
1188
  */
1189
- nextToken?: string;
1189
+ nextToken?: string | undefined;
1190
1190
  }
1191
1191
  /**
1192
1192
  * @public
@@ -1214,13 +1214,13 @@ export interface ImportTaskFilter {
1214
1214
  * <p>The name, status, or import task ID for a specific import task.</p>
1215
1215
  * @public
1216
1216
  */
1217
- name?: ImportTaskFilterName;
1217
+ name?: ImportTaskFilterName | undefined;
1218
1218
  /**
1219
1219
  * <p>An array of strings that you can provide to match against a specific name, status, or
1220
1220
  * import task ID to filter the results for your import task queries.</p>
1221
1221
  * @public
1222
1222
  */
1223
- values?: string[];
1223
+ values?: string[] | undefined;
1224
1224
  }
1225
1225
  /**
1226
1226
  * @public
@@ -1232,17 +1232,17 @@ export interface DescribeImportTasksRequest {
1232
1232
  * values aren't supported for filters.</p>
1233
1233
  * @public
1234
1234
  */
1235
- filters?: ImportTaskFilter[];
1235
+ filters?: ImportTaskFilter[] | undefined;
1236
1236
  /**
1237
1237
  * <p>The maximum number of results that you want this request to return, up to 100.</p>
1238
1238
  * @public
1239
1239
  */
1240
- maxResults?: number;
1240
+ maxResults?: number | undefined;
1241
1241
  /**
1242
1242
  * <p>The token to request a specific page of results.</p>
1243
1243
  * @public
1244
1244
  */
1245
- nextToken?: string;
1245
+ nextToken?: string | undefined;
1246
1246
  }
1247
1247
  /**
1248
1248
  * @public
@@ -1276,26 +1276,26 @@ export interface ImportTask {
1276
1276
  * unique within an Amazon Web Services account.</p>
1277
1277
  * @public
1278
1278
  */
1279
- importTaskId?: string;
1279
+ importTaskId?: string | undefined;
1280
1280
  /**
1281
1281
  * <p>A unique token used to prevent the same import request from occurring more than once. If
1282
1282
  * you didn't provide a token, a token was automatically generated when the import task request
1283
1283
  * was sent.</p>
1284
1284
  * @public
1285
1285
  */
1286
- clientRequestToken?: string;
1286
+ clientRequestToken?: string | undefined;
1287
1287
  /**
1288
1288
  * <p>A descriptive name for an import task. You can use this name to filter future requests
1289
1289
  * related to this import task, such as identifying applications and servers that were included
1290
1290
  * in this import task. We recommend that you use a meaningful name for each import task.</p>
1291
1291
  * @public
1292
1292
  */
1293
- name?: string;
1293
+ name?: string | undefined;
1294
1294
  /**
1295
1295
  * <p>The URL for your import file that you've uploaded to Amazon S3.</p>
1296
1296
  * @public
1297
1297
  */
1298
- importUrl?: string;
1298
+ importUrl?: string | undefined;
1299
1299
  /**
1300
1300
  * <p>The status of the import task. An import can have the status of
1301
1301
  * <code>IMPORT_COMPLETE</code> and still have some records fail to import from the overall
@@ -1304,48 +1304,48 @@ export interface ImportTask {
1304
1304
  * console.</p>
1305
1305
  * @public
1306
1306
  */
1307
- status?: ImportStatus;
1307
+ status?: ImportStatus | undefined;
1308
1308
  /**
1309
1309
  * <p>The time that the import task request was made, presented in the Unix time stamp
1310
1310
  * format.</p>
1311
1311
  * @public
1312
1312
  */
1313
- importRequestTime?: Date;
1313
+ importRequestTime?: Date | undefined;
1314
1314
  /**
1315
1315
  * <p>The time that the import task request finished, presented in the Unix time stamp
1316
1316
  * format.</p>
1317
1317
  * @public
1318
1318
  */
1319
- importCompletionTime?: Date;
1319
+ importCompletionTime?: Date | undefined;
1320
1320
  /**
1321
1321
  * <p>The time that the import task request was deleted, presented in the Unix time stamp
1322
1322
  * format.</p>
1323
1323
  * @public
1324
1324
  */
1325
- importDeletedTime?: Date;
1325
+ importDeletedTime?: Date | undefined;
1326
1326
  /**
1327
1327
  * <p>The total number of server records in the import file that were successfully
1328
1328
  * imported.</p>
1329
1329
  * @public
1330
1330
  */
1331
- serverImportSuccess?: number;
1331
+ serverImportSuccess?: number | undefined;
1332
1332
  /**
1333
1333
  * <p>The total number of server records in the import file that failed to be imported.</p>
1334
1334
  * @public
1335
1335
  */
1336
- serverImportFailure?: number;
1336
+ serverImportFailure?: number | undefined;
1337
1337
  /**
1338
1338
  * <p>The total number of application records in the import file that were successfully
1339
1339
  * imported.</p>
1340
1340
  * @public
1341
1341
  */
1342
- applicationImportSuccess?: number;
1342
+ applicationImportSuccess?: number | undefined;
1343
1343
  /**
1344
1344
  * <p>The total number of application records in the import file that failed to be
1345
1345
  * imported.</p>
1346
1346
  * @public
1347
1347
  */
1348
- applicationImportFailure?: number;
1348
+ applicationImportFailure?: number | undefined;
1349
1349
  /**
1350
1350
  * <p>A link to a compressed archive folder (in the ZIP format) that contains an error log and a
1351
1351
  * file of failed records. You can use these two files to quickly identify records that failed,
@@ -1358,7 +1358,7 @@ export interface ImportTask {
1358
1358
  * to correct and update the larger original file and attempt importing it again.</p>
1359
1359
  * @public
1360
1360
  */
1361
- errorsAndFailedEntriesZip?: string;
1361
+ errorsAndFailedEntriesZip?: string | undefined;
1362
1362
  }
1363
1363
  /**
1364
1364
  * @public
@@ -1368,13 +1368,13 @@ export interface DescribeImportTasksResponse {
1368
1368
  * <p>The token to request the next page of results.</p>
1369
1369
  * @public
1370
1370
  */
1371
- nextToken?: string;
1371
+ nextToken?: string | undefined;
1372
1372
  /**
1373
1373
  * <p>A returned array of import tasks that match any applied filters, up to the specified
1374
1374
  * number of maximum results.</p>
1375
1375
  * @public
1376
1376
  */
1377
- tasks?: ImportTask[];
1377
+ tasks?: ImportTask[] | undefined;
1378
1378
  }
1379
1379
  /**
1380
1380
  * <p>The tag filter. Valid names are: <code>tagKey</code>, <code>tagValue</code>,
@@ -1403,18 +1403,18 @@ export interface DescribeTagsRequest {
1403
1403
  * <code>tagKey</code>, <code>tagValue</code>, and <code>configurationId</code>. </p>
1404
1404
  * @public
1405
1405
  */
1406
- filters?: TagFilter[];
1406
+ filters?: TagFilter[] | undefined;
1407
1407
  /**
1408
1408
  * <p>The total number of items to return in a single page of output. The maximum value is
1409
1409
  * 100.</p>
1410
1410
  * @public
1411
1411
  */
1412
- maxResults?: number;
1412
+ maxResults?: number | undefined;
1413
1413
  /**
1414
1414
  * <p>A token to start the list. Use this token to get the next set of results.</p>
1415
1415
  * @public
1416
1416
  */
1417
- nextToken?: string;
1417
+ nextToken?: string | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1440,31 +1440,31 @@ export interface ConfigurationTag {
1440
1440
  * <p>A type of IT asset to tag.</p>
1441
1441
  * @public
1442
1442
  */
1443
- configurationType?: ConfigurationItemType;
1443
+ configurationType?: ConfigurationItemType | undefined;
1444
1444
  /**
1445
1445
  * <p>The configuration ID for the item to tag. You can specify a list of keys and
1446
1446
  * values.</p>
1447
1447
  * @public
1448
1448
  */
1449
- configurationId?: string;
1449
+ configurationId?: string | undefined;
1450
1450
  /**
1451
1451
  * <p>A type of tag on which to filter. For example,
1452
1452
  * <i>serverType</i>.</p>
1453
1453
  * @public
1454
1454
  */
1455
- key?: string;
1455
+ key?: string | undefined;
1456
1456
  /**
1457
1457
  * <p>A value on which to filter. For example <i>key = serverType</i> and
1458
1458
  * <i>value = web server</i>.</p>
1459
1459
  * @public
1460
1460
  */
1461
- value?: string;
1461
+ value?: string | undefined;
1462
1462
  /**
1463
1463
  * <p>The time the configuration tag was created in Coordinated Universal Time
1464
1464
  * (UTC).</p>
1465
1465
  * @public
1466
1466
  */
1467
- timeOfCreation?: Date;
1467
+ timeOfCreation?: Date | undefined;
1468
1468
  }
1469
1469
  /**
1470
1470
  * @public
@@ -1475,12 +1475,12 @@ export interface DescribeTagsResponse {
1475
1475
  * tag, or a list of tags for a specific configuration item.</p>
1476
1476
  * @public
1477
1477
  */
1478
- tags?: ConfigurationTag[];
1478
+ tags?: ConfigurationTag[] | undefined;
1479
1479
  /**
1480
1480
  * <p>The call returns a token. Use this token to get the next set of results.</p>
1481
1481
  * @public
1482
1482
  */
1483
- nextToken?: string;
1483
+ nextToken?: string | undefined;
1484
1484
  }
1485
1485
  /**
1486
1486
  * @public
@@ -1510,7 +1510,7 @@ export interface ExportConfigurationsResponse {
1510
1510
  * <p>A unique identifier that you can use to query the export status.</p>
1511
1511
  * @public
1512
1512
  */
1513
- exportId?: string;
1513
+ exportId?: string | undefined;
1514
1514
  }
1515
1515
  /**
1516
1516
  * @public
@@ -1690,42 +1690,42 @@ export interface GetDiscoverySummaryResponse {
1690
1690
  * <p>The number of servers discovered.</p>
1691
1691
  * @public
1692
1692
  */
1693
- servers?: number;
1693
+ servers?: number | undefined;
1694
1694
  /**
1695
1695
  * <p>The number of applications discovered.</p>
1696
1696
  * @public
1697
1697
  */
1698
- applications?: number;
1698
+ applications?: number | undefined;
1699
1699
  /**
1700
1700
  * <p>The number of servers mapped to applications.</p>
1701
1701
  * @public
1702
1702
  */
1703
- serversMappedToApplications?: number;
1703
+ serversMappedToApplications?: number | undefined;
1704
1704
  /**
1705
1705
  * <p>The number of servers mapped to tags.</p>
1706
1706
  * @public
1707
1707
  */
1708
- serversMappedtoTags?: number;
1708
+ serversMappedtoTags?: number | undefined;
1709
1709
  /**
1710
1710
  * <p>Details about discovered agents, including agent status and health.</p>
1711
1711
  * @public
1712
1712
  */
1713
- agentSummary?: CustomerAgentInfo;
1713
+ agentSummary?: CustomerAgentInfo | undefined;
1714
1714
  /**
1715
1715
  * <p>Details about discovered connectors, including connector status and health.</p>
1716
1716
  * @public
1717
1717
  */
1718
- connectorSummary?: CustomerConnectorInfo;
1718
+ connectorSummary?: CustomerConnectorInfo | undefined;
1719
1719
  /**
1720
1720
  * <p> Details about Migration Evaluator collectors, including collector status and health. </p>
1721
1721
  * @public
1722
1722
  */
1723
- meCollectorSummary?: CustomerMeCollectorInfo;
1723
+ meCollectorSummary?: CustomerMeCollectorInfo | undefined;
1724
1724
  /**
1725
1725
  * <p> Details about Agentless Collector collectors, including status. </p>
1726
1726
  * @public
1727
1727
  */
1728
- agentlessCollectorSummary?: CustomerAgentlessCollectorInfo;
1728
+ agentlessCollectorSummary?: CustomerAgentlessCollectorInfo | undefined;
1729
1729
  }
1730
1730
  /**
1731
1731
  * @public
@@ -1753,7 +1753,7 @@ export interface OrderByElement {
1753
1753
  * <p>Ordering direction.</p>
1754
1754
  * @public
1755
1755
  */
1756
- sortOrder?: OrderString;
1756
+ sortOrder?: OrderString | undefined;
1757
1757
  }
1758
1758
  /**
1759
1759
  * @public
@@ -1775,12 +1775,12 @@ export interface ListConfigurationsRequest {
1775
1775
  * Service User Guide</i>.</p>
1776
1776
  * @public
1777
1777
  */
1778
- filters?: Filter[];
1778
+ filters?: Filter[] | undefined;
1779
1779
  /**
1780
1780
  * <p>The total number of items to return. The maximum value is 100.</p>
1781
1781
  * @public
1782
1782
  */
1783
- maxResults?: number;
1783
+ maxResults?: number | undefined;
1784
1784
  /**
1785
1785
  * <p>Token to retrieve the next set of results. For example, if a previous call to
1786
1786
  * ListConfigurations returned 100 items, but you set
@@ -1788,14 +1788,14 @@ export interface ListConfigurationsRequest {
1788
1788
  * along with a token. Use that token in this query to get the next set of 10.</p>
1789
1789
  * @public
1790
1790
  */
1791
- nextToken?: string;
1791
+ nextToken?: string | undefined;
1792
1792
  /**
1793
1793
  * <p>Certain filter criteria return output that can be sorted in ascending or descending
1794
1794
  * 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
1795
1795
  * Service User Guide</i>.</p>
1796
1796
  * @public
1797
1797
  */
1798
- orderBy?: OrderByElement[];
1798
+ orderBy?: OrderByElement[] | undefined;
1799
1799
  }
1800
1800
  /**
1801
1801
  * @public
@@ -1806,7 +1806,7 @@ export interface ListConfigurationsResponse {
1806
1806
  * attribute values.</p>
1807
1807
  * @public
1808
1808
  */
1809
- configurations?: Record<string, string>[];
1809
+ configurations?: Record<string, string>[] | undefined;
1810
1810
  /**
1811
1811
  * <p>Token to retrieve the next set of results. For example, if your call to
1812
1812
  * ListConfigurations returned 100 items, but you set
@@ -1815,7 +1815,7 @@ export interface ListConfigurationsResponse {
1815
1815
  * 10.</p>
1816
1816
  * @public
1817
1817
  */
1818
- nextToken?: string;
1818
+ nextToken?: string | undefined;
1819
1819
  }
1820
1820
  /**
1821
1821
  * @public
@@ -1831,17 +1831,17 @@ export interface ListServerNeighborsRequest {
1831
1831
  * response.</p>
1832
1832
  * @public
1833
1833
  */
1834
- portInformationNeeded?: boolean;
1834
+ portInformationNeeded?: boolean | undefined;
1835
1835
  /**
1836
1836
  * <p>List of configuration IDs to test for one-hop-away.</p>
1837
1837
  * @public
1838
1838
  */
1839
- neighborConfigurationIds?: string[];
1839
+ neighborConfigurationIds?: string[] | undefined;
1840
1840
  /**
1841
1841
  * <p>Maximum number of results to return in a single page of output.</p>
1842
1842
  * @public
1843
1843
  */
1844
- maxResults?: number;
1844
+ maxResults?: number | undefined;
1845
1845
  /**
1846
1846
  * <p>Token to retrieve the next set of results. For example, if you previously specified 100
1847
1847
  * IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set
@@ -1849,7 +1849,7 @@ export interface ListServerNeighborsRequest {
1849
1849
  * along with a token. Use that token in this query to get the next set of 10.</p>
1850
1850
  * @public
1851
1851
  */
1852
- nextToken?: string;
1852
+ nextToken?: string | undefined;
1853
1853
  }
1854
1854
  /**
1855
1855
  * <p>Details about neighboring servers.</p>
@@ -1870,12 +1870,12 @@ export interface NeighborConnectionDetail {
1870
1870
  * <p>The destination network port for the connection.</p>
1871
1871
  * @public
1872
1872
  */
1873
- destinationPort?: number;
1873
+ destinationPort?: number | undefined;
1874
1874
  /**
1875
1875
  * <p>The network protocol used for the connection.</p>
1876
1876
  * @public
1877
1877
  */
1878
- transportProtocol?: string;
1878
+ transportProtocol?: string | undefined;
1879
1879
  /**
1880
1880
  * <p>The number of open network connections with the neighboring server.</p>
1881
1881
  * @public
@@ -1899,12 +1899,12 @@ export interface ListServerNeighborsResponse {
1899
1899
  * 10.</p>
1900
1900
  * @public
1901
1901
  */
1902
- nextToken?: string;
1902
+ nextToken?: string | undefined;
1903
1903
  /**
1904
1904
  * <p>Count of distinct servers that are one hop away from the given server.</p>
1905
1905
  * @public
1906
1906
  */
1907
- knownDependencyCount?: number;
1907
+ knownDependencyCount?: number | undefined;
1908
1908
  }
1909
1909
  /**
1910
1910
  * <p>
@@ -1949,7 +1949,7 @@ export interface StartBatchDeleteConfigurationTaskResponse {
1949
1949
  * </p>
1950
1950
  * @public
1951
1951
  */
1952
- taskId?: string;
1952
+ taskId?: string | undefined;
1953
1953
  }
1954
1954
  /**
1955
1955
  * <p>Conflict error.</p>
@@ -1992,23 +1992,23 @@ export interface StartContinuousExportResponse {
1992
1992
  * <p>The unique ID assigned to this export.</p>
1993
1993
  * @public
1994
1994
  */
1995
- exportId?: string;
1995
+ exportId?: string | undefined;
1996
1996
  /**
1997
1997
  * <p>The name of the s3 bucket where the export data parquet files are stored.</p>
1998
1998
  * @public
1999
1999
  */
2000
- s3Bucket?: string;
2000
+ s3Bucket?: string | undefined;
2001
2001
  /**
2002
2002
  * <p>The timestamp representing when the continuous export was started.</p>
2003
2003
  * @public
2004
2004
  */
2005
- startTime?: Date;
2005
+ startTime?: Date | undefined;
2006
2006
  /**
2007
2007
  * <p>The type of data collector used to gather this data (currently only offered for
2008
2008
  * AGENT).</p>
2009
2009
  * @public
2010
2010
  */
2011
- dataSource?: DataSource;
2011
+ dataSource?: DataSource | undefined;
2012
2012
  /**
2013
2013
  * <p>A dictionary which describes how the data is stored.</p>
2014
2014
  * <ul>
@@ -2020,7 +2020,7 @@ export interface StartContinuousExportResponse {
2020
2020
  * </ul>
2021
2021
  * @public
2022
2022
  */
2023
- schemaStorageConfig?: Record<string, string>;
2023
+ schemaStorageConfig?: Record<string, string> | undefined;
2024
2024
  }
2025
2025
  /**
2026
2026
  * @public
@@ -2048,7 +2048,7 @@ export interface StartDataCollectionByAgentIdsResponse {
2048
2048
  * configuration was updated.</p>
2049
2049
  * @public
2050
2050
  */
2051
- agentsConfigurationStatus?: AgentConfigurationStatus[];
2051
+ agentsConfigurationStatus?: AgentConfigurationStatus[] | undefined;
2052
2052
  }
2053
2053
  /**
2054
2054
  * @public
@@ -2074,14 +2074,14 @@ export interface UsageMetricBasis {
2074
2074
  * </p>
2075
2075
  * @public
2076
2076
  */
2077
- name?: string;
2077
+ name?: string | undefined;
2078
2078
  /**
2079
2079
  * <p>
2080
2080
  * Specifies the percentage of the specified utilization metric that is used by the recommendations.
2081
2081
  * </p>
2082
2082
  * @public
2083
2083
  */
2084
- percentageAdjust?: number;
2084
+ percentageAdjust?: number | undefined;
2085
2085
  }
2086
2086
  /**
2087
2087
  * @public
@@ -2177,35 +2177,35 @@ export interface Ec2RecommendationsExportPreferences {
2177
2177
  * </p>
2178
2178
  * @public
2179
2179
  */
2180
- enabled?: boolean;
2180
+ enabled?: boolean | undefined;
2181
2181
  /**
2182
2182
  * <p>
2183
2183
  * The recommended EC2 instance type that matches the CPU usage metric of server performance data.
2184
2184
  * </p>
2185
2185
  * @public
2186
2186
  */
2187
- cpuPerformanceMetricBasis?: UsageMetricBasis;
2187
+ cpuPerformanceMetricBasis?: UsageMetricBasis | undefined;
2188
2188
  /**
2189
2189
  * <p>
2190
2190
  * The recommended EC2 instance type that matches the Memory usage metric of server performance data.
2191
2191
  * </p>
2192
2192
  * @public
2193
2193
  */
2194
- ramPerformanceMetricBasis?: UsageMetricBasis;
2194
+ ramPerformanceMetricBasis?: UsageMetricBasis | undefined;
2195
2195
  /**
2196
2196
  * <p>
2197
2197
  * The target tenancy to use for your recommended EC2 instances.
2198
2198
  * </p>
2199
2199
  * @public
2200
2200
  */
2201
- tenancy?: Tenancy;
2201
+ tenancy?: Tenancy | undefined;
2202
2202
  /**
2203
2203
  * <p>
2204
2204
  * An array of instance types to exclude from recommendations.
2205
2205
  * </p>
2206
2206
  * @public
2207
2207
  */
2208
- excludedInstanceTypes?: string[];
2208
+ excludedInstanceTypes?: string[] | undefined;
2209
2209
  /**
2210
2210
  * <p>
2211
2211
  * The target Amazon Web Services Region for the recommendations.
@@ -2214,7 +2214,7 @@ export interface Ec2RecommendationsExportPreferences {
2214
2214
  * </p>
2215
2215
  * @public
2216
2216
  */
2217
- preferredRegion?: string;
2217
+ preferredRegion?: string | undefined;
2218
2218
  /**
2219
2219
  * <p>
2220
2220
  * The contract type for a reserved instance.
@@ -2222,7 +2222,7 @@ export interface Ec2RecommendationsExportPreferences {
2222
2222
  * </p>
2223
2223
  * @public
2224
2224
  */
2225
- reservedInstanceOptions?: ReservedInstanceOptions;
2225
+ reservedInstanceOptions?: ReservedInstanceOptions | undefined;
2226
2226
  }
2227
2227
  /**
2228
2228
  * <p>
@@ -2274,7 +2274,7 @@ export interface StartExportTaskRequest {
2274
2274
  * </p>
2275
2275
  * @public
2276
2276
  */
2277
- exportDataFormat?: ExportDataFormat[];
2277
+ exportDataFormat?: ExportDataFormat[] | undefined;
2278
2278
  /**
2279
2279
  * <p>If a filter is present, it selects the single <code>agentId</code> of the Application
2280
2280
  * Discovery Agent for which data is exported. The <code>agentId</code> can be found in the
@@ -2284,21 +2284,21 @@ export interface StartExportTaskRequest {
2284
2284
  * Agent agents. </p>
2285
2285
  * @public
2286
2286
  */
2287
- filters?: ExportFilter[];
2287
+ filters?: ExportFilter[] | undefined;
2288
2288
  /**
2289
2289
  * <p>The start timestamp for exported data from the single Application Discovery Agent
2290
2290
  * selected in the filters. If no value is specified, data is exported starting from the first
2291
2291
  * data collected by the agent.</p>
2292
2292
  * @public
2293
2293
  */
2294
- startTime?: Date;
2294
+ startTime?: Date | undefined;
2295
2295
  /**
2296
2296
  * <p>The end timestamp for exported data from the single Application Discovery Agent
2297
2297
  * selected in the filters. If no value is specified, exported data includes the most recent data
2298
2298
  * collected by the agent.</p>
2299
2299
  * @public
2300
2300
  */
2301
- endTime?: Date;
2301
+ endTime?: Date | undefined;
2302
2302
  /**
2303
2303
  * <p>
2304
2304
  * Indicates the type of data that needs to be exported. Only one
@@ -2306,7 +2306,7 @@ export interface StartExportTaskRequest {
2306
2306
  * </p>
2307
2307
  * @public
2308
2308
  */
2309
- preferences?: ExportPreferences;
2309
+ preferences?: ExportPreferences | undefined;
2310
2310
  }
2311
2311
  /**
2312
2312
  * @public
@@ -2316,7 +2316,7 @@ export interface StartExportTaskResponse {
2316
2316
  * <p>A unique identifier used to query the status of an export request.</p>
2317
2317
  * @public
2318
2318
  */
2319
- exportId?: string;
2319
+ exportId?: string | undefined;
2320
2320
  }
2321
2321
  /**
2322
2322
  * @public
@@ -2331,7 +2331,7 @@ export interface StartImportTaskRequest {
2331
2331
  * token.</p>
2332
2332
  * @public
2333
2333
  */
2334
- clientRequestToken?: string;
2334
+ clientRequestToken?: string | undefined;
2335
2335
  /**
2336
2336
  * <p>A descriptive name for this request. You can use this name to filter future requests
2337
2337
  * related to this import task, such as identifying applications and servers that were included
@@ -2359,7 +2359,7 @@ export interface StartImportTaskResponse {
2359
2359
  * times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
2360
2360
  * @public
2361
2361
  */
2362
- task?: ImportTask;
2362
+ task?: ImportTask | undefined;
2363
2363
  }
2364
2364
  /**
2365
2365
  * @public
@@ -2380,12 +2380,12 @@ export interface StopContinuousExportResponse {
2380
2380
  * data.</p>
2381
2381
  * @public
2382
2382
  */
2383
- startTime?: Date;
2383
+ startTime?: Date | undefined;
2384
2384
  /**
2385
2385
  * <p>Timestamp that represents when this continuous export was stopped.</p>
2386
2386
  * @public
2387
2387
  */
2388
- stopTime?: Date;
2388
+ stopTime?: Date | undefined;
2389
2389
  }
2390
2390
  /**
2391
2391
  * @public
@@ -2407,7 +2407,7 @@ export interface StopDataCollectionByAgentIdsResponse {
2407
2407
  * configuration was updated.</p>
2408
2408
  * @public
2409
2409
  */
2410
- agentsConfigurationStatus?: AgentConfigurationStatus[];
2410
+ agentsConfigurationStatus?: AgentConfigurationStatus[] | undefined;
2411
2411
  }
2412
2412
  /**
2413
2413
  * @public
@@ -2422,12 +2422,12 @@ export interface UpdateApplicationRequest {
2422
2422
  * <p>New name of the application to be updated.</p>
2423
2423
  * @public
2424
2424
  */
2425
- name?: string;
2425
+ name?: string | undefined;
2426
2426
  /**
2427
2427
  * <p>New description of the application to be updated.</p>
2428
2428
  * @public
2429
2429
  */
2430
- description?: string;
2430
+ description?: string | undefined;
2431
2431
  }
2432
2432
  /**
2433
2433
  * @public