@aws-sdk/client-panorama 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.
@@ -22,7 +22,7 @@ export interface AlternateSoftwareMetadata {
22
22
  * <p>The appliance software version.</p>
23
23
  * @public
24
24
  */
25
- Version?: string;
25
+ Version?: string | undefined;
26
26
  }
27
27
  /**
28
28
  * @public
@@ -127,62 +127,62 @@ export interface ApplicationInstance {
127
127
  * <p>The application instance's name.</p>
128
128
  * @public
129
129
  */
130
- Name?: string;
130
+ Name?: string | undefined;
131
131
  /**
132
132
  * <p>The application instance's ID.</p>
133
133
  * @public
134
134
  */
135
- ApplicationInstanceId?: string;
135
+ ApplicationInstanceId?: string | undefined;
136
136
  /**
137
137
  * <p>The device's ID.</p>
138
138
  * @public
139
139
  */
140
- DefaultRuntimeContextDevice?: string;
140
+ DefaultRuntimeContextDevice?: string | undefined;
141
141
  /**
142
142
  * <p>The device's name.</p>
143
143
  * @public
144
144
  */
145
- DefaultRuntimeContextDeviceName?: string;
145
+ DefaultRuntimeContextDeviceName?: string | undefined;
146
146
  /**
147
147
  * <p>The application instance's description.</p>
148
148
  * @public
149
149
  */
150
- Description?: string;
150
+ Description?: string | undefined;
151
151
  /**
152
152
  * <p>The application instance's status.</p>
153
153
  * @public
154
154
  */
155
- Status?: ApplicationInstanceStatus;
155
+ Status?: ApplicationInstanceStatus | undefined;
156
156
  /**
157
157
  * <p>The application instance's health status.</p>
158
158
  * @public
159
159
  */
160
- HealthStatus?: ApplicationInstanceHealthStatus;
160
+ HealthStatus?: ApplicationInstanceHealthStatus | undefined;
161
161
  /**
162
162
  * <p>The application instance's status description.</p>
163
163
  * @public
164
164
  */
165
- StatusDescription?: string;
165
+ StatusDescription?: string | undefined;
166
166
  /**
167
167
  * <p>When the application instance was created.</p>
168
168
  * @public
169
169
  */
170
- CreatedTime?: Date;
170
+ CreatedTime?: Date | undefined;
171
171
  /**
172
172
  * <p>The application instance's ARN.</p>
173
173
  * @public
174
174
  */
175
- Arn?: string;
175
+ Arn?: string | undefined;
176
176
  /**
177
177
  * <p>The application instance's tags.</p>
178
178
  * @public
179
179
  */
180
- Tags?: Record<string, string>;
180
+ Tags?: Record<string, string> | undefined;
181
181
  /**
182
182
  * <p>The application's state.</p>
183
183
  * @public
184
184
  */
185
- RuntimeContextStates?: ReportedRuntimeContextState[];
185
+ RuntimeContextStates?: ReportedRuntimeContextState[] | undefined;
186
186
  }
187
187
  /**
188
188
  * <p>A conflict exception error argument.</p>
@@ -222,12 +222,12 @@ export declare class ConflictException extends __BaseException {
222
222
  * <p>A unique ID for the error.</p>
223
223
  * @public
224
224
  */
225
- ErrorId?: string;
225
+ ErrorId?: string | undefined;
226
226
  /**
227
227
  * <p>A list of attributes that led to the exception and their values.</p>
228
228
  * @public
229
229
  */
230
- ErrorArguments?: ConflictExceptionErrorArgument[];
230
+ ErrorArguments?: ConflictExceptionErrorArgument[] | undefined;
231
231
  /**
232
232
  * @internal
233
233
  */
@@ -316,12 +316,12 @@ export interface CreateApplicationInstanceRequest {
316
316
  * <p>A name for the application instance.</p>
317
317
  * @public
318
318
  */
319
- Name?: string;
319
+ Name?: string | undefined;
320
320
  /**
321
321
  * <p>A description for the application instance.</p>
322
322
  * @public
323
323
  */
324
- Description?: string;
324
+ Description?: string | undefined;
325
325
  /**
326
326
  * <p>The application's manifest document.</p>
327
327
  * @public
@@ -331,17 +331,17 @@ export interface CreateApplicationInstanceRequest {
331
331
  * <p>Setting overrides for the application manifest.</p>
332
332
  * @public
333
333
  */
334
- ManifestOverridesPayload?: ManifestOverridesPayload;
334
+ ManifestOverridesPayload?: ManifestOverridesPayload | undefined;
335
335
  /**
336
336
  * <p>The ID of an application instance to replace with the new instance.</p>
337
337
  * @public
338
338
  */
339
- ApplicationInstanceIdToReplace?: string;
339
+ ApplicationInstanceIdToReplace?: string | undefined;
340
340
  /**
341
341
  * <p>The ARN of a runtime role for the application instance.</p>
342
342
  * @public
343
343
  */
344
- RuntimeRoleArn?: string;
344
+ RuntimeRoleArn?: string | undefined;
345
345
  /**
346
346
  * <p>A device's ID.</p>
347
347
  * @public
@@ -351,7 +351,7 @@ export interface CreateApplicationInstanceRequest {
351
351
  * <p>Tags for the application instance.</p>
352
352
  * @public
353
353
  */
354
- Tags?: Record<string, string>;
354
+ Tags?: Record<string, string> | undefined;
355
355
  }
356
356
  /**
357
357
  * @public
@@ -375,7 +375,7 @@ export declare class InternalServerException extends __BaseException {
375
375
  * <p>The number of seconds a client should wait before retrying the call.</p>
376
376
  * @public
377
377
  */
378
- RetryAfterSeconds?: number;
378
+ RetryAfterSeconds?: number | undefined;
379
379
  /**
380
380
  * @internal
381
381
  */
@@ -393,12 +393,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
393
393
  * <p>The target resource's ID.</p>
394
394
  * @public
395
395
  */
396
- ResourceId?: string;
396
+ ResourceId?: string | undefined;
397
397
  /**
398
398
  * <p>The target resource's type.</p>
399
399
  * @public
400
400
  */
401
- ResourceType?: string;
401
+ ResourceType?: string | undefined;
402
402
  /**
403
403
  * <p>The name of the limit.</p>
404
404
  * @public
@@ -472,22 +472,22 @@ export declare class ValidationException extends __BaseException {
472
472
  * <p>The reason that validation failed.</p>
473
473
  * @public
474
474
  */
475
- Reason?: ValidationExceptionReason;
475
+ Reason?: ValidationExceptionReason | undefined;
476
476
  /**
477
477
  * <p>A unique ID for the error.</p>
478
478
  * @public
479
479
  */
480
- ErrorId?: string;
480
+ ErrorId?: string | undefined;
481
481
  /**
482
482
  * <p>A list of attributes that led to the exception and their values.</p>
483
483
  * @public
484
484
  */
485
- ErrorArguments?: ValidationExceptionErrorArgument[];
485
+ ErrorArguments?: ValidationExceptionErrorArgument[] | undefined;
486
486
  /**
487
487
  * <p>A list of request parameters that failed validation.</p>
488
488
  * @public
489
489
  */
490
- Fields?: ValidationExceptionField[];
490
+ Fields?: ValidationExceptionField[] | undefined;
491
491
  /**
492
492
  * @internal
493
493
  */
@@ -507,7 +507,7 @@ export interface OTAJobConfig {
507
507
  * <p>Whether to apply the update if it is a major version change.</p>
508
508
  * @public
509
509
  */
510
- AllowMajorVersionUpdate?: boolean;
510
+ AllowMajorVersionUpdate?: boolean | undefined;
511
511
  }
512
512
  /**
513
513
  * <p>A job's configuration.</p>
@@ -518,7 +518,7 @@ export interface DeviceJobConfig {
518
518
  * <p>A configuration for an over-the-air (OTA) upgrade. Required for OTA jobs.</p>
519
519
  * @public
520
520
  */
521
- OTAJobConfig?: OTAJobConfig;
521
+ OTAJobConfig?: OTAJobConfig | undefined;
522
522
  }
523
523
  /**
524
524
  * @public
@@ -545,7 +545,7 @@ export interface CreateJobForDevicesRequest {
545
545
  * <p>Configuration settings for a software update job.</p>
546
546
  * @public
547
547
  */
