@aws-sdk/client-iot-wireless 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist-cjs/index.js +24 -7
  2. package/dist-es/commands/ListPartnerAccountsCommand.js +1 -1
  3. package/dist-es/models/models_0.js +8 -6
  4. package/dist-es/models/models_1.js +7 -0
  5. package/dist-es/protocols/Aws_restJson1.js +5 -0
  6. package/dist-types/commands/CreateFuotaTaskCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateMulticastGroupCommand.d.ts +6 -0
  8. package/dist-types/commands/GetFuotaTaskCommand.d.ts +1 -0
  9. package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +12 -0
  10. package/dist-types/commands/GetMulticastGroupCommand.d.ts +7 -1
  11. package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +1 -1
  12. package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
  13. package/dist-types/commands/ListEventConfigurationsCommand.d.ts +2 -2
  14. package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  16. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +2 -2
  17. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +1 -0
  19. package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +12 -0
  20. package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +6 -0
  21. package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
  22. package/dist-types/models/models_0.d.ts +665 -631
  23. package/dist-types/models/models_1.d.ts +279 -184
  24. package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +582 -568
  27. package/dist-types/ts3.4/models/models_1.d.ts +214 -179
  28. package/package.json +36 -36
@@ -1,6 +1,86 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
3
- import { ApplicationConfig, CertificateList, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, DownlinkQueueMessage, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, IdentifierType, ImportTaskStatus, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, PositionSolverDetails, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration, SidewalkGetStartImportInfo, SummaryMetricConfiguration, Tag, TraceContent, WirelessDeviceLogOption, WirelessDeviceSidewalkStatus, WirelessDeviceType, WirelessGatewayLogOption } from "./models_0";
3
+ import { ApplicationConfig, CertificateList, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, DownlinkQueueMessage, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, FuotaTaskLogOption, IdentifierType, ImportTaskStatus, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, PositionSolverDetails, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration, SidewalkAccountInfoWithFingerprint, SidewalkGetStartImportInfo, SummaryMetricConfiguration, Tag, TraceContent, WirelessDeviceLogOption, WirelessDeviceSidewalkStatus, WirelessDeviceType, WirelessGatewayLogOption } from "./models_0";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface ListNetworkAnalyzerConfigurationsRequest {
8
+ /**
9
+ * <p>The maximum number of results to return in this operation.</p>
10
+ * @public
11
+ */
12
+ MaxResults?: number | undefined;
13
+ /**
14
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
15
+ * response; otherwise <b>null</b> to receive the first set of
16
+ * results.</p>
17
+ * @public
18
+ */
19
+ NextToken?: string | undefined;
20
+ }
21
+ /**
22
+ * <p>Network analyzer configurations.</p>
23
+ * @public
24
+ */
25
+ export interface NetworkAnalyzerConfigurations {
26
+ /**
27
+ * <p>The Amazon Resource Name of the new resource.</p>
28
+ * @public
29
+ */
30
+ Arn?: string | undefined;
31
+ /**
32
+ * <p>Name of the network analyzer configuration.</p>
33
+ * @public
34
+ */
35
+ Name?: string | undefined;
36
+ }
37
+ /**
38
+ * @public
39
+ */
40
+ export interface ListNetworkAnalyzerConfigurationsResponse {
41
+ /**
42
+ * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
43
+ * @public
44
+ */
45
+ NextToken?: string | undefined;
46
+ /**
47
+ * <p>The list of network analyzer configurations.</p>
48
+ * @public
49
+ */
50
+ NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[] | undefined;
51
+ }
52
+ /**
53
+ * @public
54
+ */
55
+ export interface ListPartnerAccountsRequest {
56
+ /**
57
+ * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
58
+ * response; otherwise <b>null</b> to receive the first set of
59
+ * results.</p>
60
+ * @public
61
+ */
62
+ NextToken?: string | undefined;
63
+ /**
64
+ * <p>The maximum number of results to return in this operation.</p>
65
+ * @public
66
+ */
67
+ MaxResults?: number | undefined;
68
+ }
69
+ /**
70
+ * @public
71
+ */
72
+ export interface ListPartnerAccountsResponse {
73
+ /**
74
+ * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
75
+ * @public
76
+ */
77
+ NextToken?: string | undefined;
78
+ /**
79
+ * <p>The Sidewalk account credentials.</p>
80
+ * @public
81
+ */
82
+ Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
83
+ }
4
84
  /**
5
85
  * @public
6
86
  */
@@ -9,19 +89,19 @@ export interface ListPositionConfigurationsRequest {
9
89
  * <p>Resource type for which position configurations are listed.</p>
10
90
  * @public
11
91
  */
12
- ResourceType?: PositionResourceType;
92
+ ResourceType?: PositionResourceType | undefined;
13
93
  /**
14
94
  * <p>The maximum number of results to return in this operation.</p>
15
95
  * @public
16
96
  */
17
- MaxResults?: number;
97
+ MaxResults?: number | undefined;
18
98
  /**
19
99
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
20
100
  * response; otherwise <b>null</b> to receive the first set of
21
101
  * results.</p>
22
102
  * @public
23
103
  */
24
- NextToken?: string;
104
+ NextToken?: string | undefined;
25
105
  }
26
106
  /**
27
107
  * <p>The wrapper for a position configuration.</p>
@@ -32,23 +112,23 @@ export interface PositionConfigurationItem {
32
112
  * <p>Resource identifier for the position configuration.</p>
33
113
  * @public
34
114
  */
35
- ResourceIdentifier?: string;
115
+ ResourceIdentifier?: string | undefined;
36
116
  /**
37
117
  * <p>Resource type of the resource for the position configuration.</p>
38
118
  * @public
39
119
  */
40
- ResourceType?: PositionResourceType;
120
+ ResourceType?: PositionResourceType | undefined;
41
121
  /**
42
122
  * <p>The details of the positioning solver object used to compute the location.</p>
43
123
  * @public
44
124
  */
45
- Solvers?: PositionSolverDetails;
125
+ Solvers?: PositionSolverDetails | undefined;
46
126
  /**
47
127
  * <p>The position data destination that describes the AWS IoT rule that processes the
48
128
  * device's position data for use by AWS IoT Core for LoRaWAN.</p>
49
129
  * @public
50
130
  */
51
- Destination?: string;
131
+ Destination?: string | undefined;
52
132
  }
53
133
  /**
54
134
  * @public
@@ -58,12 +138,12 @@ export interface ListPositionConfigurationsResponse {
58
138
  * <p>A list of position configurations.</p>
59
139
  * @public
60
140
  */
61
- PositionConfigurationList?: PositionConfigurationItem[];
141
+ PositionConfigurationList?: PositionConfigurationItem[] | undefined;
62
142
  /**
63
143
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
64
144
  * @public
65
145
  */
66
- NextToken?: string;
146
+ NextToken?: string | undefined;
67
147
  }
68
148
  /**
69
149
  * @public
@@ -81,17 +161,17 @@ export interface ListQueuedMessagesRequest {
81
161
  * results.</p>
82
162
  * @public
83
163
  */
84
- NextToken?: string;
164
+ NextToken?: string | undefined;
85
165
  /**
86
166
  * <p>The maximum number of results to return in this operation.</p>
87
167
  * @public
88
168
  */
