@aws-sdk/client-iot-wireless 3.338.0 → 3.342.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/README.md +13 -11
- package/dist-cjs/models/models_0.js +6 -2
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/IoTWireless.d.ts +13 -11
- package/dist-types/IoTWirelessClient.d.ts +13 -11
- package/dist-types/commands/CreateNetworkAnalyzerConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWirelessGatewayTaskDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DisassociateAwsAccountFromPartnerAccountCommand.d.ts +3 -1
- package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +3 -2
- package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/GetPartnerAccountCommand.d.ts +2 -1
- package/dist-types/commands/GetPositionCommand.d.ts +1 -2
- package/dist-types/commands/GetPositionConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/GetPositionEstimateCommand.d.ts +3 -2
- package/dist-types/commands/GetResourceLogLevelCommand.d.ts +2 -2
- package/dist-types/commands/GetResourcePositionCommand.d.ts +2 -2
- package/dist-types/commands/GetServiceEndpointCommand.d.ts +2 -1
- package/dist-types/commands/GetWirelessGatewayCertificateCommand.d.ts +2 -1
- package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +2 -3
- package/dist-types/commands/PutResourceLogLevelCommand.d.ts +3 -2
- package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +2 -1
- package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +2 -2
- package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -1
- package/dist-types/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.d.ts +2 -1
- package/dist-types/commands/TestWirelessDeviceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +3 -2
- package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +7 -0
- package/dist-types/index.d.ts +13 -11
- package/dist-types/models/models_0.d.ts +367 -216
- package/dist-types/models/models_1.d.ts +139 -52
- package/dist-types/ts3.4/models/models_0.d.ts +9 -8
- package/dist-types/ts3.4/models/models_1.d.ts +12 -1
- package/package.json +28 -28
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
|
|
3
|
-
import { ApplicationConfig, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, IdentifierType, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANListDevice, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration,
|
|
3
|
+
import { ApplicationConfig, CertificateList, ConnectionStatusEventConfiguration, ConnectionStatusResourceTypeEventConfiguration, DeviceRegistrationStateEventConfiguration, DeviceRegistrationStateResourceTypeEventConfiguration, EventNotificationPartnerType, ExpressionType, FuotaDeviceStatus, IdentifierType, JoinEventConfiguration, JoinResourceTypeEventConfiguration, LogLevel, LoRaWANFuotaTask, LoRaWANGateway, LoRaWANGatewayVersion, LoRaWANListDevice, LoRaWANMulticast, LoRaWANMulticastSession, LoRaWANSendDataToDevice, MessageDeliveryStatusEventConfiguration, MessageDeliveryStatusResourceTypeEventConfiguration, PartnerType, PositionConfigurationFec, PositionConfigurationStatus, Positioning, PositioningConfigStatus, PositionResourceType, ProximityEventConfiguration, ProximityResourceTypeEventConfiguration, Tag, TraceContent, WirelessDeviceLogOption, WirelessDeviceSidewalkStatus, WirelessDeviceType, WirelessGatewayLogOption } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>Sidewalk object used by list functions.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface SidewalkListDevice {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The Sidewalk Amazon ID.</p>
|
|
11
|
+
*/
|
|
12
|
+
AmazonId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The sidewalk device identification.</p>
|
|
15
|
+
*/
|
|
16
|
+
SidewalkId?: string;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The Sidewalk manufacturing series number.</p>
|
|
19
|
+
*/
|
|
20
|
+
SidewalkManufacturingSn?: string;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The sidewalk device certificates for Ed25519 and P256r1.</p>
|
|
23
|
+
*/
|
|
24
|
+
DeviceCertificates?: CertificateList[];
|
|
25
|
+
/**
|
|
26
|
+
* <p>Sidewalk object used by list functions.</p>
|
|
27
|
+
*/
|
|
28
|
+
DeviceProfileId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The status of the Sidewalk devices, such as provisioned or registered.</p>
|
|
31
|
+
*/
|
|
32
|
+
Status?: WirelessDeviceSidewalkStatus | string;
|
|
33
|
+
}
|
|
4
34
|
/**
|
|
5
35
|
* @public
|
|
6
36
|
* <p>Information about a wireless device's operation.</p>
|
|
@@ -28,6 +58,9 @@ export interface WirelessDeviceStatistics {
|
|
|
28
58
|
DestinationName?: string;
|
|
29
59
|
/**
|
|
30
60
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
61
|
+
* <note>
|
|
62
|
+
* <p>Theis value is only valid for 3 months.</p>
|
|
63
|
+
* </note>
|
|
31
64
|
*/
|
|
32
65
|
LastUplinkReceivedAt?: string;
|
|
33
66
|
/**
|
|
@@ -69,7 +102,9 @@ export interface ListWirelessDevicesResponse {
|
|
|
69
102
|
*/
|
|
70
103
|
export interface ListWirelessGatewaysRequest {
|
|
71
104
|
/**
|
|
72
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
105
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
106
|
+
* response; otherwise <b>null</b> to receive the first set of
|
|
107
|
+
* results.</p>
|
|
73
108
|
*/
|
|
74
109
|
NextToken?: string;
|
|
75
110
|
/**
|
|
@@ -104,6 +139,9 @@ export interface WirelessGatewayStatistics {
|
|
|
104
139
|
LoRaWAN?: LoRaWANGateway;
|
|
105
140
|
/**
|
|
106
141
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
142
|
+
* <note>
|
|
143
|
+
* <p>This value is only valid for 3 months.</p>
|
|
144
|
+
* </note>
|
|
107
145
|
*/
|
|
108
146
|
LastUplinkReceivedAt?: string;
|
|
109
147
|
}
|
|
@@ -140,11 +178,14 @@ export interface ListWirelessGatewayTaskDefinitionsRequest {
|
|
|
140
178
|
*/
|
|
141
179
|
MaxResults?: number;
|
|
142
180
|
/**
|
|
143
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
181
|
+
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
182
|
+
* response; otherwise <b>null</b> to receive the first set of
|
|
183
|
+
* results.</p>
|
|
144
184
|
*/
|
|
145
185
|
NextToken?: string;
|
|
146
186
|
/**
|
|
147
|
-
* <p>A filter to list only the wireless gateway task definitions that use this task
|
|
187
|
+
* <p>A filter to list only the wireless gateway task definitions that use this task
|
|
188
|
+
* definition type.</p>
|
|
148
189
|
*/
|
|
149
190
|
TaskDefinitionType?: WirelessGatewayTaskDefinitionType | string;
|
|
150
191
|
}
|
|
@@ -226,16 +267,18 @@ export interface PutPositionConfigurationRequest {
|
|
|
226
267
|
*/
|
|
227
268
|
ResourceIdentifier: string | undefined;
|
|
228
269
|
/**
|
|
229
|
-
* <p>Resource type of the resource for which you want to update the position
|
|
270
|
+
* <p>Resource type of the resource for which you want to update the position
|
|
271
|
+
* configuration.</p>
|
|
230
272
|
*/
|
|
231
273
|
ResourceType: PositionResourceType | string | undefined;
|
|
232
274
|
/**
|
|
233
|
-
* <p>The positioning solvers used to update the position configuration of the
|
|
275
|
+
* <p>The positioning solvers used to update the position configuration of the
|
|
276
|
+
* resource.</p>
|
|
234
277
|
*/
|
|
235
278
|
Solvers?: PositionSolverConfigurations;
|
|
236
279
|
/**
|
|
237
|
-
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
238
|
-
* data for use by AWS IoT Core for LoRaWAN.</p>
|
|
280
|
+
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
281
|
+
* device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
239
282
|
*/
|
|
240
283
|
Destination?: string;
|
|
241
284
|
}
|
|
@@ -249,17 +292,19 @@ export interface PutPositionConfigurationResponse {
|
|
|
249
292
|
*/
|
|
250
293
|
export interface PutResourceLogLevelRequest {
|
|
251
294
|
/**
|
|
252
|
-
* <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
|
|
253
|
-
* it is the wireless gateway ID.</p>
|
|
295
|
+
* <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
|
|
296
|
+
* For a wireless gateway, it is the wireless gateway ID.</p>
|
|
254
297
|
*/
|
|
255
298
|
ResourceIdentifier: string | undefined;
|
|
256
299
|
/**
|
|
257
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code> or
|
|
300
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code> or
|
|
301
|
+
* <code>WirelessGateway</code>.</p>
|
|
258
302
|
*/
|
|
259
303
|
ResourceType: string | undefined;
|
|
260
304
|
/**
|
|
261
|
-
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
262
|
-
*
|
|
305
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
306
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
307
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
263
308
|
*/
|
|
264
309
|
LogLevel: LogLevel | string | undefined;
|
|
265
310
|
}
|
|
@@ -283,12 +328,13 @@ export interface ResetAllResourceLogLevelsResponse {
|
|
|
283
328
|
*/
|
|
284
329
|
export interface ResetResourceLogLevelRequest {
|
|
285
330
|
/**
|
|
286
|
-
* <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
|
|
287
|
-
* it is the wireless gateway ID.</p>
|
|
331
|
+
* <p>The identifier of the resource. For a Wireless Device, it is the wireless device ID.
|
|
332
|
+
* For a wireless gateway, it is the wireless gateway ID.</p>
|
|
288
333
|
*/
|
|
289
334
|
ResourceIdentifier: string | undefined;
|
|
290
335
|
/**
|
|
291
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code> or
|
|
336
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code> or
|
|
337
|
+
* <code>WirelessGateway</code>.</p>
|
|
292
338
|
*/
|
|
293
339
|
ResourceType: string | undefined;
|
|
294
340
|
}
|
|
@@ -367,7 +413,8 @@ export interface SidewalkSendDataToDevice {
|
|
|
367
413
|
*/
|
|
368
414
|
Seq?: number;
|
|
369
415
|
/**
|
|
370
|
-
* <p>Sidewalk device message type. Default value is
|
|
416
|
+
* <p>Sidewalk device message type. Default value is
|
|
417
|
+
* <code>CUSTOM_COMMAND_ID_NOTIFY</code>.</p>
|
|
371
418
|
*/
|
|
372
419
|
MessageType?: MessageType | string;
|
|
373
420
|
/**
|
|
@@ -398,7 +445,8 @@ export interface SendDataToWirelessDeviceRequest {
|
|
|
398
445
|
*/
|
|
399
446
|
Id: string | undefined;
|
|
400
447
|
/**
|
|
401
|
-
* <p>The transmit mode to use to send data to the wireless device. Can be: <code>0</code>
|
|
448
|
+
* <p>The transmit mode to use to send data to the wireless device. Can be: <code>0</code>
|
|
449
|
+
* for UM (unacknowledge mode) or <code>1</code> for AM (acknowledge mode).</p>
|
|
402
450
|
*/
|
|
403
451
|
TransmitMode: number | undefined;
|
|
404
452
|
/**
|
|
@@ -428,11 +476,13 @@ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
|
|
|
428
476
|
*/
|
|
429
477
|
Id: string | undefined;
|
|
430
478
|
/**
|
|
431
|
-
* <p>Query string used to search for wireless devices as part of the bulk associate and
|
|
479
|
+
* <p>Query string used to search for wireless devices as part of the bulk associate and
|
|
480
|
+
* disassociate process.</p>
|
|
432
481
|
*/
|
|
433
482
|
QueryString?: string;
|
|
434
483
|
/**
|
|
435
|
-
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
484
|
+
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
485
|
+
* manage a resource.</p>
|
|
436
486
|
*/
|
|
437
487
|
Tags?: Tag[];
|
|
438
488
|
}
|
|
@@ -450,11 +500,13 @@ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
|
|
|
450
500
|
*/
|
|
451
501
|
Id: string | undefined;
|
|
452
502
|
/**
|
|
453
|
-
* <p>Query string used to search for wireless devices as part of the bulk associate and
|
|
503
|
+
* <p>Query string used to search for wireless devices as part of the bulk associate and
|
|
504
|
+
* disassociate process.</p>
|
|
454
505
|
*/
|
|
455
506
|
QueryString?: string;
|
|
456
507
|
/**
|
|
457
|
-
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
508
|
+
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
509
|
+
* manage a resource.</p>
|
|
458
510
|
*/
|
|
459
511
|
Tags?: Tag[];
|
|
460
512
|
}
|
|
@@ -529,7 +581,10 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
|
|
|
529
581
|
*/
|
|
530
582
|
DestinationName: string | undefined;
|
|
531
583
|
/**
|
|
532
|
-
* <p>Each resource must have a unique client request token. If you try to create a new
|
|
584
|
+
* <p>Each resource must have a unique client request token. If you try to create a new
|
|
585
|
+
* resource with the same token as a resource that already exists, an exception occurs. If
|
|
586
|
+
* you omit this value, AWS SDKs will automatically generate a unique client
|
|
587
|
+
* request.</p>
|
|
533
588
|
*/
|
|
534
589
|
ClientRequestToken?: string;
|
|
535
590
|
/**
|
|
@@ -537,7 +592,8 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
|
|
|
537
592
|
*/
|
|
538
593
|
DeviceName?: string;
|
|
539
594
|
/**
|
|
540
|
-
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
595
|
+
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
596
|
+
* manage a resource.</p>
|
|
541
597
|
*/
|
|
542
598
|
Tags?: Tag[];
|
|
543
599
|
/**
|
|
@@ -582,11 +638,15 @@ export interface StartWirelessDeviceImportTaskRequest {
|
|
|
582
638
|
*/
|
|
583
639
|
DestinationName: string | undefined;
|
|
584
640
|
/**
|
|
585
|
-
* <p>Each resource must have a unique client request token. If you try to create a new
|
|
641
|
+
* <p>Each resource must have a unique client request token. If you try to create a new
|
|
642
|
+
* resource with the same token as a resource that already exists, an exception occurs. If
|
|
643
|
+
* you omit this value, AWS SDKs will automatically generate a unique client
|
|
644
|
+
* request.</p>
|
|
586
645
|
*/
|
|
587
646
|
ClientRequestToken?: string;
|
|
588
647
|
/**
|
|
589
|
-
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
648
|
+
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
649
|
+
* manage a resource.</p>
|
|
590
650
|
*/
|
|
591
651
|
Tags?: Tag[];
|
|
592
652
|
/**
|
|
@@ -616,7 +676,8 @@ export interface TagResourceRequest {
|
|
|
616
676
|
*/
|
|
617
677
|
ResourceArn: string | undefined;
|
|
618
678
|
/**
|
|
619
|
-
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that you can use
|
|
679
|
+
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that you can use
|
|
680
|
+
* to manage a resource.</p>
|
|
620
681
|
*/
|
|
621
682
|
Tags: Tag[] | undefined;
|
|
622
683
|
}
|
|
@@ -713,24 +774,28 @@ export interface UpdateDestinationResponse {
|
|
|
713
774
|
*/
|
|
714
775
|
export interface UpdateEventConfigurationByResourceTypesRequest {
|
|
715
776
|
/**
|
|
716
|
-
* <p>Device registration state resource type event configuration object for enabling and
|
|
717
|
-
* gateway topic.</p>
|
|
777
|
+
* <p>Device registration state resource type event configuration object for enabling and
|
|
778
|
+
* disabling wireless gateway topic.</p>
|
|
718
779
|
*/
|
|
719
780
|
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
720
781
|
/**
|
|
721
|
-
* <p>Proximity resource type event configuration object for enabling and disabling wireless
|
|
782
|
+
* <p>Proximity resource type event configuration object for enabling and disabling wireless
|
|
783
|
+
* gateway topic.</p>
|
|
722
784
|
*/
|
|
723
785
|
Proximity?: ProximityResourceTypeEventConfiguration;
|
|
724
786
|
/**
|
|
725
|
-
* <p>Join resource type event configuration object for enabling and disabling wireless
|
|
787
|
+
* <p>Join resource type event configuration object for enabling and disabling wireless
|
|
788
|
+
* device topic.</p>
|
|
726
789
|
*/
|
|
727
790
|
Join?: JoinResourceTypeEventConfiguration;
|
|
728
791
|
/**
|
|
729
|
-
* <p>Connection status resource type event configuration object for enabling and disabling
|
|
792
|
+
* <p>Connection status resource type event configuration object for enabling and disabling
|
|
793
|
+
* wireless gateway topic.</p>
|
|
730
794
|
*/
|
|
731
795
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
732
796
|
/**
|
|
733
|
-
* <p>Message delivery status resource type event configuration object for enabling and
|
|
797
|
+
* <p>Message delivery status resource type event configuration object for enabling and
|
|
798
|
+
* disabling wireless device topic.</p>
|
|
734
799
|
*/
|
|
735
800
|
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
736
801
|
}
|
|
@@ -760,7 +825,8 @@ export interface UpdateFuotaTaskRequest {
|
|
|
760
825
|
*/
|
|
761
826
|
LoRaWAN?: LoRaWANFuotaTask;
|
|
762
827
|
/**
|
|
763
|
-
* <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
|
|
828
|
+
* <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
|
|
829
|
+
* task.</p>
|
|
764
830
|
*/
|
|
765
831
|
FirmwareUpdateImage?: string;
|
|
766
832
|
/**
|
|
@@ -768,19 +834,26 @@ export interface UpdateFuotaTaskRequest {
|
|
|
768
834
|
*/
|
|
769
835
|
FirmwareUpdateRole?: string;
|
|
770
836
|
/**
|
|
771
|
-
* <p>The percentage of added redundant
|
|
772
|
-
* 100 bytes and fragment size is 10 bytes, with
|
|
773
|
-
*
|
|
837
|
+
* <p>The percentage of the added fragments that are redundant. For example, if the size of
|
|
838
|
+
* the firmware image file is 100 bytes and the fragment size is 10 bytes, with
|
|
839
|
+
* <code>RedundancyPercent</code> set to 50(%), the final number of encoded fragments
|
|
840
|
+
* is (100 / 10) + (100 / 10 * 50%) = 15.</p>
|
|
774
841
|
*/
|
|
775
842
|
RedundancyPercent?: number;
|
|
776
843
|
/**
|
|
777
|
-
* <p>The size of each fragment in bytes.
|
|
844
|
+
* <p>The size of each fragment in bytes. This parameter is supported only for FUOTA tasks
|
|
845
|
+
* with multicast groups.</p>
|
|
778
846
|
*/
|
|
779
847
|
FragmentSizeBytes?: number;
|
|
780
848
|
/**
|
|
781
|
-
* <p>The interval
|
|
782
|
-
*
|
|
783
|
-
*
|
|
849
|
+
* <p>The interval for sending fragments in milliseconds, rounded to the nearest
|
|
850
|
+
* second.</p>
|
|
851
|
+
* <note>
|
|
852
|
+
* <p>This interval only determines the timing for when the Cloud sends down the
|
|
853
|
+
* fragments to yor device. There can be a delay for when your device will receive
|
|
854
|
+
* these fragments. This delay depends on the device's class and the communication
|
|
855
|
+
* delay with the cloud.</p>
|
|
856
|
+
* </note>
|
|
784
857
|
*/
|
|
785
858
|
FragmentIntervalMS?: number;
|
|
786
859
|
}
|
|
@@ -794,8 +867,9 @@ export interface UpdateFuotaTaskResponse {
|
|
|
794
867
|
*/
|
|
795
868
|
export interface UpdateLogLevelsByResourceTypesRequest {
|
|
796
869
|
/**
|
|
797
|
-
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
798
|
-
*
|
|
870
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
871
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
872
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
799
873
|
*/
|
|
800
874
|
DefaultLogLevel?: LogLevel | string;
|
|
801
875
|
/**
|
|
@@ -852,28 +926,38 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
852
926
|
TraceContent?: TraceContent;
|
|
853
927
|
/**
|
|
854
928
|
* <p>Wireless device resources to add to the network analyzer configuration. Provide the
|
|
855
|
-
*
|
|
929
|
+
* <code>WirelessDeviceId</code> of the resource to add in the input array.</p>
|
|
856
930
|
*/
|
|
857
931
|
WirelessDevicesToAdd?: string[];
|
|
858
932
|
/**
|
|
859
|
-
* <p>Wireless device resources to remove from the network analyzer configuration. Provide
|
|
860
|
-
* <code>WirelessDeviceId</code> of the resources to remove in the input array.</p>
|
|
933
|
+
* <p>Wireless device resources to remove from the network analyzer configuration. Provide
|
|
934
|
+
* the <code>WirelessDeviceId</code> of the resources to remove in the input array.</p>
|
|
861
935
|
*/
|
|
862
936
|
WirelessDevicesToRemove?: string[];
|
|
863
937
|
/**
|
|
864
938
|
* <p>Wireless gateway resources to add to the network analyzer configuration. Provide the
|
|
865
|
-
*
|
|
939
|
+
* <code>WirelessGatewayId</code> of the resource to add in the input array.</p>
|
|
866
940
|
*/
|
|
867
941
|
WirelessGatewaysToAdd?: string[];
|
|
868
942
|
/**
|
|
869
|
-
* <p>Wireless gateway resources to remove from the network analyzer configuration. Provide
|
|
870
|
-
* <code>WirelessGatewayId</code> of the resources to remove in the input array.</p>
|
|
943
|
+
* <p>Wireless gateway resources to remove from the network analyzer configuration. Provide
|
|
944
|
+
* the <code>WirelessGatewayId</code> of the resources to remove in the input array.</p>
|
|
871
945
|
*/
|
|
872
946
|
WirelessGatewaysToRemove?: string[];
|
|
873
947
|
/**
|
|
874
948
|
* <p>The description of the new resource.</p>
|
|
875
949
|
*/
|
|
876
950
|
Description?: string;
|
|
951
|
+
/**
|
|
952
|
+
* <p>Multicast group resources to add to the network analyzer configuration. Provide the
|
|
953
|
+
* <code>MulticastGroupId</code> of the resource to add in the input array.</p>
|
|
954
|
+
*/
|
|
955
|
+
MulticastGroupsToAdd?: string[];
|
|
956
|
+
/**
|
|
957
|
+
* <p>Multicast group resources to remove from the network analyzer configuration. Provide the
|
|
958
|
+
* <code>MulticastGroupId</code> of the resource to remove in the input array.</p>
|
|
959
|
+
*/
|
|
960
|
+
MulticastGroupsToRemove?: string[];
|
|
877
961
|
}
|
|
878
962
|
/**
|
|
879
963
|
* @public
|
|
@@ -947,7 +1031,8 @@ export interface UpdateResourceEventConfigurationRequest {
|
|
|
947
1031
|
*/
|
|
948
1032
|
IdentifierType: IdentifierType | string | undefined;
|
|
949
1033
|
/**
|
|
950
|
-
* <p>Partner type of the resource if the identifier type is
|
|
1034
|
+
* <p>Partner type of the resource if the identifier type is
|
|
1035
|
+
* <code>PartnerAccountId</code>
|
|
951
1036
|
* </p>
|
|
952
1037
|
*/
|
|
953
1038
|
PartnerType?: EventNotificationPartnerType | string;
|
|
@@ -1087,7 +1172,8 @@ export interface UpdateWirelessDeviceRequest {
|
|
|
1087
1172
|
*/
|
|
1088
1173
|
LoRaWAN?: LoRaWANUpdateDevice;
|
|
1089
1174
|
/**
|
|
1090
|
-
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
1175
|
+
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
1176
|
+
* information.</p>
|
|
1091
1177
|
*/
|
|
1092
1178
|
Positioning?: PositioningConfigStatus | string;
|
|
1093
1179
|
}
|
|
@@ -1145,7 +1231,8 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
1145
1231
|
*/
|
|
1146
1232
|
JoinEuiFilters?: string[][];
|
|
1147
1233
|
/**
|
|
1148
|
-
* <p>A list of NetId values that are used by LoRa gateways to filter the uplink
|
|
1234
|
+
* <p>A list of NetId values that are used by LoRa gateways to filter the uplink
|
|
1235
|
+
* frames.</p>
|
|
1149
1236
|
*/
|
|
1150
1237
|
NetIdFilters?: string[];
|
|
1151
1238
|
/**
|
|
@@ -413,6 +413,12 @@ export declare const LogLevel: {
|
|
|
413
413
|
readonly INFO: "INFO";
|
|
414
414
|
};
|
|
415
415
|
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
416
|
+
export declare const MulticastFrameInfo: {
|
|
417
|
+
readonly DISABLED: "DISABLED";
|
|
418
|
+
readonly ENABLED: "ENABLED";
|
|
419
|
+
};
|
|
420
|
+
export type MulticastFrameInfo =
|
|
421
|
+
(typeof MulticastFrameInfo)[keyof typeof MulticastFrameInfo];
|
|
416
422
|
export declare const WirelessDeviceFrameInfo: {
|
|
417
423
|
readonly DISABLED: "DISABLED";
|
|
418
424
|
readonly ENABLED: "ENABLED";
|
|
@@ -422,6 +428,7 @@ export type WirelessDeviceFrameInfo =
|
|
|
422
428
|
export interface TraceContent {
|
|
423
429
|
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
|
|
424
430
|
LogLevel?: LogLevel | string;
|
|
431
|
+
MulticastFrameInfo?: MulticastFrameInfo | string;
|
|
425
432
|
}
|
|
426
433
|
export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
427
434
|
Name: string | undefined;
|
|
@@ -431,6 +438,7 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
|
431
438
|
Description?: string;
|
|
432
439
|
Tags?: Tag[];
|
|
433
440
|
ClientRequestToken?: string;
|
|
441
|
+
MulticastGroups?: string[];
|
|
434
442
|
}
|
|
435
443
|
export interface CreateNetworkAnalyzerConfigurationResponse {
|
|
436
444
|
Arn?: string;
|
|
@@ -980,6 +988,7 @@ export interface GetNetworkAnalyzerConfigurationResponse {
|
|
|
980
988
|
Description?: string;
|
|
981
989
|
Arn?: string;
|
|
982
990
|
Name?: string;
|
|
991
|
+
MulticastGroups?: string[];
|
|
983
992
|
}
|
|
984
993
|
export interface GetPartnerAccountRequest {
|
|
985
994
|
PartnerAccountId: string | undefined;
|
|
@@ -1494,14 +1503,6 @@ export interface ListWirelessDevicesRequest {
|
|
|
1494
1503
|
export interface LoRaWANListDevice {
|
|
1495
1504
|
DevEui?: string;
|
|
1496
1505
|
}
|
|
1497
|
-
export interface SidewalkListDevice {
|
|
1498
|
-
AmazonId?: string;
|
|
1499
|
-
SidewalkId?: string;
|
|
1500
|
-
SidewalkManufacturingSn?: string;
|
|
1501
|
-
DeviceCertificates?: CertificateList[];
|
|
1502
|
-
DeviceProfileId?: string;
|
|
1503
|
-
Status?: WirelessDeviceSidewalkStatus | string;
|
|
1504
|
-
}
|
|
1505
1506
|
export declare const SidewalkAccountInfoFilterSensitiveLog: (
|
|
1506
1507
|
obj: SidewalkAccountInfo
|
|
1507
1508
|
) => any;
|
|
@@ -2,6 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
|
|
3
3
|
import {
|
|
4
4
|
ApplicationConfig,
|
|
5
|
+
CertificateList,
|
|
5
6
|
ConnectionStatusEventConfiguration,
|
|
6
7
|
ConnectionStatusResourceTypeEventConfiguration,
|
|
7
8
|
DeviceRegistrationStateEventConfiguration,
|
|
@@ -30,13 +31,21 @@ import {
|
|
|
30
31
|
PositionResourceType,
|
|
31
32
|
ProximityEventConfiguration,
|
|
32
33
|
ProximityResourceTypeEventConfiguration,
|
|
33
|
-
SidewalkListDevice,
|
|
34
34
|
Tag,
|
|
35
35
|
TraceContent,
|
|
36
36
|
WirelessDeviceLogOption,
|
|
37
|
+
WirelessDeviceSidewalkStatus,
|
|
37
38
|
WirelessDeviceType,
|
|
38
39
|
WirelessGatewayLogOption,
|
|
39
40
|
} from "./models_0";
|
|
41
|
+
export interface SidewalkListDevice {
|
|
42
|
+
AmazonId?: string;
|
|
43
|
+
SidewalkId?: string;
|
|
44
|
+
SidewalkManufacturingSn?: string;
|
|
45
|
+
DeviceCertificates?: CertificateList[];
|
|
46
|
+
DeviceProfileId?: string;
|
|
47
|
+
Status?: WirelessDeviceSidewalkStatus | string;
|
|
48
|
+
}
|
|
40
49
|
export interface WirelessDeviceStatistics {
|
|
41
50
|
Arn?: string;
|
|
42
51
|
Id?: string;
|
|
@@ -286,6 +295,8 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
286
295
|
WirelessGatewaysToAdd?: string[];
|
|
287
296
|
WirelessGatewaysToRemove?: string[];
|
|
288
297
|
Description?: string;
|
|
298
|
+
MulticastGroupsToAdd?: string[];
|
|
299
|
+
MulticastGroupsToRemove?: string[];
|
|
289
300
|
}
|
|
290
301
|
export interface UpdateNetworkAnalyzerConfigurationResponse {}
|
|
291
302
|
export interface SidewalkUpdateAccount {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-wireless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.342.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,36 +21,36 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.342.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.342.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.342.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.342.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.342.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.342.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.342.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.342.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.342.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.342.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.342.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.342.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.342.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.342.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.342.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.342.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.342.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.342.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.342.0",
|
|
43
|
+
"@aws-sdk/types": "3.342.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.342.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.342.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.342.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.342.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.342.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.342.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.342.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|