548
- DeviceJobConfig?: DeviceJobConfig;
548
+ DeviceJobConfig?: DeviceJobConfig | undefined;
549
549
  /**
550
550
  * <p>The type of job to run.</p>
551
551
  * @public
@@ -561,12 +561,12 @@ export interface Job {
561
561
  * <p>The job's ID.</p>
562
562
  * @public
563
563
  */
564
- JobId?: string;
564
+ JobId?: string | undefined;
565
565
  /**
566
566
  * <p>The target device's ID.</p>
567
567
  * @public
568
568
  */
569
- DeviceId?: string;
569
+ DeviceId?: string | undefined;
570
570
  }
571
571
  /**
572
572
  * @public
@@ -667,7 +667,7 @@ export interface CreateNodeFromTemplateJobRequest {
667
667
  * <p>A description for the node.</p>
668
668
  * @public
669
669
  */
670
- NodeDescription?: string;
670
+ NodeDescription?: string | undefined;
671
671
  /**
672
672
  * <p>Template parameters for the node.</p>
673
673
  * @public
@@ -677,7 +677,7 @@ export interface CreateNodeFromTemplateJobRequest {
677
677
  * <p>Tags for the job.</p>
678
678
  * @public
679
679
  */
680
- JobTags?: JobResourceTags[];
680
+ JobTags?: JobResourceTags[] | undefined;
681
681
  }
682
682
  /**
683
683
  * @public
@@ -702,7 +702,7 @@ export interface CreatePackageRequest {
702
702
  * <p>Tags for the package.</p>
703
703
  * @public
704
704
  */
705
- Tags?: Record<string, string>;
705
+ Tags?: Record<string, string> | undefined;
706
706
  }
707
707
  /**
708
708
  * <p>A storage location.</p>
@@ -743,12 +743,12 @@ export interface CreatePackageResponse {
743
743
  * <p>The package's ID.</p>
744
744
  * @public
745
745
  */
746
- PackageId?: string;
746
+ PackageId?: string | undefined;
747
747
  /**
748
748
  * <p>The package's ARN.</p>
749
749
  * @public
750
750
  */
751
- Arn?: string;
751
+ Arn?: string | undefined;
752
752
  /**
753
753
  * <p>The package's storage location.</p>
754
754
  * @public
@@ -764,7 +764,7 @@ export interface S3Location {
764
764
  * <p>The bucket's Region.</p>
765
765
  * @public
766
766
  */
767
- Region?: string;
767
+ Region?: string | undefined;
768
768
  /**
769
769
  * <p>A bucket name.</p>
770
770
  * @public
@@ -796,7 +796,7 @@ export interface PackageImportJobInputConfig {
796
796
  * <p>The package version's input configuration.</p>
797
797
  * @public
798
798
  */
799
- PackageVersionInputConfig?: PackageVersionInputConfig;
799
+ PackageVersionInputConfig?: PackageVersionInputConfig | undefined;
800
800
  }
801
801
  /**
802
802
  * @public
@@ -829,7 +829,7 @@ export interface PackageVersionOutputConfig {
829
829
  * <p>Indicates that the version is recommended for all users.</p>
830
830
  * @public
831
831
  */
832
- MarkLatest?: boolean;
832
+ MarkLatest?: boolean | undefined;
833
833
  }
834
834
  /**
835
835
  * <p>An output configuration for a package import job.</p>
@@ -840,7 +840,7 @@ export interface PackageImportJobOutputConfig {
840
840
  * <p>The package version's output configuration.</p>
841
841
  * @public
842
842
  */
843
- PackageVersionOutputConfig?: PackageVersionOutputConfig;
843
+ PackageVersionOutputConfig?: PackageVersionOutputConfig | undefined;
844
844
  }
845
845
  /**
846
846
  * @public
@@ -870,7 +870,7 @@ export interface CreatePackageImportJobRequest {
870
870
  * <p>Tags for the package import job.</p>
871
871
  * @public
872
872
  */
873
- JobTags?: JobResourceTags[];
873
+ JobTags?: JobResourceTags[] | undefined;
874
874
  }
875
875
  /**
876
876
  * @public
@@ -900,7 +900,7 @@ export interface DeleteDeviceResponse {
900
900
  * <p>The device's ID.</p>
901
901
  * @public
902
902
  */
903
- DeviceId?: string;
903
+ DeviceId?: string | undefined;
904
904
  }
905
905
  /**
906
906
  * @public
@@ -916,7 +916,7 @@ export interface DeletePackageRequest {
916
916
  * Amazon S3.</p>
917
917
  * @public
918
918
  */
919
- ForceDelete?: boolean;
919
+ ForceDelete?: boolean | undefined;
920
920
  }
921
921
  /**
922
922
  * @public
@@ -931,7 +931,7 @@ export interface DeregisterPackageVersionRequest {
931
931
  * <p>An owner account.</p>
932
932
  * @public
933
933
  */
934
- OwnerAccount?: string;
934
+ OwnerAccount?: string | undefined;
935
935
  /**
936
936
  * <p>A package ID.</p>
937
937
  * @public
@@ -951,7 +951,7 @@ export interface DeregisterPackageVersionRequest {
951
951
  * <p>If the version was marked latest, the new version to maker as latest.</p>
952
952
  * @public
953
953
  */
954
- UpdatedLatestPatchVersion?: string;
954
+ UpdatedLatestPatchVersion?: string | undefined;
955
955
  }
956
956
  /**
957
957
  * @public
@@ -976,77 +976,77 @@ export interface DescribeApplicationInstanceResponse {
976
976
  * <p>The application instance's name.</p>
977
977
  * @public
978
978
  */
979
- Name?: string;
979
+ Name?: string | undefined;
980
980
  /**
981
981
  * <p>The application instance's description.</p>
982
982
  * @public
983
983
  */
984
- Description?: string;
984
+ Description?: string | undefined;
985
985
  /**
986
986
  * <p>The device's ID.</p>
987
987
  * @public
988
988
  */
989
- DefaultRuntimeContextDevice?: string;
989
+ DefaultRuntimeContextDevice?: string | undefined;
990
990
  /**
991
991
  * <p>The device's bane.</p>
992
992
  * @public
993
993
  */
994
- DefaultRuntimeContextDeviceName?: string;
994
+ DefaultRuntimeContextDeviceName?: string | undefined;
995
995
  /**
996
996
  * <p>The ID of the application instance that this instance replaced.</p>
997
997
  * @public
998
998
  */
999
- ApplicationInstanceIdToReplace?: string;
999
+ ApplicationInstanceIdToReplace?: string | undefined;
1000
1000
  /**
1001
1001
  * <p>The application instance's runtime role ARN.</p>
1002
1002
  * @public
1003
1003
  */
1004
- RuntimeRoleArn?: string;
1004
+ RuntimeRoleArn?: string | undefined;
1005
1005
  /**
1006
1006
  * <p>The application instance's status.</p>
1007
1007
  * @public
1008
1008
  */
1009
- Status?: ApplicationInstanceStatus;
1009
+ Status?: ApplicationInstanceStatus | undefined;
1010
1010
  /**
1011
1011
  * <p>The application instance's health status.</p>
1012
1012
  * @public
1013
1013
  */
1014
- HealthStatus?: ApplicationInstanceHealthStatus;
1014
+ HealthStatus?: ApplicationInstanceHealthStatus | undefined;
1015
1015
  /**
1016
1016
  * <p>The application instance's status description.</p>
1017
1017
  * @public
1018
1018
  */
1019
- StatusDescription?: string;
1019
+ StatusDescription?: string | undefined;
1020
1020
  /**
1021
1021
  * <p>When the application instance was created.</p>
1022
1022
  * @public
1023
1023
  */
1024
- CreatedTime?: Date;
1024
+ CreatedTime?: Date | undefined;
1025
1025
  /**
1026
1026
  * <p>The application instance was updated.</p>
1027
1027
  * @public
1028
1028
  */
1029
- LastUpdatedTime?: Date;
1029
+ LastUpdatedTime?: Date | undefined;
1030
1030
  /**
1031
1031
  * <p>The application instance's ID.</p>
1032
1032
  * @public
1033
1033
  */