89
- MaxResults?: number;
169
+ MaxResults?: number | undefined;
90
170
  /**
91
171
  * <p>The wireless device type, whic can be either Sidewalk or LoRaWAN.</p>
92
172
  * @public
93
173
  */
94
- WirelessDeviceType?: WirelessDeviceType;
174
+ WirelessDeviceType?: WirelessDeviceType | undefined;
95
175
  }
96
176
  /**
97
177
  * @public
@@ -103,12 +183,12 @@ export interface ListQueuedMessagesResponse {
103
183
  * results.</p>
104
184
  * @public
105
185
  */
106
- NextToken?: string;
186
+ NextToken?: string | undefined;
107
187
  /**
108
188
  * <p>The messages in the downlink queue.</p>
109
189
  * @public
110
190
  */
111
- DownlinkQueueMessagesList?: DownlinkQueueMessage[];
191
+ DownlinkQueueMessagesList?: DownlinkQueueMessage[] | undefined;
112
192
  }
113
193
  /**
114
194
  * @public
@@ -120,12 +200,12 @@ export interface ListServiceProfilesRequest {
120
200
  * results.</p>
121
201
  * @public
122
202
  */
123
- NextToken?: string;
203
+ NextToken?: string | undefined;
124
204
  /**
125
205
  * <p>The maximum number of results to return in this operation.</p>
126
206
  * @public
127
207
  */
128
- MaxResults?: number;
208
+ MaxResults?: number | undefined;
129
209
  }
130
210
  /**
131
211
  * <p>Information about a service profile.</p>
@@ -136,17 +216,17 @@ export interface ServiceProfile {
136
216
  * <p>The Amazon Resource Name of the resource.</p>
137
217
  * @public
138
218
  */
139
- Arn?: string;
219
+ Arn?: string | undefined;
140
220
  /**
141
221
  * <p>The name of the resource.</p>
142
222
  * @public
143
223
  */
144
- Name?: string;
224
+ Name?: string | undefined;
145
225
  /**
146
226
  * <p>The ID of the service profile.</p>
147
227
  * @public
148
228
  */
149
- Id?: string;
229
+ Id?: string | undefined;
150
230
  }
151
231
  /**
152
232
  * @public
@@ -156,12 +236,12 @@ export interface ListServiceProfilesResponse {
156
236
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
157
237
  * @public
158
238
  */
159
- NextToken?: string;
239
+ NextToken?: string | undefined;
160
240
  /**
161
241
  * <p>The list of service profiles.</p>
162
242
  * @public
163
243
  */
164
- ServiceProfileList?: ServiceProfile[];
244
+ ServiceProfileList?: ServiceProfile[] | undefined;
165
245
  }
166
246
  /**
167
247
  * @public
@@ -182,7 +262,7 @@ export interface ListTagsForResourceResponse {
182
262
  * manage a resource.</p>
183
263
  * @public
184
264
  */
185
- Tags?: Tag[];
265
+ Tags?: Tag[] | undefined;
186
266
  }
187
267
  /**
188
268
  * @public
@@ -192,13 +272,13 @@ export interface ListWirelessDeviceImportTasksRequest {
192
272
  * <p>The maximum number of results to return in this operation.</p>
193
273
  * @public
194
274
  */
195
- MaxResults?: number;
275
+ MaxResults?: number | undefined;
196
276
  /**
197
277
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
198
278
  * response; otherwise <code>null</code> to receive the first set of results.</p>
199
279
  * @public
200
280
  */
201
- NextToken?: string;
281
+ NextToken?: string | undefined;
202
282
  }
203
283
  /**
204
284
  * <p>Information about an import task for wireless devices.</p>
@@ -209,63 +289,63 @@ export interface WirelessDeviceImportTask {
209
289
  * <p>The ID of the wireless device import task.</p>
210
290
  * @public
211
291
  */
212
- Id?: string;
292
+ Id?: string | undefined;
213
293
  /**
214
294
  * <p>The ARN (Amazon Resource Name) of the wireless device import task.</p>
215
295
  * @public
216
296
  */
217
- Arn?: string;
297
+ Arn?: string | undefined;
218
298
  /**
219
299
  * <p>The name of the Sidewalk destination that that describes the IoT rule to route
220
300
  * messages from the device in the import task that will be onboarded to AWS IoT
221
301
  * Wireless</p>
222
302
  * @public
223
303
  */
224
- DestinationName?: string;
304
+ DestinationName?: string | undefined;
225
305
  /**
226
306
  * <p>The Sidewalk-related information of the wireless device import task.</p>
227
307
  * @public
228
308
  */
229
- Sidewalk?: SidewalkGetStartImportInfo;
309
+ Sidewalk?: SidewalkGetStartImportInfo | undefined;
230
310
  /**
231
311
  * <p>The time at which the import task was created.</p>
232
312
  * @public
233
313
  */
234
- CreationTime?: Date;
314
+ CreationTime?: Date | undefined;
235
315
  /**
236
316
  * <p>The status information of the wireless device import task.</p>
237
317
  * @public
238
318
  */
239
- Status?: ImportTaskStatus;
319
+ Status?: ImportTaskStatus | undefined;
240
320
  /**
241
321
  * <p>The reason that provides additional information about the import task status.</p>
242
322
  * @public
243
323
  */
244
- StatusReason?: string;
324
+ StatusReason?: string | undefined;
245
325
  /**
246
326
  * <p>The summary information of count of wireless devices that are waiting for the control
247
327
  * log to be added to an import task.</p>
248
328
  * @public
249
329
  */
250
- InitializedImportedDeviceCount?: number;
330
+ InitializedImportedDeviceCount?: number | undefined;
251
331
  /**
252
332
  * <p>The summary information of count of wireless devices in an import task that are
253
333
  * waiting in the queue to be onboarded.</p>
254
334
  * @public
255
335
  */
256
- PendingImportedDeviceCount?: number;
336
+ PendingImportedDeviceCount?: number | undefined;
257
337
  /**
258
338
  * <p>The summary information of count of wireless devices in an import task that have been
259
339
  * onboarded to the import task.</p>
260
340
  * @public
261
341
  */
262
- OnboardedImportedDeviceCount?: number;
342
+ OnboardedImportedDeviceCount?: number | undefined;
263
343
  /**
264
344
  * <p>The summary information of count of wireless devices in an import task that failed to
265
345
  * onboarded to the import task.</p>
266
346
  * @public
267
347
  */
268
- FailedImportedDeviceCount?: number;
348
+ FailedImportedDeviceCount?: number | undefined;
269
349
  }
270
350
  /**
271
351
  * @public
@@ -276,13 +356,13 @@ export interface ListWirelessDeviceImportTasksResponse {
276
356
  * additional results.</p>
277
357
  * @public
278
358
  */
279
- NextToken?: string;
359
+ NextToken?: string | undefined;
280
360
  /**
281
361
  * <p>List of import tasks and summary information of onboarding status of devices in each
282
362
  * import task.</p>
283
363
  * @public
284
364
  */
285
- WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
365
+ WirelessDeviceImportTaskList?: WirelessDeviceImportTask[] | undefined;
286
366
  }
287
367
  /**
288
368
  * @public
@@ -292,44 +372,44 @@ export interface ListWirelessDevicesRequest {
292
372
  * <p>The maximum number of results to return in this operation.</p>
293
373
  * @public
294
374
  */
