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
#[cfg(feature = "AddApplication")]
pub mod AddApplication;
#[cfg(feature = "AddCertificate")]
pub mod AddCertificate;
#[cfg(feature = "AddDevice")]
pub mod AddDevice;
#[cfg(feature = "AddDeviceGroup")]
pub mod AddDeviceGroup;
#[cfg(feature = "AddQueue")]
pub mod AddQueue;
#[cfg(feature = "AddTunnel")]
pub mod AddTunnel;
#[cfg(feature = "BatchShowQueue")]
pub mod BatchShowQueue;
#[cfg(feature = "BroadcastMessage")]
pub mod BroadcastMessage;
#[cfg(feature = "ChangeRuleStatus")]
pub mod ChangeRuleStatus;
#[cfg(feature = "CheckCertificate")]
pub mod CheckCertificate;
#[cfg(feature = "CloseDeviceTunnel")]
pub mod CloseDeviceTunnel;
#[cfg(feature = "CreateAccessCode")]
pub mod CreateAccessCode;
#[cfg(feature = "CreateAsyncCommand")]
pub mod CreateAsyncCommand;
#[cfg(feature = "CreateBatchTask")]
pub mod CreateBatchTask;
#[cfg(feature = "CreateCommand")]
pub mod CreateCommand;
#[cfg(feature = "CreateMessage")]
pub mod CreateMessage;
#[cfg(feature = "CreateOrDeleteDeviceInGroup")]
pub mod CreateOrDeleteDeviceInGroup;
#[cfg(feature = "CreateOtaPackage")]
pub mod CreateOtaPackage;
#[cfg(feature = "CreateProduct")]
pub mod CreateProduct;
#[cfg(feature = "CreateRoutingBacklogPolicy")]
pub mod CreateRoutingBacklogPolicy;
#[cfg(feature = "CreateRoutingFlowControlPolicy")]
pub mod CreateRoutingFlowControlPolicy;
#[cfg(feature = "CreateRoutingRule")]
pub mod CreateRoutingRule;
#[cfg(feature = "CreateRule")]
pub mod CreateRule;
#[cfg(feature = "CreateRuleAction")]
pub mod CreateRuleAction;
#[cfg(feature = "DeleteApplication")]
pub mod DeleteApplication;
#[cfg(feature = "DeleteBatchTask")]
pub mod DeleteBatchTask;
#[cfg(feature = "DeleteBatchTaskFile")]
pub mod DeleteBatchTaskFile;
#[cfg(feature = "DeleteCertificate")]
pub mod DeleteCertificate;
#[cfg(feature = "DeleteDevice")]
pub mod DeleteDevice;
#[cfg(feature = "DeleteDeviceGroup")]
pub mod DeleteDeviceGroup;
#[cfg(feature = "DeleteDeviceTunnel")]
pub mod DeleteDeviceTunnel;
#[cfg(feature = "DeleteOtaPackage")]
pub mod DeleteOtaPackage;
#[cfg(feature = "DeleteProduct")]
pub mod DeleteProduct;
#[cfg(feature = "DeleteQueue")]
pub mod DeleteQueue;
#[cfg(feature = "DeleteRoutingBacklogPolicy")]
pub mod DeleteRoutingBacklogPolicy;
#[cfg(feature = "DeleteRoutingFlowControlPolicy")]
pub mod DeleteRoutingFlowControlPolicy;
#[cfg(feature = "DeleteRoutingRule")]
pub mod DeleteRoutingRule;
#[cfg(feature = "DeleteRule")]
pub mod DeleteRule;
#[cfg(feature = "DeleteRuleAction")]
pub mod DeleteRuleAction;
#[cfg(feature = "FreezeDevice")]
pub mod FreezeDevice;
#[cfg(feature = "ListBatchTaskFiles")]
pub mod ListBatchTaskFiles;
#[cfg(feature = "ListBatchTasks")]
pub mod ListBatchTasks;
#[cfg(feature = "ListCertificates")]
pub mod ListCertificates;
#[cfg(feature = "ListDeviceGroups")]
pub mod ListDeviceGroups;
#[cfg(feature = "ListDeviceMessages")]
pub mod ListDeviceMessages;
#[cfg(feature = "ListDevices")]
pub mod ListDevices;
#[cfg(feature = "ListDeviceTunnels")]
pub mod ListDeviceTunnels;
#[cfg(feature = "ListOtaPackageInfo")]
pub mod ListOtaPackageInfo;
#[cfg(feature = "ListProducts")]
pub mod ListProducts;
#[cfg(feature = "ListProperties")]
pub mod ListProperties;
#[cfg(feature = "ListResourcesByTags")]
pub mod ListResourcesByTags;
#[cfg(feature = "ListRoutingBacklogPolicy")]
pub mod ListRoutingBacklogPolicy;
#[cfg(feature = "ListRoutingFlowControlPolicy")]
pub mod ListRoutingFlowControlPolicy;
#[cfg(feature = "ListRoutingRules")]
pub mod ListRoutingRules;
#[cfg(feature = "ListRuleActions")]
pub mod ListRuleActions;
#[cfg(feature = "ListRules")]
pub mod ListRules;
#[cfg(feature = "ResetDeviceSecret")]
pub mod ResetDeviceSecret;
#[cfg(feature = "ResetFingerprint")]
pub mod ResetFingerprint;
#[cfg(feature = "RetryBatchTask")]
pub mod RetryBatchTask;
#[cfg(feature = "SearchDevices")]
pub mod SearchDevices;
#[cfg(feature = "ShowApplication")]
pub mod ShowApplication;
#[cfg(feature = "ShowApplications")]
pub mod ShowApplications;
#[cfg(feature = "ShowAsyncDeviceCommand")]
pub mod ShowAsyncDeviceCommand;
#[cfg(feature = "ShowBatchTask")]
pub mod ShowBatchTask;
#[cfg(feature = "ShowDevice")]
pub mod ShowDevice;
#[cfg(feature = "ShowDeviceGroup")]
pub mod ShowDeviceGroup;
#[cfg(feature = "ShowDeviceMessage")]
pub mod ShowDeviceMessage;
#[cfg(feature = "ShowDeviceShadow")]
pub mod ShowDeviceShadow;
#[cfg(feature = "ShowDevicesInGroup")]
pub mod ShowDevicesInGroup;
#[cfg(feature = "ShowDeviceTunnel")]
pub mod ShowDeviceTunnel;
#[cfg(feature = "ShowOtaPackage")]
pub mod ShowOtaPackage;
#[cfg(feature = "ShowProduct")]
pub mod ShowProduct;
#[cfg(feature = "ShowQueue")]
pub mod ShowQueue;
#[cfg(feature = "ShowRoutingBacklogPolicy")]
pub mod ShowRoutingBacklogPolicy;
#[cfg(feature = "ShowRoutingFlowControlPolicy")]
pub mod ShowRoutingFlowControlPolicy;
#[cfg(feature = "ShowRoutingRule")]
pub mod ShowRoutingRule;
#[cfg(feature = "ShowRule")]
pub mod ShowRule;
#[cfg(feature = "ShowRuleAction")]
pub mod ShowRuleAction;
#[cfg(feature = "StopBatchTask")]
pub mod StopBatchTask;
#[cfg(feature = "TagDevice")]
pub mod TagDevice;
#[cfg(feature = "UnfreezeDevice")]
pub mod UnfreezeDevice;
#[cfg(feature = "UntagDevice")]
pub mod UntagDevice;
#[cfg(feature = "UpdateApplication")]
pub mod UpdateApplication;
#[cfg(feature = "UpdateDevice")]
pub mod UpdateDevice;
#[cfg(feature = "UpdateDeviceGroup")]
pub mod UpdateDeviceGroup;
#[cfg(feature = "UpdateDeviceShadowDesiredData")]
pub mod UpdateDeviceShadowDesiredData;
#[cfg(feature = "UpdateProduct")]
pub mod UpdateProduct;
#[cfg(feature = "UpdateProperties")]
pub mod UpdateProperties;
#[cfg(feature = "UpdateRoutingBacklogPolicy")]
pub mod UpdateRoutingBacklogPolicy;
#[cfg(feature = "UpdateRoutingFlowControlPolicy")]
pub mod UpdateRoutingFlowControlPolicy;
#[cfg(feature = "UpdateRoutingRule")]
pub mod UpdateRoutingRule;
#[cfg(feature = "UpdateRule")]
pub mod UpdateRule;
#[cfg(feature = "UpdateRuleAction")]
pub mod UpdateRuleAction;
#[cfg(feature = "UploadBatchTaskFile")]
pub mod UploadBatchTaskFile;