1034
- ApplicationInstanceId?: string;
1034
+ ApplicationInstanceId?: string | undefined;
1035
1035
  /**
1036
1036
  * <p>The application instance's ARN.</p>
1037
1037
  * @public
1038
1038
  */
1039
- Arn?: string;
1039
+ Arn?: string | undefined;
1040
1040
  /**
1041
1041
  * <p>The application instance's tags.</p>
1042
1042
  * @public
1043
1043
  */
1044
- Tags?: Record<string, string>;
1044
+ Tags?: Record<string, string> | undefined;
1045
1045
  /**
1046
1046
  * <p>The application instance's state.</p>
1047
1047
  * @public
1048
1048
  */
1049
- RuntimeContextStates?: ReportedRuntimeContextState[];
1049
+ RuntimeContextStates?: ReportedRuntimeContextState[] | undefined;
1050
1050
  }
1051
1051
  /**
1052
1052
  * @public
@@ -1066,42 +1066,42 @@ export interface DescribeApplicationInstanceDetailsResponse {
1066
1066
  * <p>The application instance's name.</p>
1067
1067
  * @public
1068
1068
  */
1069
- Name?: string;
1069
+ Name?: string | undefined;
1070
1070
  /**
1071
1071
  * <p>The application instance's description.</p>
1072
1072
  * @public
1073
1073
  */
1074
- Description?: string;
1074
+ Description?: string | undefined;
1075
1075
  /**
1076
1076
  * <p>The application instance's default runtime context device.</p>
1077
1077
  * @public
1078
1078
  */
1079
- DefaultRuntimeContextDevice?: string;
1079
+ DefaultRuntimeContextDevice?: string | undefined;
1080
1080
  /**
1081
1081
  * <p>The application instance's configuration manifest.</p>
1082
1082
  * @public
1083
1083
  */
1084
- ManifestPayload?: ManifestPayload;
1084
+ ManifestPayload?: ManifestPayload | undefined;
1085
1085
  /**
1086
1086
  * <p>Parameter overrides for the configuration manifest.</p>
1087
1087
  * @public
1088
1088
  */
1089
- ManifestOverridesPayload?: ManifestOverridesPayload;
1089
+ ManifestOverridesPayload?: ManifestOverridesPayload | undefined;
1090
1090
  /**
1091
1091
  * <p>The ID of the application instance that this instance replaced.</p>
1092
1092
  * @public
1093
1093
  */
1094
- ApplicationInstanceIdToReplace?: string;
1094
+ ApplicationInstanceIdToReplace?: string | undefined;
1095
1095
  /**
1096
1096
  * <p>When the application instance was created.</p>
1097
1097
  * @public
1098
1098
  */
1099
- CreatedTime?: Date;
1099
+ CreatedTime?: Date | undefined;
1100
1100
  /**
1101
1101
  * <p>The application instance's ID.</p>
1102
1102
  * @public
1103
1103
  */
1104
- ApplicationInstanceId?: string;
1104
+ ApplicationInstanceId?: string | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * @public
@@ -1147,17 +1147,17 @@ export interface EthernetStatus {
1147
1147
  * <p>The device's IP address.</p>
1148
1148
  * @public
1149
1149
  */
1150
- IpAddress?: string;
1150
+ IpAddress?: string | undefined;
1151
1151
  /**
1152
1152
  * <p>The device's connection status.</p>
1153
1153
  * @public
1154
1154
  */
1155
- ConnectionStatus?: NetworkConnectionStatus;
1155
+ ConnectionStatus?: NetworkConnectionStatus | undefined;
1156
1156
  /**
1157
1157
  * <p>The device's physical address.</p>
1158
1158
  * @public
1159
1159
  */
1160
- HwAddress?: string;
1160
+ HwAddress?: string | undefined;
1161
1161
  }
1162
1162
  /**
1163
1163
  * <p>Details about an NTP server connection.</p>
@@ -1168,17 +1168,17 @@ export interface NtpStatus {
1168
1168
  * <p>The connection's status.</p>
1169
1169
  * @public
1170
1170
  */
1171
- ConnectionStatus?: NetworkConnectionStatus;
1171
+ ConnectionStatus?: NetworkConnectionStatus | undefined;
1172
1172
  /**
1173
1173
  * <p>The IP address of the server.</p>
1174
1174
  * @public
1175
1175
  */
1176
- IpAddress?: string;
1176
+ IpAddress?: string | undefined;
1177
1177
  /**
1178
1178
  * <p>The domain name of the server.</p>
1179
1179
  * @public
1180
1180
  */
1181
- NtpServerName?: string;
1181
+ NtpServerName?: string | undefined;
1182
1182
  }
1183
1183
  /**
1184
1184
  * <p>The network status of a device.</p>
@@ -1189,22 +1189,22 @@ export interface NetworkStatus {
1189
1189
  * <p>The status of Ethernet port 0.</p>
1190
1190
  * @public
1191
1191
  */
1192
- Ethernet0Status?: EthernetStatus;
1192
+ Ethernet0Status?: EthernetStatus | undefined;
1193
1193
  /**
1194
1194
  * <p>The status of Ethernet port 1.</p>
1195
1195
  * @public
1196
1196
  */
1197
- Ethernet1Status?: EthernetStatus;
1197
+ Ethernet1Status?: EthernetStatus | undefined;
1198
1198
  /**
1199
1199
  * <p>Details about a network time protocol (NTP) server connection.</p>
1200
1200
  * @public
1201
1201
  */
1202
- NtpStatus?: NtpStatus;
1202
+ NtpStatus?: NtpStatus | undefined;
1203
1203
  /**
1204
1204
  * <p>When the network status changed.</p>
1205
1205
  * @public
1206
1206
  */
1207
- LastUpdatedTime?: Date;
1207
+ LastUpdatedTime?: Date | undefined;
1208
1208
  }
1209
1209
  /**
1210
1210
  * @public
@@ -1267,17 +1267,17 @@ export interface LatestDeviceJob {
1267
1267
  * <p>The target version of the device software.</p>
1268
1268
  * @public
1269
1269
  */
1270
- ImageVersion?: string;
1270
+ ImageVersion?: string | undefined;
1271
1271
  /**
1272
1272
  * <p>Status of the latest device job.</p>
1273
1273
  * @public
1274
1274
  */
1275
- Status?: UpdateProgress;
1275
+ Status?: UpdateProgress | undefined;
1276
1276
  /**
1277
1277
  * <p>The job's type.</p>
1278
1278
  * @public
1279
1279
  */
1280
- JobType?: JobType;
1280
+ JobType?: JobType | undefined;
1281
1281
  }
1282
1282
  /**
1283
1283
  * <p>A static IP configuration.</p>
@@ -1319,7 +1319,7 @@ export interface EthernetPayload {
1319
1319
  * <p>Network configuration for a static IP connection.</p>
1320
1320
  * @public
1321
1321
  */
1322
- StaticIpConnectionInfo?: StaticIpConnectionInfo;
1322
+ StaticIpConnectionInfo?: StaticIpConnectionInfo | undefined;
1323
1323
  }
1324
1324
  /**
1325
1325
  * <p>Network time protocol (NTP) server settings. Use this option to connect to local NTP servers instead of
@@ -1342,17 +1342,17 @@ export interface NetworkPayload {
1342
1342
  * <p>Settings for Ethernet port 0.</p>
1343
1343
  * @public
1344
1344
  */
1345
- Ethernet0?: EthernetPayload;
1345
+ Ethernet0?: EthernetPayload | undefined;
1346
1346
  /**
1347
1347
  * <p>Settings for Ethernet port 1.</p>
1348
1348
  * @public
1349
1349
  */
1350
- Ethernet1?: EthernetPayload;
1350
+ Ethernet1?: EthernetPayload | undefined;
1351
1351
  /**
1352
1352
  * <p>Network time protocol (NTP) server settings.</p>
1353
1353
  * @public
1354
1354
  */
1355
- Ntp?: NtpPayload;
1355
+ Ntp?: NtpPayload | undefined;
1356
1356
  }
1357
1357
  /**
1358
1358
  * @public
@@ -1390,102 +1390,102 @@ export interface DescribeDeviceResponse {
1390
1390
  * <p>The device's ID.</p>
1391
1391
  * @public
1392
1392
  */
1393
- DeviceId?: string;
1393
+ DeviceId?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>The device's name.</p>
1396
1396
  * @public