295
- MaxResults?: number;
375
+ MaxResults?: number | undefined;
296
376
  /**
297
377
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
298
378
  * response; otherwise <b>null</b> to receive the first set of
299
379
  * results.</p>
300
380
  * @public
301
381
  */
302
- NextToken?: string;
382
+ NextToken?: string | undefined;
303
383
  /**
304
384
  * <p>A filter to list only the wireless devices that use this destination.</p>
305
385
  * @public
306
386
  */
307
- DestinationName?: string;
387
+ DestinationName?: string | undefined;
308
388
  /**
309
389
  * <p>A filter to list only the wireless devices that use this device profile.</p>
310
390
  * @public
311
391
  */
312
- DeviceProfileId?: string;
392
+ DeviceProfileId?: string | undefined;
313
393
  /**
314
394
  * <p>A filter to list only the wireless devices that use this service profile.</p>
315
395
  * @public
316
396
  */
317
- ServiceProfileId?: string;
397
+ ServiceProfileId?: string | undefined;
318
398
  /**
319
399
  * <p>A filter to list only the wireless devices that use this wireless device type.</p>
320
400
  * @public
321
401
  */
322
- WirelessDeviceType?: WirelessDeviceType;
402
+ WirelessDeviceType?: WirelessDeviceType | undefined;
323
403
  /**
324
404
  * <p>The ID of a FUOTA task.</p>
325
405
  * @public
326
406
  */
327
- FuotaTaskId?: string;
407
+ FuotaTaskId?: string | undefined;
328
408
  /**
329
409
  * <p>The ID of the multicast group.</p>
330
410
  * @public
331
411
  */
332
- MulticastGroupId?: string;
412
+ MulticastGroupId?: string | undefined;
333
413
  }
334
414
  /**
335
415
  * <p>LoRaWAN object for list functions.</p>
@@ -340,7 +420,7 @@ export interface LoRaWANListDevice {
340
420
  * <p>The DevEUI value.</p>
341
421
  * @public
342
422
  */
343
- DevEui?: string;
423
+ DevEui?: string | undefined;
344
424
  }
345
425
  /**
346
426
  * <p>Sidewalk object used by list functions.</p>
@@ -351,32 +431,32 @@ export interface SidewalkListDevice {
351
431
  * <p>The Sidewalk Amazon ID.</p>
352
432
  * @public
353
433
  */
354
- AmazonId?: string;
434
+ AmazonId?: string | undefined;
355
435
  /**
356
436
  * <p>The sidewalk device identification.</p>
357
437
  * @public
358
438
  */
359
- SidewalkId?: string;
439
+ SidewalkId?: string | undefined;
360
440
  /**
361
441
  * <p>The Sidewalk manufacturing series number.</p>
362
442
  * @public
363
443
  */
364
- SidewalkManufacturingSn?: string;
444
+ SidewalkManufacturingSn?: string | undefined;
365
445
  /**
366
446
  * <p>The sidewalk device certificates for Ed25519 and P256r1.</p>
367
447
  * @public
368
448
  */
369
- DeviceCertificates?: CertificateList[];
449
+ DeviceCertificates?: CertificateList[] | undefined;
370
450
  /**
371
451
  * <p>Sidewalk object used by list functions.</p>
372
452
  * @public
373
453
  */
374
- DeviceProfileId?: string;
454
+ DeviceProfileId?: string | undefined;
375
455
  /**
376
456
  * <p>The status of the Sidewalk devices, such as provisioned or registered.</p>
377
457
  * @public
378
458
  */
379
- Status?: WirelessDeviceSidewalkStatus;
459
+ Status?: WirelessDeviceSidewalkStatus | undefined;
380
460
  }
381
461
  /**
382
462
  * <p>Information about a wireless device's operation.</p>
@@ -387,27 +467,27 @@ export interface WirelessDeviceStatistics {
387
467
  * <p>The Amazon Resource Name of the resource.</p>
388
468
  * @public
389
469
  */
390
- Arn?: string;
470
+ Arn?: string | undefined;
391
471
  /**
392
472
  * <p>The ID of the wireless device reporting the data.</p>
393
473
  * @public
394
474
  */
395
- Id?: string;
475
+ Id?: string | undefined;
396
476
  /**
397
477
  * <p>The wireless device type.</p>
398
478
  * @public
399
479
  */
400
- Type?: WirelessDeviceType;
480
+ Type?: WirelessDeviceType | undefined;
401
481
  /**
402
482
  * <p>The name of the resource.</p>
403
483
  * @public
404
484
  */
405
- Name?: string;
485
+ Name?: string | undefined;
406
486
  /**
407
487
  * <p>The name of the destination to which the device is assigned.</p>
408
488
  * @public
409
489
  */
410
- DestinationName?: string;
490
+ DestinationName?: string | undefined;
411
491
  /**
412
492
  * <p>The date and time when the most recent uplink was received.</p>
413
493
  * <note>
@@ -415,32 +495,32 @@ export interface WirelessDeviceStatistics {
415
495
  * </note>
416
496
  * @public
417
497
  */
418
- LastUplinkReceivedAt?: string;
498
+ LastUplinkReceivedAt?: string | undefined;
419
499
  /**
420
500
  * <p>LoRaWAN device info.</p>
421
501
  * @public
422
502
  */
423
- LoRaWAN?: LoRaWANListDevice;
503
+ LoRaWAN?: LoRaWANListDevice | undefined;
424
504
  /**
425
505
  * <p>The Sidewalk account credentials.</p>
426
506
  * @public
427
507
  */
428
- Sidewalk?: SidewalkListDevice;
508
+ Sidewalk?: SidewalkListDevice | undefined;
429
509
  /**
430
510
  * <p>The status of a wireless device in a FUOTA task.</p>
431
511
  * @public
432
512
  */
433
- FuotaDeviceStatus?: FuotaDeviceStatus;
513
+ FuotaDeviceStatus?: FuotaDeviceStatus | undefined;
434
514
  /**
435
515
  * <p>The status of the wireless device in the multicast group.</p>
436
516
  * @public
437
517
  */
438
- MulticastDeviceStatus?: string;
518
+ MulticastDeviceStatus?: string | undefined;
439
519
  /**
440
520
  * <p>Id of the multicast group.</p>
441
521
  * @public
442
522
  */
443
- McGroupId?: number;
523
+ McGroupId?: number | undefined;
444
524
  }
445
525
  /**
446
526
  * @public
@@ -450,12 +530,12 @@ export interface ListWirelessDevicesResponse {
450
530
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
451
531
  * @public
452
532
  */
453
- NextToken?: string;
533
+ NextToken?: string | undefined;
454
534
  /**
455
535
  * <p>The ID of the wireless device.</p>
456
536
  * @public
457
537
  */
458
- WirelessDeviceList?: WirelessDeviceStatistics[];
538
+ WirelessDeviceList?: WirelessDeviceStatistics[] | undefined;
459
539
  }
460
540
  /**
461
541
  * @public
@@ -467,12 +547,12 @@ export interface ListWirelessGatewaysRequest {
467
547
  * results.</p>
468
548
  * @public
469
549
  */
470
- NextToken?: string;
550
+ NextToken?: string | undefined;
471
551
  /**
472
552
  * <p>The maximum number of results to return in this operation.</p>
473
553
  * @public
474
554
  */
