1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
|
# Azure IoT Hub Client
## APIs:
### Connect
* [nx_azure_iot_hub_client_initialize](#nx_azure_iot_hub_client_initialize)
* [nx_azure_iot_hub_client_deinitialize](#nx_azure_iot_hub_client_deinitialize)
* [nx_azure_iot_hub_client_model_id_set](#nx_azure_iot_hub_client_model_id_set)
* [nx_azure_iot_hub_client_component_add](#nx_azure_iot_hub_client_component_add)
* [nx_azure_iot_hub_client_trusted_cert_add](#nx_azure_iot_hub_client_trusted_cert_add)
* [nx_azure_iot_hub_client_device_cert_set](#nx_azure_iot_hub_client_device_cert_set)
* [nx_azure_iot_hub_client_symmetric_key_set](#nx_azure_iot_hub_client_symmetric_key_set)
* [nx_azure_iot_hub_client_websocket_enable](#nx_azure_iot_hub_client_websocket_enable)
* [nx_azure_iot_hub_client_connect](#nx_azure_iot_hub_client_connect)
* [nx_azure_iot_hub_client_disconnect](#nx_azure_iot_hub_client_disconnect)
* [nx_azure_iot_hub_client_connection_status_callback_set](#nx_azure_iot_hub_client_connection_status_callback_set)
* [nx_azure_iot_hub_client_receive_callback_set](#nx_azure_iot_hub_client_receive_callback_set)
### C2D
* [nx_azure_iot_hub_client_cloud_message_enable](#nx_azure_iot_hub_client_cloud_message_enable)
* [nx_azure_iot_hub_client_cloud_message_disable](#nx_azure_iot_hub_client_cloud_message_disable)
* [nx_azure_iot_hub_client_cloud_message_receive](#nx_azure_iot_hub_client_cloud_message_receive)
* [nx_azure_iot_hub_client_cloud_message_property_get](#nx_azure_iot_hub_client_cloud_message_property_get)
### Telemetry
* [nx_azure_iot_hub_client_telemetry_message_create](#nx_azure_iot_hub_client_telemetry_message_create)
* [nx_azure_iot_hub_client_telemetry_message_delete](#nx_azure_iot_hub_client_telemetry_message_delete)
* [nx_azure_iot_hub_client_telemetry_component_set](#nx_azure_iot_hub_client_telemetry_component_set)
* [nx_azure_iot_hub_client_telemetry_property_add](#nx_azure_iot_hub_client_telemetry_property_add)
* [nx_azure_iot_hub_client_telemetry_send](#nx_azure_iot_hub_client_telemetry_send)
* [nx_azure_iot_hub_client_telemetry_send_extended](#nx_azure_iot_hub_client_telemetry_send_extended)
* [nx_azure_iot_hub_client_telemetry_ack_callback_set](#nx_azure_iot_hub_client_telemetry_ack_callback_set)
### Command
* [nx_azure_iot_hub_client_command_enable](#nx_azure_iot_hub_client_command_enable)
* [nx_azure_iot_hub_client_command_disable](#nx_azure_iot_hub_client_command_disable)
* [nx_azure_iot_hub_client_command_message_receive](#nx_azure_iot_hub_client_command_message_receive)
* [nx_azure_iot_hub_client_command_message_response](#nx_azure_iot_hub_client_command_message_response)
### Direct Method
* [nx_azure_iot_hub_client_direct_method_enable](#nx_azure_iot_hub_client_direct_method_enable)
* [nx_azure_iot_hub_client_direct_method_disable](#nx_azure_iot_hub_client_direct_method_disable)
* [nx_azure_iot_hub_client_direct_method_message_receive](#nx_azure_iot_hub_client_direct_method_message_receive)
* [nx_azure_iot_hub_client_direct_method_message_response](#nx_azure_iot_hub_client_direct_method_message_response)
### Properties
* [nx_azure_iot_hub_client_properties_enable](#nx_azure_iot_hub_client_properties_enable)
* [nx_azure_iot_hub_client_properties_disable](#nx_azure_iot_hub_client_properties_disable)
* [nx_azure_iot_hub_client_reported_properties_response_callback_set](#nx_azure_iot_hub_client_reported_properties_response_callback_set)
* [nx_azure_iot_hub_client_reported_properties_create](#nx_azure_iot_hub_client_reported_properties_create)
* [nx_azure_iot_hub_client_reported_properties_send](#nx_azure_iot_hub_client_reported_properties_send)
* [nx_azure_iot_hub_client_properties_request](#nx_azure_iot_hub_client_properties_request)
* [nx_azure_iot_hub_client_properties_receive](#nx_azure_iot_hub_client_properties_receive)
* [nx_azure_iot_hub_client_writable_properties_receive](#nx_azure_iot_hub_client_writable_properties_receive)
### Device Twin
* [nx_azure_iot_hub_client_device_twin_enable](#nx_azure_iot_hub_client_device_twin_enable)
* [nx_azure_iot_hub_client_device_twin_disable](#nx_azure_iot_hub_client_device_twin_disable)
* [nx_azure_iot_hub_client_device_twin_reported_properties_send](#nx_azure_iot_hub_client_device_twin_reported_properties_send)
* [nx_azure_iot_hub_client_device_twin_properties_request](#nx_azure_iot_hub_client_device_twin_properties_request)
* [nx_azure_iot_hub_client_device_twin_properties_receive](#nx_azure_iot_hub_client_device_twin_properties_receive)
* [nx_azure_iot_hub_client_device_twin_desired_properties_receive](#nx_azure_iot_hub_client_device_twin_desired_properties_receive)
#### **nx_azure_iot_hub_client_initialize**
***
<div style="text-align: right"> Initialize Azure IoT hub instance</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_initialize(NX_AZURE_IOT_HUB_CLIENT* hub_client_ptr,
NX_AZURE_IOT *nx_azure_iot_ptr,
const UCHAR *host_name, UINT host_name_length,
const UCHAR *device_id, UINT device_id_length,
const UCHAR *module_id, UINT module_id_length,
const NX_CRYPTO_METHOD **crypto_array, UINT crypto_array_size,
const NX_CRYPTO_CIPHERSUITE **cipher_map, UINT cipher_map_size,
UCHAR * metadata_memory, UINT memory_size,
NX_SECURE_X509_CERT *trusted_certificate);
```
**Description**
<p>This routine initializes the IoT Hub client.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| nx_azure_iot_ptr [in] | A pointer to a `NX_AZURE_IOT`.|
| host_name [in] | A pointer to IoTHub hostname. Must be NULL terminated string. |
| host_name_length [in] | Length of the IoTHub hostname. |
| device_id [in] | A pointer to device ID. |
| device_id_length [in] | Length of the device ID. |
| module_id [in] | A pointer to module ID. |
| module_id_length [in] | Length of the module ID. |
| crypto_array [in] | A pointer to `NX_CRYPTO_METHOD` |
| crypto_array_size [in] | Size of crypto method array |
| cipher_map [in] | A pointer to `NX_CRYPTO_CIPHERSUITE` |
| cipher_map_size [in] | Size of cipher map |
| metadata_memory [in] | A pointer to metadata memory buffer. |
| memory_size [in] | Size of metadata buffer |
| trusted_certificate [in] | A pointer to `NX_SECURE_X509_CERT`, which is server side certs |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully initialized the Azure IoT hub.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to initialize the Azure IoT hub client due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to initialize the Azure IoT hub client due to SDK core error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_deinitialize**
***
<div style="text-align: right"> Cleanup the Azure IoT Hub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_deinitialize(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>The routine deinitializes the IoT Hub client</p>
**Parameters**
| | |
| ------------- |:-------------|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully de-initialized the Azure IoT hub client.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to deinitialize the Azure IoT hub client due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_trusted_cert_add**
***
<div style="text-align: right"> Add trusted certificate </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_trusted_cert_add(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_SECURE_X509_CERT *trusted_certificate);
```
**Description**
<p>This routine adds the trusted certificate. It can be called multiple times to set multiple trusted certificates.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| trusted_certificate [in] | A pointer to a `NX_SECURE_X509_CERT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully add trusted certificate to Azure IoT Hub Instance.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to add trusted certificate to Azure IoT Hub Instance due to invalid parameter.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to add trusted certificate due to `NX_AZURE_IOT_MAX_NUM_OF_TRUSTED_CERTS` is too small.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_cert_set**
***
<div style="text-align: right"> Set client certificate </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_cert_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_SECURE_X509_CERT *device_certificate);
```
**Description**
<p>This routine sets the device certificate. It can be called multiple times to set certificate chain.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| device_certificate [in] | A pointer to a `NX_SECURE_X509_CERT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully set device certificate to Azure IoT Hub Instance.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set device certificate to Azure IoT Hub Instance due to invalid parameter.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to set device certificate due to `NX_AZURE_IOT_MAX_NUM_OF_DEVICE_CERTS` is too small.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_symmetric_key_set**
***
<div style="text-align: right"> Set symmetric key </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_symmetric_key_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR *symmetric_key, UINT symmetric_key_length);
```
**Description**
<p>This routine sets the symmetric key.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| symmetric_key [in] | A pointer to a symmetric key. |
| symmetric_key_length [in] | Length of symmetric key |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully set symmetric key to IoTHub client.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set symmetric key to IoTHub client due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_model_id_set**
***
<div style="text-align: right"> Set Device Twin model id in the IoT Hub client. </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_model_id_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR *model_id_ptr, UINT model_id_length);
```
**Description**
<p>This routine sets the model id in the IoT Hub client to enable PnP.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| model_id_ptr [in] | A pointer to a model id. |
| model_id_length [in] | Length of model id |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully set model id to IoTHub client.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set model id to IoTHub client due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_component_add**
***
<div style="text-align: right"> Add component to IoT Hub client </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_component_add(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR *component_name_ptr,
USHORT component_name_length);
```
**Description**
<p>This routine should be called for all the components in the IoT hub model.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| component_name_ptr [in] | A pointer to component, that is part of IoT hub model. |
| component_name_length [in] | Length of the `component_name_ptr`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successfully set device certificate to AZ IoT Hub Instance.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to add the component name due to out of memory.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_websocket_enable**
***
<div style="text-align: right"> Enables MQTT over WebSocket to connect to IoT Hub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_websocket_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables MQTT over WebSocket to connect to the Azure IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if MQTT over Websocket is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable MQTT over WebSocket due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_connect**
***
<div style="text-align: right"> Connects to IoT Hub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_connect(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT clean_session, UINT wait_option);
```
**Description**
<p>This routine connects to the Azure IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| clean_session [in] | 0 re-use current session, or 1 to start new session |
| wait_option [in] | Number of ticks to wait for internal resources to be available. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if connected to Azure IoT Hub.
* NX_AZURE_IOT_CONNECTING Successfully started connection but not yet completed.
* NX_AZURE_IOT_ALREADY_CONNECTED Already connected to Azure IoT Hub.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to connect to Azure IoT Hub due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to connect to Azure IoT Hub due to SDK core error.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to connect to Azure IoT Hub due to buffer size is too small.
* NX_DNS_QUERY_FAILED Fail to connect to Azure IoT Hub due to hostname can not be resolved.
* NX_NO_PACKET Fail to connect to Azure IoT Hub due to no available packet in pool.
* NX_INVALID_PARAMETERS Fail to connect to Azure IoT Hub due to invalid parameters.
* NX_SECURE_TLS_INSUFFICIENT_METADATA_SPACE Fail to connect to Azure IoT Hub due to insufficient metadata space.
* NX_SECURE_TLS_UNSUPPORTED_CIPHER Fail to connect to Azure IoT Hub due to unsupported cipher.
* NXD_MQTT_ALREADY_CONNECTED Fail to connect to Azure IoT Hub due to MQTT session is not disconnected.
* NXD_MQTT_CONNECT_FAILURE Fail to connect to Azure IoT Hub due to TCP/TLS connect error.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to connect to Azure IoT Hub due to MQTT connect error.
* NXD_MQTT_ERROR_SERVER_UNAVAILABLE Fail to connect to Azure IoT Hub due to server unavailable.
* NXD_MQTT_ERROR_NOT_AUTHORIZED Fail to connect to Azure IoT Hub due to authentication error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_disconnect**
***
<div style="text-align: right"> Disconnects the client</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_disconnect(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disconnects the client.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if client disconnects.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disconnect due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_connection_status_callback_set**
***
<div style="text-align: right"> Sets connection status callback function</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_connection_status_callback_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
VOID (*connection_status_cb)(
struct NX_AZURE_IOT_HUB_CLIENT_STRUCT
*hub_client_ptr, UINT status));
```
**Description**
<p>This routine sets the connection status callback. This callback function is invoked when the IoT Hub status is changed, such as: return NX_AZURE_IOT_SUCCESS status once client is connected to IoT Hub. Setting the callback function to NULL disables the callback function. Following status will be returned on disconnection.</p>
* NX_SECURE_TLS_ALERT_RECEIVED
* NX_SECURE_TLS_NO_SUPPORTED_CIPHERS
* NX_SECURE_X509_CHAIN_VERIFY_FAILURE
* NXD_MQTT_CONNECT_FAILURE
* NXD_MQTT_ERROR_SERVER_UNAVAILABLE
* NXD_MQTT_ERROR_NOT_AUTHORIZED
* NX_AZURE_IOT_DISCONNECTED
* NX_AZURE_IOT_SAS_TOKEN_EXPIRED
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
| connection_status_cb [in] | Pointer to a callback function invoked once connection status is changed. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if connection status callback is set.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set connection status callback due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_receive_callback_set**
***
<div style="text-align: right"> Sets receive callback function</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_receive_callback_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT message_type,
VOID (*callback_ptr)(
NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, VOID *args),
VOID *callback_args);
```
**Description**
<p>This routine sets the IoT Hub receive callback function. This callback function is invoked when a message is received from Azure IoT hub. Setting the callback function to NULL disables the callback function. Message types can be NX_AZURE_IOT_HUB_CLOUD_TO_DEVICE_MESSAGE, NX_AZURE_IOT_HUB_COMMAND, NX_AZURE_IOT_HUB_PROPERTIES, NX_AZURE_IOT_HUB_WRITABLE_PROPERTIES, NX_AZURE_IOT_HUB_DIRECT_METHOD, NX_AZURE_IOT_HUB_DEVICE_TWIN_PROPERTIES and NX_AZURE_IOT_HUB_DEVICE_TWIN_DESIRED_PROPERTIES. </p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| message_type [in] | Message type of callback function. |
| callback_ptr [in] | Pointer to a callback function invoked on specified message type is received. |
| callback_args [in] | Pointer to an argument passed to callback function. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if callback function is set.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set receive callback due to invalid parameter.
* NX_AZURE_IOT_NOT_SUPPORTED Fail to set receive callback due to message_type not supported.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_message_create**
***
<div style="text-align: right"> Creates telemetry message</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_message_create(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr,
UINT wait_option);
```
**Description**
<p>This routine prepares a packet for sending telemetry data. After the packet is properly created, application owns the `NX_PACKET` and can add additional user-defined properties before sending out.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | Return allocated packet on success. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait if no packet is available. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if a packet is allocated.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to allocate telemetry message due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to allocate telemetry message due to SDK core error.
* NX_NO_PACKET Fail to allocate telemetry message due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_message_delete**
***
<div style="text-align: right"> Deletes telemetry message</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_message_delete(NX_PACKET *packet_ptr);
```
**Description**
<p>This routine deletes the telemetry message.</p>
**Parameters**
| Name | Description |
| - |:-|
| packet_ptr [in] | Release the `NX_PACKET` on success. |
**Return Values**
* NX_AZURE_IOT_SUCCESS (0x0) Successful if a packet is deallocated.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_component_set**
***
<div style="text-align: right"> Sets component to telemetry message</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_component_set(NX_PACKET *packet_ptr,
const UCHAR *component_name_ptr,
USHORT component_name_length,
UINT wait_option));
```
**Description**
<p>This routine allows an application to set a component name to a telemetry message before it is being sent. The component is stored in the sequence which the routine is called. The component must be set after a telemetry packet is created, and before the telemetry message is being sent.</p>
**Parameters**
| Name | Description |
| - |:-|
| packet_ptr [in] | A pointer to telemetry component packet. |
| component_name_ptr [in] | A pointer to a component name. |
| component_name_length [in] | Length of component name. |
| wait_option [in] | Ticks to wait if packet needs to be expanded. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if component is set.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set component due to invalid parameter.
* NX_NO_PACKET Fail to set component due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_property_add**
***
<div style="text-align: right"> Adds property to telemetry message</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_property_add(NX_PACKET *packet_ptr,
const UCHAR *property_name, USHORT property_name_length,
const UCHAR *property_value, USHORT property_value_length,
UINT wait_option);
```
**Description**
<p>This routine allows an application to add user-defined properties to a telemetry message before it is being sent. This routine can be called multiple times to add all the properties to the message. The properties are stored in the sequence which the routine is called. The property must be added after a telemetry packet is created, and before the telemetry message is being sent.</p>
**Parameters**
| Name | Description |
| - |:-|
| packet_ptr [in] | A pointer to telemetry property packet. |
| property_name [in] | Pointer to property name. |
| property_name_length [in] | Length of property name. |
| property_value [in] | Pointer to property value. |
| property_value_length [in] | Length of property value. |
| wait_option [in] | Ticks to wait if packet needs to be expanded. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if property is added.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to add property due to invalid parameter.
* NX_NO_PACKET Fail to add property due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_send**
***
<div style="text-align: right"> Sends telemetry message to IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_send(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, NX_PACKET *packet_ptr,
const UCHAR *telemetry_data, UINT data_size, UINT wait_option);
```
**Description**
<p>This routine sends telemetry to IoTHub, with packet_ptr containing all the properties. On successful return of this function, ownership of `NX_PACKET` is released.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_ptr [in] | A pointer to telemetry property packet. |
| telemetry_data [in] | Pointer to telemetry data. |
| data_size [in] | Size of telemetry data. |
| wait_option [in] | Ticks to wait for message to be sent. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if telemetry message is sent out.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send telemetry message due to invalid parameter.
* NX_AZURE_IOT_INVALID_PACKET Fail to send telemetry message due to packet is invalid.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to send telemetry message due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to send telemetry message due to TCP/TLS error.
* NX_NO_PACKET Fail to send telemetry message due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_send_extended**
***
<div style="text-align: right"> Sends telemetry message to IoTHub, and return the packet id</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_send_extended(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET *packet_ptr,
const UCHAR *telemetry_data, UINT data_size,
USHORT *packet_id, UINT wait_option);
```
**Description**
<p>This routine sends telemetry to IoTHub, with packet_ptr containing all the properties. On successful return of this function, ownership of `NX_PACKET` is released, and packet id is returned to caller. User also can use nx_azure_iot_hub_client_telemetry_ack_callback_set() to register the callback for tracking the telemetry ack, packet_id ties the correlation between telemetry send and ack.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_ptr [in] | A pointer to telemetry property packet. |
| telemetry_data [in] | Pointer to telemetry data. |
| data_size [in] | Size of telemetry data. |
| packet_id [out] | Packet id of telemetry message. |
| wait_option [in] | Ticks to wait for message to be sent. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if telemetry message is sent out.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send telemetry message due to invalid parameter.
* NX_AZURE_IOT_INVALID_PACKET Fail to send telemetry message due to packet is invalid.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to send telemetry message due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to send telemetry message due to TCP/TLS error.
* NX_NO_PACKET Fail to send telemetry message due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_telemetry_ack_callback_set**
***
<div style="text-align: right">Sets telemetry ack callback function</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_telemetry_ack_callback_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
VOID (*callback_ptr)(
NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
USHORT packet_id));
```
**Description**
<p>This routine sets the telemetry ack receive callback function. This callback function is invoked when a telemetry ack is received from Azure IoT hub. Setting the callback function to NULL disables the callback function.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| callback_ptr [in] | Pointer to a callback function invoked. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if callback function is set.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set callback due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_cloud_message_enable**
***
<div style="text-align: right"> Enables receiving C2D message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_cloud_message_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables receiving C2D message from IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if C2D message receiving is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable C2D message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to enable C2D message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to enable C2D message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to enable C2D message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_cloud_message_disable**
***
<div style="text-align: right"> Disables receiving C2D message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_cloud_message_disable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disables receiving C2D message from IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if C2D message receiving is disabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disable C2D message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to disable C2D message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to disable C2D message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to disable C2D message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_cloud_message_receive**
***
<div style="text-align: right"> Receives C2D message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_cloud_message_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr,
UINT wait_option);
```
**Description**
<p>This routine receives C2D message from IoT Hub. If there are no messages in the receive queue, this routine can block. The amount of time it waits for a message is determined by the wait_option parameter.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | Return a packet pointer with C2D message on success. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait for message to arrive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if C2D message is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive C2D message due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive C2D message due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive C2D message due to timeout.
* NX_AZURE_IOT_DISCONNECTED Fail to receive C2D message due to disconnection.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_cloud_message_property_get**
***
<div style="text-align: right"> Retrieve the property with given property name in the C2D message</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_cloud_message_property_get(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, NX_PACKET *packet_ptr,
const UCHAR *property_name, USHORT property_name_length,
const UCHAR **property_value, USHORT *property_value_length);
```
**Description**
<p>This routine retrieves the property with given property name in the NX_PACKET.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_ptr [in] | Pointer to `NX_PACKET` containing C2D message. |
| property_name [in] | Pointer to property name. |
| property_name_length [in] | Property name length. |
| property_value [out] | Pointer to memory that contains property value |
| property_value_length [out] | Pointer to size of property value. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if property is found and copied successfully into user buffer.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to find the property due to invalid parameter.
* NX_AZURE_IOT_INVALID_PACKET Fail to find the property due to the packet is invalid.
* NX_AZURE_IOT_NOT_FOUND Property is not found.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to find the property due to parsing error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_direct_method_enable**
***
<div style="text-align: right"> Enables receiving direct method messages from IoTHub </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_direct_method_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables receiving direct method messages from IoT Hub. </p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if direct method message receiving is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable direct method message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to enable direct method message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to enable direct method message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to enable direct method message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_direct_method_disable**
***
<div style="text-align: right"> Disables receiving direct method messages from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_direct_method_disable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disables receiving direct method messages from IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if direct method message receiving is disabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disable direct method message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to disable direct method message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to disable direct method message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to disable direct method message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_direct_method_message_receive**
***
<div style="text-align: right"> Receives direct method message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_direct_method_message_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR **method_name_pptr, USHORT *method_name_length_ptr,
VOID **context_pptr, USHORT *context_length_ptr,
NX_PACKET **packet_pptr, UINT wait_option);
```
**Description**
<p>This routine receives direct method message from IoT Hub. If there are no messages in the receive queue, this routine can block. The amount of time it waits for a message is determined by the wait_option parameter.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| method_name_pptr [out] | Return a pointer to method name on success. |
| method_name_length_ptr [out] | Return length of method name on success. |
| context_pptr [out] | Return a pointer to context pointer on success. |
| context_length_ptr [out] | Return length of context on success. |
| packet_pptr [out] | Return `NX_PACKET` containing the method payload on success. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait for message to arrive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if direct method message is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive direct method message due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive direct method message due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive direct method message due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive direct method message due to invalid packet.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to receive direct method message due to SDK core error.
* NX_AZURE_IOT_DISCONNECTED Fail to receive direct method message due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_direct_method_message_response**
***
<div style="text-align: right"> Return response to direct method message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_direct_method_message_response(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT status_code, VOID *context_ptr, USHORT context_length,,
const UCHAR *payload, UINT payload_length, UINT wait_option);
```
**Description**
<p>This routine returns response to the direct method message from IoT Hub. Note: request_id ties the correlation between direct method receive and response.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| status_code [in] | Status code for direct method. |
| context_ptr [in] | Pointer to context return from nx_azure_iot_hub_client_direct_method_message_receive. |
| context_length [in] | Length of context. |
| payload [in] | Pointer to `UCHAR` containing the payload for the direct method response. Payload is in JSON format. |
| payload_length [in] | Length of the payload |
| wait_option [in] | Ticks to wait for message to send. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if direct method response is send.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send direct method response due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to send direct method response due to SDK core error.
* NX_NO_PACKET Fail send direct method response due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_command_enable**
***
<div style="text-align: right"> Enables receiving command messages from IoTHub </div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_command_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables receiving command messages from IoT Hub. </p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT` |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if command message receiving is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable command message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to enable command message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to enable command message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to enable command message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_command_disable**
***
<div style="text-align: right"> Disables receiving command messages from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_command_disable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disables receiving command messages from IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if command message receiving is disabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disable command message receiving due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to disable command message receiving due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to disable command message receiving due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to disable command message receiving due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_command_message_receive**
***
<div style="text-align: right"> Receives IoT Hub command message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_command_message_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR **component_name_pptr,
USHORT *component_name_length_ptr,
const UCHAR **pnp_command_name_pptr,
USHORT *pnp_command_name_length_ptr,
VOID **context_pptr,
USHORT *context_length_ptr,
NX_PACKET **packet_pptr,
UINT wait_option);
```
**Description**
<p>This routine receives IoT Hub command message from IoT Hub. If there are no messages in the receive queue, this routine can block.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| component_name_pptr [out] | Return a pointer to IoT Hub component name on success. |
| component_name_length_ptr [out] | Return length of `*component_name_pptr` on success. |
| pnp_command_name_pptr [out] | Return a pointer to IoT Hub command name on success. |
| pnp_command_name_length_ptr [out] | Return length of `*pnp_command_name_pptr` on success. |
| context_pptr [out] | Return a pointer to context pointer on success. |
| context_length_ptr [out] | Return length of context on success. |
| packet_pptr [out] | Return `NX_PACKET` containing the command payload on success. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait for message to arrive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if IoT Hub command message is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive IoT Hub command message due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive IoT Hub command message due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive IoT Hub command message due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive IoT Hub command message due to invalid packet.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to receive IoT Hub command message due to SDK core error.
* NX_AZURE_IOT_DISCONNECTED Fail to receive IoT Hub command message due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_command_message_response**
***
<div style="text-align: right"> Return response to IoT hub command message from IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_command_message_response(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT status_code, VOID *context_ptr,
USHORT context_length, const UCHAR *payload_ptr,
UINT payload_length, UINT wait_option);
```
**Description**
<p>This routine returns response to the IoT hub command message from IoT Hub. Note: request_id ties the correlation between command receive and response.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| status_code [in] | Status code for pnp command message. |
| context_ptr [in] | Pointer to context return from nx_azure_iot_hub_client_command_receive. |
| context_length [in] | Length of context. |
| payload [in] | Pointer to `UCHAR` containing the payload for the IoT Hub command response. Payload is in JSON format. |
| payload_length [in] | Length of the payload |
| wait_option [in] | Ticks to wait for message to send. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if IoT Hub command response is send.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send IoT Hub command response due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to send IoT Hub command response due to SDK core error.
* NX_NO_PACKET Fail send IoT Hub command response due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_enable**
***
<div style="text-align: right">Enables device twin feature</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables device twin feature.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if device twin feature is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable device twin feature due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to enable device twin feature due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to enable device twin feature due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to enable device twin feature due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_disable**
***
<div style="text-align: right">Disables device twin feature</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_disable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disables device twin feature.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if device twin feature is disabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disable device twin feature due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to disable device twin feature due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to disable device twin feature due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to disable device twin feature due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_reported_properties_response_callback_set**
***
<div style="text-align: right">Sets reported properties response callback function</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_reported_properties_response_callback_set(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
VOID (*callback_ptr)(
NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT request_id,
UINT response_status,
ULONG version,
VOID *args),
VOID *callback_args);
```
**Description**
<p>This routine sets the response receive callback function for reported properties. This callback function is invoked when a response is received from Azure IoT hub for reported properties and no thread is waiting for response. Setting the callback function to NULL disables the callback function.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| callback_ptr [in] | Pointer to a callback function invoked. |
| callback_args [in] | Pointer to an argument passed to callback function. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if callback function is set.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to set callback due to invalid parameter.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_reported_properties_send**
***
<div style="text-align: right">Send device twin reported properties to IoT Hub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_reported_properties_send(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
const UCHAR *message_buffer, UINT message_length,
UINT *request_id_ptr, UINT *response_status_ptr,
ULONG *version_ptr, UINT wait_option);
```
**Description**
<p>This routine sends device twin reported properties to IoT Hub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| message_buffer [in] | JSON document containing the reported properties. |
| message_length [in] | Length of JSON document. |
| request_id_ptr [out] | Request Id assigned to the request. |
| response_status_ptr [out] | Status return for successful send of reported properties.|
| version_ptr [out] | Version return for successful send of reported properties.|
| wait_option [in] | Ticks to wait for message to send. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if device twin reported properties is sent.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send reported properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to send reported properties due to device twin is not enabled.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to send reported properties due to SDK core error.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to send reported properties due to buffer size is too small.
* NX_AZURE_IOT_NO_PACKET Fail to send reported properties due to no packet available.
* NX_NO_PACKET Fail to send reported properties due to no packet available.
* NX_AZURE_IOT_DISCONNECTED Fail to send reported properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_properties_request**
***
<div style="text-align: right">Request complete device twin properties</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_properties_request(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT wait_option);
```
**Description**
<p>This routine requests complete device twin properties.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| wait_option [in] | Ticks to wait for to wait for sending request. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if device twin properties is requested.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send device twin request due to invalid parameter.
* NX_AZURE_IOT_NO_SUBSCRIBE_ACK Fail to send device twin request due to no subscribe ack.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to send device twin request due to SDK core error.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to send device twin request due to buffer size is too small.
* NX_AZURE_IOT_NO_PACKET Fail to send reported properties due to no packet available.
* NX_NO_PACKET Fail to send reported properties due to no packet available.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_properties_receive**
***
<div style="text-align: right">Receive complete device twin properties</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_properties_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr, UINT wait_option);
```
**Description**
<p>This routine receives complete device twin properties.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | Pointer to `NX_PACKET*` that contains complete device twin properties. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait for message to receive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if device twin properties is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive device twin properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive device twin properties due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive device twin properties due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive device twin properties due to invalid packet.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to receive device twin properties due to SDK core error.
* NX_AZURE_IOT_SERVER_RESPONSE_ERROR Response code from server is not 2xx.
* NX_AZURE_IOT_DISCONNECTED Fail to receive device twin properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_device_twin_desired_properties_receive**
***
<div style="text-align: right">Receive desired properties form IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_device_twin_desired_properties_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr, UINT wait_option);
```
**Description**
<p>This routine receives desired properties from IoTHub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | Pointer to `NX_PACKET*` that contains complete twin document. Caller owns the `NX_PACKET` memory. |
| wait_option [in] | Ticks to wait for message to receive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if desired properties is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive desired properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive desired properties due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive desired properties due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive desired properties due to invalid packet.
* NX_AZURE_IOT_DISCONNECTED Fail to receive desired properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_properties_enable**
***
<div style="text-align: right">Enables properties feature</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_properties_enable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine enables properties feature.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if properties feature is enabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to enable properties feature due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to enable properties feature due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to enable properties feature due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to enable properties feature due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_properties_disable**
***
<div style="text-align: right">Disables properties feature</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_properties_disable(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr);
```
**Description**
<p>This routine disables properties feature.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if properties feature is disabled.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to disable properties feature due to invalid parameter.
* NXD_MQTT_NOT_CONNECTED Fail to disable properties feature due to MQTT not connected.
* NXD_MQTT_PACKET_POOL_FAILURE Fail to disable properties feature due to no available packet in pool.
* NXD_MQTT_COMMUNICATION_FAILURE Fail to disable properties feature due to TCP/TLS error.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_reported_properties_create**
***
<div style="text-align: right">Creates IoT Hub reported property message.</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_reported_properties_create(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr,
UINT wait_option)
```
**Description**
<p>This routine creates a reported properties message.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | Return allocated packet on success. |
| wait_option [in] | Ticks to wait for writer creation. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if a message writer is created.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to create message writer due to invalid parameter.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to create message writer due to SDK core error.
* NX_NO_PACKET Fail to create message writer due to no available packet in pool.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_reported_properties_send**
***
<div style="text-align: right">Sends IoT Hub reported properties message to IoTHub.</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_reported_properties_send(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET *packet_ptr,
UINT *request_id_ptr, UINT *response_status_ptr,
ULONG *version_ptr, UINT wait_option);
```
**Description**
<p>This routine sends the reported properties contain in the packet.</p>
<p>Note: The return status of the API indicates if the reported properties is sent out successfully or not,
the response status is used to track if the reported properties is accepted or not by IoT Hub, and the
reponse status is available only when the return status is NX_AZURE_IOT_SUCCESS.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_ptr [in] | A pointer to a #NX_PACKET. |
| request_id_ptr [out] | Request Id assigned to the request. |
| response_status_ptr [out] | Status return for successful send of reported properties. |
| version_ptr [out] | Version return for successful send of reported properties. |
| wait_option [in] | Ticks to wait for message to send. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if reported properties is sent.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to send reported properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to send reported properties due to property is not enabled.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to send reported properties due to SDK core error.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to send reported properties due to buffer size is too small.
* NX_NO_PACKET Fail to send reported properties due to no packet available.
* NX_AZURE_IOT_DISCONNECTED Fail to send reported properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_properties_request**
***
<div style="text-align: right">Request complete properties</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_properties_request(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
UINT wait_option);
```
**Description**
<p>This routine requests complete properties.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| wait_option [in] | Ticks to wait for to wait for sending request. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if request get all properties is sent..
* NX_AZURE_IOT_INVALID_PARAMETER Fail to request get all properties due to invalid parameter.
* NX_AZURE_IOT_NO_SUBSCRIBE_ACK Fail to request get all properties due to no subscribe ack.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to request get all properties due to SDK core error.
* NX_AZURE_IOT_INSUFFICIENT_BUFFER_SPACE Fail to request get all properties due to buffer size is too small.
* NX_AZURE_IOT_NO_PACKET Fail to request get all properties due to no packet available.
* NX_NO_PACKET Fail to request get all properties due to no packet available.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_properties_receive**
***
<div style="text-align: right">Receive all the properties</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_properties_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr,
UINT wait_option);
```
**Description**
<p>This routine receives all the properties.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | A pointer to a #NX_PACKET containing all the properties. |
| wait_option [in] | Ticks to wait for message to receive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if all properties is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive all properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive all properties due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive all properties due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive all properties due to invalid packet.
* NX_AZURE_IOT_SDK_CORE_ERROR Fail to receive all properties due to SDK core error.
* NX_AZURE_IOT_SERVER_RESPONSE_ERROR Response code from server is not 2xx.
* NX_AZURE_IOT_DISCONNECTED Fail to receive all properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
#### **nx_azure_iot_hub_client_writable_properties_receive**
***
<div style="text-align: right">Receive writable properties form IoTHub</div>
**Prototype**
```c
UINT nx_azure_iot_hub_client_writable_properties_receive(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr,
NX_PACKET **packet_pptr,
UINT wait_option);
```
**Description**
<p>This routine receives writable properties from IoTHub.</p>
**Parameters**
| Name | Description |
| - |:-|
| hub_client_ptr [in] | A pointer to a `NX_AZURE_IOT_HUB_CLIENT`. |
| packet_pptr [out] | A pointer to a #NX_PACKET containing writable properties. |
| wait_option [in] | Ticks to wait for message to receive. |
**Return Values**
* NX_AZURE_IOT_SUCCESS Successful if writable properties is received.
* NX_AZURE_IOT_INVALID_PARAMETER Fail to receive writable properties due to invalid parameter.
* NX_AZURE_IOT_NOT_ENABLED Fail to receive writable properties due to it is not enabled.
* NX_AZURE_IOT_NO_PACKET Fail to receive writable properties due to timeout.
* NX_AZURE_IOT_INVALID_PACKET Fail to receive writable properties due to invalid packet.
* NX_AZURE_IOT_DISCONNECTED Fail to receive writable properties due to disconnect.
**Allowed From**
Threads
**Example**
**See Also**
<div style="page-break-after: always;"></div>
|