1397
1397
  */
1398
- Name?: string;
1398
+ Name?: string | undefined;
1399
1399
  /**
1400
1400
  * <p>The device's ARN.</p>
1401
1401
  * @public
1402
1402
  */
1403
- Arn?: string;
1403
+ Arn?: string | undefined;
1404
1404
  /**
1405
1405
  * <p>The device's description.</p>
1406
1406
  * @public
1407
1407
  */
1408
- Description?: string;
1408
+ Description?: string | undefined;
1409
1409
  /**
1410
1410
  * <p>The device's type.</p>
1411
1411
  * @public
1412
1412
  */
1413
- Type?: DeviceType;
1413
+ Type?: DeviceType | undefined;
1414
1414
  /**
1415
1415
  * <p>The device's connection status.</p>
1416
1416
  * @public
1417
1417
  */
1418
- DeviceConnectionStatus?: DeviceConnectionStatus;
1418
+ DeviceConnectionStatus?: DeviceConnectionStatus | undefined;
1419
1419
  /**
1420
1420
  * <p>When the device was created.</p>
1421
1421
  * @public
1422
1422
  */
1423
- CreatedTime?: Date;
1423
+ CreatedTime?: Date | undefined;
1424
1424
  /**
1425
1425
  * <p>The device's provisioning status.</p>
1426
1426
  * @public
1427
1427
  */
1428
- ProvisioningStatus?: DeviceStatus;
1428
+ ProvisioningStatus?: DeviceStatus | undefined;
1429
1429
  /**
1430
1430
  * <p>The latest software version available for the device.</p>
1431
1431
  * @public
1432
1432
  */
1433
- LatestSoftware?: string;
1433
+ LatestSoftware?: string | undefined;
1434
1434
  /**
1435
1435
  * <p>The device's current software version.</p>
1436
1436
  * @public
1437
1437
  */
1438
- CurrentSoftware?: string;
1438
+ CurrentSoftware?: string | undefined;
1439
1439
  /**
1440
1440
  * <p>The device's serial number.</p>
1441
1441
  * @public
1442
1442
  */
1443
- SerialNumber?: string;
1443
+ SerialNumber?: string | undefined;
1444
1444
  /**
1445
1445
  * <p>The device's tags.</p>
1446
1446
  * @public
1447
1447
  */
1448
- Tags?: Record<string, string>;
1448
+ Tags?: Record<string, string> | undefined;
1449
1449
  /**
1450
1450
  * <p>The device's networking configuration.</p>
1451
1451
  * @public
1452
1452
  */
1453
- NetworkingConfiguration?: NetworkPayload;
1453
+ NetworkingConfiguration?: NetworkPayload | undefined;
1454
1454
  /**
1455
1455
  * <p>The device's networking status.</p>
1456
1456
  * @public
1457
1457
  */
1458
- CurrentNetworkingStatus?: NetworkStatus;
1458
+ CurrentNetworkingStatus?: NetworkStatus | undefined;
1459
1459
  /**
1460
1460
  * <p>The device's lease expiration time.</p>
1461
1461
  * @public
1462
1462
  */
1463
- LeaseExpirationTime?: Date;
1463
+ LeaseExpirationTime?: Date | undefined;
1464
1464
  /**
1465
1465
  * <p>Beta software releases available for the device.</p>
1466
1466
  * @public
1467
1467
  */
1468
- AlternateSoftwares?: AlternateSoftwareMetadata[];
1468
+ AlternateSoftwares?: AlternateSoftwareMetadata[] | undefined;
1469
1469
  /**
1470
1470
  * <p>The most recent beta software release.</p>
1471
1471
  * @public
1472
1472
  */
1473
- LatestAlternateSoftware?: string;
1473
+ LatestAlternateSoftware?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The device's maker.</p>
1476
1476
  * @public
1477
1477
  */
1478
- Brand?: DeviceBrand;
1478
+ Brand?: DeviceBrand | undefined;
1479
1479
  /**
1480
1480
  * <p>A device's latest job. Includes the target image version, and the job status.</p>
1481
1481
  * @public
1482
1482
  */
1483
- LatestDeviceJob?: LatestDeviceJob;
1483
+ LatestDeviceJob?: LatestDeviceJob | undefined;
1484
1484
  /**
1485
1485
  * <p>A device's aggregated status. Including the device's connection status, provisioning status, and lease status.</p>
1486
1486
  * @public
1487
1487
  */
1488
- DeviceAggregatedStatus?: DeviceAggregatedStatus;
1488
+ DeviceAggregatedStatus?: DeviceAggregatedStatus | undefined;
1489
1489
  }
1490
1490
  /**
1491
1491
  * @public
@@ -1505,47 +1505,47 @@ export interface DescribeDeviceJobResponse {
1505
1505
  * <p>The job's ID.</p>
1506
1506
  * @public
1507
1507
  */
1508
- JobId?: string;
1508
+ JobId?: string | undefined;
1509
1509
  /**
1510
1510
  * <p>The device's ID.</p>
1511
1511
  * @public
1512
1512
  */
1513
- DeviceId?: string;
1513
+ DeviceId?: string | undefined;
1514
1514
  /**
1515
1515
  * <p>The device's ARN.</p>
1516
1516
  * @public
1517
1517
  */
1518
- DeviceArn?: string;
1518
+ DeviceArn?: string | undefined;
1519
1519
  /**
1520
1520
  * <p>The device's name.</p>
1521
1521
  * @public
1522
1522
  */
1523
- DeviceName?: string;
1523
+ DeviceName?: string | undefined;
1524
1524
  /**
1525
1525
  * <p>The device's type.</p>
1526
1526
  * @public
1527
1527
  */
1528
- DeviceType?: DeviceType;
1528
+ DeviceType?: DeviceType | undefined;
1529
1529
  /**
1530
1530
  * <p>For an OTA job, the target version of the device software.</p>
1531
1531
  * @public
1532
1532
  */
1533
- ImageVersion?: string;
1533
+ ImageVersion?: string | undefined;
1534
1534
  /**
1535
1535
  * <p>The job's status.</p>
1536
1536
  * @public
1537
1537
  */
1538
- Status?: UpdateProgress;
1538
+ Status?: UpdateProgress | undefined;
1539
1539
  /**
1540
1540
  * <p>When the job was created.</p>
1541
1541
  * @public
1542
1542
  */
1543
- CreatedTime?: Date;
1543
+ CreatedTime?: Date | undefined;
1544
1544
  /**
1545
1545
  * <p>The job's type.</p>
1546
1546
  * @public
1547
1547
  */
1548
- JobType?: JobType;
1548
+ JobType?: JobType | undefined;
1549
1549
  }
1550
1550
  /**
1551
1551
  * @public
@@ -1560,7 +1560,7 @@ export interface DescribeNodeRequest {
1560
1560
  * <p>The account ID of the node's owner.</p>
1561
1561
  * @public
1562
1562
  */
1563
- OwnerAccount?: string;
1563
+ OwnerAccount?: string | undefined;
1564
1564
  }
1565
1565
  /**
1566
1566
  * @public
@@ -1600,27 +1600,27 @@ export interface NodeInputPort {
1600
1600
  * <p>The input port's name.</p>
1601
1601
  * @public
1602
1602
  */
1603
- Name?: string;
1603
+ Name?: string | undefined;
1604
1604
  /**
1605
1605
  * <p>The input port's description.</p>
1606
1606
  * @public
1607
1607
  */
1608
- Description?: string;
1608
+ Description?: string | undefined;
1609
1609
  /**
1610
1610
  * <p>The input port's type.</p>
1611
1611
  * @public
1612
1612
  */
1613
- Type?: PortType;
1613
+ Type?: PortType | undefined;
1614
1614
  /**
1615
1615
  * <p>The input port's default value.</p>
1616
1616
  * @public
1617
1617
  */
1618
- DefaultValue?: string;
1618
+ DefaultValue?: string | undefined;
1619
1619
  /**
1620
1620
  * <p>The input port's max connections.</p>
1621
1621
  * @public
1622
1622
  */
1623
- MaxConnections?: number;
1623
+ MaxConnections?: number | undefined;
1624
1624
  }