475
- MaxResults?: number;
555
+ MaxResults?: number | undefined;
476
556
  }
477
557
  /**
478
558
  * <p>Information about a wireless gateway's operation.</p>
@@ -483,27 +563,27 @@ export interface WirelessGatewayStatistics {
483
563
  * <p>The Amazon Resource Name of the resource.</p>
484
564
  * @public
485
565
  */
486
- Arn?: string;
566
+ Arn?: string | undefined;
487
567
  /**
488
568
  * <p>The ID of the wireless gateway reporting the data.</p>
489
569
  * @public
490
570
  */
491
- Id?: string;
571
+ Id?: string | undefined;
492
572
  /**
493
573
  * <p>The name of the resource.</p>
494
574
  * @public
495
575
  */
496
- Name?: string;
576
+ Name?: string | undefined;
497
577
  /**
498
578
  * <p>The description of the resource.</p>
499
579
  * @public
500
580
  */
501
- Description?: string;
581
+ Description?: string | undefined;
502
582
  /**
503
583
  * <p>LoRaWAN gateway info.</p>
504
584
  * @public
505
585
  */
506
- LoRaWAN?: LoRaWANGateway;
586
+ LoRaWAN?: LoRaWANGateway | undefined;
507
587
  /**
508
588
  * <p>The date and time when the most recent uplink was received.</p>
509
589
  * <note>
@@ -511,7 +591,7 @@ export interface WirelessGatewayStatistics {
511
591
  * </note>
512
592
  * @public
513
593
  */
514
- LastUplinkReceivedAt?: string;
594
+ LastUplinkReceivedAt?: string | undefined;
515
595
  }
516
596
  /**
517
597
  * @public
@@ -521,12 +601,12 @@ export interface ListWirelessGatewaysResponse {
521
601
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
522
602
  * @public
523
603
  */
524
- NextToken?: string;
604
+ NextToken?: string | undefined;
525
605
  /**
526
606
  * <p>The ID of the wireless gateway.</p>
527
607
  * @public
528
608
  */
529
- WirelessGatewayList?: WirelessGatewayStatistics[];
609
+ WirelessGatewayList?: WirelessGatewayStatistics[] | undefined;
530
610
  }
531
611
  /**
532
612
  * @public
@@ -547,20 +627,20 @@ export interface ListWirelessGatewayTaskDefinitionsRequest {
547
627
  * <p>The maximum number of results to return in this operation.</p>
548
628
  * @public
549
629
  */
550
- MaxResults?: number;
630
+ MaxResults?: number | undefined;
551
631
  /**
552
632
  * <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
553
633
  * response; otherwise <b>null</b> to receive the first set of
554
634
  * results.</p>
555
635
  * @public
556
636
  */
557
- NextToken?: string;
637
+ NextToken?: string | undefined;
558
638
  /**
559
639
  * <p>A filter to list only the wireless gateway task definitions that use this task
560
640
  * definition type.</p>
561
641
  * @public
562
642
  */
563
- TaskDefinitionType?: WirelessGatewayTaskDefinitionType;
643
+ TaskDefinitionType?: WirelessGatewayTaskDefinitionType | undefined;
564
644
  }
565
645
  /**
566
646
  * <p>LoRaWANUpdateGatewayTaskEntry object.</p>
@@ -571,12 +651,12 @@ export interface LoRaWANUpdateGatewayTaskEntry {
571
651
  * <p>The version of the gateways that should receive the update.</p>
572
652
  * @public
573
653
  */
574
- CurrentVersion?: LoRaWANGatewayVersion;
654
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
575
655
  /**
576
656
  * <p>The firmware version to update the gateway to.</p>
577
657
  * @public
578
658
  */
579
- UpdateVersion?: LoRaWANGatewayVersion;
659
+ UpdateVersion?: LoRaWANGatewayVersion | undefined;
580
660
  }
581
661
  /**
582
662
  * <p>UpdateWirelessGatewayTaskEntry object.</p>
@@ -587,17 +667,17 @@ export interface UpdateWirelessGatewayTaskEntry {
587
667
  * <p>The ID of the new wireless gateway task entry.</p>
588
668
  * @public
589
669
  */
590
- Id?: string;
670
+ Id?: string | undefined;
591
671
  /**
592
672
  * <p>The properties that relate to the LoRaWAN wireless gateway.</p>
593
673
  * @public
594
674
  */
595
- LoRaWAN?: LoRaWANUpdateGatewayTaskEntry;
675
+ LoRaWAN?: LoRaWANUpdateGatewayTaskEntry | undefined;
596
676
  /**
597
677
  * <p>The Amazon Resource Name of the resource.</p>
598
678
  * @public
599
679
  */
600
- Arn?: string;
680
+ Arn?: string | undefined;
601
681
  }
602
682
  /**
603
683
  * @public
@@ -607,12 +687,12 @@ export interface ListWirelessGatewayTaskDefinitionsResponse {
607
687
  * <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
608
688
  * @public
609
689
  */
610
- NextToken?: string;
690
+ NextToken?: string | undefined;
611
691
  /**
612
692
  * <p>The list of task definitions.</p>
613
693
  * @public
614
694
  */
615
- TaskDefinitions?: UpdateWirelessGatewayTaskEntry[];
695
+ TaskDefinitions?: UpdateWirelessGatewayTaskEntry[] | undefined;
616
696
  }
617
697
  /**
618
698
  * <p>Information about the Semtech GNSS solver configuration.</p>
@@ -639,7 +719,7 @@ export interface PositionSolverConfigurations {
639
719
  * <p>The Semtech GNSS solver configuration object.</p>
640
720
  * @public
641
721
  */
642
- SemtechGnss?: SemtechGnssConfiguration;
722
+ SemtechGnss?: SemtechGnssConfiguration | undefined;
643
723
  }
644
724
  /**
645
725
  * @public
@@ -661,13 +741,13 @@ export interface PutPositionConfigurationRequest {
661
741
  * resource.</p>
662
742
  * @public
663
743
  */
664
- Solvers?: PositionSolverConfigurations;
744
+ Solvers?: PositionSolverConfigurations | undefined;
665
745
  /**
666
746
  * <p>The position data destination that describes the AWS IoT rule that processes the
667
747
  * device's position data for use by AWS IoT Core for LoRaWAN.</p>
668
748
  * @public
669
749
  */
670
- Destination?: string;
750
+ Destination?: string | undefined;
671
751
  }
672
752
  /**
673
753
  * @public
@@ -685,8 +765,8 @@ export interface PutResourceLogLevelRequest {
685
765
  */
686
766
  ResourceIdentifier: string | undefined;
687
767
  /**
688
- * <p>The type of the resource, which can be <code>WirelessDevice</code> or
689
- * <code>WirelessGateway</code>.</p>
768
+ * <p>The type of the resource, which can be <code>WirelessDevice</code>,
769
+ * <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
690
770
  * @public
691
771
  */
692
772
  ResourceType: string | undefined;
