@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
|
@@ -17,6 +17,8 @@ export interface AbpV1_0_x {
|
|
|
17
17
|
DevAddr?: string;
|
|
18
18
|
|
|
19
19
|
SessionKeys?: SessionKeysAbpV1_0_x;
|
|
20
|
+
|
|
21
|
+
FCntStart?: number;
|
|
20
22
|
}
|
|
21
23
|
export declare namespace AbpV1_0_x {
|
|
22
24
|
|
|
@@ -43,6 +45,8 @@ export interface AbpV1_1 {
|
|
|
43
45
|
DevAddr?: string;
|
|
44
46
|
|
|
45
47
|
SessionKeys?: SessionKeysAbpV1_1;
|
|
48
|
+
|
|
49
|
+
FCntStart?: number;
|
|
46
50
|
}
|
|
47
51
|
export declare namespace AbpV1_1 {
|
|
48
52
|
|
|
@@ -284,6 +288,48 @@ export declare enum ConnectionStatus {
|
|
|
284
288
|
CONNECTED = "Connected",
|
|
285
289
|
DISCONNECTED = "Disconnected"
|
|
286
290
|
}
|
|
291
|
+
export declare enum EventNotificationTopicStatus {
|
|
292
|
+
Disabled = "Disabled",
|
|
293
|
+
Enabled = "Enabled"
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
export interface LoRaWANConnectionStatusEventNotificationConfigurations {
|
|
297
|
+
|
|
298
|
+
GatewayEuiEventTopic?: EventNotificationTopicStatus | string;
|
|
299
|
+
}
|
|
300
|
+
export declare namespace LoRaWANConnectionStatusEventNotificationConfigurations {
|
|
301
|
+
|
|
302
|
+
const filterSensitiveLog: (obj: LoRaWANConnectionStatusEventNotificationConfigurations) => any;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export interface ConnectionStatusEventConfiguration {
|
|
306
|
+
|
|
307
|
+
LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
|
|
308
|
+
|
|
309
|
+
WirelessGatewayIdEventTopic?: EventNotificationTopicStatus | string;
|
|
310
|
+
}
|
|
311
|
+
export declare namespace ConnectionStatusEventConfiguration {
|
|
312
|
+
|
|
313
|
+
const filterSensitiveLog: (obj: ConnectionStatusEventConfiguration) => any;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface LoRaWANConnectionStatusResourceTypeEventConfiguration {
|
|
317
|
+
|
|
318
|
+
WirelessGatewayEventTopic?: EventNotificationTopicStatus | string;
|
|
319
|
+
}
|
|
320
|
+
export declare namespace LoRaWANConnectionStatusResourceTypeEventConfiguration {
|
|
321
|
+
|
|
322
|
+
const filterSensitiveLog: (obj: LoRaWANConnectionStatusResourceTypeEventConfiguration) => any;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
export interface ConnectionStatusResourceTypeEventConfiguration {
|
|
326
|
+
|
|
327
|
+
LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration;
|
|
328
|
+
}
|
|
329
|
+
export declare namespace ConnectionStatusResourceTypeEventConfiguration {
|
|
330
|
+
|
|
331
|
+
const filterSensitiveLog: (obj: ConnectionStatusResourceTypeEventConfiguration) => any;
|
|
332
|
+
}
|
|
287
333
|
export declare enum ExpressionType {
|
|
288
334
|
MqttTopic = "MqttTopic",
|
|
289
335
|
RuleName = "RuleName"
|
|
@@ -473,6 +519,56 @@ export declare namespace CreateMulticastGroupResponse {
|
|
|
473
519
|
|
|
474
520
|
const filterSensitiveLog: (obj: CreateMulticastGroupResponse) => any;
|
|
475
521
|
}
|
|
522
|
+
export declare enum LogLevel {
|
|
523
|
+
DISABLED = "DISABLED",
|
|
524
|
+
ERROR = "ERROR",
|
|
525
|
+
INFO = "INFO"
|
|
526
|
+
}
|
|
527
|
+
export declare enum WirelessDeviceFrameInfo {
|
|
528
|
+
DISABLED = "DISABLED",
|
|
529
|
+
ENABLED = "ENABLED"
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export interface TraceContent {
|
|
533
|
+
|
|
534
|
+
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
|
|
535
|
+
|
|
536
|
+
LogLevel?: LogLevel | string;
|
|
537
|
+
}
|
|
538
|
+
export declare namespace TraceContent {
|
|
539
|
+
|
|
540
|
+
const filterSensitiveLog: (obj: TraceContent) => any;
|
|
541
|
+
}
|
|
542
|
+
export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
543
|
+
|
|
544
|
+
Name: string | undefined;
|
|
545
|
+
|
|
546
|
+
TraceContent?: TraceContent;
|
|
547
|
+
|
|
548
|
+
WirelessDevices?: string[];
|
|
549
|
+
|
|
550
|
+
WirelessGateways?: string[];
|
|
551
|
+
|
|
552
|
+
Description?: string;
|
|
553
|
+
|
|
554
|
+
Tags?: Tag[];
|
|
555
|
+
|
|
556
|
+
ClientRequestToken?: string;
|
|
557
|
+
}
|
|
558
|
+
export declare namespace CreateNetworkAnalyzerConfigurationRequest {
|
|
559
|
+
|
|
560
|
+
const filterSensitiveLog: (obj: CreateNetworkAnalyzerConfigurationRequest) => any;
|
|
561
|
+
}
|
|
562
|
+
export interface CreateNetworkAnalyzerConfigurationResponse {
|
|
563
|
+
|
|
564
|
+
Arn?: string;
|
|
565
|
+
|
|
566
|
+
Name?: string;
|
|
567
|
+
}
|
|
568
|
+
export declare namespace CreateNetworkAnalyzerConfigurationResponse {
|
|
569
|
+
|
|
570
|
+
const filterSensitiveLog: (obj: CreateNetworkAnalyzerConfigurationResponse) => any;
|
|
571
|
+
}
|
|
476
572
|
|
|
477
573
|
export interface LoRaWANServiceProfile {
|
|
478
574
|
|
|
@@ -796,6 +892,20 @@ export declare namespace DeleteMulticastGroupResponse {
|
|
|
796
892
|
|
|
797
893
|
const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
|
|
798
894
|
}
|
|
895
|
+
export interface DeleteNetworkAnalyzerConfigurationRequest {
|
|
896
|
+
|
|
897
|
+
ConfigurationName: string | undefined;
|
|
898
|
+
}
|
|
899
|
+
export declare namespace DeleteNetworkAnalyzerConfigurationRequest {
|
|
900
|
+
|
|
901
|
+
const filterSensitiveLog: (obj: DeleteNetworkAnalyzerConfigurationRequest) => any;
|
|
902
|
+
}
|
|
903
|
+
export interface DeleteNetworkAnalyzerConfigurationResponse {
|
|
904
|
+
}
|
|
905
|
+
export declare namespace DeleteNetworkAnalyzerConfigurationResponse {
|
|
906
|
+
|
|
907
|
+
const filterSensitiveLog: (obj: DeleteNetworkAnalyzerConfigurationResponse) => any;
|
|
908
|
+
}
|
|
799
909
|
export interface DeleteQueuedMessagesRequest {
|
|
800
910
|
|
|
801
911
|
Id: string | undefined;
|
|
@@ -916,10 +1026,6 @@ export declare namespace DeviceProfile {
|
|
|
916
1026
|
|
|
917
1027
|
const filterSensitiveLog: (obj: DeviceProfile) => any;
|
|
918
1028
|
}
|
|
919
|
-
export declare enum EventNotificationTopicStatus {
|
|
920
|
-
Disabled = "Disabled",
|
|
921
|
-
Enabled = "Enabled"
|
|
922
|
-
}
|
|
923
1029
|
|
|
924
1030
|
export interface SidewalkEventNotificationConfigurations {
|
|
925
1031
|
|
|
@@ -933,11 +1039,31 @@ export declare namespace SidewalkEventNotificationConfigurations {
|
|
|
933
1039
|
export interface DeviceRegistrationStateEventConfiguration {
|
|
934
1040
|
|
|
935
1041
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
1042
|
+
|
|
1043
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
936
1044
|
}
|
|
937
1045
|
export declare namespace DeviceRegistrationStateEventConfiguration {
|
|
938
1046
|
|
|
939
1047
|
const filterSensitiveLog: (obj: DeviceRegistrationStateEventConfiguration) => any;
|
|
940
1048
|
}
|
|
1049
|
+
|
|
1050
|
+
export interface SidewalkResourceTypeEventConfiguration {
|
|
1051
|
+
|
|
1052
|
+
WirelessDeviceEventTopic?: EventNotificationTopicStatus | string;
|
|
1053
|
+
}
|
|
1054
|
+
export declare namespace SidewalkResourceTypeEventConfiguration {
|
|
1055
|
+
|
|
1056
|
+
const filterSensitiveLog: (obj: SidewalkResourceTypeEventConfiguration) => any;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
export interface DeviceRegistrationStateResourceTypeEventConfiguration {
|
|
1060
|
+
|
|
1061
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
1062
|
+
}
|
|
1063
|
+
export declare namespace DeviceRegistrationStateResourceTypeEventConfiguration {
|
|
1064
|
+
|
|
1065
|
+
const filterSensitiveLog: (obj: DeviceRegistrationStateResourceTypeEventConfiguration) => any;
|
|
1066
|
+
}
|
|
941
1067
|
export declare enum DeviceState {
|
|
942
1068
|
PROVISIONED = "Provisioned",
|
|
943
1069
|
REGISTEREDNOTSEEN = "RegisteredNotSeen",
|
|
@@ -1084,9 +1210,82 @@ export declare enum Event {
|
|
|
1084
1210
|
NACK = "nack",
|
|
1085
1211
|
PASSTHROUGH = "passthrough"
|
|
1086
1212
|
}
|
|
1213
|
+
|
|
1214
|
+
export interface LoRaWANJoinEventNotificationConfigurations {
|
|
1215
|
+
|
|
1216
|
+
DevEuiEventTopic?: EventNotificationTopicStatus | string;
|
|
1217
|
+
}
|
|
1218
|
+
export declare namespace LoRaWANJoinEventNotificationConfigurations {
|
|
1219
|
+
|
|
1220
|
+
const filterSensitiveLog: (obj: LoRaWANJoinEventNotificationConfigurations) => any;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
export interface JoinEventConfiguration {
|
|
1224
|
+
|
|
1225
|
+
LoRaWAN?: LoRaWANJoinEventNotificationConfigurations;
|
|
1226
|
+
|
|
1227
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
1228
|
+
}
|
|
1229
|
+
export declare namespace JoinEventConfiguration {
|
|
1230
|
+
|
|
1231
|
+
const filterSensitiveLog: (obj: JoinEventConfiguration) => any;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
export interface ProximityEventConfiguration {
|
|
1235
|
+
|
|
1236
|
+
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
1237
|
+
|
|
1238
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | string;
|
|
1239
|
+
}
|
|
1240
|
+
export declare namespace ProximityEventConfiguration {
|
|
1241
|
+
|
|
1242
|
+
const filterSensitiveLog: (obj: ProximityEventConfiguration) => any;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
export interface EventNotificationItemConfigurations {
|
|
1246
|
+
|
|
1247
|
+
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
1248
|
+
|
|
1249
|
+
Proximity?: ProximityEventConfiguration;
|
|
1250
|
+
|
|
1251
|
+
Join?: JoinEventConfiguration;
|
|
1252
|
+
|
|
1253
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
1254
|
+
}
|
|
1255
|
+
export declare namespace EventNotificationItemConfigurations {
|
|
1256
|
+
|
|
1257
|
+
const filterSensitiveLog: (obj: EventNotificationItemConfigurations) => any;
|
|
1258
|
+
}
|
|
1259
|
+
export declare enum IdentifierType {
|
|
1260
|
+
DevEui = "DevEui",
|
|
1261
|
+
GatewayEui = "GatewayEui",
|
|
1262
|
+
PartnerAccountId = "PartnerAccountId",
|
|
1263
|
+
WirelessDeviceId = "WirelessDeviceId",
|
|
1264
|
+
WirelessGatewayId = "WirelessGatewayId"
|
|
1265
|
+
}
|
|
1087
1266
|
export declare enum EventNotificationPartnerType {
|
|
1088
1267
|
Sidewalk = "Sidewalk"
|
|
1089
1268
|
}
|
|
1269
|
+
|
|
1270
|
+
export interface EventConfigurationItem {
|
|
1271
|
+
|
|
1272
|
+
Identifier?: string;
|
|
1273
|
+
|
|
1274
|
+
IdentifierType?: IdentifierType | string;
|
|
1275
|
+
|
|
1276
|
+
PartnerType?: EventNotificationPartnerType | string;
|
|
1277
|
+
|
|
1278
|
+
Events?: EventNotificationItemConfigurations;
|
|
1279
|
+
}
|
|
1280
|
+
export declare namespace EventConfigurationItem {
|
|
1281
|
+
|
|
1282
|
+
const filterSensitiveLog: (obj: EventConfigurationItem) => any;
|
|
1283
|
+
}
|
|
1284
|
+
export declare enum EventNotificationResourceType {
|
|
1285
|
+
SidewalkAccount = "SidewalkAccount",
|
|
1286
|
+
WirelessDevice = "WirelessDevice",
|
|
1287
|
+
WirelessGateway = "WirelessGateway"
|
|
1288
|
+
}
|
|
1090
1289
|
export declare enum FuotaDeviceStatus {
|
|
1091
1290
|
FragAlgo_unsupported = "FragAlgo_unsupported",
|
|
1092
1291
|
FragIndex_unsupported = "FragIndex_unsupported",
|
|
@@ -1168,6 +1367,53 @@ export declare namespace GetDeviceProfileResponse {
|
|
|
1168
1367
|
|
|
1169
1368
|
const filterSensitiveLog: (obj: GetDeviceProfileResponse) => any;
|
|
1170
1369
|
}
|
|
1370
|
+
export interface GetEventConfigurationByResourceTypesRequest {
|
|
1371
|
+
}
|
|
1372
|
+
export declare namespace GetEventConfigurationByResourceTypesRequest {
|
|
1373
|
+
|
|
1374
|
+
const filterSensitiveLog: (obj: GetEventConfigurationByResourceTypesRequest) => any;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
export interface LoRaWANJoinResourceTypeEventConfiguration {
|
|
1378
|
+
|
|
1379
|
+
WirelessDeviceEventTopic?: EventNotificationTopicStatus | string;
|
|
1380
|
+
}
|
|
1381
|
+
export declare namespace LoRaWANJoinResourceTypeEventConfiguration {
|
|
1382
|
+
|
|
1383
|
+
const filterSensitiveLog: (obj: LoRaWANJoinResourceTypeEventConfiguration) => any;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
export interface JoinResourceTypeEventConfiguration {
|
|
1387
|
+
|
|
1388
|
+
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
1389
|
+
}
|
|
1390
|
+
export declare namespace JoinResourceTypeEventConfiguration {
|
|
1391
|
+
|
|
1392
|
+
const filterSensitiveLog: (obj: JoinResourceTypeEventConfiguration) => any;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
export interface ProximityResourceTypeEventConfiguration {
|
|
1396
|
+
|
|
1397
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
1398
|
+
}
|
|
1399
|
+
export declare namespace ProximityResourceTypeEventConfiguration {
|
|
1400
|
+
|
|
1401
|
+
const filterSensitiveLog: (obj: ProximityResourceTypeEventConfiguration) => any;
|
|
1402
|
+
}
|
|
1403
|
+
export interface GetEventConfigurationByResourceTypesResponse {
|
|
1404
|
+
|
|
1405
|
+
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
1406
|
+
|
|
1407
|
+
Proximity?: ProximityResourceTypeEventConfiguration;
|
|
1408
|
+
|
|
1409
|
+
Join?: JoinResourceTypeEventConfiguration;
|
|
1410
|
+
|
|
1411
|
+
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
1412
|
+
}
|
|
1413
|
+
export declare namespace GetEventConfigurationByResourceTypesResponse {
|
|
1414
|
+
|
|
1415
|
+
const filterSensitiveLog: (obj: GetEventConfigurationByResourceTypesResponse) => any;
|
|
1416
|
+
}
|
|
1171
1417
|
export interface GetFuotaTaskRequest {
|
|
1172
1418
|
|
|
1173
1419
|
Id: string | undefined;
|
|
@@ -1217,11 +1463,6 @@ export declare namespace GetLogLevelsByResourceTypesRequest {
|
|
|
1217
1463
|
|
|
1218
1464
|
const filterSensitiveLog: (obj: GetLogLevelsByResourceTypesRequest) => any;
|
|
1219
1465
|
}
|
|
1220
|
-
export declare enum LogLevel {
|
|
1221
|
-
DISABLED = "DISABLED",
|
|
1222
|
-
ERROR = "ERROR",
|
|
1223
|
-
INFO = "INFO"
|
|
1224
|
-
}
|
|
1225
1466
|
export declare enum WirelessDeviceEvent {
|
|
1226
1467
|
Downlink_Data = "Downlink_Data",
|
|
1227
1468
|
Join = "Join",
|
|
@@ -1378,21 +1619,6 @@ export declare namespace GetNetworkAnalyzerConfigurationRequest {
|
|
|
1378
1619
|
|
|
1379
1620
|
const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
|
|
1380
1621
|
}
|
|
1381
|
-
export declare enum WirelessDeviceFrameInfo {
|
|
1382
|
-
DISABLED = "DISABLED",
|
|
1383
|
-
ENABLED = "ENABLED"
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
export interface TraceContent {
|
|
1387
|
-
|
|
1388
|
-
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
|
|
1389
|
-
|
|
1390
|
-
LogLevel?: LogLevel | string;
|
|
1391
|
-
}
|
|
1392
|
-
export declare namespace TraceContent {
|
|
1393
|
-
|
|
1394
|
-
const filterSensitiveLog: (obj: TraceContent) => any;
|
|
1395
|
-
}
|
|
1396
1622
|
export interface GetNetworkAnalyzerConfigurationResponse {
|
|
1397
1623
|
|
|
1398
1624
|
TraceContent?: TraceContent;
|
|
@@ -1400,6 +1626,12 @@ export interface GetNetworkAnalyzerConfigurationResponse {
|
|
|
1400
1626
|
WirelessDevices?: string[];
|
|
1401
1627
|
|
|
1402
1628
|
WirelessGateways?: string[];
|
|
1629
|
+
|
|
1630
|
+
Description?: string;
|
|
1631
|
+
|
|
1632
|
+
Arn?: string;
|
|
1633
|
+
|
|
1634
|
+
Name?: string;
|
|
1403
1635
|
}
|
|
1404
1636
|
export declare namespace GetNetworkAnalyzerConfigurationResponse {
|
|
1405
1637
|
|
|
@@ -1438,9 +1670,6 @@ export declare namespace GetPartnerAccountResponse {
|
|
|
1438
1670
|
|
|
1439
1671
|
const filterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
|
|
1440
1672
|
}
|
|
1441
|
-
export declare enum IdentifierType {
|
|
1442
|
-
PartnerAccountId = "PartnerAccountId"
|
|
1443
|
-
}
|
|
1444
1673
|
export interface GetResourceEventConfigurationRequest {
|
|
1445
1674
|
|
|
1446
1675
|
Identifier: string | undefined;
|
|
@@ -1453,20 +1682,15 @@ export declare namespace GetResourceEventConfigurationRequest {
|
|
|
1453
1682
|
|
|
1454
1683
|
const filterSensitiveLog: (obj: GetResourceEventConfigurationRequest) => any;
|
|
1455
1684
|
}
|
|
1456
|
-
|
|
1457
|
-
export interface ProximityEventConfiguration {
|
|
1458
|
-
|
|
1459
|
-
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
1460
|
-
}
|
|
1461
|
-
export declare namespace ProximityEventConfiguration {
|
|
1462
|
-
|
|
1463
|
-
const filterSensitiveLog: (obj: ProximityEventConfiguration) => any;
|
|
1464
|
-
}
|
|
1465
1685
|
export interface GetResourceEventConfigurationResponse {
|
|
1466
1686
|
|
|
1467
1687
|
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
1468
1688
|
|
|
1469
1689
|
Proximity?: ProximityEventConfiguration;
|
|
1690
|
+
|
|
1691
|
+
Join?: JoinEventConfiguration;
|
|
1692
|
+
|
|
1693
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
1470
1694
|
}
|
|
1471
1695
|
export declare namespace GetResourceEventConfigurationResponse {
|
|
1472
1696
|
|
|
@@ -1891,6 +2115,28 @@ export declare namespace ListDeviceProfilesResponse {
|
|
|
1891
2115
|
|
|
1892
2116
|
const filterSensitiveLog: (obj: ListDeviceProfilesResponse) => any;
|
|
1893
2117
|
}
|
|
2118
|
+
export interface ListEventConfigurationsRequest {
|
|
2119
|
+
|
|
2120
|
+
ResourceType: EventNotificationResourceType | string | undefined;
|
|
2121
|
+
|
|
2122
|
+
MaxResults?: number;
|
|
2123
|
+
|
|
2124
|
+
NextToken?: string;
|
|
2125
|
+
}
|
|
2126
|
+
export declare namespace ListEventConfigurationsRequest {
|
|
2127
|
+
|
|
2128
|
+
const filterSensitiveLog: (obj: ListEventConfigurationsRequest) => any;
|
|
2129
|
+
}
|
|
2130
|
+
export interface ListEventConfigurationsResponse {
|
|
2131
|
+
|
|
2132
|
+
NextToken?: string;
|
|
2133
|
+
|
|
2134
|
+
EventConfigurationsList?: EventConfigurationItem[];
|
|
2135
|
+
}
|
|
2136
|
+
export declare namespace ListEventConfigurationsResponse {
|
|
2137
|
+
|
|
2138
|
+
const filterSensitiveLog: (obj: ListEventConfigurationsResponse) => any;
|
|
2139
|
+
}
|
|
1894
2140
|
export interface ListFuotaTasksRequest {
|
|
1895
2141
|
|
|
1896
2142
|
NextToken?: string;
|
|
@@ -1975,6 +2221,37 @@ export declare namespace ListMulticastGroupsByFuotaTaskResponse {
|
|
|
1975
2221
|
|
|
1976
2222
|
const filterSensitiveLog: (obj: ListMulticastGroupsByFuotaTaskResponse) => any;
|
|
1977
2223
|
}
|
|
2224
|
+
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
2225
|
+
|
|
2226
|
+
MaxResults?: number;
|
|
2227
|
+
|
|
2228
|
+
NextToken?: string;
|
|
2229
|
+
}
|
|
2230
|
+
export declare namespace ListNetworkAnalyzerConfigurationsRequest {
|
|
2231
|
+
|
|
2232
|
+
const filterSensitiveLog: (obj: ListNetworkAnalyzerConfigurationsRequest) => any;
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
export interface NetworkAnalyzerConfigurations {
|
|
2236
|
+
|
|
2237
|
+
Arn?: string;
|
|
2238
|
+
|
|
2239
|
+
Name?: string;
|
|
2240
|
+
}
|
|
2241
|
+
export declare namespace NetworkAnalyzerConfigurations {
|
|
2242
|
+
|
|
2243
|
+
const filterSensitiveLog: (obj: NetworkAnalyzerConfigurations) => any;
|
|
2244
|
+
}
|
|
2245
|
+
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
2246
|
+
|
|
2247
|
+
NextToken?: string;
|
|
2248
|
+
|
|
2249
|
+
NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[];
|
|
2250
|
+
}
|
|
2251
|
+
export declare namespace ListNetworkAnalyzerConfigurationsResponse {
|
|
2252
|
+
|
|
2253
|
+
const filterSensitiveLog: (obj: ListNetworkAnalyzerConfigurationsResponse) => any;
|
|
2254
|
+
}
|
|
1978
2255
|
export interface ListPartnerAccountsRequest {
|
|
1979
2256
|
|
|
1980
2257
|
NextToken?: string;
|
|
@@ -2532,6 +2809,26 @@ export declare namespace UpdateDestinationResponse {
|
|
|
2532
2809
|
|
|
2533
2810
|
const filterSensitiveLog: (obj: UpdateDestinationResponse) => any;
|
|
2534
2811
|
}
|
|
2812
|
+
export interface UpdateEventConfigurationByResourceTypesRequest {
|
|
2813
|
+
|
|
2814
|
+
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
2815
|
+
|
|
2816
|
+
Proximity?: ProximityResourceTypeEventConfiguration;
|
|
2817
|
+
|
|
2818
|
+
Join?: JoinResourceTypeEventConfiguration;
|
|
2819
|
+
|
|
2820
|
+
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
2821
|
+
}
|
|
2822
|
+
export declare namespace UpdateEventConfigurationByResourceTypesRequest {
|
|
2823
|
+
|
|
2824
|
+
const filterSensitiveLog: (obj: UpdateEventConfigurationByResourceTypesRequest) => any;
|
|
2825
|
+
}
|
|
2826
|
+
export interface UpdateEventConfigurationByResourceTypesResponse {
|
|
2827
|
+
}
|
|
2828
|
+
export declare namespace UpdateEventConfigurationByResourceTypesResponse {
|
|
2829
|
+
|
|
2830
|
+
const filterSensitiveLog: (obj: UpdateEventConfigurationByResourceTypesResponse) => any;
|
|
2831
|
+
}
|
|
2535
2832
|
export interface UpdateFuotaTaskRequest {
|
|
2536
2833
|
|
|
2537
2834
|
Id: string | undefined;
|
|
@@ -2607,6 +2904,8 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
2607
2904
|
WirelessGatewaysToAdd?: string[];
|
|
2608
2905
|
|
|
2609
2906
|
WirelessGatewaysToRemove?: string[];
|
|
2907
|
+
|
|
2908
|
+
Description?: string;
|
|
2610
2909
|
}
|
|
2611
2910
|
export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
|
|
2612
2911
|
|
|
@@ -2656,6 +2955,10 @@ export interface UpdateResourceEventConfigurationRequest {
|
|
|
2656
2955
|
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
2657
2956
|
|
|
2658
2957
|
Proximity?: ProximityEventConfiguration;
|
|
2958
|
+
|
|
2959
|
+
Join?: JoinEventConfiguration;
|
|
2960
|
+
|
|
2961
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
2659
2962
|
}
|
|
2660
2963
|
export declare namespace UpdateResourceEventConfigurationRequest {
|
|
2661
2964
|
|
|
@@ -2668,11 +2971,33 @@ export declare namespace UpdateResourceEventConfigurationResponse {
|
|
|
2668
2971
|
const filterSensitiveLog: (obj: UpdateResourceEventConfigurationResponse) => any;
|
|
2669
2972
|
}
|
|
2670
2973
|
|
|
2974
|
+
export interface UpdateAbpV1_0_x {
|
|
2975
|
+
|
|
2976
|
+
FCntStart?: number;
|
|
2977
|
+
}
|
|
2978
|
+
export declare namespace UpdateAbpV1_0_x {
|
|
2979
|
+
|
|
2980
|
+
const filterSensitiveLog: (obj: UpdateAbpV1_0_x) => any;
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
export interface UpdateAbpV1_1 {
|
|
2984
|
+
|
|
2985
|
+
FCntStart?: number;
|
|
2986
|
+
}
|
|
2987
|
+
export declare namespace UpdateAbpV1_1 {
|
|
2988
|
+
|
|
2989
|
+
const filterSensitiveLog: (obj: UpdateAbpV1_1) => any;
|
|
2990
|
+
}
|
|
2991
|
+
|
|
2671
2992
|
export interface LoRaWANUpdateDevice {
|
|
2672
2993
|
|
|
2673
2994
|
DeviceProfileId?: string;
|
|
2674
2995
|
|
|
2675
2996
|
ServiceProfileId?: string;
|
|
2997
|
+
|
|
2998
|
+
AbpV1_1?: UpdateAbpV1_1;
|
|
2999
|
+
|
|
3000
|
+
AbpV1_0_x?: UpdateAbpV1_0_x;
|
|
2676
3001
|
}
|
|
2677
3002
|
export declare namespace LoRaWANUpdateDevice {
|
|
2678
3003
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListNetworkAnalyzerConfigurationsCommandInput, ListNetworkAnalyzerConfigurationsCommandOutput } from "../commands/ListNetworkAnalyzerConfigurationsCommand";
|
|
3
|
+
import { IoTWirelessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListNetworkAnalyzerConfigurations(config: IoTWirelessPaginationConfiguration, input: ListNetworkAnalyzerConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListNetworkAnalyzerConfigurationsCommandOutput>;
|
|
@@ -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";
|