1625
1625
  /**
1626
1626
  * <p>A node output port.</p>
@@ -1631,17 +1631,17 @@ export interface NodeOutputPort {
1631
1631
  * <p>The output port's name.</p>
1632
1632
  * @public
1633
1633
  */
1634
- Name?: string;
1634
+ Name?: string | undefined;
1635
1635
  /**
1636
1636
  * <p>The output port's description.</p>
1637
1637
  * @public
1638
1638
  */
1639
- Description?: string;
1639
+ Description?: string | undefined;
1640
1640
  /**
1641
1641
  * <p>The output port's type.</p>
1642
1642
  * @public
1643
1643
  */
1644
- Type?: PortType;
1644
+ Type?: PortType | undefined;
1645
1645
  }
1646
1646
  /**
1647
1647
  * <p>A node interface.</p>
@@ -1697,7 +1697,7 @@ export interface DescribeNodeResponse {
1697
1697
  * <p>The node's ARN.</p>
1698
1698
  * @public
1699
1699
  */
1700
- PackageArn?: string;
1700
+ PackageArn?: string | undefined;
1701
1701
  /**
1702
1702
  * <p>The node's package version.</p>
1703
1703
  * @public
@@ -1717,7 +1717,7 @@ export interface DescribeNodeResponse {
1717
1717
  * <p>The node's asset name.</p>
1718
1718
  * @public
1719
1719
  */
1720
- AssetName?: string;
1720
+ AssetName?: string | undefined;
1721
1721
  /**
1722
1722
  * <p>The node's description.</p>
1723
1723
  * @public
@@ -1805,7 +1805,7 @@ export interface DescribeNodeFromTemplateJobResponse {
1805
1805
  * <p>The node's description.</p>
1806
1806
  * @public
1807
1807
  */
1808
- NodeDescription?: string;
1808
+ NodeDescription?: string | undefined;
1809
1809
  /**
1810
1810
  * <p>The job's template type.</p>
1811
1811
  * @public
@@ -1820,7 +1820,7 @@ export interface DescribeNodeFromTemplateJobResponse {
1820
1820
  * <p>The job's tags.</p>
1821
1821
  * @public
1822
1822
  */
1823
- JobTags?: JobResourceTags[];
1823
+ JobTags?: JobResourceTags[] | undefined;
1824
1824
  }
1825
1825
  /**
1826
1826
  * @public
@@ -1860,12 +1860,12 @@ export interface DescribePackageResponse {
1860
1860
  * <p>ARNs of accounts that have read access to the package.</p>
1861
1861
  * @public
1862
1862
  */
1863
- ReadAccessPrincipalArns?: string[];
1863
+ ReadAccessPrincipalArns?: string[] | undefined;
1864
1864
  /**
1865
1865
  * <p>ARNs of accounts that have write access to the package.</p>
1866
1866
  * @public
1867
1867
  */
1868
- WriteAccessPrincipalArns?: string[];
1868
+ WriteAccessPrincipalArns?: string[] | undefined;
1869
1869
  /**
1870
1870
  * <p>When the package was created.</p>
1871
1871
  * @public
@@ -1955,7 +1955,7 @@ export interface DescribePackageImportJobResponse {
1955
1955
  * <p>The job's client token.</p>
1956
1956
  * @public
1957
1957
  */
1958
- ClientToken?: string;
1958
+ ClientToken?: string | undefined;
1959
1959
  /**
1960
1960
  * <p>The job's type.</p>
1961
1961
  * @public
@@ -2000,7 +2000,7 @@ export interface DescribePackageImportJobResponse {
2000
2000
  * <p>The job's tags.</p>
2001
2001
  * @public
2002
2002
  */
2003
- JobTags?: JobResourceTags[];
2003
+ JobTags?: JobResourceTags[] | undefined;
2004
2004
  }
2005
2005
  /**
2006
2006
  * @public
@@ -2010,7 +2010,7 @@ export interface DescribePackageVersionRequest {
2010
2010
  * <p>The version's owner account.</p>
2011
2011
  * @public
2012
2012
  */
2013
- OwnerAccount?: string;
2013
+ OwnerAccount?: string | undefined;
2014
2014
  /**
2015
2015
  * <p>The version's ID.</p>
2016
2016
  * @public
@@ -2025,7 +2025,7 @@ export interface DescribePackageVersionRequest {
2025
2025
  * <p>The version's patch version.</p>
2026
2026
  * @public
2027
2027
  */
2028
- PatchVersion?: string;
2028
+ PatchVersion?: string | undefined;
2029
2029
  }
2030
2030
  /**
2031
2031
  * @public
@@ -2049,7 +2049,7 @@ export interface DescribePackageVersionResponse {
2049
2049
  * <p>The account ID of the version's owner.</p>
2050
2050
  * @public
2051
2051
  */
2052
- OwnerAccount?: string;
2052
+ OwnerAccount?: string | undefined;
2053
2053
  /**
2054
2054
  * <p>The version's ID.</p>
2055
2055
  * @public
@@ -2059,7 +2059,7 @@ export interface DescribePackageVersionResponse {
2059
2059
  * <p>The ARN of the package.</p>
2060
2060
  * @public
2061
2061
  */
2062
- PackageArn?: string;
2062
+ PackageArn?: string | undefined;
2063
2063
  /**
2064
2064
  * <p>The version's name.</p>
2065
2065
  * @public
@@ -2089,12 +2089,12 @@ export interface DescribePackageVersionResponse {
2089
2089
  * <p>The version's status description.</p>
2090
2090
  * @public
2091
2091
  */
2092
- StatusDescription?: string;
2092
+ StatusDescription?: string | undefined;
2093
2093
  /**
2094
2094
  * <p>The version's registered time.</p>
2095
2095
  * @public
2096
2096
  */
2097
- RegisteredTime?: Date;
2097
+ RegisteredTime?: Date | undefined;
2098
2098
  }
2099
2099
  /**
2100
2100
  * <p>A device.</p>
@@ -2105,67 +2105,67 @@ export interface Device {
2105
2105
  * <p>The device's ID.</p>
2106
2106
  * @public
2107
2107
  */
2108
- DeviceId?: string;
2108
+ DeviceId?: string | undefined;
2109
2109
  /**
2110
2110
  * <p>The device's name.</p>
2111
2111
  * @public
2112
2112
  */
2113
- Name?: string;
2113
+ Name?: string | undefined;
2114
2114
  /**
2115
2115
  * <p>When the device was created.</p>
2116
2116
  * @public
2117
2117
  */
2118
- CreatedTime?: Date;
2118
+ CreatedTime?: Date | undefined;
2119
2119
  /**
2120
2120
  * <p>The device's provisioning status.</p>
2121
2121
  * @public
2122
2122
  */
2123
- ProvisioningStatus?: DeviceStatus;
2123
+ ProvisioningStatus?: DeviceStatus | undefined;
2124
2124
  /**
2125
2125
  * <p>When the device was updated.</p>
2126
2126
  * @public
2127
2127
  */
2128
- LastUpdatedTime?: Date;
2128
+ LastUpdatedTime?: Date | undefined;
2129
2129
  /**
2130
2130
  * <p>The device's lease expiration time.</p>
2131
2131
  * @public
2132
2132
  */
2133
- LeaseExpirationTime?: Date;
2133
+ LeaseExpirationTime?: Date | undefined;
2134
2134
  /**
2135
2135
  * <p>The device's maker.</p>
2136
2136
  * @public
2137
2137
  */
2138
- Brand?: DeviceBrand;
2138
+ Brand?: DeviceBrand | undefined;
2139
2139
  /**
2140
2140
  * <p>A device's current software.</p>
2141
2141
  * @public
2142
2142
  */
2143
- CurrentSoftware?: string;
2143
+ CurrentSoftware?: string | undefined;
2144
2144
  /**
2145
2145
  * <p>A description for the device.</p>
2146
2146
  * @public
2147
2147
  */
2148
- Description?: string;
2148
+ Description?: string | undefined;
2149
2149
  /**
2150
2150
  * <p>The device's tags.</p>
2151
2151
  * @public
2152
2152
  */
2153
- Tags?: Record<string, string>;
2153
+ Tags?: Record<string, string> | undefined;
2154
2154
  /**
2155
2155
  * <p>The device's type.</p>
2156
2156
  * @public
2157
2157
  */