@@ -724,8 +804,8 @@ export interface ResetResourceLogLevelRequest {
724
804
  */
725
805
  ResourceIdentifier: string | undefined;
726
806
  /**
727
- * <p>The type of the resource, which can be <code>WirelessDevice</code> or
728
- * <code>WirelessGateway</code>.</p>
807
+ * <p>The type of the resource, which can be <code>WirelessDevice</code>,
808
+ * <code>WirelessGateway</code>, or <code>FuotaTask</code>.</p>
729
809
  * @public
730
810
  */
731
811
  ResourceType: string | undefined;
@@ -744,7 +824,7 @@ export interface LoRaWANMulticastMetadata {
744
824
  * <p>The Fport value.</p>
745
825
  * @public
746
826
  */
747
- FPort?: number;
827
+ FPort?: number | undefined;
748
828
  }
749
829
  /**
750
830
  * <p>Wireless metadata that is to be sent to multicast group.</p>
@@ -755,7 +835,7 @@ export interface MulticastWirelessMetadata {
755
835
  * <p>The metadata information of the LoRaWAN multicast group.</p>
756
836
  * @public
757
837
  */
758
- LoRaWAN?: LoRaWANMulticastMetadata;
838
+ LoRaWAN?: LoRaWANMulticastMetadata | undefined;
759
839
  }
760
840
  /**
761
841
  * @public
@@ -785,7 +865,7 @@ export interface SendDataToMulticastGroupResponse {
785
865
  * <p>ID of a multicast group message.</p>
786
866
  * @public
787
867
  */
788
- MessageId?: string;
868
+ MessageId?: string | undefined;
789
869
  }
790
870
  /**
791
871
  * @public
@@ -810,18 +890,18 @@ export interface SidewalkSendDataToDevice {
810
890
  * <p>The sequence number.</p>
811
891
  * @public
812
892
  */
813
- Seq?: number;
893
+ Seq?: number | undefined;
814
894
  /**
815
895
  * <p>Sidewalk device message type. Default value is
816
896
  * <code>CUSTOM_COMMAND_ID_NOTIFY</code>.</p>
817
897
  * @public
818
898
  */
819
- MessageType?: MessageType;
899
+ MessageType?: MessageType | undefined;
820
900
  /**
821
901
  * <p>The duration of time in seconds to retry sending the ACK.</p>
822
902
  * @public
823
903
  */
824
- AckModeRetryDurationSecs?: number;
904
+ AckModeRetryDurationSecs?: number | undefined;
825
905
  }
826
906
  /**
827
907
  * <p>WirelessMetadata object.</p>
@@ -832,12 +912,12 @@ export interface WirelessMetadata {
832
912
  * <p>LoRaWAN device info.</p>
833
913
  * @public
834
914
  */
835
- LoRaWAN?: LoRaWANSendDataToDevice;
915
+ LoRaWAN?: LoRaWANSendDataToDevice | undefined;
836
916
  /**
837
917
  * <p>The Sidewalk account credentials.</p>
838
918
  * @public
839
919
  */
840
- Sidewalk?: SidewalkSendDataToDevice;
920
+ Sidewalk?: SidewalkSendDataToDevice | undefined;
841
921
  }
842
922
  /**
843
923
  * @public
@@ -863,7 +943,7 @@ export interface SendDataToWirelessDeviceRequest {
863
943
  * <p>Metadata about the message request.</p>
864
944
  * @public
865
945
  */
866
- WirelessMetadata?: WirelessMetadata;
946
+ WirelessMetadata?: WirelessMetadata | undefined;
867
947
  }
868
948
  /**
869
949
  * @public
@@ -873,7 +953,7 @@ export interface SendDataToWirelessDeviceResponse {
873
953
  * <p>The ID of the message sent to the wireless device.</p>
874
954
  * @public
875
955
  */
876
- MessageId?: string;
956
+ MessageId?: string | undefined;
877
957
  }
878
958
  /**
879
959
  * @public
@@ -889,13 +969,13 @@ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
889
969
  * disassociate process.</p>
890
970
  * @public
891
971
  */
892
- QueryString?: string;
972
+ QueryString?: string | undefined;
893
973
  /**
894
974
  * <p>The tag to attach to the specified resource. Tags are metadata that you can use to
895
975
  * manage a resource.</p>
896
976
  * @public
897
977
  */
898
- Tags?: Tag[];
978
+ Tags?: Tag[] | undefined;
899
979
  }
900
980
  /**
901
981
  * @public
@@ -916,13 +996,13 @@ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
916
996
  * disassociate process.</p>
917
997
  * @public
918
998
  */
919
- QueryString?: string;
999
+ QueryString?: string | undefined;
920
1000
  /**
921
1001
  * <p>The tag to attach to the specified resource. Tags are metadata that you can use to
922
1002
  * manage a resource.</p>
923
1003
  * @public
924
1004
  */
925
- Tags?: Tag[];
1005
+ Tags?: Tag[] | undefined;
926
1006
  }
927
1007
  /**
928
1008
  * @public
@@ -938,7 +1018,7 @@ export interface LoRaWANStartFuotaTask {
938
1018
  * <p>Start time of a FUOTA task.</p>
939
1019
  * @public
940
1020
  */
941
- StartTime?: Date;
1021
+ StartTime?: Date | undefined;
942
1022
  }
943
1023
  /**
944
1024
  * @public
@@ -953,7 +1033,7 @@ export interface StartFuotaTaskRequest {
953
1033
  * <p>The LoRaWAN information used to start a FUOTA task.</p>
954
1034
  * @public
955
1035
  */
956
- LoRaWAN?: LoRaWANStartFuotaTask;
1036
+ LoRaWAN?: LoRaWANStartFuotaTask | undefined;
957
1037
  }
958
1038
  /**
959
1039
  * @public
@@ -990,7 +1070,7 @@ export interface SidewalkSingleStartImportInfo {
990
1070
  * task.</p>
991
1071
  * @public
992
1072
  */
993
- SidewalkManufacturingSn?: string;
1073
+ SidewalkManufacturingSn?: string | undefined;
994
1074
  }
995
1075
  /**
996
1076
  * @public
@@ -1011,18 +1091,18 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
1011
1091
  * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1012
1092
  * @public
1013
1093
  */
1014
- ClientRequestToken?: string;
1094
+ ClientRequestToken?: string | undefined;
1015
1095
  /**
1016
1096
  * <p>The name of the wireless device for which an import task is being started.</p>
1017
1097
  * @public
1018
1098
  */
1019
- DeviceName?: string;
1099
+ DeviceName?: string | undefined;
1020
1100
  /**
1021
1101
  * <p>The tag to attach to the specified resource. Tags are metadata that you can use to
1022
1102
  * manage a resource.</p>
1023
1103
  * @public
1024
1104
  */
1025
- Tags?: Tag[];
1105
+ Tags?: Tag[] | undefined;
1026
1106
  /**
1027
1107
  * <p>The Sidewalk-related parameters for importing a single wireless device.</p>
1028
1108
  * @public
@@ -1037,12 +1117,12 @@ export interface StartSingleWirelessDeviceImportTaskResponse {
1037
1117
  * <p>The import task ID.</p>
1038
1118
  * @public
1039
1119
  */
1040
- Id?: string;
1120
+ Id?: string | undefined;
1041
1121
  /**
1042
1122
  * <p>The ARN (Amazon Resource Name) of the import task.</p>
1043
1123
  * @public
1044
1124
  */
1045
- Arn?: string;
1125
+ Arn?: string | undefined;
1046
1126
  }
1047
1127
  /**
1048
1128
  * <p>Information about an import task created for bulk provisioning.</p>
@@ -1054,13 +1134,13 @@ export interface SidewalkStartImportInfo {
1054
1134
  * task.</p>
1055
1135
  * @public
1056
1136
  */
