@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.
- package/dist-cjs/index.js +282 -282
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +266 -0
- package/dist-es/models/errors.js +109 -0
- package/dist-es/models/models_0.js +1 -350
- package/dist-es/models/models_1.js +1 -26
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +1 -2
- package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
- package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
- package/dist-types/commands/PutPositionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
- package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
- package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
- package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -1
- package/dist-types/index.d.ts +4 -1
- package/dist-types/models/enums.d.ts +642 -0
- package/dist-types/models/errors.d.ts +118 -0
- package/dist-types/models/models_0.d.ts +995 -717
- package/dist-types/models/models_1.d.ts +2 -1040
- package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListServiceProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWirelessGatewaysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutPositionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/index.d.ts +4 -1
- package/dist-types/ts3.4/models/enums.d.ts +347 -0
- package/dist-types/ts3.4/models/errors.d.ts +61 -0
- package/dist-types/ts3.4/models/models_0.d.ts +282 -387
- package/dist-types/ts3.4/models/models_1.d.ts +9 -277
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -2
- package/dist-types/models/index.d.ts +0 -2
- package/dist-types/ts3.4/models/index.d.ts +0 -2
package/dist-cjs/index.js
CHANGED
|
@@ -131,14 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends IoTWirelessSer
|
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
const AggregationPeriod = {
|
|
135
|
-
OneDay: "OneDay",
|
|
136
|
-
OneHour: "OneHour",
|
|
137
|
-
OneWeek: "OneWeek",
|
|
138
|
-
};
|
|
139
|
-
const ApplicationConfigType = {
|
|
140
|
-
SemtechGeoLocation: "SemtechGeolocation",
|
|
141
|
-
};
|
|
142
134
|
let ConflictException$1 = class ConflictException extends IoTWirelessServiceException$1 {
|
|
143
135
|
name = "ConflictException";
|
|
144
136
|
$fault = "client";
|
|
@@ -217,280 +209,21 @@ let ValidationException$1 = class ValidationException extends IoTWirelessService
|
|
|
217
209
|
this.Message = opts.Message;
|
|
218
210
|
}
|
|
219
211
|
};
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
Enabled: "Enabled",
|
|
236
|
-
};
|
|
237
|
-
const ExpressionType = {
|
|
238
|
-
MqttTopic: "MqttTopic",
|
|
239
|
-
RuleName: "RuleName",
|
|
240
|
-
};
|
|
241
|
-
const SupportedRfRegion = {
|
|
242
|
-
AS923_1: "AS923-1",
|
|
243
|
-
AS923_2: "AS923-2",
|
|
244
|
-
AS923_3: "AS923-3",
|
|
245
|
-
AS923_4: "AS923-4",
|
|
246
|
-
AU915: "AU915",
|
|
247
|
-
CN470: "CN470",
|
|
248
|
-
CN779: "CN779",
|
|
249
|
-
EU433: "EU433",
|
|
250
|
-
EU868: "EU868",
|
|
251
|
-
IN865: "IN865",
|
|
252
|
-
KR920: "KR920",
|
|
253
|
-
RU864: "RU864",
|
|
254
|
-
US915: "US915",
|
|
255
|
-
};
|
|
256
|
-
const DlClass = {
|
|
257
|
-
ClassB: "ClassB",
|
|
258
|
-
ClassC: "ClassC",
|
|
259
|
-
};
|
|
260
|
-
const LogLevel = {
|
|
261
|
-
DISABLED: "DISABLED",
|
|
262
|
-
ERROR: "ERROR",
|
|
263
|
-
INFO: "INFO",
|
|
264
|
-
};
|
|
265
|
-
const MulticastFrameInfo = {
|
|
266
|
-
DISABLED: "DISABLED",
|
|
267
|
-
ENABLED: "ENABLED",
|
|
268
|
-
};
|
|
269
|
-
const WirelessDeviceFrameInfo = {
|
|
270
|
-
DISABLED: "DISABLED",
|
|
271
|
-
ENABLED: "ENABLED",
|
|
272
|
-
};
|
|
273
|
-
const PositioningConfigStatus = {
|
|
274
|
-
Disabled: "Disabled",
|
|
275
|
-
Enabled: "Enabled",
|
|
276
|
-
};
|
|
277
|
-
const WirelessDeviceType = {
|
|
278
|
-
LoRaWAN: "LoRaWAN",
|
|
279
|
-
Sidewalk: "Sidewalk",
|
|
280
|
-
};
|
|
281
|
-
const WirelessGatewayTaskStatus = {
|
|
282
|
-
COMPLETED: "COMPLETED",
|
|
283
|
-
FAILED: "FAILED",
|
|
284
|
-
FIRST_RETRY: "FIRST_RETRY",
|
|
285
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
286
|
-
PENDING: "PENDING",
|
|
287
|
-
SECOND_RETRY: "SECOND_RETRY",
|
|
288
|
-
};
|
|
289
|
-
const DeviceProfileType = {
|
|
290
|
-
LoRaWAN: "LoRaWAN",
|
|
291
|
-
Sidewalk: "Sidewalk",
|
|
292
|
-
};
|
|
293
|
-
const DeviceState = {
|
|
294
|
-
PROVISIONED: "Provisioned",
|
|
295
|
-
REGISTEREDNOTSEEN: "RegisteredNotSeen",
|
|
296
|
-
REGISTEREDREACHABLE: "RegisteredReachable",
|
|
297
|
-
REGISTEREDUNREACHABLE: "RegisteredUnreachable",
|
|
298
|
-
};
|
|
299
|
-
const DimensionName = {
|
|
300
|
-
DeviceId: "DeviceId",
|
|
301
|
-
GatewayId: "GatewayId",
|
|
302
|
-
};
|
|
303
|
-
const PartnerType = {
|
|
304
|
-
Sidewalk: "Sidewalk",
|
|
305
|
-
};
|
|
306
|
-
const DownlinkMode = {
|
|
307
|
-
CONCURRENT: "CONCURRENT",
|
|
308
|
-
SEQUENTIAL: "SEQUENTIAL",
|
|
309
|
-
USING_UPLINK_GATEWAY: "USING_UPLINK_GATEWAY",
|
|
310
|
-
};
|
|
311
|
-
const Event = {
|
|
312
|
-
ACK: "ack",
|
|
313
|
-
DISCOVERED: "discovered",
|
|
314
|
-
LOST: "lost",
|
|
315
|
-
NACK: "nack",
|
|
316
|
-
PASSTHROUGH: "passthrough",
|
|
317
|
-
};
|
|
318
|
-
const IdentifierType = {
|
|
319
|
-
DevEui: "DevEui",
|
|
320
|
-
GatewayEui: "GatewayEui",
|
|
321
|
-
PartnerAccountId: "PartnerAccountId",
|
|
322
|
-
WirelessDeviceId: "WirelessDeviceId",
|
|
323
|
-
WirelessGatewayId: "WirelessGatewayId",
|
|
324
|
-
};
|
|
325
|
-
const EventNotificationPartnerType = {
|
|
326
|
-
Sidewalk: "Sidewalk",
|
|
327
|
-
};
|
|
328
|
-
const EventNotificationResourceType = {
|
|
329
|
-
SidewalkAccount: "SidewalkAccount",
|
|
330
|
-
WirelessDevice: "WirelessDevice",
|
|
331
|
-
WirelessGateway: "WirelessGateway",
|
|
332
|
-
};
|
|
333
|
-
const FuotaDeviceStatus = {
|
|
334
|
-
Device_exist_in_conflict_fuota_task: "Device_exist_in_conflict_fuota_task",
|
|
335
|
-
FragAlgo_unsupported: "FragAlgo_unsupported",
|
|
336
|
-
FragIndex_unsupported: "FragIndex_unsupported",
|
|
337
|
-
Initial: "Initial",
|
|
338
|
-
MICError: "MICError",
|
|
339
|
-
MemoryError: "MemoryError",
|
|
340
|
-
MissingFrag: "MissingFrag",
|
|
341
|
-
Not_enough_memory: "Not_enough_memory",
|
|
342
|
-
Package_Not_Supported: "Package_Not_Supported",
|
|
343
|
-
SessionCnt_replay: "SessionCnt_replay",
|
|
344
|
-
Successful: "Successful",
|
|
345
|
-
Wrong_descriptor: "Wrong_descriptor",
|
|
346
|
-
};
|
|
347
|
-
const FuotaTaskEvent = {
|
|
348
|
-
Fuota: "Fuota",
|
|
349
|
-
};
|
|
350
|
-
const FuotaTaskType = {
|
|
351
|
-
LoRaWAN: "LoRaWAN",
|
|
352
|
-
};
|
|
353
|
-
const FuotaTaskStatus = {
|
|
354
|
-
Delete_Waiting: "Delete_Waiting",
|
|
355
|
-
FuotaDone: "FuotaDone",
|
|
356
|
-
FuotaSession_Waiting: "FuotaSession_Waiting",
|
|
357
|
-
In_FuotaSession: "In_FuotaSession",
|
|
358
|
-
Pending: "Pending",
|
|
359
|
-
};
|
|
360
|
-
const WirelessDeviceEvent = {
|
|
361
|
-
Downlink_Data: "Downlink_Data",
|
|
362
|
-
Join: "Join",
|
|
363
|
-
Registration: "Registration",
|
|
364
|
-
Rejoin: "Rejoin",
|
|
365
|
-
Uplink_Data: "Uplink_Data",
|
|
366
|
-
};
|
|
367
|
-
const WirelessGatewayEvent = {
|
|
368
|
-
CUPS_Request: "CUPS_Request",
|
|
369
|
-
Certificate: "Certificate",
|
|
370
|
-
};
|
|
371
|
-
const WirelessGatewayType = {
|
|
372
|
-
LoRaWAN: "LoRaWAN",
|
|
373
|
-
};
|
|
374
|
-
const SummaryMetricConfigurationStatus = {
|
|
375
|
-
Disabled: "Disabled",
|
|
376
|
-
Enabled: "Enabled",
|
|
377
|
-
};
|
|
378
|
-
const MetricName = {
|
|
379
|
-
AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount",
|
|
380
|
-
AwsAccountActiveGatewayCount: "AwsAccountActiveGatewayCount",
|
|
381
|
-
AwsAccountDeviceCount: "AwsAccountDeviceCount",
|
|
382
|
-
AwsAccountDownlinkCount: "AwsAccountDownlinkCount",
|
|
383
|
-
AwsAccountGatewayCount: "AwsAccountGatewayCount",
|
|
384
|
-
AwsAccountJoinAcceptCount: "AwsAccountJoinAcceptCount",
|
|
385
|
-
AwsAccountJoinRequestCount: "AwsAccountJoinRequestCount",
|
|
386
|
-
AwsAccountRoamingDownlinkCount: "AwsAccountRoamingDownlinkCount",
|
|
387
|
-
AwsAccountRoamingUplinkCount: "AwsAccountRoamingUplinkCount",
|
|
388
|
-
AwsAccountUplinkCount: "AwsAccountUplinkCount",
|
|
389
|
-
AwsAccountUplinkLostCount: "AwsAccountUplinkLostCount",
|
|
390
|
-
AwsAccountUplinkLostRate: "AwsAccountUplinkLostRate",
|
|
391
|
-
DeviceDownlinkCount: "DeviceDownlinkCount",
|
|
392
|
-
DeviceJoinAcceptCount: "DeviceJoinAcceptCount",
|
|
393
|
-
DeviceJoinRequestCount: "DeviceJoinRequestCount",
|
|
394
|
-
DeviceRSSI: "DeviceRSSI",
|
|
395
|
-
DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount",
|
|
396
|
-
DeviceRoamingRSSI: "DeviceRoamingRSSI",
|
|
397
|
-
DeviceRoamingSNR: "DeviceRoamingSNR",
|
|
398
|
-
DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount",
|
|
399
|
-
DeviceSNR: "DeviceSNR",
|
|
400
|
-
DeviceUplinkCount: "DeviceUplinkCount",
|
|
401
|
-
DeviceUplinkLostCount: "DeviceUplinkLostCount",
|
|
402
|
-
DeviceUplinkLostRate: "DeviceUplinkLostRate",
|
|
403
|
-
GatewayDownTime: "GatewayDownTime",
|
|
404
|
-
GatewayDownlinkCount: "GatewayDownlinkCount",
|
|
405
|
-
GatewayJoinAcceptCount: "GatewayJoinAcceptCount",
|
|
406
|
-
GatewayJoinRequestCount: "GatewayJoinRequestCount",
|
|
407
|
-
GatewayRSSI: "GatewayRSSI",
|
|
408
|
-
GatewaySNR: "GatewaySNR",
|
|
409
|
-
GatewayUpTime: "GatewayUpTime",
|
|
410
|
-
GatewayUplinkCount: "GatewayUplinkCount",
|
|
411
|
-
};
|
|
412
|
-
const MetricQueryStatus = {
|
|
413
|
-
Failed: "Failed",
|
|
414
|
-
Succeeded: "Succeeded",
|
|
415
|
-
};
|
|
416
|
-
const PositionResourceType = {
|
|
417
|
-
WirelessDevice: "WirelessDevice",
|
|
418
|
-
WirelessGateway: "WirelessGateway",
|
|
419
|
-
};
|
|
420
|
-
const PositionSolverProvider = {
|
|
421
|
-
SEMTECH: "Semtech",
|
|
422
|
-
};
|
|
423
|
-
const PositionSolverType = {
|
|
424
|
-
GNSS: "GNSS",
|
|
425
|
-
};
|
|
426
|
-
const PositionConfigurationFec = {
|
|
427
|
-
NONE: "NONE",
|
|
428
|
-
ROSE: "ROSE",
|
|
429
|
-
};
|
|
430
|
-
const PositionConfigurationStatus = {
|
|
431
|
-
Disabled: "Disabled",
|
|
432
|
-
Enabled: "Enabled",
|
|
433
|
-
};
|
|
434
|
-
const WirelessGatewayServiceType = {
|
|
435
|
-
CUPS: "CUPS",
|
|
436
|
-
LNS: "LNS",
|
|
437
|
-
};
|
|
438
|
-
const WirelessDeviceIdType = {
|
|
439
|
-
DevEui: "DevEui",
|
|
440
|
-
SidewalkManufacturingSn: "SidewalkManufacturingSn",
|
|
441
|
-
ThingName: "ThingName",
|
|
442
|
-
WirelessDeviceId: "WirelessDeviceId",
|
|
443
|
-
};
|
|
444
|
-
const WirelessDeviceSidewalkStatus = {
|
|
445
|
-
ACTIVATED: "ACTIVATED",
|
|
446
|
-
PROVISIONED: "PROVISIONED",
|
|
447
|
-
REGISTERED: "REGISTERED",
|
|
448
|
-
UNKNOWN: "UNKNOWN",
|
|
449
|
-
};
|
|
450
|
-
const ImportTaskStatus = {
|
|
451
|
-
COMPLETE: "COMPLETE",
|
|
452
|
-
DELETING: "DELETING",
|
|
453
|
-
FAILED: "FAILED",
|
|
454
|
-
INITIALIZED: "INITIALIZED",
|
|
455
|
-
INITIALIZING: "INITIALIZING",
|
|
456
|
-
PENDING: "PENDING",
|
|
457
|
-
};
|
|
458
|
-
const WirelessGatewayIdType = {
|
|
459
|
-
GatewayEui: "GatewayEui",
|
|
460
|
-
ThingName: "ThingName",
|
|
461
|
-
WirelessGatewayId: "WirelessGatewayId",
|
|
462
|
-
};
|
|
463
|
-
const OnboardStatus = {
|
|
464
|
-
FAILED: "FAILED",
|
|
465
|
-
INITIALIZED: "INITIALIZED",
|
|
466
|
-
ONBOARDED: "ONBOARDED",
|
|
467
|
-
PENDING: "PENDING",
|
|
468
|
-
};
|
|
469
|
-
|
|
470
|
-
const WirelessGatewayTaskDefinitionType = {
|
|
471
|
-
UPDATE: "UPDATE",
|
|
472
|
-
};
|
|
473
|
-
const MessageType = {
|
|
474
|
-
CUSTOM_COMMAND_ID_GET: "CUSTOM_COMMAND_ID_GET",
|
|
475
|
-
CUSTOM_COMMAND_ID_NOTIFY: "CUSTOM_COMMAND_ID_NOTIFY",
|
|
476
|
-
CUSTOM_COMMAND_ID_RESP: "CUSTOM_COMMAND_ID_RESP",
|
|
477
|
-
CUSTOM_COMMAND_ID_SET: "CUSTOM_COMMAND_ID_SET",
|
|
478
|
-
};
|
|
479
|
-
let TooManyTagsException$1 = class TooManyTagsException extends IoTWirelessServiceException$1 {
|
|
480
|
-
name = "TooManyTagsException";
|
|
481
|
-
$fault = "client";
|
|
482
|
-
Message;
|
|
483
|
-
ResourceName;
|
|
484
|
-
constructor(opts) {
|
|
485
|
-
super({
|
|
486
|
-
name: "TooManyTagsException",
|
|
487
|
-
$fault: "client",
|
|
488
|
-
...opts,
|
|
489
|
-
});
|
|
490
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
491
|
-
this.Message = opts.Message;
|
|
492
|
-
this.ResourceName = opts.ResourceName;
|
|
493
|
-
}
|
|
212
|
+
let TooManyTagsException$1 = class TooManyTagsException extends IoTWirelessServiceException$1 {
|
|
213
|
+
name = "TooManyTagsException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
Message;
|
|
216
|
+
ResourceName;
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "TooManyTagsException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
225
|
+
this.ResourceName = opts.ResourceName;
|
|
226
|
+
}
|
|
494
227
|
};
|
|
495
228
|
|
|
496
229
|
const _A = "AbpV1_1";
|
|
@@ -6277,6 +6010,273 @@ const paginateListWirelessDevices = core.createPaginator(IoTWirelessClient, List
|
|
|
6277
6010
|
|
|
6278
6011
|
const paginateListWirelessGateways = core.createPaginator(IoTWirelessClient, ListWirelessGatewaysCommand, "NextToken", "NextToken", "MaxResults");
|
|
6279
6012
|
|
|
6013
|
+
const AggregationPeriod = {
|
|
6014
|
+
OneDay: "OneDay",
|
|
6015
|
+
OneHour: "OneHour",
|
|
6016
|
+
OneWeek: "OneWeek",
|
|
6017
|
+
};
|
|
6018
|
+
const ApplicationConfigType = {
|
|
6019
|
+
SemtechGeoLocation: "SemtechGeolocation",
|
|
6020
|
+
};
|
|
6021
|
+
const BatteryLevel = {
|
|
6022
|
+
CRITICAL: "critical",
|
|
6023
|
+
LOW: "low",
|
|
6024
|
+
NORMAL: "normal",
|
|
6025
|
+
};
|
|
6026
|
+
const SigningAlg = {
|
|
6027
|
+
Ed25519: "Ed25519",
|
|
6028
|
+
P256r1: "P256r1",
|
|
6029
|
+
};
|
|
6030
|
+
const ConnectionStatus = {
|
|
6031
|
+
CONNECTED: "Connected",
|
|
6032
|
+
DISCONNECTED: "Disconnected",
|
|
6033
|
+
};
|
|
6034
|
+
const EventNotificationTopicStatus = {
|
|
6035
|
+
Disabled: "Disabled",
|
|
6036
|
+
Enabled: "Enabled",
|
|
6037
|
+
};
|
|
6038
|
+
const ExpressionType = {
|
|
6039
|
+
MqttTopic: "MqttTopic",
|
|
6040
|
+
RuleName: "RuleName",
|
|
6041
|
+
};
|
|
6042
|
+
const SupportedRfRegion = {
|
|
6043
|
+
AS923_1: "AS923-1",
|
|
6044
|
+
AS923_2: "AS923-2",
|
|
6045
|
+
AS923_3: "AS923-3",
|
|
6046
|
+
AS923_4: "AS923-4",
|
|
6047
|
+
AU915: "AU915",
|
|
6048
|
+
CN470: "CN470",
|
|
6049
|
+
CN779: "CN779",
|
|
6050
|
+
EU433: "EU433",
|
|
6051
|
+
EU868: "EU868",
|
|
6052
|
+
IN865: "IN865",
|
|
6053
|
+
KR920: "KR920",
|
|
6054
|
+
RU864: "RU864",
|
|
6055
|
+
US915: "US915",
|
|
6056
|
+
};
|
|
6057
|
+
const DlClass = {
|
|
6058
|
+
ClassB: "ClassB",
|
|
6059
|
+
ClassC: "ClassC",
|
|
6060
|
+
};
|
|
6061
|
+
const LogLevel = {
|
|
6062
|
+
DISABLED: "DISABLED",
|
|
6063
|
+
ERROR: "ERROR",
|
|
6064
|
+
INFO: "INFO",
|
|
6065
|
+
};
|
|
6066
|
+
const MulticastFrameInfo = {
|
|
6067
|
+
DISABLED: "DISABLED",
|
|
6068
|
+
ENABLED: "ENABLED",
|
|
6069
|
+
};
|
|
6070
|
+
const WirelessDeviceFrameInfo = {
|
|
6071
|
+
DISABLED: "DISABLED",
|
|
6072
|
+
ENABLED: "ENABLED",
|
|
6073
|
+
};
|
|
6074
|
+
const PositioningConfigStatus = {
|
|
6075
|
+
Disabled: "Disabled",
|
|
6076
|
+
Enabled: "Enabled",
|
|
6077
|
+
};
|
|
6078
|
+
const WirelessDeviceType = {
|
|
6079
|
+
LoRaWAN: "LoRaWAN",
|
|
6080
|
+
Sidewalk: "Sidewalk",
|
|
6081
|
+
};
|
|
6082
|
+
const WirelessGatewayTaskStatus = {
|
|
6083
|
+
COMPLETED: "COMPLETED",
|
|
6084
|
+
FAILED: "FAILED",
|
|
6085
|
+
FIRST_RETRY: "FIRST_RETRY",
|
|
6086
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
6087
|
+
PENDING: "PENDING",
|
|
6088
|
+
SECOND_RETRY: "SECOND_RETRY",
|
|
6089
|
+
};
|
|
6090
|
+
const DeviceProfileType = {
|
|
6091
|
+
LoRaWAN: "LoRaWAN",
|
|
6092
|
+
Sidewalk: "Sidewalk",
|
|
6093
|
+
};
|
|
6094
|
+
const DeviceState = {
|
|
6095
|
+
PROVISIONED: "Provisioned",
|
|
6096
|
+
REGISTEREDNOTSEEN: "RegisteredNotSeen",
|
|
6097
|
+
REGISTEREDREACHABLE: "RegisteredReachable",
|
|
6098
|
+
REGISTEREDUNREACHABLE: "RegisteredUnreachable",
|
|
6099
|
+
};
|
|
6100
|
+
const DimensionName = {
|
|
6101
|
+
DeviceId: "DeviceId",
|
|
6102
|
+
GatewayId: "GatewayId",
|
|
6103
|
+
};
|
|
6104
|
+
const PartnerType = {
|
|
6105
|
+
Sidewalk: "Sidewalk",
|
|
6106
|
+
};
|
|
6107
|
+
const DownlinkMode = {
|
|
6108
|
+
CONCURRENT: "CONCURRENT",
|
|
6109
|
+
SEQUENTIAL: "SEQUENTIAL",
|
|
6110
|
+
USING_UPLINK_GATEWAY: "USING_UPLINK_GATEWAY",
|
|
6111
|
+
};
|
|
6112
|
+
const Event = {
|
|
6113
|
+
ACK: "ack",
|
|
6114
|
+
DISCOVERED: "discovered",
|
|
6115
|
+
LOST: "lost",
|
|
6116
|
+
NACK: "nack",
|
|
6117
|
+
PASSTHROUGH: "passthrough",
|
|
6118
|
+
};
|
|
6119
|
+
const IdentifierType = {
|
|
6120
|
+
DevEui: "DevEui",
|
|
6121
|
+
GatewayEui: "GatewayEui",
|
|
6122
|
+
PartnerAccountId: "PartnerAccountId",
|
|
6123
|
+
WirelessDeviceId: "WirelessDeviceId",
|
|
6124
|
+
WirelessGatewayId: "WirelessGatewayId",
|
|
6125
|
+
};
|
|
6126
|
+
const EventNotificationPartnerType = {
|
|
6127
|
+
Sidewalk: "Sidewalk",
|
|
6128
|
+
};
|
|
6129
|
+
const EventNotificationResourceType = {
|
|
6130
|
+
SidewalkAccount: "SidewalkAccount",
|
|
6131
|
+
WirelessDevice: "WirelessDevice",
|
|
6132
|
+
WirelessGateway: "WirelessGateway",
|
|
6133
|
+
};
|
|
6134
|
+
const FuotaDeviceStatus = {
|
|
6135
|
+
Device_exist_in_conflict_fuota_task: "Device_exist_in_conflict_fuota_task",
|
|
6136
|
+
FragAlgo_unsupported: "FragAlgo_unsupported",
|
|
6137
|
+
FragIndex_unsupported: "FragIndex_unsupported",
|
|
6138
|
+
Initial: "Initial",
|
|
6139
|
+
MICError: "MICError",
|
|
6140
|
+
MemoryError: "MemoryError",
|
|
6141
|
+
MissingFrag: "MissingFrag",
|
|
6142
|
+
Not_enough_memory: "Not_enough_memory",
|
|
6143
|
+
Package_Not_Supported: "Package_Not_Supported",
|
|
6144
|
+
SessionCnt_replay: "SessionCnt_replay",
|
|
6145
|
+
Successful: "Successful",
|
|
6146
|
+
Wrong_descriptor: "Wrong_descriptor",
|
|
6147
|
+
};
|
|
6148
|
+
const FuotaTaskEvent = {
|
|
6149
|
+
Fuota: "Fuota",
|
|
6150
|
+
};
|
|
6151
|
+
const FuotaTaskType = {
|
|
6152
|
+
LoRaWAN: "LoRaWAN",
|
|
6153
|
+
};
|
|
6154
|
+
const FuotaTaskStatus = {
|
|
6155
|
+
Delete_Waiting: "Delete_Waiting",
|
|
6156
|
+
FuotaDone: "FuotaDone",
|
|
6157
|
+
FuotaSession_Waiting: "FuotaSession_Waiting",
|
|
6158
|
+
In_FuotaSession: "In_FuotaSession",
|
|
6159
|
+
Pending: "Pending",
|
|
6160
|
+
};
|
|
6161
|
+
const WirelessDeviceEvent = {
|
|
6162
|
+
Downlink_Data: "Downlink_Data",
|
|
6163
|
+
Join: "Join",
|
|
6164
|
+
Registration: "Registration",
|
|
6165
|
+
Rejoin: "Rejoin",
|
|
6166
|
+
Uplink_Data: "Uplink_Data",
|
|
6167
|
+
};
|
|
6168
|
+
const WirelessGatewayEvent = {
|
|
6169
|
+
CUPS_Request: "CUPS_Request",
|
|
6170
|
+
Certificate: "Certificate",
|
|
6171
|
+
};
|
|
6172
|
+
const WirelessGatewayType = {
|
|
6173
|
+
LoRaWAN: "LoRaWAN",
|
|
6174
|
+
};
|
|
6175
|
+
const SummaryMetricConfigurationStatus = {
|
|
6176
|
+
Disabled: "Disabled",
|
|
6177
|
+
Enabled: "Enabled",
|
|
6178
|
+
};
|
|
6179
|
+
const MetricName = {
|
|
6180
|
+
AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount",
|
|
6181
|
+
AwsAccountActiveGatewayCount: "AwsAccountActiveGatewayCount",
|
|
6182
|
+
AwsAccountDeviceCount: "AwsAccountDeviceCount",
|
|
6183
|
+
AwsAccountDownlinkCount: "AwsAccountDownlinkCount",
|
|
6184
|
+
AwsAccountGatewayCount: "AwsAccountGatewayCount",
|
|
6185
|
+
AwsAccountJoinAcceptCount: "AwsAccountJoinAcceptCount",
|
|
6186
|
+
AwsAccountJoinRequestCount: "AwsAccountJoinRequestCount",
|
|
6187
|
+
AwsAccountRoamingDownlinkCount: "AwsAccountRoamingDownlinkCount",
|
|
6188
|
+
AwsAccountRoamingUplinkCount: "AwsAccountRoamingUplinkCount",
|
|
6189
|
+
AwsAccountUplinkCount: "AwsAccountUplinkCount",
|
|
6190
|
+
AwsAccountUplinkLostCount: "AwsAccountUplinkLostCount",
|
|
6191
|
+
AwsAccountUplinkLostRate: "AwsAccountUplinkLostRate",
|
|
6192
|
+
DeviceDownlinkCount: "DeviceDownlinkCount",
|
|
6193
|
+
DeviceJoinAcceptCount: "DeviceJoinAcceptCount",
|
|
6194
|
+
DeviceJoinRequestCount: "DeviceJoinRequestCount",
|
|
6195
|
+
DeviceRSSI: "DeviceRSSI",
|
|
6196
|
+
DeviceRoamingDownlinkCount: "DeviceRoamingDownlinkCount",
|
|
6197
|
+
DeviceRoamingRSSI: "DeviceRoamingRSSI",
|
|
6198
|
+
DeviceRoamingSNR: "DeviceRoamingSNR",
|
|
6199
|
+
DeviceRoamingUplinkCount: "DeviceRoamingUplinkCount",
|
|
6200
|
+
DeviceSNR: "DeviceSNR",
|
|
6201
|
+
DeviceUplinkCount: "DeviceUplinkCount",
|
|
6202
|
+
DeviceUplinkLostCount: "DeviceUplinkLostCount",
|
|
6203
|
+
DeviceUplinkLostRate: "DeviceUplinkLostRate",
|
|
6204
|
+
GatewayDownTime: "GatewayDownTime",
|
|
6205
|
+
GatewayDownlinkCount: "GatewayDownlinkCount",
|
|
6206
|
+
GatewayJoinAcceptCount: "GatewayJoinAcceptCount",
|
|
6207
|
+
GatewayJoinRequestCount: "GatewayJoinRequestCount",
|
|
6208
|
+
GatewayRSSI: "GatewayRSSI",
|
|
6209
|
+
GatewaySNR: "GatewaySNR",
|
|
6210
|
+
GatewayUpTime: "GatewayUpTime",
|
|
6211
|
+
GatewayUplinkCount: "GatewayUplinkCount",
|
|
6212
|
+
};
|
|
6213
|
+
const MetricQueryStatus = {
|
|
6214
|
+
Failed: "Failed",
|
|
6215
|
+
Succeeded: "Succeeded",
|
|
6216
|
+
};
|
|
6217
|
+
const PositionResourceType = {
|
|
6218
|
+
WirelessDevice: "WirelessDevice",
|
|
6219
|
+
WirelessGateway: "WirelessGateway",
|
|
6220
|
+
};
|
|
6221
|
+
const PositionSolverProvider = {
|
|
6222
|
+
SEMTECH: "Semtech",
|
|
6223
|
+
};
|
|
6224
|
+
const PositionSolverType = {
|
|
6225
|
+
GNSS: "GNSS",
|
|
6226
|
+
};
|
|
6227
|
+
const PositionConfigurationFec = {
|
|
6228
|
+
NONE: "NONE",
|
|
6229
|
+
ROSE: "ROSE",
|
|
6230
|
+
};
|
|
6231
|
+
const PositionConfigurationStatus = {
|
|
6232
|
+
Disabled: "Disabled",
|
|
6233
|
+
Enabled: "Enabled",
|
|
6234
|
+
};
|
|
6235
|
+
const WirelessGatewayServiceType = {
|
|
6236
|
+
CUPS: "CUPS",
|
|
6237
|
+
LNS: "LNS",
|
|
6238
|
+
};
|
|
6239
|
+
const WirelessDeviceIdType = {
|
|
6240
|
+
DevEui: "DevEui",
|
|
6241
|
+
SidewalkManufacturingSn: "SidewalkManufacturingSn",
|
|
6242
|
+
ThingName: "ThingName",
|
|
6243
|
+
WirelessDeviceId: "WirelessDeviceId",
|
|
6244
|
+
};
|
|
6245
|
+
const WirelessDeviceSidewalkStatus = {
|
|
6246
|
+
ACTIVATED: "ACTIVATED",
|
|
6247
|
+
PROVISIONED: "PROVISIONED",
|
|
6248
|
+
REGISTERED: "REGISTERED",
|
|
6249
|
+
UNKNOWN: "UNKNOWN",
|
|
6250
|
+
};
|
|
6251
|
+
const ImportTaskStatus = {
|
|
6252
|
+
COMPLETE: "COMPLETE",
|
|
6253
|
+
DELETING: "DELETING",
|
|
6254
|
+
FAILED: "FAILED",
|
|
6255
|
+
INITIALIZED: "INITIALIZED",
|
|
6256
|
+
INITIALIZING: "INITIALIZING",
|
|
6257
|
+
PENDING: "PENDING",
|
|
6258
|
+
};
|
|
6259
|
+
const WirelessGatewayIdType = {
|
|
6260
|
+
GatewayEui: "GatewayEui",
|
|
6261
|
+
ThingName: "ThingName",
|
|
6262
|
+
WirelessGatewayId: "WirelessGatewayId",
|
|
6263
|
+
};
|
|
6264
|
+
const OnboardStatus = {
|
|
6265
|
+
FAILED: "FAILED",
|
|
6266
|
+
INITIALIZED: "INITIALIZED",
|
|
6267
|
+
ONBOARDED: "ONBOARDED",
|
|
6268
|
+
PENDING: "PENDING",
|
|
6269
|
+
};
|
|
6270
|
+
const WirelessGatewayTaskDefinitionType = {
|
|
6271
|
+
UPDATE: "UPDATE",
|
|
6272
|
+
};
|
|
6273
|
+
const MessageType = {
|
|
6274
|
+
CUSTOM_COMMAND_ID_GET: "CUSTOM_COMMAND_ID_GET",
|
|
6275
|
+
CUSTOM_COMMAND_ID_NOTIFY: "CUSTOM_COMMAND_ID_NOTIFY",
|
|
6276
|
+
CUSTOM_COMMAND_ID_RESP: "CUSTOM_COMMAND_ID_RESP",
|
|
6277
|
+
CUSTOM_COMMAND_ID_SET: "CUSTOM_COMMAND_ID_SET",
|
|
6278
|
+
};
|
|
6279
|
+
|
|
6280
6280
|
Object.defineProperty(exports, "$Command", {
|
|
6281
6281
|
enumerable: true,
|
|
6282
6282
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./IoTWirelessClient";
|
|
|
2
2
|
export * from "./IoTWireless";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { IoTWirelessServiceException } from "./models/IoTWirelessServiceException";
|