2158
- Type?: DeviceType;
2158
+ Type?: DeviceType | undefined;
2159
2159
  /**
2160
2160
  * <p>A device's latest job. Includes the target image version, and the update job status.</p>
2161
2161
  * @public
2162
2162
  */
2163
- LatestDeviceJob?: LatestDeviceJob;
2163
+ LatestDeviceJob?: LatestDeviceJob | undefined;
2164
2164
  /**
2165
2165
  * <p>A device's aggregated status. Including the device's connection status, provisioning status, and lease status.</p>
2166
2166
  * @public
2167
2167
  */
2168
- DeviceAggregatedStatus?: DeviceAggregatedStatus;
2168
+ DeviceAggregatedStatus?: DeviceAggregatedStatus | undefined;
2169
2169
  }
2170
2170
  /**
2171
2171
  * <p>A job that runs on a device.</p>
@@ -2176,27 +2176,27 @@ export interface DeviceJob {
2176
2176
  * <p>The name of the target device</p>
2177
2177
  * @public
2178
2178
  */
2179
- DeviceName?: string;
2179
+ DeviceName?: string | undefined;
2180
2180
  /**
2181
2181
  * <p>The ID of the target device.</p>
2182
2182
  * @public
2183
2183
  */
2184
- DeviceId?: string;
2184
+ DeviceId?: string | undefined;
2185
2185
  /**
2186
2186
  * <p>The job's ID.</p>
2187
2187
  * @public
2188
2188
  */
2189
- JobId?: string;
2189
+ JobId?: string | undefined;
2190
2190
  /**
2191
2191
  * <p>When the job was created.</p>
2192
2192
  * @public
2193
2193
  */
2194
- CreatedTime?: Date;
2194
+ CreatedTime?: Date | undefined;
2195
2195
  /**
2196
2196
  * <p>The job's type.</p>
2197
2197
  * @public
2198
2198
  */
2199
- JobType?: JobType;
2199
+ JobType?: JobType | undefined;
2200
2200
  }
2201
2201
  /**
2202
2202
  * @public
@@ -2211,12 +2211,12 @@ export interface ListApplicationInstanceDependenciesRequest {
2211
2211
  * <p>The maximum number of application instance dependencies to return in one page of results.</p>
2212
2212
  * @public
2213
2213
  */
2214
- MaxResults?: number;
2214
+ MaxResults?: number | undefined;
2215
2215
  /**
2216
2216
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2217
2217
  * @public
2218
2218
  */
2219
- NextToken?: string;
2219
+ NextToken?: string | undefined;
2220
2220
  }
2221
2221
  /**
2222
2222
  * <p>A package object.</p>
@@ -2247,12 +2247,12 @@ export interface ListApplicationInstanceDependenciesResponse {
2247
2247
  * <p>A list of package objects.</p>
2248
2248
  * @public
2249
2249
  */
2250
- PackageObjects?: PackageObject[];
2250
+ PackageObjects?: PackageObject[] | undefined;
2251
2251
  /**
2252
2252
  * <p>A pagination token that's included if more results are available.</p>
2253
2253
  * @public
2254
2254
  */
2255
- NextToken?: string;
2255
+ NextToken?: string | undefined;
2256
2256
  }
2257
2257
  /**
2258
2258
  * @public
@@ -2267,12 +2267,12 @@ export interface ListApplicationInstanceNodeInstancesRequest {
2267
2267
  * <p>The maximum number of node instances to return in one page of results.</p>
2268
2268
  * @public
2269
2269
  */
2270
- MaxResults?: number;
2270
+ MaxResults?: number | undefined;
2271
2271
  /**
2272
2272
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2273
2273
  * @public
2274
2274
  */
2275
- NextToken?: string;
2275
+ NextToken?: string | undefined;
2276
2276
  }
2277
2277
  /**
2278
2278
  * @public
@@ -2302,27 +2302,27 @@ export interface NodeInstance {
2302
2302
  * <p>The node's ID.</p>
2303
2303
  * @public
2304
2304
  */
2305
- NodeId?: string;
2305
+ NodeId?: string | undefined;
2306
2306
  /**
2307
2307
  * <p>The instance's package name.</p>
2308
2308
  * @public
2309
2309
  */
2310
- PackageName?: string;
2310
+ PackageName?: string | undefined;
2311
2311
  /**
2312
2312
  * <p>The instance's package version.</p>
2313
2313
  * @public
2314
2314
  */
2315
- PackageVersion?: string;
2315
+ PackageVersion?: string | undefined;
2316
2316
  /**
2317
2317
  * <p>The instance's package patch version.</p>
2318
2318
  * @public
2319
2319
  */
2320
- PackagePatchVersion?: string;
2320
+ PackagePatchVersion?: string | undefined;
2321
2321
  /**
2322
2322
  * <p>The instance's name.</p>
2323
2323
  * @public
2324
2324
  */
2325
- NodeName?: string;
2325
+ NodeName?: string | undefined;
2326
2326
  /**
2327
2327
  * <p>The instance's current status.</p>
2328
2328
  * @public
@@ -2337,12 +2337,12 @@ export interface ListApplicationInstanceNodeInstancesResponse {
2337
2337
  * <p>A list of node instances.</p>
2338
2338
  * @public
2339
2339
  */
2340
- NodeInstances?: NodeInstance[];
2340
+ NodeInstances?: NodeInstance[] | undefined;
2341
2341
  /**
2342
2342
  * <p>A pagination token that's included if more results are available.</p>
2343
2343
  * @public
2344
2344
  */
2345
- NextToken?: string;
2345
+ NextToken?: string | undefined;
2346
2346
  }
2347
2347
  /**
2348
2348
  * @public
@@ -2369,22 +2369,22 @@ export interface ListApplicationInstancesRequest {
2369
2369
  * <p>The application instances' device ID.</p>
2370
2370
  * @public
2371
2371
  */
2372
- DeviceId?: string;
2372
+ DeviceId?: string | undefined;
2373
2373
  /**
2374
2374
  * <p>Only include instances with a specific status.</p>
2375
2375
  * @public
2376
2376
  */
2377
- StatusFilter?: StatusFilter;
2377
+ StatusFilter?: StatusFilter | undefined;
2378
2378
  /**
2379
2379
  * <p>The maximum number of application instances to return in one page of results.</p>
2380
2380
  * @public
2381
2381
  */
2382
- MaxResults?: number;
2382
+ MaxResults?: number | undefined;
2383
2383
  /**
2384
2384
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2385
2385
  * @public
2386
2386
  */
2387
- NextToken?: string;
2387
+ NextToken?: string | undefined;
2388
2388
  }
2389
2389
  /**
2390
2390
  * @public
@@ -2394,12 +2394,12 @@ export interface ListApplicationInstancesResponse {
2394
2394
  * <p>A list of application instances.</p>
2395
2395
  * @public
2396
2396
  */
2397
- ApplicationInstances?: ApplicationInstance[];
2397
+ ApplicationInstances?: ApplicationInstance[] | undefined;
2398
2398
  /**
2399
2399
  * <p>A pagination token that's included if more results are available.</p>
2400
2400
  * @public
2401
2401
  */
2402
- NextToken?: string;
2402
+ NextToken?: string | undefined;
2403
2403
  }
2404
2404
  /**
2405
2405
  * @public
@@ -2435,32 +2435,32 @@ export interface ListDevicesRequest {
2435
2435
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2436
2436
  * @public
2437
2437
  */
2438
- NextToken?: string;
2438
+ NextToken?: string | undefined;
2439
2439
  /**
2440
2440
  * <p>The maximum number of devices to return in one page of results.</p>
2441
2441
  * @public
2442
2442
  */
2443
- MaxResults?: number;
2443
+ MaxResults?: number | undefined;
2444
2444
  /**
2445
2445
  * <p>The target column to be sorted on. Default column sort is CREATED_TIME.</p>
2446
2446
  * @public
2447
2447
  */
2448
- SortBy?: ListDevicesSortBy;
2448
+ SortBy?: ListDevicesSortBy | undefined;
2449
2449
  /**
2450
2450
  * <p>The sorting order for the returned list. SortOrder is DESCENDING by default based on CREATED_TIME. Otherwise, SortOrder is ASCENDING.</p>
2451
2451
  * @public
2452
2452
  */