1057
- DeviceCreationFile?: string;
1137
+ DeviceCreationFile?: string | undefined;
1058
1138
  /**
1059
1139
  * <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
1060
1140
  * bucket.</p>
1061
1141
  * @public
1062
1142
  */
1063
- Role?: string;
1143
+ Role?: string | undefined;
1064
1144
  }
1065
1145
  /**
1066
1146
  * @public
@@ -1081,13 +1161,13 @@ export interface StartWirelessDeviceImportTaskRequest {
1081
1161
  * For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
1082
1162
  * @public
1083
1163
  */
1084
- ClientRequestToken?: string;
1164
+ ClientRequestToken?: string | undefined;
1085
1165
  /**
1086
1166
  * <p>The tag to attach to the specified resource. Tags are metadata that you can use to
1087
1167
  * manage a resource.</p>
1088
1168
  * @public
1089
1169
  */
1090
- Tags?: Tag[];
1170
+ Tags?: Tag[] | undefined;
1091
1171
  /**
1092
1172
  * <p>The Sidewalk-related parameters for importing wireless devices that need to be
1093
1173
  * provisioned in bulk.</p>
@@ -1103,12 +1183,12 @@ export interface StartWirelessDeviceImportTaskResponse {
1103
1183
  * <p>The import task ID.</p>
1104
1184
  * @public
1105
1185
  */
1106
- Id?: string;
1186
+ Id?: string | undefined;
1107
1187
  /**
1108
1188
  * <p>The ARN (Amazon Resource Name) of the import task.</p>
1109
1189
  * @public
1110
1190
  */
1111
- Arn?: string;
1191
+ Arn?: string | undefined;
1112
1192
  }
1113
1193
  /**
1114
1194
  * @public
@@ -1138,12 +1218,12 @@ export interface TagResourceResponse {
1138
1218
  export declare class TooManyTagsException extends __BaseException {
1139
1219
  readonly name: "TooManyTagsException";
1140
1220
  readonly $fault: "client";
1141
- Message?: string;
1221
+ Message?: string | undefined;
1142
1222
  /**
1143
1223
  * <p>Name of the resource that exceeds maximum number of tags allowed.</p>
1144
1224
  * @public
1145
1225
  */
1146
- ResourceName?: string;
1226
+ ResourceName?: string | undefined;
1147
1227
  /**
1148
1228
  * @internal
1149
1229
  */
@@ -1167,7 +1247,7 @@ export interface TestWirelessDeviceResponse {
1167
1247
  * <p>The result returned by the test.</p>
1168
1248
  * @public
1169
1249
  */
1170
- Result?: string;
1250
+ Result?: string | undefined;
1171
1251
  }
1172
1252
  /**
1173
1253
  * @public
@@ -1202,22 +1282,22 @@ export interface UpdateDestinationRequest {
1202
1282
  * <p>The type of value in <code>Expression</code>.</p>
1203
1283
  * @public
1204
1284
  */
1205
- ExpressionType?: ExpressionType;
1285
+ ExpressionType?: ExpressionType | undefined;
1206
1286
  /**
1207
1287
  * <p>The new rule name or topic rule to send messages to.</p>
1208
1288
  * @public
1209
1289
  */
1210
- Expression?: string;
1290
+ Expression?: string | undefined;
1211
1291
  /**
1212
1292
  * <p>A new description of the resource.</p>
1213
1293
  * @public
1214
1294
  */
1215
- Description?: string;
1295
+ Description?: string | undefined;
1216
1296
  /**
1217
1297
  * <p>The ARN of the IAM Role that authorizes the destination.</p>
1218
1298
  * @public
1219
1299
  */
1220
- RoleArn?: string;
1300
+ RoleArn?: string | undefined;
1221
1301
  }
1222
1302
  /**
1223
1303
  * @public
@@ -1233,31 +1313,31 @@ export interface UpdateEventConfigurationByResourceTypesRequest {
1233
1313
  * disabling wireless gateway topic.</p>
1234
1314
  * @public
1235
1315
  */
1236
- DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
1316
+ DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration | undefined;
1237
1317
  /**
1238
1318
  * <p>Proximity resource type event configuration object for enabling and disabling wireless
1239
1319
  * gateway topic.</p>
1240
1320
  * @public
1241
1321
  */
1242
- Proximity?: ProximityResourceTypeEventConfiguration;
1322
+ Proximity?: ProximityResourceTypeEventConfiguration | undefined;
1243
1323
  /**
1244
1324
  * <p>Join resource type event configuration object for enabling and disabling wireless
1245
1325
  * device topic.</p>
1246
1326
  * @public
1247
1327
  */
1248
- Join?: JoinResourceTypeEventConfiguration;
1328
+ Join?: JoinResourceTypeEventConfiguration | undefined;
1249
1329
  /**
1250
1330
  * <p>Connection status resource type event configuration object for enabling and disabling
1251
1331
  * wireless gateway topic.</p>
1252
1332
  * @public
1253
1333
  */
1254
- ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
1334
+ ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
1255
1335
  /**
1256
1336
  * <p>Message delivery status resource type event configuration object for enabling and
1257
1337
  * disabling wireless device topic.</p>
1258
1338
  * @public
1259
1339
  */
1260
- MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
1340
+ MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration | undefined;
1261
1341
  }
1262
1342
  /**
1263
1343
  * @public
@@ -1277,28 +1357,28 @@ export interface UpdateFuotaTaskRequest {
1277
1357
  * <p>The name of a FUOTA task.</p>
1278
1358
  * @public
1279
1359
  */
1280
- Name?: string;
1360
+ Name?: string | undefined;
1281
1361
  /**
1282
1362
  * <p>The description of the new resource.</p>
1283
1363
  * @public
1284
1364
  */
1285
- Description?: string;
1365
+ Description?: string | undefined;
1286
1366
  /**
1287
1367
  * <p>The LoRaWAN information used with a FUOTA task.</p>
1288
1368
  * @public
1289
1369
  */
1290
- LoRaWAN?: LoRaWANFuotaTask;
1370
+ LoRaWAN?: LoRaWANFuotaTask | undefined;
1291
1371
  /**
1292
1372
  * <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
1293
1373
  * task.</p>
1294
1374
  * @public
1295
1375
  */
1296
- FirmwareUpdateImage?: string;
1376
+ FirmwareUpdateImage?: string | undefined;
1297
1377
  /**
1298
1378
  * <p>The firmware update role that is to be used with a FUOTA task.</p>
1299
1379
  * @public
1300
1380
  */
1301
- FirmwareUpdateRole?: string;
1381
+ FirmwareUpdateRole?: string | undefined;
1302
1382
  /**
1303
1383
  * <p>The percentage of the added fragments that are redundant. For example, if the size of
1304
1384
  * the firmware image file is 100 bytes and the fragment size is 10 bytes, with
@@ -1306,13 +1386,13 @@ export interface UpdateFuotaTaskRequest {
1306
1386
  * is (100 / 10) + (100 / 10 * 50%) = 15.</p>
1307
1387
  * @public
1308
1388
  */
1309
- RedundancyPercent?: number;
1389
+ RedundancyPercent?: number | undefined;
1310
1390
  /**
1311
1391
  * <p>The size of each fragment in bytes. This parameter is supported only for FUOTA tasks
1312
1392
  * with multicast groups.</p>
1313
1393
  * @public
1314
1394
  */
