@aws-sdk/client-iot-wireless 3.933.0 → 3.935.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 (57) hide show
  1. package/dist-cjs/index.js +282 -282
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +266 -0
  4. package/dist-es/models/errors.js +109 -0
  5. package/dist-es/models/models_0.js +1 -350
  6. package/dist-es/models/models_1.js +1 -26
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +1 -2
  9. package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  10. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  11. package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +1 -1
  12. package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
  13. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  16. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  19. package/dist-types/commands/PutPositionConfigurationCommand.d.ts +1 -1
  20. package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
  21. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  22. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  23. package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
  24. package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  25. package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -1
  26. package/dist-types/index.d.ts +4 -1
  27. package/dist-types/models/enums.d.ts +642 -0
  28. package/dist-types/models/errors.d.ts +118 -0
  29. package/dist-types/models/models_0.d.ts +995 -717
  30. package/dist-types/models/models_1.d.ts +2 -1040
  31. package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +4 -2
  32. package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ListServiceProfilesCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListWirelessDevicesCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/PutPositionConfigurationCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/PutResourceLogLevelCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/index.d.ts +4 -1
  50. package/dist-types/ts3.4/models/enums.d.ts +347 -0
  51. package/dist-types/ts3.4/models/errors.d.ts +61 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +282 -387
  53. package/dist-types/ts3.4/models/models_1.d.ts +9 -277
  54. package/package.json +12 -12
  55. package/dist-es/models/index.js +0 -2
  56. package/dist-types/models/index.d.ts +0 -2
  57. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -0,0 +1,642 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AggregationPeriod: {
6
+ readonly OneDay: "OneDay";
7
+ readonly OneHour: "OneHour";
8
+ readonly OneWeek: "OneWeek";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type AggregationPeriod = (typeof AggregationPeriod)[keyof typeof AggregationPeriod];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const ApplicationConfigType: {
19
+ readonly SemtechGeoLocation: "SemtechGeolocation";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type ApplicationConfigType = (typeof ApplicationConfigType)[keyof typeof ApplicationConfigType];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const BatteryLevel: {
30
+ readonly CRITICAL: "critical";
31
+ readonly LOW: "low";
32
+ readonly NORMAL: "normal";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type BatteryLevel = (typeof BatteryLevel)[keyof typeof BatteryLevel];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const SigningAlg: {
43
+ readonly Ed25519: "Ed25519";
44
+ readonly P256r1: "P256r1";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type SigningAlg = (typeof SigningAlg)[keyof typeof SigningAlg];
50
+ /**
51
+ * @public
52
+ * @enum
53
+ */
54
+ export declare const ConnectionStatus: {
55
+ readonly CONNECTED: "Connected";
56
+ readonly DISCONNECTED: "Disconnected";
57
+ };
58
+ /**
59
+ * @public
60
+ */
61
+ export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
62
+ /**
63
+ * @public
64
+ * @enum
65
+ */
66
+ export declare const EventNotificationTopicStatus: {
67
+ readonly Disabled: "Disabled";
68
+ readonly Enabled: "Enabled";
69
+ };
70
+ /**
71
+ * @public
72
+ */
73
+ export type EventNotificationTopicStatus = (typeof EventNotificationTopicStatus)[keyof typeof EventNotificationTopicStatus];
74
+ /**
75
+ * @public
76
+ * @enum
77
+ */
78
+ export declare const ExpressionType: {
79
+ readonly MqttTopic: "MqttTopic";
80
+ readonly RuleName: "RuleName";
81
+ };
82
+ /**
83
+ * @public
84
+ */
85
+ export type ExpressionType = (typeof ExpressionType)[keyof typeof ExpressionType];
86
+ /**
87
+ * @public
88
+ * @enum
89
+ */
90
+ export declare const SupportedRfRegion: {
91
+ readonly AS923_1: "AS923-1";
92
+ readonly AS923_2: "AS923-2";
93
+ readonly AS923_3: "AS923-3";
94
+ readonly AS923_4: "AS923-4";
95
+ readonly AU915: "AU915";
96
+ readonly CN470: "CN470";
97
+ readonly CN779: "CN779";
98
+ readonly EU433: "EU433";
99
+ readonly EU868: "EU868";
100
+ readonly IN865: "IN865";
101
+ readonly KR920: "KR920";
102
+ readonly RU864: "RU864";
103
+ readonly US915: "US915";
104
+ };
105
+ /**
106
+ * @public
107
+ */
108
+ export type SupportedRfRegion = (typeof SupportedRfRegion)[keyof typeof SupportedRfRegion];
109
+ /**
110
+ * @public
111
+ * @enum
112
+ */
113
+ export declare const DlClass: {
114
+ readonly ClassB: "ClassB";
115
+ readonly ClassC: "ClassC";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type DlClass = (typeof DlClass)[keyof typeof DlClass];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const LogLevel: {
126
+ readonly DISABLED: "DISABLED";
127
+ readonly ERROR: "ERROR";
128
+ readonly INFO: "INFO";
129
+ };
130
+ /**
131
+ * @public
132
+ */
133
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
134
+ /**
135
+ * @public
136
+ * @enum
137
+ */
138
+ export declare const MulticastFrameInfo: {
139
+ readonly DISABLED: "DISABLED";
140
+ readonly ENABLED: "ENABLED";
141
+ };
142
+ /**
143
+ * @public
144
+ */
145
+ export type MulticastFrameInfo = (typeof MulticastFrameInfo)[keyof typeof MulticastFrameInfo];
146
+ /**
147
+ * @public
148
+ * @enum
149
+ */
150
+ export declare const WirelessDeviceFrameInfo: {
151
+ readonly DISABLED: "DISABLED";
152
+ readonly ENABLED: "ENABLED";
153
+ };
154
+ /**
155
+ * @public
156
+ */
157
+ export type WirelessDeviceFrameInfo = (typeof WirelessDeviceFrameInfo)[keyof typeof WirelessDeviceFrameInfo];
158
+ /**
159
+ * @public
160
+ * @enum
161
+ */
162
+ export declare const PositioningConfigStatus: {
163
+ readonly Disabled: "Disabled";
164
+ readonly Enabled: "Enabled";
165
+ };
166
+ /**
167
+ * @public
168
+ */
169
+ export type PositioningConfigStatus = (typeof PositioningConfigStatus)[keyof typeof PositioningConfigStatus];
170
+ /**
171
+ * @public
172
+ * @enum
173
+ */
174
+ export declare const WirelessDeviceType: {
175
+ readonly LoRaWAN: "LoRaWAN";
176
+ readonly Sidewalk: "Sidewalk";
177
+ };
178
+ /**
179
+ * @public
180
+ */
181
+ export type WirelessDeviceType = (typeof WirelessDeviceType)[keyof typeof WirelessDeviceType];
182
+ /**
183
+ * @public
184
+ * @enum
185
+ */
186
+ export declare const WirelessGatewayTaskStatus: {
187
+ readonly COMPLETED: "COMPLETED";
188
+ readonly FAILED: "FAILED";
189
+ readonly FIRST_RETRY: "FIRST_RETRY";
190
+ readonly IN_PROGRESS: "IN_PROGRESS";
191
+ readonly PENDING: "PENDING";
192
+ readonly SECOND_RETRY: "SECOND_RETRY";
193
+ };
194
+ /**
195
+ * @public
196
+ */
197
+ export type WirelessGatewayTaskStatus = (typeof WirelessGatewayTaskStatus)[keyof typeof WirelessGatewayTaskStatus];
198
+ /**
199
+ * @public
200
+ * @enum
201
+ */
202
+ export declare const DeviceProfileType: {
203
+ readonly LoRaWAN: "LoRaWAN";
204
+ readonly Sidewalk: "Sidewalk";
205
+ };
206
+ /**
207
+ * @public
208
+ */
209
+ export type DeviceProfileType = (typeof DeviceProfileType)[keyof typeof DeviceProfileType];
210
+ /**
211
+ * @public
212
+ * @enum
213
+ */
214
+ export declare const DeviceState: {
215
+ readonly PROVISIONED: "Provisioned";
216
+ readonly REGISTEREDNOTSEEN: "RegisteredNotSeen";
217
+ readonly REGISTEREDREACHABLE: "RegisteredReachable";
218
+ readonly REGISTEREDUNREACHABLE: "RegisteredUnreachable";
219
+ };
220
+ /**
221
+ * @public
222
+ */
223
+ export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
224
+ /**
225
+ * @public
226
+ * @enum
227
+ */
228
+ export declare const DimensionName: {
229
+ readonly DeviceId: "DeviceId";
230
+ readonly GatewayId: "GatewayId";
231
+ };
232
+ /**
233
+ * @public
234
+ */
235
+ export type DimensionName = (typeof DimensionName)[keyof typeof DimensionName];
236
+ /**
237
+ * @public
238
+ * @enum
239
+ */
240
+ export declare const PartnerType: {
241
+ readonly Sidewalk: "Sidewalk";
242
+ };
243
+ /**
244
+ * @public
245
+ */
246
+ export type PartnerType = (typeof PartnerType)[keyof typeof PartnerType];
247
+ /**
248
+ * @public
249
+ * @enum
250
+ */
251
+ export declare const DownlinkMode: {
252
+ readonly CONCURRENT: "CONCURRENT";
253
+ readonly SEQUENTIAL: "SEQUENTIAL";
254
+ readonly USING_UPLINK_GATEWAY: "USING_UPLINK_GATEWAY";
255
+ };
256
+ /**
257
+ * @public
258
+ */
259
+ export type DownlinkMode = (typeof DownlinkMode)[keyof typeof DownlinkMode];
260
+ /**
261
+ * @public
262
+ * @enum
263
+ */
264
+ export declare const Event: {
265
+ readonly ACK: "ack";
266
+ readonly DISCOVERED: "discovered";
267
+ readonly LOST: "lost";
268
+ readonly NACK: "nack";
269
+ readonly PASSTHROUGH: "passthrough";
270
+ };
271
+ /**
272
+ * @public
273
+ */
274
+ export type Event = (typeof Event)[keyof typeof Event];
275
+ /**
276
+ * @public
277
+ * @enum
278
+ */
279
+ export declare const IdentifierType: {
280
+ readonly DevEui: "DevEui";
281
+ readonly GatewayEui: "GatewayEui";
282
+ readonly PartnerAccountId: "PartnerAccountId";
283
+ readonly WirelessDeviceId: "WirelessDeviceId";
284
+ readonly WirelessGatewayId: "WirelessGatewayId";
285
+ };
286
+ /**
287
+ * @public
288
+ */
289
+ export type IdentifierType = (typeof IdentifierType)[keyof typeof IdentifierType];
290
+ /**
291
+ * @public
292
+ * @enum
293
+ */
294
+ export declare const EventNotificationPartnerType: {
295
+ readonly Sidewalk: "Sidewalk";
296
+ };
297
+ /**
298
+ * @public
299
+ */
300
+ export type EventNotificationPartnerType = (typeof EventNotificationPartnerType)[keyof typeof EventNotificationPartnerType];
301
+ /**
302
+ * @public
303
+ * @enum
304
+ */
305
+ export declare const EventNotificationResourceType: {
306
+ readonly SidewalkAccount: "SidewalkAccount";
307
+ readonly WirelessDevice: "WirelessDevice";
308
+ readonly WirelessGateway: "WirelessGateway";
309
+ };
310
+ /**
311
+ * @public
312
+ */
313
+ export type EventNotificationResourceType = (typeof EventNotificationResourceType)[keyof typeof EventNotificationResourceType];
314
+ /**
315
+ * @public
316
+ * @enum
317
+ */
318
+ export declare const FuotaDeviceStatus: {
319
+ readonly Device_exist_in_conflict_fuota_task: "Device_exist_in_conflict_fuota_task";
320
+ readonly FragAlgo_unsupported: "FragAlgo_unsupported";
321
+ readonly FragIndex_unsupported: "FragIndex_unsupported";
322
+ readonly Initial: "Initial";
323
+ readonly MICError: "MICError";
324
+ readonly MemoryError: "MemoryError";
325
+ readonly MissingFrag: "MissingFrag";
326
+ readonly Not_enough_memory: "Not_enough_memory";
327
+ readonly Package_Not_Supported: "Package_Not_Supported";
328
+ readonly SessionCnt_replay: "SessionCnt_replay";
329
+ readonly Successful: "Successful";
330
+ readonly Wrong_descriptor: "Wrong_descriptor";
331
+ };
332
+ /**
333
+ * @public
334
+ */
335
+ export type FuotaDeviceStatus = (typeof FuotaDeviceStatus)[keyof typeof FuotaDeviceStatus];
336
+ /**
337
+ * @public
338
+ * @enum
339
+ */
340
+ export declare const FuotaTaskEvent: {
341
+ readonly Fuota: "Fuota";
342
+ };
343
+ /**
344
+ * @public
345
+ */
346
+ export type FuotaTaskEvent = (typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
347
+ /**
348
+ * @public
349
+ * @enum
350
+ */
351
+ export declare const FuotaTaskType: {
352
+ readonly LoRaWAN: "LoRaWAN";
353
+ };
354
+ /**
355
+ * @public
356
+ */
357
+ export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
358
+ /**
359
+ * @public
360
+ * @enum
361
+ */
362
+ export declare const FuotaTaskStatus: {
363
+ readonly Delete_Waiting: "Delete_Waiting";
364
+ readonly FuotaDone: "FuotaDone";
365
+ readonly FuotaSession_Waiting: "FuotaSession_Waiting";
366
+ readonly In_FuotaSession: "In_FuotaSession";
367
+ readonly Pending: "Pending";
368
+ };
369
+ /**
370
+ * @public
371
+ */
372
+ export type FuotaTaskStatus = (typeof FuotaTaskStatus)[keyof typeof FuotaTaskStatus];
373
+ /**
374
+ * @public
375
+ * @enum
376
+ */
377
+ export declare const WirelessDeviceEvent: {
378
+ readonly Downlink_Data: "Downlink_Data";
379
+ readonly Join: "Join";
380
+ readonly Registration: "Registration";
381
+ readonly Rejoin: "Rejoin";
382
+ readonly Uplink_Data: "Uplink_Data";
383
+ };
384
+ /**
385
+ * @public
386
+ */
387
+ export type WirelessDeviceEvent = (typeof WirelessDeviceEvent)[keyof typeof WirelessDeviceEvent];
388
+ /**
389
+ * @public
390
+ * @enum
391
+ */
392
+ export declare const WirelessGatewayEvent: {
393
+ readonly CUPS_Request: "CUPS_Request";
394
+ readonly Certificate: "Certificate";
395
+ };
396
+ /**
397
+ * @public
398
+ */
399
+ export type WirelessGatewayEvent = (typeof WirelessGatewayEvent)[keyof typeof WirelessGatewayEvent];
400
+ /**
401
+ * @public
402
+ * @enum
403
+ */
404
+ export declare const WirelessGatewayType: {
405
+ readonly LoRaWAN: "LoRaWAN";
406
+ };
407
+ /**
408
+ * @public
409
+ */
410
+ export type WirelessGatewayType = (typeof WirelessGatewayType)[keyof typeof WirelessGatewayType];
411
+ /**
412
+ * @public
413
+ * @enum
414
+ */
415
+ export declare const SummaryMetricConfigurationStatus: {
416
+ readonly Disabled: "Disabled";
417
+ readonly Enabled: "Enabled";
418
+ };
419
+ /**
420
+ * @public
421
+ */
422
+ export type SummaryMetricConfigurationStatus = (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
423
+ /**
424
+ * @public
425
+ * @enum
426
+ */
427
+ export declare const MetricName: {
428
+ readonly AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount";
429
+ readonly AwsAccountActiveGatewayCount: "AwsAccountActiveGatewayCount";
430
+ readonly AwsAccountDeviceCount: "AwsAccountDeviceCount";
431
+ readonly AwsAccountDownlinkCount: "AwsAccountDownlinkCount";
432
+ readonly AwsAccountGatewayCount: "AwsAccountGatewayCount";
433
+ readonly AwsAccountJoinAcceptCount: "AwsAccountJoinAcceptCount";
434
+ readonly AwsAccountJoinRequestCount: "AwsAccountJoinRequestCount";
435
+ readonly AwsAccountRoamingDownlinkCount: "AwsAccountRoamingDownlinkCount";
436
+ readonly AwsAccountRoamingUplinkCount: "AwsAccountRoamingUplinkCount";
437
+ readonly AwsAccountUplinkCount: "AwsAccountUplinkCount";
438
+ readonly AwsAccountUplinkLostCount: "AwsAccountUplinkLostCount";
439
+ readonly AwsAccountUplinkLostRate: "AwsAccountUplinkLostRate";
440
+ readonly DeviceDownlinkCount: "DeviceDownlinkCount";
441
+ readonly DeviceJoinAcceptCount: "DeviceJoinAcceptCount";
442
+ readonly DeviceJoinRequestCount: "DeviceJoinRequestCount";
443
+ readonly DeviceRSSI: "DeviceRSSI";
444
+ readonly DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount";
445
+ readonly DeviceRoamingRSSI: "DeviceRoamingRSSI";
446
+ readonly DeviceRoamingSNR: "DeviceRoamingSNR";
447
+ readonly DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount";
448
+ readonly DeviceSNR: "DeviceSNR";
449
+ readonly DeviceUplinkCount: "DeviceUplinkCount";
450
+ readonly DeviceUplinkLostCount: "DeviceUplinkLostCount";
451
+ readonly DeviceUplinkLostRate: "DeviceUplinkLostRate";
452
+ readonly GatewayDownTime: "GatewayDownTime";
453
+ readonly GatewayDownlinkCount: "GatewayDownlinkCount";
454
+ readonly GatewayJoinAcceptCount: "GatewayJoinAcceptCount";
455
+ readonly GatewayJoinRequestCount: "GatewayJoinRequestCount";
456
+ readonly GatewayRSSI: "GatewayRSSI";
457
+ readonly GatewaySNR: "GatewaySNR";
458
+ readonly GatewayUpTime: "GatewayUpTime";
459
+ readonly GatewayUplinkCount: "GatewayUplinkCount";
460
+ };
461
+ /**
462
+ * @public
463
+ */
464
+ export type MetricName = (typeof MetricName)[keyof typeof MetricName];
465
+ /**
466
+ * @public
467
+ * @enum
468
+ */
469
+ export declare const MetricQueryStatus: {
470
+ readonly Failed: "Failed";
471
+ readonly Succeeded: "Succeeded";
472
+ };
473
+ /**
474
+ * @public
475
+ */
476
+ export type MetricQueryStatus = (typeof MetricQueryStatus)[keyof typeof MetricQueryStatus];
477
+ /**
478
+ * @public
479
+ * @enum
480
+ */
481
+ export declare const PositionResourceType: {
482
+ readonly WirelessDevice: "WirelessDevice";
483
+ readonly WirelessGateway: "WirelessGateway";
484
+ };
485
+ /**
486
+ * @public
487
+ */
488
+ export type PositionResourceType = (typeof PositionResourceType)[keyof typeof PositionResourceType];
489
+ /**
490
+ * @public
491
+ * @enum
492
+ */
493
+ export declare const PositionSolverProvider: {
494
+ readonly SEMTECH: "Semtech";
495
+ };
496
+ /**
497
+ * @public
498
+ */
499
+ export type PositionSolverProvider = (typeof PositionSolverProvider)[keyof typeof PositionSolverProvider];
500
+ /**
501
+ * @public
502
+ * @enum
503
+ */
504
+ export declare const PositionSolverType: {
505
+ readonly GNSS: "GNSS";
506
+ };
507
+ /**
508
+ * @public
509
+ */
510
+ export type PositionSolverType = (typeof PositionSolverType)[keyof typeof PositionSolverType];
511
+ /**
512
+ * @public
513
+ * @enum
514
+ */
515
+ export declare const PositionConfigurationFec: {
516
+ readonly NONE: "NONE";
517
+ readonly ROSE: "ROSE";
518
+ };
519
+ /**
520
+ * @public
521
+ */
522
+ export type PositionConfigurationFec = (typeof PositionConfigurationFec)[keyof typeof PositionConfigurationFec];
523
+ /**
524
+ * @public
525
+ * @enum
526
+ */
527
+ export declare const PositionConfigurationStatus: {
528
+ readonly Disabled: "Disabled";
529
+ readonly Enabled: "Enabled";
530
+ };
531
+ /**
532
+ * @public
533
+ */
534
+ export type PositionConfigurationStatus = (typeof PositionConfigurationStatus)[keyof typeof PositionConfigurationStatus];
535
+ /**
536
+ * @public
537
+ * @enum
538
+ */
539
+ export declare const WirelessGatewayServiceType: {
540
+ readonly CUPS: "CUPS";
541
+ readonly LNS: "LNS";
542
+ };
543
+ /**
544
+ * @public
545
+ */
546
+ export type WirelessGatewayServiceType = (typeof WirelessGatewayServiceType)[keyof typeof WirelessGatewayServiceType];
547
+ /**
548
+ * @public
549
+ * @enum
550
+ */
551
+ export declare const WirelessDeviceIdType: {
552
+ readonly DevEui: "DevEui";
553
+ readonly SidewalkManufacturingSn: "SidewalkManufacturingSn";
554
+ readonly ThingName: "ThingName";
555
+ readonly WirelessDeviceId: "WirelessDeviceId";
556
+ };
557
+ /**
558
+ * @public
559
+ */
560
+ export type WirelessDeviceIdType = (typeof WirelessDeviceIdType)[keyof typeof WirelessDeviceIdType];
561
+ /**
562
+ * @public
563
+ * @enum
564
+ */
565
+ export declare const WirelessDeviceSidewalkStatus: {
566
+ readonly ACTIVATED: "ACTIVATED";
567
+ readonly PROVISIONED: "PROVISIONED";
568
+ readonly REGISTERED: "REGISTERED";
569
+ readonly UNKNOWN: "UNKNOWN";
570
+ };
571
+ /**
572
+ * @public
573
+ */
574
+ export type WirelessDeviceSidewalkStatus = (typeof WirelessDeviceSidewalkStatus)[keyof typeof WirelessDeviceSidewalkStatus];
575
+ /**
576
+ * @public
577
+ * @enum
578
+ */
579
+ export declare const ImportTaskStatus: {
580
+ readonly COMPLETE: "COMPLETE";
581
+ readonly DELETING: "DELETING";
582
+ readonly FAILED: "FAILED";
583
+ readonly INITIALIZED: "INITIALIZED";
584
+ readonly INITIALIZING: "INITIALIZING";
585
+ readonly PENDING: "PENDING";
586
+ };
587
+ /**
588
+ * @public
589
+ */
590
+ export type ImportTaskStatus = (typeof ImportTaskStatus)[keyof typeof ImportTaskStatus];
591
+ /**
592
+ * @public
593
+ * @enum
594
+ */
595
+ export declare const WirelessGatewayIdType: {
596
+ readonly GatewayEui: "GatewayEui";
597
+ readonly ThingName: "ThingName";
598
+ readonly WirelessGatewayId: "WirelessGatewayId";
599
+ };
600
+ /**
601
+ * @public
602
+ */
603
+ export type WirelessGatewayIdType = (typeof WirelessGatewayIdType)[keyof typeof WirelessGatewayIdType];
604
+ /**
605
+ * @public
606
+ * @enum
607
+ */
608
+ export declare const OnboardStatus: {
609
+ readonly FAILED: "FAILED";
610
+ readonly INITIALIZED: "INITIALIZED";
611
+ readonly ONBOARDED: "ONBOARDED";
612
+ readonly PENDING: "PENDING";
613
+ };
614
+ /**
615
+ * @public
616
+ */
617
+ export type OnboardStatus = (typeof OnboardStatus)[keyof typeof OnboardStatus];
618
+ /**
619
+ * @public
620
+ * @enum
621
+ */
622
+ export declare const WirelessGatewayTaskDefinitionType: {
623
+ readonly UPDATE: "UPDATE";
624
+ };
625
+ /**
626
+ * @public
627
+ */
628
+ export type WirelessGatewayTaskDefinitionType = (typeof WirelessGatewayTaskDefinitionType)[keyof typeof WirelessGatewayTaskDefinitionType];
629
+ /**
630
+ * @public
631
+ * @enum
632
+ */
633
+ export declare const MessageType: {
634
+ readonly CUSTOM_COMMAND_ID_GET: "CUSTOM_COMMAND_ID_GET";
635
+ readonly CUSTOM_COMMAND_ID_NOTIFY: "CUSTOM_COMMAND_ID_NOTIFY";
636
+ readonly CUSTOM_COMMAND_ID_RESP: "CUSTOM_COMMAND_ID_RESP";
637
+ readonly CUSTOM_COMMAND_ID_SET: "CUSTOM_COMMAND_ID_SET";
638
+ };
639
+ /**
640
+ * @public
641
+ */
642
+ export type MessageType = (typeof MessageType)[keyof typeof MessageType];