2453
- SortOrder?: SortOrder;
2453
+ SortOrder?: SortOrder | undefined;
2454
2454
  /**
2455
2455
  * <p>Filter based on device's name. Prefixes supported.</p>
2456
2456
  * @public
2457
2457
  */
2458
- NameFilter?: string;
2458
+ NameFilter?: string | undefined;
2459
2459
  /**
2460
2460
  * <p>Filter based on a device's status.</p>
2461
2461
  * @public
2462
2462
  */
2463
- DeviceAggregatedStatusFilter?: DeviceAggregatedStatus;
2463
+ DeviceAggregatedStatusFilter?: DeviceAggregatedStatus | undefined;
2464
2464
  }
2465
2465
  /**
2466
2466
  * @public
@@ -2475,7 +2475,7 @@ export interface ListDevicesResponse {
2475
2475
  * <p>A pagination token that's included if more results are available.</p>
2476
2476
  * @public
2477
2477
  */
2478
- NextToken?: string;
2478
+ NextToken?: string | undefined;
2479
2479
  }
2480
2480
  /**
2481
2481
  * @public
@@ -2485,17 +2485,17 @@ export interface ListDevicesJobsRequest {
2485
2485
  * <p>Filter results by the job's target device ID.</p>
2486
2486
  * @public
2487
2487
  */
2488
- DeviceId?: string;
2488
+ DeviceId?: string | undefined;
2489
2489
  /**
2490
2490
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2491
2491
  * @public
2492
2492
  */
2493
- NextToken?: string;
2493
+ NextToken?: string | undefined;
2494
2494
  /**
2495
2495
  * <p>The maximum number of device jobs to return in one page of results.</p>
2496
2496
  * @public
2497
2497
  */
2498
- MaxResults?: number;
2498
+ MaxResults?: number | undefined;
2499
2499
  }
2500
2500
  /**
2501
2501
  * @public
@@ -2505,12 +2505,12 @@ export interface ListDevicesJobsResponse {
2505
2505
  * <p>A list of jobs.</p>
2506
2506
  * @public
2507
2507
  */
2508
- DeviceJobs?: DeviceJob[];
2508
+ DeviceJobs?: DeviceJob[] | undefined;
2509
2509
  /**
2510
2510
  * <p>A pagination token that's included if more results are available.</p>
2511
2511
  * @public
2512
2512
  */
2513
- NextToken?: string;
2513
+ NextToken?: string | undefined;
2514
2514
  }
2515
2515
  /**
2516
2516
  * @public
@@ -2520,12 +2520,12 @@ export interface ListNodeFromTemplateJobsRequest {
2520
2520
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2521
2521
  * @public
2522
2522
  */
2523
- NextToken?: string;
2523
+ NextToken?: string | undefined;
2524
2524
  /**
2525
2525
  * <p>The maximum number of node from template jobs to return in one page of results.</p>
2526
2526
  * @public
2527
2527
  */
2528
- MaxResults?: number;
2528
+ MaxResults?: number | undefined;
2529
2529
  }
2530
2530
  /**
2531
2531
  * <p>A job to create a camera stream node.</p>
@@ -2536,32 +2536,32 @@ export interface NodeFromTemplateJob {
2536
2536
  * <p>The job's ID.</p>
2537
2537
  * @public
2538
2538
  */
2539
- JobId?: string;
2539
+ JobId?: string | undefined;
2540
2540
  /**
2541
2541
  * <p>The job's template type.</p>
2542
2542
  * @public
2543
2543
  */
2544
- TemplateType?: TemplateType;
2544
+ TemplateType?: TemplateType | undefined;
2545
2545
  /**
2546
2546
  * <p>The job's status.</p>
2547
2547
  * @public
2548
2548
  */
2549
- Status?: NodeFromTemplateJobStatus;
2549
+ Status?: NodeFromTemplateJobStatus | undefined;
2550
2550
  /**
2551
2551
  * <p>The job's status message.</p>
2552
2552
  * @public
2553
2553
  */
2554
- StatusMessage?: string;
2554
+ StatusMessage?: string | undefined;
2555
2555
  /**
2556
2556
  * <p>When the job was created.</p>
2557
2557
  * @public
2558
2558
  */
2559
- CreatedTime?: Date;
2559
+ CreatedTime?: Date | undefined;
2560
2560
  /**
2561
2561
  * <p>The node's name.</p>
2562
2562
  * @public
2563
2563
  */
2564
- NodeName?: string;
2564
+ NodeName?: string | undefined;
2565
2565
  }
2566
2566
  /**
2567
2567
  * @public
@@ -2576,7 +2576,7 @@ export interface ListNodeFromTemplateJobsResponse {
2576
2576
  * <p>A pagination token that's included if more results are available.</p>
2577
2577
  * @public
2578
2578
  */
2579
- NextToken?: string;
2579
+ NextToken?: string | undefined;
2580
2580
  }
2581
2581
  /**
2582
2582
  * @public
@@ -2586,37 +2586,37 @@ export interface ListNodesRequest {
2586
2586
  * <p>Search for nodes by category.</p>
2587
2587
  * @public
2588
2588
  */
2589
- Category?: NodeCategory;
2589
+ Category?: NodeCategory | undefined;
2590
2590
  /**
2591
2591
  * <p>Search for nodes by the account ID of the nodes' owner.</p>
2592
2592
  * @public
2593
2593
  */
2594
- OwnerAccount?: string;
2594
+ OwnerAccount?: string | undefined;
2595
2595
  /**
2596
2596
  * <p>Search for nodes by name.</p>
2597
2597
  * @public
2598
2598
  */
2599
- PackageName?: string;
2599
+ PackageName?: string | undefined;
2600
2600
  /**
2601
2601
  * <p>Search for nodes by version.</p>
2602
2602
  * @public
2603
2603
  */
2604
- PackageVersion?: string;
2604
+ PackageVersion?: string | undefined;
2605
2605
  /**
2606
2606
  * <p>Search for nodes by patch version.</p>
2607
2607
  * @public
2608
2608
  */
2609
- PatchVersion?: string;
2609
+ PatchVersion?: string | undefined;
2610
2610
  /**
2611
2611
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2612
2612
  * @public
2613
2613
  */
2614
- NextToken?: string;
2614
+ NextToken?: string | undefined;
2615
2615
  /**
2616
2616
  * <p>The maximum number of nodes to return in one page of results.</p>
2617
2617
  * @public
2618
2618
  */
2619
- MaxResults?: number;
2619
+ MaxResults?: number | undefined;
2620
2620
  }
2621
2621
  /**
2622
2622
  * <p>An application node that represents a camera stream, a model, code, or output.</p>
@@ -2642,7 +2642,7 @@ export interface Node {
2642
2642
  * <p>The account ID of the node's owner.</p>
2643
2643
  * @public
2644
2644
  */
2645
- OwnerAccount?: string;
2645
+ OwnerAccount?: string | undefined;
2646
2646
  /**
2647
2647
  * <p>The node's package name.</p>
2648
2648
  * @public
@@ -2657,7 +2657,7 @@ export interface Node {
2657
2657
  * <p>The node's ARN.</p>
2658
2658
  * @public
2659
2659
  */
2660
- PackageArn?: string;
2660
+ PackageArn?: string | undefined;
2661
2661
  /**
2662
2662
  * <p>The node's package version.</p>
2663
2663
  * @public
@@ -2672,7 +2672,7 @@ export interface Node {
2672
2672
  * <p>The node's description.</p>
2673
2673
  * @public
2674
2674
  */
2675
- Description?: string;
2675
+ Description?: string | undefined;
2676
2676
  /**
2677
2677
  * <p>When the node was created.</p>
2678
2678
  * @public
@@ -2687,12 +2687,12 @@ export interface ListNodesResponse {
2687
2687
  * <p>A list of nodes.</p>
2688
2688
  * @public
2689
2689
  */
2690
- Nodes?: Node[];
2690
+ Nodes?: Node[] | undefined;
2691
2691
  /**
2692
2692
  * <p>A pagination token that's included if more results are available.</p>
2693
2693
  * @public
2694
2694
  */
2695
- NextToken?: string;
2695
+ NextToken?: string | undefined;
2696
2696
  }
2697
2697
  /**
2698
2698
  * @public
@@ -2702,12 +2702,12 @@ export interface ListPackageImportJobsRequest {
2702
2702
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2703
2703
  * @public
2704
2704
  */