1315
- FragmentSizeBytes?: number;
1395
+ FragmentSizeBytes?: number | undefined;
1316
1396
  /**
1317
1397
  * <p>The interval for sending fragments in milliseconds, rounded to the nearest
1318
1398
  * second.</p>
@@ -1324,7 +1404,13 @@ export interface UpdateFuotaTaskRequest {
1324
1404
  * </note>
1325
1405
  * @public
1326
1406
  */
1327
- FragmentIntervalMS?: number;
1407
+ FragmentIntervalMS?: number | undefined;
1408
+ /**
1409
+ * <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
1410
+ * It is sent transparently to the device. It is a binary field encoded in base64</p>
1411
+ * @public
1412
+ */
1413
+ Descriptor?: string | undefined;
1328
1414
  }
1329
1415
  /**
1330
1416
  * @public
@@ -1341,17 +1427,22 @@ export interface UpdateLogLevelsByResourceTypesRequest {
1341
1427
  * or to <code>INFO</code> for more detailed logs.</p>
1342
1428
  * @public
1343
1429
  */
1344
- DefaultLogLevel?: LogLevel;
1430
+ DefaultLogLevel?: LogLevel | undefined;
1431
+ /**
1432
+ * <p>The list of fuota task log options.</p>
1433
+ * @public
1434
+ */
1435
+ FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
1345
1436
  /**
1346
1437
  * <p>The list of wireless device log options.</p>
1347
1438
  * @public
1348
1439
  */
1349
- WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
1440
+ WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
1350
1441
  /**
1351
1442
  * <p>The list of wireless gateway log options.</p>
1352
1443
  * @public
1353
1444
  */
1354
- WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
1445
+ WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
1355
1446
  }
1356
1447
  /**
1357
1448
  * @public
@@ -1366,7 +1457,7 @@ export interface UpdateMetricConfigurationRequest {
1366
1457
  * <p>The value to be used to set summary metric configuration.</p>
1367
1458
  * @public
1368
1459
  */
1369
- SummaryMetric?: SummaryMetricConfiguration;
1460
+ SummaryMetric?: SummaryMetricConfiguration | undefined;
1370
1461
  }
1371
1462
  /**
1372
1463
  * @public
@@ -1386,17 +1477,17 @@ export interface UpdateMulticastGroupRequest {
1386
1477
  * <p>The name of the multicast group.</p>
1387
1478
  * @public
1388
1479
  */
1389
- Name?: string;
1480
+ Name?: string | undefined;
1390
1481
  /**
1391
1482
  * <p>The description of the new resource.</p>
1392
1483
  * @public
1393
1484
  */
1394
- Description?: string;
1485
+ Description?: string | undefined;
1395
1486
  /**
1396
1487
  * <p>The LoRaWAN information that is to be used with the multicast group.</p>
1397
1488
  * @public
1398
1489
  */
1399
- LoRaWAN?: LoRaWANMulticast;
1490
+ LoRaWAN?: LoRaWANMulticast | undefined;
1400
1491
  }
1401
1492
  /**
1402
1493
  * @public
@@ -1416,48 +1507,48 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
1416
1507
  * <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
1417
1508
  * @public
1418
1509
  */
1419
- TraceContent?: TraceContent;
1510
+ TraceContent?: TraceContent | undefined;
1420
1511
  /**
1421
1512
  * <p>Wireless device resources to add to the network analyzer configuration. Provide the
1422
1513
  * <code>WirelessDeviceId</code> of the resource to add in the input array.</p>
1423
1514
  * @public
1424
1515
  */
1425
- WirelessDevicesToAdd?: string[];
1516
+ WirelessDevicesToAdd?: string[] | undefined;
1426
1517
  /**
1427
1518
  * <p>Wireless device resources to remove from the network analyzer configuration. Provide
1428
1519
  * the <code>WirelessDeviceId</code> of the resources to remove in the input array.</p>
1429
1520
  * @public
1430
1521
  */
1431
- WirelessDevicesToRemove?: string[];
1522
+ WirelessDevicesToRemove?: string[] | undefined;
1432
1523
  /**
1433
1524
  * <p>Wireless gateway resources to add to the network analyzer configuration. Provide the
1434
1525
  * <code>WirelessGatewayId</code> of the resource to add in the input array.</p>
1435
1526
  * @public
1436
1527
  */
1437
- WirelessGatewaysToAdd?: string[];
1528
+ WirelessGatewaysToAdd?: string[] | undefined;
1438
1529
  /**
1439
1530
  * <p>Wireless gateway resources to remove from the network analyzer configuration. Provide
1440
1531
  * the <code>WirelessGatewayId</code> of the resources to remove in the input array.</p>
1441
1532
  * @public
1442
1533
  */
1443
- WirelessGatewaysToRemove?: string[];
1534
+ WirelessGatewaysToRemove?: string[] | undefined;
1444
1535
  /**
1445
1536
  * <p>The description of the new resource.</p>
1446
1537
  * @public
1447
1538
  */
1448
- Description?: string;
1539
+ Description?: string | undefined;
1449
1540
  /**
1450
1541
  * <p>Multicast group resources to add to the network analyzer configuration. Provide the
1451
1542
  * <code>MulticastGroupId</code> of the resource to add in the input array.</p>
1452
1543
  * @public
1453
1544
  */
1454
- MulticastGroupsToAdd?: string[];
1545
+ MulticastGroupsToAdd?: string[] | undefined;
1455
1546
  /**
1456
1547
  * <p>Multicast group resources to remove from the network analyzer configuration. Provide
1457
1548
  * the <code>MulticastGroupId</code> of the resources to remove in the input array.</p>
1458
1549
  * @public
1459
1550
  */
1460
- MulticastGroupsToRemove?: string[];
1551
+ MulticastGroupsToRemove?: string[] | undefined;
1461
1552
  }
1462
1553
  /**
1463
1554
  * @public
@@ -1473,7 +1564,7 @@ export interface SidewalkUpdateAccount {
1473
1564
  * <p>The new Sidewalk application server private key.</p>
1474
1565
  * @public
1475
1566
  */
1476
- AppServerPrivateKey?: string;
1567
+ AppServerPrivateKey?: string | undefined;
1477
1568
  }
1478
1569
  /**
1479
1570
  * @public
@@ -1545,32 +1636,32 @@ export interface UpdateResourceEventConfigurationRequest {
1545
1636
  * </p>
1546
1637
  * @public
1547
1638
  */
1548
- PartnerType?: EventNotificationPartnerType;
1639
+ PartnerType?: EventNotificationPartnerType | undefined;
1549
1640
  /**
1550
1641
  * <p>Event configuration for the device registration state event.</p>
1551
1642
  * @public
1552
1643
  */
1553
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
1644
+ DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration | undefined;
1554
1645
  /**
1555
1646
  * <p>Event configuration for the proximity event.</p>
1556
1647
  * @public
1557
1648
  */
1558
- Proximity?: ProximityEventConfiguration;
1649
+ Proximity?: ProximityEventConfiguration | undefined;
1559
1650
  /**
1560
1651
  * <p>Event configuration for the join event.</p>
1561
1652
  * @public
1562
1653
  */
