@aws-sdk/client-iot-wireless 3.76.0 → 3.80.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/CHANGELOG.md +30 -0
- package/dist-cjs/IoTWireless.js +90 -0
- package/dist-cjs/commands/CreateNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DeleteNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/GetEventConfigurationByResourceTypesCommand.js +36 -0
- package/dist-cjs/commands/ListEventConfigurationsCommand.js +36 -0
- package/dist-cjs/commands/ListNetworkAnalyzerConfigurationsCommand.js +36 -0
- package/dist-cjs/commands/UpdateEventConfigurationByResourceTypesCommand.js +36 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +216 -38
- package/dist-cjs/pagination/ListDestinationsPaginator.js +2 -1
- package/dist-cjs/pagination/ListDeviceProfilesPaginator.js +2 -1
- package/dist-cjs/pagination/ListFuotaTasksPaginator.js +2 -1
- package/dist-cjs/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +2 -1
- package/dist-cjs/pagination/ListMulticastGroupsPaginator.js +2 -1
- package/dist-cjs/pagination/ListNetworkAnalyzerConfigurationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListQueuedMessagesPaginator.js +2 -1
- package/dist-cjs/pagination/ListServiceProfilesPaginator.js +2 -1
- package/dist-cjs/pagination/ListWirelessDevicesPaginator.js +2 -1
- package/dist-cjs/pagination/ListWirelessGatewaysPaginator.js +2 -1
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +743 -27
- package/dist-es/IoTWireless.js +90 -0
- package/dist-es/commands/CreateNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/DeleteNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/GetEventConfigurationByResourceTypesCommand.js +39 -0
- package/dist-es/commands/ListEventConfigurationsCommand.js +39 -0
- package/dist-es/commands/ListNetworkAnalyzerConfigurationsCommand.js +39 -0
- package/dist-es/commands/UpdateEventConfigurationByResourceTypesCommand.js +39 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +150 -28
- package/dist-es/pagination/ListDestinationsPaginator.js +3 -2
- package/dist-es/pagination/ListDeviceProfilesPaginator.js +3 -2
- package/dist-es/pagination/ListFuotaTasksPaginator.js +3 -2
- package/dist-es/pagination/ListMulticastGroupsByFuotaTaskPaginator.js +3 -2
- package/dist-es/pagination/ListMulticastGroupsPaginator.js +3 -2
- package/dist-es/pagination/ListNetworkAnalyzerConfigurationsPaginator.js +75 -0
- package/dist-es/pagination/ListQueuedMessagesPaginator.js +3 -2
- package/dist-es/pagination/ListServiceProfilesPaginator.js +3 -2
- package/dist-es/pagination/ListWirelessDevicesPaginator.js +3 -2
- package/dist-es/pagination/ListWirelessGatewaysPaginator.js +3 -2
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +847 -27
- package/dist-types/IoTWireless.d.ts +46 -4
- package/dist-types/IoTWirelessClient.d.ts +8 -2
- package/dist-types/commands/CreateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DeleteNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DeleteQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/commands/GetEventConfigurationByResourceTypesCommand.d.ts +35 -0
- package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListEventConfigurationsCommand.d.ts +35 -0
- package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +35 -0
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventConfigurationByResourceTypesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +653 -79
- package/dist-types/pagination/ListNetworkAnalyzerConfigurationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +30 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/CreateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEventConfigurationByResourceTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventConfigurationByResourceTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +361 -36
- package/dist-types/ts3.4/pagination/ListNetworkAnalyzerConfigurationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +25 -25
|
@@ -191,6 +191,27 @@ export var ConnectionStatus;
|
|
|
191
191
|
ConnectionStatus["CONNECTED"] = "Connected";
|
|
192
192
|
ConnectionStatus["DISCONNECTED"] = "Disconnected";
|
|
193
193
|
})(ConnectionStatus || (ConnectionStatus = {}));
|
|
194
|
+
export var EventNotificationTopicStatus;
|
|
195
|
+
(function (EventNotificationTopicStatus) {
|
|
196
|
+
EventNotificationTopicStatus["Disabled"] = "Disabled";
|
|
197
|
+
EventNotificationTopicStatus["Enabled"] = "Enabled";
|
|
198
|
+
})(EventNotificationTopicStatus || (EventNotificationTopicStatus = {}));
|
|
199
|
+
export var LoRaWANConnectionStatusEventNotificationConfigurations;
|
|
200
|
+
(function (LoRaWANConnectionStatusEventNotificationConfigurations) {
|
|
201
|
+
LoRaWANConnectionStatusEventNotificationConfigurations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
})(LoRaWANConnectionStatusEventNotificationConfigurations || (LoRaWANConnectionStatusEventNotificationConfigurations = {}));
|
|
203
|
+
export var ConnectionStatusEventConfiguration;
|
|
204
|
+
(function (ConnectionStatusEventConfiguration) {
|
|
205
|
+
ConnectionStatusEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
})(ConnectionStatusEventConfiguration || (ConnectionStatusEventConfiguration = {}));
|
|
207
|
+
export var LoRaWANConnectionStatusResourceTypeEventConfiguration;
|
|
208
|
+
(function (LoRaWANConnectionStatusResourceTypeEventConfiguration) {
|
|
209
|
+
LoRaWANConnectionStatusResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
})(LoRaWANConnectionStatusResourceTypeEventConfiguration || (LoRaWANConnectionStatusResourceTypeEventConfiguration = {}));
|
|
211
|
+
export var ConnectionStatusResourceTypeEventConfiguration;
|
|
212
|
+
(function (ConnectionStatusResourceTypeEventConfiguration) {
|
|
213
|
+
ConnectionStatusResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
214
|
+
})(ConnectionStatusResourceTypeEventConfiguration || (ConnectionStatusResourceTypeEventConfiguration = {}));
|
|
194
215
|
export var ExpressionType;
|
|
195
216
|
(function (ExpressionType) {
|
|
196
217
|
ExpressionType["MqttTopic"] = "MqttTopic";
|
|
@@ -252,6 +273,29 @@ export var CreateMulticastGroupResponse;
|
|
|
252
273
|
(function (CreateMulticastGroupResponse) {
|
|
253
274
|
CreateMulticastGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
275
|
})(CreateMulticastGroupResponse || (CreateMulticastGroupResponse = {}));
|
|
276
|
+
export var LogLevel;
|
|
277
|
+
(function (LogLevel) {
|
|
278
|
+
LogLevel["DISABLED"] = "DISABLED";
|
|
279
|
+
LogLevel["ERROR"] = "ERROR";
|
|
280
|
+
LogLevel["INFO"] = "INFO";
|
|
281
|
+
})(LogLevel || (LogLevel = {}));
|
|
282
|
+
export var WirelessDeviceFrameInfo;
|
|
283
|
+
(function (WirelessDeviceFrameInfo) {
|
|
284
|
+
WirelessDeviceFrameInfo["DISABLED"] = "DISABLED";
|
|
285
|
+
WirelessDeviceFrameInfo["ENABLED"] = "ENABLED";
|
|
286
|
+
})(WirelessDeviceFrameInfo || (WirelessDeviceFrameInfo = {}));
|
|
287
|
+
export var TraceContent;
|
|
288
|
+
(function (TraceContent) {
|
|
289
|
+
TraceContent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
})(TraceContent || (TraceContent = {}));
|
|
291
|
+
export var CreateNetworkAnalyzerConfigurationRequest;
|
|
292
|
+
(function (CreateNetworkAnalyzerConfigurationRequest) {
|
|
293
|
+
CreateNetworkAnalyzerConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
})(CreateNetworkAnalyzerConfigurationRequest || (CreateNetworkAnalyzerConfigurationRequest = {}));
|
|
295
|
+
export var CreateNetworkAnalyzerConfigurationResponse;
|
|
296
|
+
(function (CreateNetworkAnalyzerConfigurationResponse) {
|
|
297
|
+
CreateNetworkAnalyzerConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
})(CreateNetworkAnalyzerConfigurationResponse || (CreateNetworkAnalyzerConfigurationResponse = {}));
|
|
255
299
|
export var LoRaWANServiceProfile;
|
|
256
300
|
(function (LoRaWANServiceProfile) {
|
|
257
301
|
LoRaWANServiceProfile.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -374,6 +418,14 @@ export var DeleteMulticastGroupResponse;
|
|
|
374
418
|
(function (DeleteMulticastGroupResponse) {
|
|
375
419
|
DeleteMulticastGroupResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
376
420
|
})(DeleteMulticastGroupResponse || (DeleteMulticastGroupResponse = {}));
|
|
421
|
+
export var DeleteNetworkAnalyzerConfigurationRequest;
|
|
422
|
+
(function (DeleteNetworkAnalyzerConfigurationRequest) {
|
|
423
|
+
DeleteNetworkAnalyzerConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
424
|
+
})(DeleteNetworkAnalyzerConfigurationRequest || (DeleteNetworkAnalyzerConfigurationRequest = {}));
|
|
425
|
+
export var DeleteNetworkAnalyzerConfigurationResponse;
|
|
426
|
+
(function (DeleteNetworkAnalyzerConfigurationResponse) {
|
|
427
|
+
DeleteNetworkAnalyzerConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
428
|
+
})(DeleteNetworkAnalyzerConfigurationResponse || (DeleteNetworkAnalyzerConfigurationResponse = {}));
|
|
377
429
|
export var DeleteQueuedMessagesRequest;
|
|
378
430
|
(function (DeleteQueuedMessagesRequest) {
|
|
379
431
|
DeleteQueuedMessagesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -430,11 +482,6 @@ export var DeviceProfile;
|
|
|
430
482
|
(function (DeviceProfile) {
|
|
431
483
|
DeviceProfile.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
432
484
|
})(DeviceProfile || (DeviceProfile = {}));
|
|
433
|
-
export var EventNotificationTopicStatus;
|
|
434
|
-
(function (EventNotificationTopicStatus) {
|
|
435
|
-
EventNotificationTopicStatus["Disabled"] = "Disabled";
|
|
436
|
-
EventNotificationTopicStatus["Enabled"] = "Enabled";
|
|
437
|
-
})(EventNotificationTopicStatus || (EventNotificationTopicStatus = {}));
|
|
438
485
|
export var SidewalkEventNotificationConfigurations;
|
|
439
486
|
(function (SidewalkEventNotificationConfigurations) {
|
|
440
487
|
SidewalkEventNotificationConfigurations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -443,6 +490,14 @@ export var DeviceRegistrationStateEventConfiguration;
|
|
|
443
490
|
(function (DeviceRegistrationStateEventConfiguration) {
|
|
444
491
|
DeviceRegistrationStateEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
445
492
|
})(DeviceRegistrationStateEventConfiguration || (DeviceRegistrationStateEventConfiguration = {}));
|
|
493
|
+
export var SidewalkResourceTypeEventConfiguration;
|
|
494
|
+
(function (SidewalkResourceTypeEventConfiguration) {
|
|
495
|
+
SidewalkResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
496
|
+
})(SidewalkResourceTypeEventConfiguration || (SidewalkResourceTypeEventConfiguration = {}));
|
|
497
|
+
export var DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
498
|
+
(function (DeviceRegistrationStateResourceTypeEventConfiguration) {
|
|
499
|
+
DeviceRegistrationStateResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
500
|
+
})(DeviceRegistrationStateResourceTypeEventConfiguration || (DeviceRegistrationStateResourceTypeEventConfiguration = {}));
|
|
446
501
|
export var DeviceState;
|
|
447
502
|
(function (DeviceState) {
|
|
448
503
|
DeviceState["PROVISIONED"] = "Provisioned";
|
|
@@ -526,10 +581,44 @@ export var Event;
|
|
|
526
581
|
Event["NACK"] = "nack";
|
|
527
582
|
Event["PASSTHROUGH"] = "passthrough";
|
|
528
583
|
})(Event || (Event = {}));
|
|
584
|
+
export var LoRaWANJoinEventNotificationConfigurations;
|
|
585
|
+
(function (LoRaWANJoinEventNotificationConfigurations) {
|
|
586
|
+
LoRaWANJoinEventNotificationConfigurations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
587
|
+
})(LoRaWANJoinEventNotificationConfigurations || (LoRaWANJoinEventNotificationConfigurations = {}));
|
|
588
|
+
export var JoinEventConfiguration;
|
|
589
|
+
(function (JoinEventConfiguration) {
|
|
590
|
+
JoinEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
591
|
+
})(JoinEventConfiguration || (JoinEventConfiguration = {}));
|
|
592
|
+
export var ProximityEventConfiguration;
|
|
593
|
+
(function (ProximityEventConfiguration) {
|
|
594
|
+
ProximityEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
595
|
+
})(ProximityEventConfiguration || (ProximityEventConfiguration = {}));
|
|
596
|
+
export var EventNotificationItemConfigurations;
|
|
597
|
+
(function (EventNotificationItemConfigurations) {
|
|
598
|
+
EventNotificationItemConfigurations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
599
|
+
})(EventNotificationItemConfigurations || (EventNotificationItemConfigurations = {}));
|
|
600
|
+
export var IdentifierType;
|
|
601
|
+
(function (IdentifierType) {
|
|
602
|
+
IdentifierType["DevEui"] = "DevEui";
|
|
603
|
+
IdentifierType["GatewayEui"] = "GatewayEui";
|
|
604
|
+
IdentifierType["PartnerAccountId"] = "PartnerAccountId";
|
|
605
|
+
IdentifierType["WirelessDeviceId"] = "WirelessDeviceId";
|
|
606
|
+
IdentifierType["WirelessGatewayId"] = "WirelessGatewayId";
|
|
607
|
+
})(IdentifierType || (IdentifierType = {}));
|
|
529
608
|
export var EventNotificationPartnerType;
|
|
530
609
|
(function (EventNotificationPartnerType) {
|
|
531
610
|
EventNotificationPartnerType["Sidewalk"] = "Sidewalk";
|
|
532
611
|
})(EventNotificationPartnerType || (EventNotificationPartnerType = {}));
|
|
612
|
+
export var EventConfigurationItem;
|
|
613
|
+
(function (EventConfigurationItem) {
|
|
614
|
+
EventConfigurationItem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
615
|
+
})(EventConfigurationItem || (EventConfigurationItem = {}));
|
|
616
|
+
export var EventNotificationResourceType;
|
|
617
|
+
(function (EventNotificationResourceType) {
|
|
618
|
+
EventNotificationResourceType["SidewalkAccount"] = "SidewalkAccount";
|
|
619
|
+
EventNotificationResourceType["WirelessDevice"] = "WirelessDevice";
|
|
620
|
+
EventNotificationResourceType["WirelessGateway"] = "WirelessGateway";
|
|
621
|
+
})(EventNotificationResourceType || (EventNotificationResourceType = {}));
|
|
533
622
|
export var FuotaDeviceStatus;
|
|
534
623
|
(function (FuotaDeviceStatus) {
|
|
535
624
|
FuotaDeviceStatus["FragAlgo_unsupported"] = "FragAlgo_unsupported";
|
|
@@ -572,6 +661,26 @@ export var GetDeviceProfileResponse;
|
|
|
572
661
|
(function (GetDeviceProfileResponse) {
|
|
573
662
|
GetDeviceProfileResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
574
663
|
})(GetDeviceProfileResponse || (GetDeviceProfileResponse = {}));
|
|
664
|
+
export var GetEventConfigurationByResourceTypesRequest;
|
|
665
|
+
(function (GetEventConfigurationByResourceTypesRequest) {
|
|
666
|
+
GetEventConfigurationByResourceTypesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
667
|
+
})(GetEventConfigurationByResourceTypesRequest || (GetEventConfigurationByResourceTypesRequest = {}));
|
|
668
|
+
export var LoRaWANJoinResourceTypeEventConfiguration;
|
|
669
|
+
(function (LoRaWANJoinResourceTypeEventConfiguration) {
|
|
670
|
+
LoRaWANJoinResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
|
+
})(LoRaWANJoinResourceTypeEventConfiguration || (LoRaWANJoinResourceTypeEventConfiguration = {}));
|
|
672
|
+
export var JoinResourceTypeEventConfiguration;
|
|
673
|
+
(function (JoinResourceTypeEventConfiguration) {
|
|
674
|
+
JoinResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
675
|
+
})(JoinResourceTypeEventConfiguration || (JoinResourceTypeEventConfiguration = {}));
|
|
676
|
+
export var ProximityResourceTypeEventConfiguration;
|
|
677
|
+
(function (ProximityResourceTypeEventConfiguration) {
|
|
678
|
+
ProximityResourceTypeEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
679
|
+
})(ProximityResourceTypeEventConfiguration || (ProximityResourceTypeEventConfiguration = {}));
|
|
680
|
+
export var GetEventConfigurationByResourceTypesResponse;
|
|
681
|
+
(function (GetEventConfigurationByResourceTypesResponse) {
|
|
682
|
+
GetEventConfigurationByResourceTypesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
683
|
+
})(GetEventConfigurationByResourceTypesResponse || (GetEventConfigurationByResourceTypesResponse = {}));
|
|
575
684
|
export var GetFuotaTaskRequest;
|
|
576
685
|
(function (GetFuotaTaskRequest) {
|
|
577
686
|
GetFuotaTaskRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -588,12 +697,6 @@ export var GetLogLevelsByResourceTypesRequest;
|
|
|
588
697
|
(function (GetLogLevelsByResourceTypesRequest) {
|
|
589
698
|
GetLogLevelsByResourceTypesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
590
699
|
})(GetLogLevelsByResourceTypesRequest || (GetLogLevelsByResourceTypesRequest = {}));
|
|
591
|
-
export var LogLevel;
|
|
592
|
-
(function (LogLevel) {
|
|
593
|
-
LogLevel["DISABLED"] = "DISABLED";
|
|
594
|
-
LogLevel["ERROR"] = "ERROR";
|
|
595
|
-
LogLevel["INFO"] = "INFO";
|
|
596
|
-
})(LogLevel || (LogLevel = {}));
|
|
597
700
|
export var WirelessDeviceEvent;
|
|
598
701
|
(function (WirelessDeviceEvent) {
|
|
599
702
|
WirelessDeviceEvent["Downlink_Data"] = "Downlink_Data";
|
|
@@ -659,15 +762,6 @@ export var GetNetworkAnalyzerConfigurationRequest;
|
|
|
659
762
|
(function (GetNetworkAnalyzerConfigurationRequest) {
|
|
660
763
|
GetNetworkAnalyzerConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
661
764
|
})(GetNetworkAnalyzerConfigurationRequest || (GetNetworkAnalyzerConfigurationRequest = {}));
|
|
662
|
-
export var WirelessDeviceFrameInfo;
|
|
663
|
-
(function (WirelessDeviceFrameInfo) {
|
|
664
|
-
WirelessDeviceFrameInfo["DISABLED"] = "DISABLED";
|
|
665
|
-
WirelessDeviceFrameInfo["ENABLED"] = "ENABLED";
|
|
666
|
-
})(WirelessDeviceFrameInfo || (WirelessDeviceFrameInfo = {}));
|
|
667
|
-
export var TraceContent;
|
|
668
|
-
(function (TraceContent) {
|
|
669
|
-
TraceContent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
670
|
-
})(TraceContent || (TraceContent = {}));
|
|
671
765
|
export var GetNetworkAnalyzerConfigurationResponse;
|
|
672
766
|
(function (GetNetworkAnalyzerConfigurationResponse) {
|
|
673
767
|
GetNetworkAnalyzerConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -684,18 +778,10 @@ export var GetPartnerAccountResponse;
|
|
|
684
778
|
(function (GetPartnerAccountResponse) {
|
|
685
779
|
GetPartnerAccountResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Sidewalk && { Sidewalk: SidewalkAccountInfoWithFingerprint.filterSensitiveLog(obj.Sidewalk) }))); };
|
|
686
780
|
})(GetPartnerAccountResponse || (GetPartnerAccountResponse = {}));
|
|
687
|
-
export var IdentifierType;
|
|
688
|
-
(function (IdentifierType) {
|
|
689
|
-
IdentifierType["PartnerAccountId"] = "PartnerAccountId";
|
|
690
|
-
})(IdentifierType || (IdentifierType = {}));
|
|
691
781
|
export var GetResourceEventConfigurationRequest;
|
|
692
782
|
(function (GetResourceEventConfigurationRequest) {
|
|
693
783
|
GetResourceEventConfigurationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
694
784
|
})(GetResourceEventConfigurationRequest || (GetResourceEventConfigurationRequest = {}));
|
|
695
|
-
export var ProximityEventConfiguration;
|
|
696
|
-
(function (ProximityEventConfiguration) {
|
|
697
|
-
ProximityEventConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
698
|
-
})(ProximityEventConfiguration || (ProximityEventConfiguration = {}));
|
|
699
785
|
export var GetResourceEventConfigurationResponse;
|
|
700
786
|
(function (GetResourceEventConfigurationResponse) {
|
|
701
787
|
GetResourceEventConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -846,6 +932,14 @@ export var ListDeviceProfilesResponse;
|
|
|
846
932
|
(function (ListDeviceProfilesResponse) {
|
|
847
933
|
ListDeviceProfilesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
848
934
|
})(ListDeviceProfilesResponse || (ListDeviceProfilesResponse = {}));
|
|
935
|
+
export var ListEventConfigurationsRequest;
|
|
936
|
+
(function (ListEventConfigurationsRequest) {
|
|
937
|
+
ListEventConfigurationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
938
|
+
})(ListEventConfigurationsRequest || (ListEventConfigurationsRequest = {}));
|
|
939
|
+
export var ListEventConfigurationsResponse;
|
|
940
|
+
(function (ListEventConfigurationsResponse) {
|
|
941
|
+
ListEventConfigurationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
942
|
+
})(ListEventConfigurationsResponse || (ListEventConfigurationsResponse = {}));
|
|
849
943
|
export var ListFuotaTasksRequest;
|
|
850
944
|
(function (ListFuotaTasksRequest) {
|
|
851
945
|
ListFuotaTasksRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -878,6 +972,18 @@ export var ListMulticastGroupsByFuotaTaskResponse;
|
|
|
878
972
|
(function (ListMulticastGroupsByFuotaTaskResponse) {
|
|
879
973
|
ListMulticastGroupsByFuotaTaskResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
880
974
|
})(ListMulticastGroupsByFuotaTaskResponse || (ListMulticastGroupsByFuotaTaskResponse = {}));
|
|
975
|
+
export var ListNetworkAnalyzerConfigurationsRequest;
|
|
976
|
+
(function (ListNetworkAnalyzerConfigurationsRequest) {
|
|
977
|
+
ListNetworkAnalyzerConfigurationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
978
|
+
})(ListNetworkAnalyzerConfigurationsRequest || (ListNetworkAnalyzerConfigurationsRequest = {}));
|
|
979
|
+
export var NetworkAnalyzerConfigurations;
|
|
980
|
+
(function (NetworkAnalyzerConfigurations) {
|
|
981
|
+
NetworkAnalyzerConfigurations.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
982
|
+
})(NetworkAnalyzerConfigurations || (NetworkAnalyzerConfigurations = {}));
|
|
983
|
+
export var ListNetworkAnalyzerConfigurationsResponse;
|
|
984
|
+
(function (ListNetworkAnalyzerConfigurationsResponse) {
|
|
985
|
+
ListNetworkAnalyzerConfigurationsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
986
|
+
})(ListNetworkAnalyzerConfigurationsResponse || (ListNetworkAnalyzerConfigurationsResponse = {}));
|
|
881
987
|
export var ListPartnerAccountsRequest;
|
|
882
988
|
(function (ListPartnerAccountsRequest) {
|
|
883
989
|
ListPartnerAccountsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1113,6 +1219,14 @@ export var UpdateDestinationResponse;
|
|
|
1113
1219
|
(function (UpdateDestinationResponse) {
|
|
1114
1220
|
UpdateDestinationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1115
1221
|
})(UpdateDestinationResponse || (UpdateDestinationResponse = {}));
|
|
1222
|
+
export var UpdateEventConfigurationByResourceTypesRequest;
|
|
1223
|
+
(function (UpdateEventConfigurationByResourceTypesRequest) {
|
|
1224
|
+
UpdateEventConfigurationByResourceTypesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1225
|
+
})(UpdateEventConfigurationByResourceTypesRequest || (UpdateEventConfigurationByResourceTypesRequest = {}));
|
|
1226
|
+
export var UpdateEventConfigurationByResourceTypesResponse;
|
|
1227
|
+
(function (UpdateEventConfigurationByResourceTypesResponse) {
|
|
1228
|
+
UpdateEventConfigurationByResourceTypesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1229
|
+
})(UpdateEventConfigurationByResourceTypesResponse || (UpdateEventConfigurationByResourceTypesResponse = {}));
|
|
1116
1230
|
export var UpdateFuotaTaskRequest;
|
|
1117
1231
|
(function (UpdateFuotaTaskRequest) {
|
|
1118
1232
|
UpdateFuotaTaskRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1165,6 +1279,14 @@ export var UpdateResourceEventConfigurationResponse;
|
|
|
1165
1279
|
(function (UpdateResourceEventConfigurationResponse) {
|
|
1166
1280
|
UpdateResourceEventConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1167
1281
|
})(UpdateResourceEventConfigurationResponse || (UpdateResourceEventConfigurationResponse = {}));
|
|
1282
|
+
export var UpdateAbpV1_0_x;
|
|
1283
|
+
(function (UpdateAbpV1_0_x) {
|
|
1284
|
+
UpdateAbpV1_0_x.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1285
|
+
})(UpdateAbpV1_0_x || (UpdateAbpV1_0_x = {}));
|
|
1286
|
+
export var UpdateAbpV1_1;
|
|
1287
|
+
(function (UpdateAbpV1_1) {
|
|
1288
|
+
UpdateAbpV1_1.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1289
|
+
})(UpdateAbpV1_1 || (UpdateAbpV1_1 = {}));
|
|
1168
1290
|
export var LoRaWANUpdateDevice;
|
|
1169
1291
|
(function (LoRaWANUpdateDevice) {
|
|
1170
1292
|
LoRaWANUpdateDevice.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -36,7 +36,7 @@ export function paginateListDestinations(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListDestinations_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListDestinations(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListDeviceProfiles(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListDeviceProfiles_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListDeviceProfiles(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListFuotaTasks(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListFuotaTasks_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListFuotaTasks(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListMulticastGroupsByFuotaTask(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListMulticastGroupsByFuotaTask_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListMulticastGroupsByFuotaTask(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListMulticastGroups(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListMulticastGroups_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListMulticastGroups(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
|
|
2
|
+
import { ListNetworkAnalyzerConfigurationsCommand, } from "../commands/ListNetworkAnalyzerConfigurationsCommand";
|
|
3
|
+
import { IoTWireless } from "../IoTWireless";
|
|
4
|
+
import { IoTWirelessClient } from "../IoTWirelessClient";
|
|
5
|
+
var makePagedClientRequest = function (client, input) {
|
|
6
|
+
var args = [];
|
|
7
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
8
|
+
args[_i - 2] = arguments[_i];
|
|
9
|
+
}
|
|
10
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
|
+
return __generator(this, function (_a) {
|
|
12
|
+
switch (_a.label) {
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListNetworkAnalyzerConfigurationsCommand(input)], __read(args), false))];
|
|
14
|
+
case 1: return [2, _a.sent()];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
var makePagedRequest = function (client, input) {
|
|
20
|
+
var args = [];
|
|
21
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
22
|
+
args[_i - 2] = arguments[_i];
|
|
23
|
+
}
|
|
24
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
|
+
return __generator(this, function (_a) {
|
|
26
|
+
switch (_a.label) {
|
|
27
|
+
case 0: return [4, client.listNetworkAnalyzerConfigurations.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
|
+
case 1: return [2, _a.sent()];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
export function paginateListNetworkAnalyzerConfigurations(config, input) {
|
|
34
|
+
var additionalArguments = [];
|
|
35
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
36
|
+
additionalArguments[_i - 2] = arguments[_i];
|
|
37
|
+
}
|
|
38
|
+
return __asyncGenerator(this, arguments, function paginateListNetworkAnalyzerConfigurations_1() {
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
|
+
return __generator(this, function (_a) {
|
|
41
|
+
switch (_a.label) {
|
|
42
|
+
case 0:
|
|
43
|
+
token = config.startingToken || undefined;
|
|
44
|
+
hasNext = true;
|
|
45
|
+
_a.label = 1;
|
|
46
|
+
case 1:
|
|
47
|
+
if (!hasNext) return [3, 9];
|
|
48
|
+
input.NextToken = token;
|
|
49
|
+
input["MaxResults"] = config.pageSize;
|
|
50
|
+
if (!(config.client instanceof IoTWireless)) return [3, 3];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
|
+
case 2:
|
|
53
|
+
page = _a.sent();
|
|
54
|
+
return [3, 6];
|
|
55
|
+
case 3:
|
|
56
|
+
if (!(config.client instanceof IoTWirelessClient)) return [3, 5];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
|
+
case 4:
|
|
59
|
+
page = _a.sent();
|
|
60
|
+
return [3, 6];
|
|
61
|
+
case 5: throw new Error("Invalid client, expected IoTWireless | IoTWirelessClient");
|
|
62
|
+
case 6: return [4, __await(page)];
|
|
63
|
+
case 7: return [4, _a.sent()];
|
|
64
|
+
case 8:
|
|
65
|
+
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
67
|
+
token = page.NextToken;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
69
|
+
return [3, 1];
|
|
70
|
+
case 9: return [4, __await(undefined)];
|
|
71
|
+
case 10: return [2, _a.sent()];
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
}
|
|
@@ -36,7 +36,7 @@ export function paginateListQueuedMessages(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListQueuedMessages_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListQueuedMessages(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListServiceProfiles(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListServiceProfiles_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListServiceProfiles(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListWirelessDevices(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListWirelessDevices_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListWirelessDevices(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -36,7 +36,7 @@ export function paginateListWirelessGateways(config, input) {
|
|
|
36
36
|
additionalArguments[_i - 2] = arguments[_i];
|
|
37
37
|
}
|
|
38
38
|
return __asyncGenerator(this, arguments, function paginateListWirelessGateways_1() {
|
|
39
|
-
var token, hasNext, page;
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
40
|
return __generator(this, function (_a) {
|
|
41
41
|
switch (_a.label) {
|
|
42
42
|
case 0:
|
|
@@ -63,8 +63,9 @@ export function paginateListWirelessGateways(config, input) {
|
|
|
63
63
|
case 7: return [4, _a.sent()];
|
|
64
64
|
case 8:
|
|
65
65
|
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
66
67
|
token = page.NextToken;
|
|
67
|
-
hasNext = !!token;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
69
|
return [3, 1];
|
|
69
70
|
case 9: return [4, __await(undefined)];
|
|
70
71
|
case 10: return [2, _a.sent()];
|
|
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
|
|
|
4
4
|
export * from "./ListFuotaTasksPaginator";
|
|
5
5
|
export * from "./ListMulticastGroupsByFuotaTaskPaginator";
|
|
6
6
|
export * from "./ListMulticastGroupsPaginator";
|
|
7
|
+
export * from "./ListNetworkAnalyzerConfigurationsPaginator";
|
|
7
8
|
export * from "./ListQueuedMessagesPaginator";
|
|
8
9
|
export * from "./ListServiceProfilesPaginator";
|
|
9
10
|
export * from "./ListWirelessDevicesPaginator";
|