2705
- NextToken?: string;
2705
+ NextToken?: string | undefined;
2706
2706
  /**
2707
2707
  * <p>The maximum number of package import jobs to return in one page of results.</p>
2708
2708
  * @public
2709
2709
  */
2710
- MaxResults?: number;
2710
+ MaxResults?: number | undefined;
2711
2711
  }
2712
2712
  /**
2713
2713
  * <p>A job to import a package version.</p>
@@ -2718,32 +2718,32 @@ export interface PackageImportJob {
2718
2718
  * <p>The job's ID.</p>
2719
2719
  * @public
2720
2720
  */
2721
- JobId?: string;
2721
+ JobId?: string | undefined;
2722
2722
  /**
2723
2723
  * <p>The job's type.</p>
2724
2724
  * @public
2725
2725
  */
2726
- JobType?: PackageImportJobType;
2726
+ JobType?: PackageImportJobType | undefined;
2727
2727
  /**
2728
2728
  * <p>The job's status.</p>
2729
2729
  * @public
2730
2730
  */
2731
- Status?: PackageImportJobStatus;
2731
+ Status?: PackageImportJobStatus | undefined;
2732
2732
  /**
2733
2733
  * <p>The job's status message.</p>
2734
2734
  * @public
2735
2735
  */
2736
- StatusMessage?: string;
2736
+ StatusMessage?: string | undefined;
2737
2737
  /**
2738
2738
  * <p>When the job was created.</p>
2739
2739
  * @public
2740
2740
  */
2741
- CreatedTime?: Date;
2741
+ CreatedTime?: Date | undefined;
2742
2742
  /**
2743
2743
  * <p>When the job was updated.</p>
2744
2744
  * @public
2745
2745
  */
2746
- LastUpdatedTime?: Date;
2746
+ LastUpdatedTime?: Date | undefined;
2747
2747
  }
2748
2748
  /**
2749
2749
  * @public
@@ -2758,7 +2758,7 @@ export interface ListPackageImportJobsResponse {
2758
2758
  * <p>A pagination token that's included if more results are available.</p>
2759
2759
  * @public
2760
2760
  */
2761
- NextToken?: string;
2761
+ NextToken?: string | undefined;
2762
2762
  }
2763
2763
  /**
2764
2764
  * @public
@@ -2768,12 +2768,12 @@ export interface ListPackagesRequest {
2768
2768
  * <p>The maximum number of packages to return in one page of results.</p>
2769
2769
  * @public
2770
2770
  */
2771
- MaxResults?: number;
2771
+ MaxResults?: number | undefined;
2772
2772
  /**
2773
2773
  * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
2774
2774
  * @public
2775
2775
  */
2776
- NextToken?: string;
2776
+ NextToken?: string | undefined;
2777
2777
  }
2778
2778
  /**
2779
2779
  * <p>A package summary.</p>
@@ -2784,27 +2784,27 @@ export interface PackageListItem {
2784
2784
  * <p>The package's ID.</p>
2785
2785
  * @public
2786
2786
  */
2787
- PackageId?: string;
2787
+ PackageId?: string | undefined;
2788
2788
  /**
2789
2789
  * <p>The package's name.</p>
2790
2790
  * @public
2791
2791
  */
2792
- PackageName?: string;
2792
+ PackageName?: string | undefined;
2793
2793
  /**
2794
2794
  * <p>The package's ARN.</p>
2795
2795
  * @public
2796
2796
  */
2797
- Arn?: string;
2797
+ Arn?: string | undefined;
2798
2798
  /**
2799
2799
  * <p>When the package was created.</p>
2800
2800
  * @public
2801
2801
  */
2802
- CreatedTime?: Date;
2802
+ CreatedTime?: Date | undefined;
2803
2803
  /**
2804
2804
  * <p>The package's tags.</p>
2805
2805
  * @public
2806
2806
  */
2807
- Tags?: Record<string, string>;
2807
+ Tags?: Record<string, string> | undefined;
2808
2808
  }
2809
2809
  /**
2810
2810
  * @public
@@ -2814,12 +2814,12 @@ export interface ListPackagesResponse {
2814
2814
  * <p>A list of packages.</p>
2815
2815
  * @public
2816
2816
  */
2817
- Packages?: PackageListItem[];
2817
+ Packages?: PackageListItem[] | undefined;
2818
2818
  /**
2819
2819
  * <p>A pagination token that's included if more results are available.</p>
2820
2820
  * @public
2821
2821
  */
2822
- NextToken?: string;
2822
+ NextToken?: string | undefined;
2823
2823
  }
2824
2824
  /**
2825
2825
  * @public
@@ -2839,7 +2839,7 @@ export interface ListTagsForResourceResponse {
2839
2839
  * <p>A list of tags.</p>
2840
2840
  * @public
2841
2841
  */
2842
- Tags?: Record<string, string>;
2842
+ Tags?: Record<string, string> | undefined;
2843
2843
  }
2844
2844
  /**
2845
2845
  * @public
@@ -2882,17 +2882,17 @@ export interface ProvisionDeviceRequest {
2882
2882
  * <p>A description for the device.</p>
2883
2883
  * @public
2884
2884
  */
2885
- Description?: string;
2885
+ Description?: string | undefined;
2886
2886
  /**
2887
2887
  * <p>Tags for the device.</p>
2888
2888
  * @public
2889
2889
  */
2890
- Tags?: Record<string, string>;
2890
+ Tags?: Record<string, string> | undefined;
2891
2891
  /**
2892
2892
  * <p>A networking configuration for the device.</p>
2893
2893
  * @public
2894
2894
  */
2895
- NetworkingConfiguration?: NetworkPayload;
2895
+ NetworkingConfiguration?: NetworkPayload | undefined;
2896
2896
  }
2897
2897
  /**
2898
2898
  * @public
@@ -2902,7 +2902,7 @@ export interface ProvisionDeviceResponse {
2902
2902
  * <p>The device's ID.</p>
2903
2903
  * @public
2904
2904
  */
2905
- DeviceId?: string;
2905
+ DeviceId?: string | undefined;
2906
2906
  /**
2907
2907
  * <p>The device's ARN.</p>
2908
2908
  * @public
@@ -2917,12 +2917,12 @@ export interface ProvisionDeviceResponse {
2917
2917
  * <p>The device's configuration bundle.</p>
2918
2918
  * @public
2919
2919
  */
2920
- Certificates?: Uint8Array;
2920
+ Certificates?: Uint8Array | undefined;
2921
2921
  /**
2922
2922
  * <p>The device's IoT thing name.</p>
2923
2923
  * @public
2924
2924
  */
2925
- IotThingName?: string;
2925
+ IotThingName?: string | undefined;
2926
2926
  }
2927
2927
  /**
2928
2928
  * @public
@@ -2932,7 +2932,7 @@ export interface RegisterPackageVersionRequest {
2932
2932
  * <p>An owner account.</p>
2933
2933
  * @public
2934
2934
  */
2935
- OwnerAccount?: string;
2935
+ OwnerAccount?: string | undefined;
2936
2936
  /**
2937
2937
  * <p>A package ID.</p>
2938
2938
  * @public
@@ -2952,7 +2952,7 @@ export interface RegisterPackageVersionRequest {
2952
2952
  * <p>Whether to mark the new version as the latest version.</p>
2953
2953
  * @public
2954
2954
  */
2955
- MarkLatest?: boolean;
2955
+ MarkLatest?: boolean | undefined;
2956
2956
  }
2957
2957
  /**
2958
2958
  * @public
@@ -3052,7 +3052,7 @@ export interface UpdateDeviceMetadataRequest {
3052
3052
  * <p>A description for the device.</p>
3053
3053
  * @public
3054
3054
  */
3055
- Description?: string;
3055
+ Description?: string | undefined;
3056
3056
  }
3057
3057
  /**
3058
3058
  * @public
@@ -3062,7 +3062,7 @@ export interface UpdateDeviceMetadataResponse {
3062
3062
  * <p>The device's ID.</p>
3063
3063
  * @public
3064
3064
  */
3065
- DeviceId?: string;
3065
+ DeviceId?: string | undefined;
3066
3066
  }
3067
3067
  /**
3068
3068
  * @internal