1563
- Join?: JoinEventConfiguration;
1654
+ Join?: JoinEventConfiguration | undefined;
1564
1655
  /**
1565
1656
  * <p>Event configuration for the connection status event.</p>
1566
1657
  * @public
1567
1658
  */
1568
- ConnectionStatus?: ConnectionStatusEventConfiguration;
1659
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
1569
1660
  /**
1570
1661
  * <p>Event configuration for the message delivery status event.</p>
1571
1662
  * @public
1572
1663
  */
1573
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
1664
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
1574
1665
  }
1575
1666
  /**
1576
1667
  * @public
@@ -1600,7 +1691,7 @@ export interface UpdateResourcePositionRequest {
1600
1691
  * structures. For more information, see <a href="https://geojson.org/">GeoJSON</a>.</p>
1601
1692
  * @public
1602
1693
  */
1603
- GeoJsonPayload?: Uint8Array;
1694
+ GeoJsonPayload?: Uint8Array | undefined;
1604
1695
  }
1605
1696
  /**
1606
1697
  * @public
@@ -1616,7 +1707,7 @@ export interface UpdateAbpV1_0_x {
1616
1707
  * <p>The FCnt init value.</p>
1617
1708
  * @public
1618
1709
  */
1619
- FCntStart?: number;
1710
+ FCntStart?: number | undefined;
1620
1711
  }
1621
1712
  /**
1622
1713
  * <p>ABP device object for LoRaWAN specification v1.1</p>
@@ -1627,7 +1718,7 @@ export interface UpdateAbpV1_1 {
1627
1718
  * <p>The FCnt init value.</p>
1628
1719
  * @public
1629
1720
  */
1630
- FCntStart?: number;
1721
+ FCntStart?: number | undefined;
1631
1722
  }
1632
1723
  /**
1633
1724
  * <p>Object for updating the FPorts information.</p>
@@ -1638,13 +1729,13 @@ export interface UpdateFPorts {
1638
1729
  * <p>Positioning FPorts for the ClockSync, Stream, and GNSS functions.</p>
1639
1730
  * @public
1640
1731
  */
1641
- Positioning?: Positioning;
1732
+ Positioning?: Positioning | undefined;
1642
1733
  /**
1643
1734
  * <p>LoRaWAN application, which can be used for geolocation by activating
1644
1735
  * positioning.</p>
1645
1736
  * @public
1646
1737
  */
1647
- Applications?: ApplicationConfig[];
1738
+ Applications?: ApplicationConfig[] | undefined;
1648
1739
  }
1649
1740
  /**
1650
1741
  * <p>LoRaWAN object for update functions.</p>
@@ -1655,27 +1746,27 @@ export interface LoRaWANUpdateDevice {
1655
1746
  * <p>The ID of the device profile for the wireless device.</p>
1656
1747
  * @public
1657
1748
  */
1658
- DeviceProfileId?: string;
1749
+ DeviceProfileId?: string | undefined;
1659
1750
  /**
1660
1751
  * <p>The ID of the service profile.</p>
1661
1752
  * @public
1662
1753
  */
1663
- ServiceProfileId?: string;
1754
+ ServiceProfileId?: string | undefined;
1664
1755
  /**
1665
1756
  * <p>ABP device object for update APIs for v1.1</p>
1666
1757
  * @public
1667
1758
  */
1668
- AbpV1_1?: UpdateAbpV1_1;
1759
+ AbpV1_1?: UpdateAbpV1_1 | undefined;
1669
1760
  /**
1670
1761
  * <p>ABP device object for update APIs for v1.0.x</p>
1671
1762
  * @public
1672
1763
  */
1673
- AbpV1_0_x?: UpdateAbpV1_0_x;
1764
+ AbpV1_0_x?: UpdateAbpV1_0_x | undefined;
1674
1765
  /**
1675
1766
  * <p>FPorts object for the positioning information of the device.</p>
1676
1767
  * @public
1677
1768
  */
1678
- FPorts?: UpdateFPorts;
1769
+ FPorts?: UpdateFPorts | undefined;
1679
1770
  }
1680
1771
  /**
1681
1772
  * @public
@@ -1690,28 +1781,28 @@ export interface UpdateWirelessDeviceRequest {
1690
1781
  * <p>The name of the new destination for the device.</p>
1691
1782
  * @public
1692
1783
  */
1693
- DestinationName?: string;
1784
+ DestinationName?: string | undefined;
1694
1785
  /**
1695
1786
  * <p>The new name of the resource.</p>
1696
1787
  * @public
1697
1788
  */
1698
- Name?: string;
1789
+ Name?: string | undefined;
1699
1790
  /**
1700
1791
  * <p>A new description of the resource.</p>
1701
1792
  * @public
1702
1793
  */
1703
- Description?: string;
1794
+ Description?: string | undefined;
1704
1795
  /**
1705
1796
  * <p>The updated wireless device's configuration.</p>
1706
1797
  * @public
1707
1798
  */
1708
- LoRaWAN?: LoRaWANUpdateDevice;
1799
+ LoRaWAN?: LoRaWANUpdateDevice | undefined;
1709
1800
  /**
1710
1801
  * <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
1711
1802
  * information.</p>
1712
1803
  * @public
1713
1804
  */
1714
- Positioning?: PositioningConfigStatus;
1805
+ Positioning?: PositioningConfigStatus | undefined;
1715
1806
  }
1716
1807
  /**
1717
1808
  * @public
@@ -1728,7 +1819,7 @@ export interface SidewalkUpdateImportInfo {
1728
1819
  * existing import task.</p>
1729
1820
  * @public
1730
1821
  */
1731
- DeviceCreationFile?: string;
1822
+ DeviceCreationFile?: string | undefined;
1732
1823
  }
1733
1824
  /**
1734
1825
  * @public
@@ -1763,34 +1854,38 @@ export interface UpdateWirelessGatewayRequest {
1763
1854
  * <p>The new name of the resource.</p>
1764
1855
  * @public
1765
1856
  */
1766
- Name?: string;
1857
+ Name?: string | undefined;
1767
1858
  /**
1768
1859
  * <p>A new description of the resource.</p>
1769
1860
  * @public
1770
1861
  */
1771
- Description?: string;
1862
+ Description?: string | undefined;
1772
1863
  /**
1773
1864
  * <p>A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.</p>
1774
1865
  * @public
1775
1866
  */
1776
- JoinEuiFilters?: string[][];
1867
+ JoinEuiFilters?: string[][] | undefined;
1777
1868
  /**
1778
1869
  * <p>A list of NetId values that are used by LoRa gateways to filter the uplink
1779
1870
  * frames.</p>
1780
1871
  * @public
1781
1872
  */
1782
- NetIdFilters?: string[];
1873
+ NetIdFilters?: string[] | undefined;
1783
1874
  /**
1784
1875
  * <p>The MaxEIRP value.</p>
1785
1876
  * @public
1786
1877
  */
1787
- MaxEirp?: number;
1878
+ MaxEirp?: number | undefined;
1788
1879
  }
1789
1880
  /**
1790
1881
  * @public
1791
1882
  */
1792
1883
  export interface UpdateWirelessGatewayResponse {
1793
1884
  }
1885
+ /**
1886
+ * @internal
1887
+ */
1888
+ export declare const ListPartnerAccountsResponseFilterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
1794
1889
  /**
1795
1890
  * @internal
1796
1891
  */