tb-rest-client 4.1.0__tar.gz → 4.3__tar.gz

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.
Files changed (2338) hide show
  1. tb_rest_client-4.3/PKG-INFO +85 -0
  2. tb_rest_client-4.3/README.md +52 -0
  3. tb_rest_client-4.3/pyproject.toml +28 -0
  4. tb_rest_client-4.3/tb_rest_client/__init__.py +16 -0
  5. tb_rest_client-4.3/tb_rest_client/api/__init__.py +14 -0
  6. tb_rest_client-4.3/tb_rest_client/api/api_ce/__init__.py +70 -0
  7. tb_rest_client-4.3/tb_rest_client/api/api_ce/admin_controller_api.py +2250 -0
  8. tb_rest_client-4.3/tb_rest_client/api/api_ce/ai_model_controller_api.py +550 -0
  9. tb_rest_client-4.3/tb_rest_client/api/api_ce/alarm_comment_controller_api.py +376 -0
  10. tb_rest_client-4.3/tb_rest_client/api/api_ce/alarm_controller_api.py +1639 -0
  11. tb_rest_client-4.3/tb_rest_client/api/api_ce/api_key_controller_api.py +570 -0
  12. tb_rest_client-4.3/tb_rest_client/api/api_ce/asset_controller_api.py +2040 -0
  13. tb_rest_client-4.3/tb_rest_client/api/api_ce/asset_profile_controller_api.py +1030 -0
  14. tb_rest_client-4.3/tb_rest_client/api/api_ce/audit_log_controller_api.py +587 -0
  15. tb_rest_client-4.3/tb_rest_client/api/api_ce/auth_controller_api.py +882 -0
  16. tb_rest_client-4.3/tb_rest_client/api/api_ce/calculated_field_controller_api.py +783 -0
  17. tb_rest_client-4.3/tb_rest_client/api/api_ce/component_descriptor_controller_api.py +340 -0
  18. tb_rest_client-4.3/tb_rest_client/api/api_ce/customer_controller_api.py +827 -0
  19. tb_rest_client-4.3/tb_rest_client/api/api_ce/dashboard_controller_api.py +2364 -0
  20. tb_rest_client-4.3/tb_rest_client/api/api_ce/device_api_controller_api.py +1212 -0
  21. tb_rest_client-4.3/tb_rest_client/api/api_ce/device_connectivity_controller_api.py +332 -0
  22. tb_rest_client-4.3/tb_rest_client/api/api_ce/device_controller_api.py +2737 -0
  23. tb_rest_client-4.3/tb_rest_client/api/api_ce/device_profile_controller_api.py +1216 -0
  24. tb_rest_client-4.3/tb_rest_client/api/api_ce/domain_controller_api.py +678 -0
  25. tb_rest_client-4.3/tb_rest_client/api/api_ce/edge_controller_api.py +2475 -0
  26. tb_rest_client-4.3/tb_rest_client/api/api_ce/edge_event_controller_api.py +178 -0
  27. tb_rest_client-4.3/tb_rest_client/api/api_ce/entities_version_control_controller_api.py +1327 -0
  28. tb_rest_client-4.3/tb_rest_client/api/api_ce/entity_query_controller_api.py +934 -0
  29. tb_rest_client-4.3/tb_rest_client/api/api_ce/entity_relation_controller_api.py +1355 -0
  30. tb_rest_client-4.3/tb_rest_client/api/api_ce/entity_view_controller_api.py +1924 -0
  31. tb_rest_client-4.3/tb_rest_client/api/api_ce/event_controller_api.py +623 -0
  32. tb_rest_client-4.3/tb_rest_client/api/api_ce/image_controller_api.py +1295 -0
  33. tb_rest_client-4.3/tb_rest_client/api/api_ce/job_controller_api.py +552 -0
  34. tb_rest_client-4.3/tb_rest_client/api/api_ce/login_endpoint_api.py +237 -0
  35. tb_rest_client-4.3/tb_rest_client/api/api_ce/lwm_2m_controller_api.py +240 -0
  36. tb_rest_client-4.3/tb_rest_client/api/api_ce/mail_config_template_controller_api.py +134 -0
  37. tb_rest_client-4.3/tb_rest_client/api/api_ce/mobile_app_bundle_controller_api.py +562 -0
  38. tb_rest_client-4.3/tb_rest_client/api/api_ce/mobile_app_controller_api.py +987 -0
  39. tb_rest_client-4.3/tb_rest_client/api/api_ce/notification_controller_api.py +1576 -0
  40. tb_rest_client-4.3/tb_rest_client/api/api_ce/notification_rule_controller_api.py +447 -0
  41. tb_rest_client-4.3/tb_rest_client/api/api_ce/notification_target_controller_api.py +776 -0
  42. tb_rest_client-4.3/tb_rest_client/api/api_ce/notification_template_controller_api.py +550 -0
  43. tb_rest_client-4.3/tb_rest_client/api/api_ce/o_auth_2_config_template_controller_api.py +324 -0
  44. tb_rest_client-4.3/tb_rest_client/api/api_ce/o_auth_2_controller_api.py +915 -0
  45. tb_rest_client-4.3/tb_rest_client/api/api_ce/ota_package_controller_api.py +879 -0
  46. tb_rest_client-4.3/tb_rest_client/api/api_ce/qr_code_settings_controller_api.py +508 -0
  47. tb_rest_client-4.3/tb_rest_client/api/api_ce/queue_controller_api.py +558 -0
  48. tb_rest_client-4.3/tb_rest_client/api/api_ce/queue_stats_controller_api.py +352 -0
  49. tb_rest_client-4.3/tb_rest_client/api/api_ce/rpc_v_1_controller_api.py +253 -0
  50. tb_rest_client-4.3/tb_rest_client/api/api_ce/rpc_v_2_controller_api.py +570 -0
  51. tb_rest_client-4.3/tb_rest_client/api/api_ce/rule_chain_controller_api.py +2297 -0
  52. tb_rest_client-4.3/tb_rest_client/api/api_ce/rule_engine_controller_api.py +515 -0
  53. tb_rest_client-4.3/tb_rest_client/api/api_ce/tb_resource_controller_api.py +2002 -0
  54. tb_rest_client-4.3/tb_rest_client/api/api_ce/telemetry_controller_api.py +1808 -0
  55. tb_rest_client-4.3/tb_rest_client/api/api_ce/tenant_controller_api.py +751 -0
  56. tb_rest_client-4.3/tb_rest_client/api/api_ce/tenant_profile_controller_api.py +932 -0
  57. tb_rest_client-4.3/tb_rest_client/api/api_ce/trendz_controller_api.py +233 -0
  58. tb_rest_client-4.3/tb_rest_client/api/api_ce/two_factor_auth_config_controller_api.py +890 -0
  59. tb_rest_client-4.3/tb_rest_client/api/api_ce/two_factor_auth_controller_api.py +419 -0
  60. tb_rest_client-4.3/tb_rest_client/api/api_ce/ui_settings_controller_api.py +134 -0
  61. tb_rest_client-4.3/tb_rest_client/api/api_ce/usage_info_controller_api.py +132 -0
  62. tb_rest_client-4.3/tb_rest_client/api/api_ce/user_controller_api.py +2739 -0
  63. tb_rest_client-4.3/tb_rest_client/api/api_ce/widget_type_controller_api.py +1505 -0
  64. tb_rest_client-4.3/tb_rest_client/api/api_ce/widgets_bundle_controller_api.py +848 -0
  65. tb_rest_client-4.3/tb_rest_client/api/api_pe/__init__.py +70 -0
  66. tb_rest_client-4.3/tb_rest_client/api/api_pe/admin_controller_api.py +2310 -0
  67. tb_rest_client-4.3/tb_rest_client/api/api_pe/ai_model_controller_api.py +550 -0
  68. tb_rest_client-4.3/tb_rest_client/api/api_pe/alarm_comment_controller_api.py +372 -0
  69. tb_rest_client-4.3/tb_rest_client/api/api_pe/alarm_controller_api.py +1629 -0
  70. tb_rest_client-4.3/tb_rest_client/api/api_pe/api_key_controller_api.py +570 -0
  71. tb_rest_client-4.3/tb_rest_client/api/api_pe/asset_controller_api.py +1648 -0
  72. tb_rest_client-4.3/tb_rest_client/api/api_pe/asset_profile_controller_api.py +1125 -0
  73. tb_rest_client-4.3/tb_rest_client/api/api_pe/audit_log_controller_api.py +587 -0
  74. tb_rest_client-4.3/tb_rest_client/api/api_pe/auth_controller_api.py +882 -0
  75. tb_rest_client-4.3/tb_rest_client/api/api_pe/blob_entity_controller_api.py +554 -0
  76. tb_rest_client-4.3/tb_rest_client/api/api_pe/calculated_field_controller_api.py +1093 -0
  77. tb_rest_client-4.3/tb_rest_client/api/api_pe/component_descriptor_controller_api.py +340 -0
  78. tb_rest_client-4.3/tb_rest_client/api/api_pe/converter_controller_api.py +959 -0
  79. tb_rest_client-4.3/tb_rest_client/api/api_pe/converter_library_controller_api.py +915 -0
  80. tb_rest_client-4.3/tb_rest_client/api/api_pe/custom_menu_controller_api.py +1090 -0
  81. tb_rest_client-4.3/tb_rest_client/api/api_pe/custom_translation_controller_api.py +757 -0
  82. tb_rest_client-4.3/tb_rest_client/api/api_pe/customer_controller_api.py +1509 -0
  83. tb_rest_client-4.3/tb_rest_client/api/api_pe/dashboard_controller_api.py +2194 -0
  84. tb_rest_client-4.3/tb_rest_client/api/api_pe/dashboard_report_controller_api.py +257 -0
  85. tb_rest_client-4.3/tb_rest_client/api/api_pe/device_api_controller_api.py +1212 -0
  86. tb_rest_client-4.3/tb_rest_client/api/api_pe/device_connectivity_controller_api.py +332 -0
  87. tb_rest_client-4.3/tb_rest_client/api/api_pe/device_controller_api.py +2470 -0
  88. tb_rest_client-4.3/tb_rest_client/api/api_pe/device_group_ota_package_controller_api.py +334 -0
  89. tb_rest_client-4.3/tb_rest_client/api/api_pe/device_profile_controller_api.py +1215 -0
  90. tb_rest_client-4.3/tb_rest_client/api/api_pe/domain_controller_api.py +678 -0
  91. tb_rest_client-4.3/tb_rest_client/api/api_pe/edge_controller_api.py +2638 -0
  92. tb_rest_client-4.3/tb_rest_client/api/api_pe/edge_event_controller_api.py +178 -0
  93. tb_rest_client-4.3/tb_rest_client/api/api_pe/entities_version_control_controller_api.py +1335 -0
  94. tb_rest_client-4.3/tb_rest_client/api/api_pe/entity_group_controller_api.py +3936 -0
  95. tb_rest_client-4.3/tb_rest_client/api/api_pe/entity_query_controller_api.py +934 -0
  96. tb_rest_client-4.3/tb_rest_client/api/api_pe/entity_relation_controller_api.py +1355 -0
  97. tb_rest_client-4.3/tb_rest_client/api/api_pe/entity_view_controller_api.py +1645 -0
  98. tb_rest_client-4.3/tb_rest_client/api/api_pe/event_controller_api.py +623 -0
  99. tb_rest_client-4.3/tb_rest_client/api/api_pe/group_permission_controller_api.py +720 -0
  100. tb_rest_client-4.3/tb_rest_client/api/api_pe/image_controller_api.py +1505 -0
  101. tb_rest_client-4.3/tb_rest_client/api/api_pe/integration_controller_api.py +1592 -0
  102. tb_rest_client-4.3/tb_rest_client/api/api_pe/job_controller_api.py +560 -0
  103. tb_rest_client-4.3/tb_rest_client/api/api_pe/login_endpoint_api.py +237 -0
  104. tb_rest_client-4.3/tb_rest_client/api/api_pe/lwm_2m_controller_api.py +244 -0
  105. tb_rest_client-4.3/tb_rest_client/api/api_pe/mail_config_template_controller_api.py +134 -0
  106. tb_rest_client-4.3/tb_rest_client/api/api_pe/mobile_app_bundle_controller_api.py +562 -0
  107. tb_rest_client-4.3/tb_rest_client/api/api_pe/mobile_app_controller_api.py +987 -0
  108. tb_rest_client-4.3/tb_rest_client/api/api_pe/notification_controller_api.py +1668 -0
  109. tb_rest_client-4.3/tb_rest_client/api/api_pe/notification_rule_controller_api.py +447 -0
  110. tb_rest_client-4.3/tb_rest_client/api/api_pe/notification_target_controller_api.py +776 -0
  111. tb_rest_client-4.3/tb_rest_client/api/api_pe/notification_template_controller_api.py +550 -0
  112. tb_rest_client-4.3/tb_rest_client/api/api_pe/o_auth_2_config_template_controller_api.py +324 -0
  113. tb_rest_client-4.3/tb_rest_client/api/api_pe/o_auth_2_controller_api.py +816 -0
  114. tb_rest_client-4.3/tb_rest_client/api/api_pe/ota_package_controller_api.py +1010 -0
  115. tb_rest_client-4.3/tb_rest_client/api/api_pe/owner_controller_api.py +285 -0
  116. tb_rest_client-4.3/tb_rest_client/api/api_pe/qr_code_settings_controller_api.py +595 -0
  117. tb_rest_client-4.3/tb_rest_client/api/api_pe/queue_controller_api.py +558 -0
  118. tb_rest_client-4.3/tb_rest_client/api/api_pe/queue_stats_controller_api.py +353 -0
  119. tb_rest_client-4.3/tb_rest_client/api/api_pe/report_controller_api.py +860 -0
  120. tb_rest_client-4.3/tb_rest_client/api/api_pe/report_template_controller_api.py +653 -0
  121. tb_rest_client-4.3/tb_rest_client/api/api_pe/role_controller_api.py +546 -0
  122. tb_rest_client-4.3/tb_rest_client/api/api_pe/rpc_controller_api.py +257 -0
  123. tb_rest_client-4.3/tb_rest_client/api/api_pe/rpc_v_1_controller_api.py +253 -0
  124. tb_rest_client-4.3/tb_rest_client/api/api_pe/rpc_v_2_controller_api.py +570 -0
  125. tb_rest_client-4.3/tb_rest_client/api/api_pe/rule_chain_controller_api.py +2297 -0
  126. tb_rest_client-4.3/tb_rest_client/api/api_pe/rule_engine_controller_api.py +499 -0
  127. tb_rest_client-4.3/tb_rest_client/api/api_pe/scheduler_event_controller_api.py +1367 -0
  128. tb_rest_client-4.3/tb_rest_client/api/api_pe/secret_controller_api.py +843 -0
  129. tb_rest_client-4.3/tb_rest_client/api/api_pe/self_registration_controller_api.py +859 -0
  130. tb_rest_client-4.3/tb_rest_client/api/api_pe/sign_up_controller_api.py +882 -0
  131. tb_rest_client-4.3/tb_rest_client/api/api_pe/solution_controller_api.py +514 -0
  132. tb_rest_client-4.3/tb_rest_client/api/api_pe/tb_resource_controller_api.py +1909 -0
  133. tb_rest_client-4.3/tb_rest_client/api/api_pe/telemetry_controller_api.py +1928 -0
  134. tb_rest_client-4.3/tb_rest_client/api/api_pe/tenant_controller_api.py +750 -0
  135. tb_rest_client-4.3/tb_rest_client/api/api_pe/tenant_profile_controller_api.py +932 -0
  136. tb_rest_client-4.3/tb_rest_client/api/api_pe/translation_controller_api.py +704 -0
  137. tb_rest_client-4.3/tb_rest_client/api/api_pe/trendz_api_controller_api.py +431 -0
  138. tb_rest_client-4.3/tb_rest_client/api/api_pe/trendz_controller_api.py +568 -0
  139. tb_rest_client-4.3/tb_rest_client/api/api_pe/two_factor_auth_config_controller_api.py +890 -0
  140. tb_rest_client-4.3/tb_rest_client/api/api_pe/two_factor_auth_controller_api.py +419 -0
  141. tb_rest_client-4.3/tb_rest_client/api/api_pe/ui_settings_controller_api.py +134 -0
  142. tb_rest_client-4.3/tb_rest_client/api/api_pe/usage_info_controller_api.py +132 -0
  143. tb_rest_client-4.3/tb_rest_client/api/api_pe/user_controller_api.py +3328 -0
  144. tb_rest_client-4.3/tb_rest_client/api/api_pe/user_permissions_controller_api.py +249 -0
  145. tb_rest_client-4.3/tb_rest_client/api/api_pe/white_labeling_controller_api.py +1238 -0
  146. tb_rest_client-4.3/tb_rest_client/api/api_pe/widget_type_controller_api.py +1410 -0
  147. tb_rest_client-4.3/tb_rest_client/api/api_pe/widgets_bundle_controller_api.py +847 -0
  148. tb_rest_client-4.3/tb_rest_client/api_client.py +705 -0
  149. tb_rest_client-4.3/tb_rest_client/configuration.py +234 -0
  150. tb_rest_client-4.3/tb_rest_client/models/__init__.py +14 -0
  151. tb_rest_client-4.3/tb_rest_client/models/models_ce/__init__.py +550 -0
  152. tb_rest_client-4.3/tb_rest_client/models/models_ce/account_configverification_code_body.py +98 -0
  153. tb_rest_client-4.3/tb_rest_client/models/models_ce/account_two_fa_settings.py +124 -0
  154. tb_rest_client-4.3/tb_rest_client/models/models_ce/activate_user_request.py +154 -0
  155. tb_rest_client-4.3/tb_rest_client/models/models_ce/admin_settings.py +232 -0
  156. tb_rest_client-4.3/tb_rest_client/models/models_ce/admin_settings_id.py +127 -0
  157. tb_rest_client-4.3/tb_rest_client/models/models_ce/affected_tenant_administrators_filter.py +104 -0
  158. tb_rest_client-4.3/tb_rest_client/models/models_ce/affected_user_filter.py +104 -0
  159. tb_rest_client-4.3/tb_rest_client/models/models_ce/ai_chat_model_config_object.py +150 -0
  160. tb_rest_client-4.3/tb_rest_client/models/models_ce/ai_model.py +267 -0
  161. tb_rest_client-4.3/tb_rest_client/models/models_ce/ai_model_config.py +159 -0
  162. tb_rest_client-4.3/tb_rest_client/models/models_ce/ai_model_id.py +156 -0
  163. tb_rest_client-4.3/tb_rest_client/models/models_ce/ai_provider_config.py +98 -0
  164. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm.py +707 -0
  165. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_assignee.py +202 -0
  166. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_assignment_notification_rule_trigger_config.py +216 -0
  167. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_comment.py +292 -0
  168. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_comment_id.py +127 -0
  169. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_comment_info.py +376 -0
  170. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_comment_notification_rule_trigger_config.py +248 -0
  171. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_condition.py +154 -0
  172. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_condition_filter.py +214 -0
  173. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_condition_filter_key.py +160 -0
  174. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_condition_spec.py +135 -0
  175. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_count_query.py +372 -0
  176. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_data.py +855 -0
  177. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_data_page_link.py +450 -0
  178. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_data_query.py +254 -0
  179. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_id.py +162 -0
  180. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_info.py +803 -0
  181. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_notification_rule_trigger_config.py +223 -0
  182. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_rule.py +206 -0
  183. tb_rest_client-4.3/tb_rest_client/models/models_ce/alarm_schedule.py +166 -0
  184. tb_rest_client-4.3/tb_rest_client/models/models_ce/alias_entity_id.py +180 -0
  185. tb_rest_client-4.3/tb_rest_client/models/models_ce/all_users_filter.py +104 -0
  186. tb_rest_client-4.3/tb_rest_client/models/models_ce/allow_create_new_devices_device_profile_provision_configuration.py +104 -0
  187. tb_rest_client-4.3/tb_rest_client/models/models_ce/amazon_bedrock_chat_model_config.py +98 -0
  188. tb_rest_client-4.3/tb_rest_client/models/models_ce/amazon_bedrock_provider_config.py +179 -0
  189. tb_rest_client-4.3/tb_rest_client/models/models_ce/android_config.py +202 -0
  190. tb_rest_client-4.3/tb_rest_client/models/models_ce/anthropic_chat_model_config.py +98 -0
  191. tb_rest_client-4.3/tb_rest_client/models/models_ce/anthropic_provider_config.py +125 -0
  192. tb_rest_client-4.3/tb_rest_client/models/models_ce/any_time_schedule.py +104 -0
  193. tb_rest_client-4.3/tb_rest_client/models/models_ce/api_image_body.py +177 -0
  194. tb_rest_client-4.3/tb_rest_client/models/models_ce/api_usage_limit_notification_rule_trigger_config.py +170 -0
  195. tb_rest_client-4.3/tb_rest_client/models/models_ce/api_usage_state_filter.py +130 -0
  196. tb_rest_client-4.3/tb_rest_client/models/models_ce/argument.py +214 -0
  197. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset.py +367 -0
  198. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_id.py +162 -0
  199. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_info.py +451 -0
  200. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_profile.py +422 -0
  201. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_profile_id.py +162 -0
  202. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_profile_info.py +232 -0
  203. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_search_query.py +180 -0
  204. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_search_query_filter.py +266 -0
  205. tb_rest_client-4.3/tb_rest_client/models/models_ce/asset_type_filter.py +182 -0
  206. tb_rest_client-4.3/tb_rest_client/models/models_ce/attribute_export_data.py +280 -0
  207. tb_rest_client-4.3/tb_rest_client/models/models_ce/attributes_entity_view.py +185 -0
  208. tb_rest_client-4.3/tb_rest_client/models/models_ce/audit_log.py +434 -0
  209. tb_rest_client-4.3/tb_rest_client/models/models_ce/audit_log_id.py +127 -0
  210. tb_rest_client-4.3/tb_rest_client/models/models_ce/auth_token_body.py +124 -0
  211. tb_rest_client-4.3/tb_rest_client/models/models_ce/auto_commit_settings.py +103 -0
  212. tb_rest_client-4.3/tb_rest_client/models/models_ce/auto_version_create_config.py +202 -0
  213. tb_rest_client-4.3/tb_rest_client/models/models_ce/available_entity_keys.py +181 -0
  214. tb_rest_client-4.3/tb_rest_client/models/models_ce/aws_sns_sms_provider_configuration.py +188 -0
  215. tb_rest_client-4.3/tb_rest_client/models/models_ce/azure_open_ai_chat_model_config.py +98 -0
  216. tb_rest_client-4.3/tb_rest_client/models/models_ce/azure_open_ai_provider_config.py +178 -0
  217. tb_rest_client-4.3/tb_rest_client/models/models_ce/backup_code_two_fa_account_config.py +157 -0
  218. tb_rest_client-4.3/tb_rest_client/models/models_ce/backup_code_two_fa_provider_config.py +130 -0
  219. tb_rest_client-4.3/tb_rest_client/models/models_ce/boolean_filter_predicate.py +162 -0
  220. tb_rest_client-4.3/tb_rest_client/models/models_ce/branch_info.py +150 -0
  221. tb_rest_client-4.3/tb_rest_client/models/models_ce/bulk_import_request.py +150 -0
  222. tb_rest_client-4.3/tb_rest_client/models/models_ce/bulk_import_result_asset.py +202 -0
  223. tb_rest_client-4.3/tb_rest_client/models/models_ce/bulk_import_result_asset_created.py +254 -0
  224. tb_rest_client-4.3/tb_rest_client/models/models_ce/bulk_import_result_device.py +202 -0
  225. tb_rest_client-4.3/tb_rest_client/models/models_ce/bulk_import_result_edge.py +202 -0
  226. tb_rest_client-4.3/tb_rest_client/models/models_ce/button.py +286 -0
  227. tb_rest_client-4.3/tb_rest_client/models/models_ce/byte_array_resource.py +332 -0
  228. tb_rest_client-4.3/tb_rest_client/models/models_ce/byte_buffer.py +306 -0
  229. tb_rest_client-4.3/tb_rest_client/models/models_ce/calculated_field.py +394 -0
  230. tb_rest_client-4.3/tb_rest_client/models/models_ce/calculated_field_configuration.py +211 -0
  231. tb_rest_client-4.3/tb_rest_client/models/models_ce/calculated_field_debug_event_filter.py +98 -0
  232. tb_rest_client-4.3/tb_rest_client/models/models_ce/calculated_field_id.py +156 -0
  233. tb_rest_client-4.3/tb_rest_client/models/models_ce/change_password_request.py +154 -0
  234. tb_rest_client-4.3/tb_rest_client/models/models_ce/check_pre_provisioned_devices_device_profile_provision_configuration.py +104 -0
  235. tb_rest_client-4.3/tb_rest_client/models/models_ce/claim_request.py +124 -0
  236. tb_rest_client-4.3/tb_rest_client/models/models_ce/clear_rule.py +131 -0
  237. tb_rest_client-4.3/tb_rest_client/models/models_ce/client_attributes_querying_snmp_communication_config.py +156 -0
  238. tb_rest_client-4.3/tb_rest_client/models/models_ce/coap_device_profile_transport_configuration.py +156 -0
  239. tb_rest_client-4.3/tb_rest_client/models/models_ce/coap_device_transport_configuration.py +214 -0
  240. tb_rest_client-4.3/tb_rest_client/models/models_ce/coap_device_type_configuration.py +134 -0
  241. tb_rest_client-4.3/tb_rest_client/models/models_ce/column_mapping.py +156 -0
  242. tb_rest_client-4.3/tb_rest_client/models/models_ce/comparison_ts_value.py +150 -0
  243. tb_rest_client-4.3/tb_rest_client/models/models_ce/complex_filter_predicate.py +162 -0
  244. tb_rest_client-4.3/tb_rest_client/models/models_ce/complex_version_create_request.py +162 -0
  245. tb_rest_client-4.3/tb_rest_client/models/models_ce/component_descriptor.py +420 -0
  246. tb_rest_client-4.3/tb_rest_client/models/models_ce/component_descriptor_id.py +127 -0
  247. tb_rest_client-4.3/tb_rest_client/models/models_ce/config_submit_body.py +98 -0
  248. tb_rest_client-4.3/tb_rest_client/models/models_ce/custom_mobile_page.py +98 -0
  249. tb_rest_client-4.3/tb_rest_client/models/models_ce/custom_time_schedule.py +156 -0
  250. tb_rest_client-4.3/tb_rest_client/models/models_ce/custom_time_schedule_item.py +202 -0
  251. tb_rest_client-4.3/tb_rest_client/models/models_ce/customer.py +510 -0
  252. tb_rest_client-4.3/tb_rest_client/models/models_ce/customer_id.py +162 -0
  253. tb_rest_client-4.3/tb_rest_client/models/models_ce/customer_users_filter.py +131 -0
  254. tb_rest_client-4.3/tb_rest_client/models/models_ce/dashboard.py +399 -0
  255. tb_rest_client-4.3/tb_rest_client/models/models_ce/dashboard_id.py +162 -0
  256. tb_rest_client-4.3/tb_rest_client/models/models_ce/dashboard_info.py +373 -0
  257. tb_rest_client-4.3/tb_rest_client/models/models_ce/dashboard_page.py +98 -0
  258. tb_rest_client-4.3/tb_rest_client/models/models_ce/debug_settings.py +182 -0
  259. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_coap_device_type_configuration.py +130 -0
  260. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_device_configuration.py +104 -0
  261. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_device_profile_configuration.py +104 -0
  262. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_device_profile_transport_configuration.py +104 -0
  263. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_device_transport_configuration.py +104 -0
  264. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_mobile_page.py +98 -0
  265. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_rule_chain_create_request.py +127 -0
  266. tb_rest_client-4.3/tb_rest_client/models/models_ce/default_tenant_profile_configuration.py +1638 -0
  267. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_entity_data_diff.py +150 -0
  268. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_entity_data_info.py +150 -0
  269. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_list_branch_info.py +150 -0
  270. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_list_versioned_entity_info.py +150 -0
  271. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_page_data_entity_version.py +150 -0
  272. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_repository_settings.py +150 -0
  273. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_response_entity.py +150 -0
  274. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_result_void.py +150 -0
  275. tb_rest_client-4.3/tb_rest_client/models/models_ce/deferred_resultuuid.py +150 -0
  276. tb_rest_client-4.3/tb_rest_client/models/models_ce/delivery_method_notification_template.py +191 -0
  277. tb_rest_client-4.3/tb_rest_client/models/models_ce/device.py +446 -0
  278. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_activity_notification_rule_trigger_config.py +190 -0
  279. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_configuration.py +133 -0
  280. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_credentials.py +293 -0
  281. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_credentials_id.py +127 -0
  282. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_data.py +154 -0
  283. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_export_data.py +156 -0
  284. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_id.py +162 -0
  285. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_info.py +558 -0
  286. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile.py +630 -0
  287. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_alarm.py +320 -0
  288. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_configuration.py +133 -0
  289. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_data.py +210 -0
  290. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_id.py +162 -0
  291. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_info.py +300 -0
  292. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_provision_configuration.py +162 -0
  293. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_profile_transport_configuration.py +137 -0
  294. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_search_query.py +180 -0
  295. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_search_query_filter.py +266 -0
  296. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_transport_configuration.py +137 -0
  297. tb_rest_client-4.3/tb_rest_client/models/models_ce/device_type_filter.py +182 -0
  298. tb_rest_client-4.3/tb_rest_client/models/models_ce/disabled_device_profile_provision_configuration.py +104 -0
  299. tb_rest_client-4.3/tb_rest_client/models/models_ce/domain.py +247 -0
  300. tb_rest_client-4.3/tb_rest_client/models/models_ce/domain_id.py +146 -0
  301. tb_rest_client-4.3/tb_rest_client/models/models_ce/domain_info.py +275 -0
  302. tb_rest_client-4.3/tb_rest_client/models/models_ce/dummy_job_configuration.py +98 -0
  303. tb_rest_client-4.3/tb_rest_client/models/models_ce/dummy_job_result.py +98 -0
  304. tb_rest_client-4.3/tb_rest_client/models/models_ce/dummy_task_failure.py +176 -0
  305. tb_rest_client-4.3/tb_rest_client/models/models_ce/dummy_task_result.py +98 -0
  306. tb_rest_client-4.3/tb_rest_client/models/models_ce/duration_alarm_condition_spec.py +162 -0
  307. tb_rest_client-4.3/tb_rest_client/models/models_ce/dynamic_value_boolean.py +182 -0
  308. tb_rest_client-4.3/tb_rest_client/models/models_ce/dynamic_value_double.py +182 -0
  309. tb_rest_client-4.3/tb_rest_client/models/models_ce/dynamic_value_integer.py +182 -0
  310. tb_rest_client-4.3/tb_rest_client/models/models_ce/dynamic_value_long.py +182 -0
  311. tb_rest_client-4.3/tb_rest_client/models/models_ce/dynamic_value_string.py +182 -0
  312. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge.py +426 -0
  313. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_communication_failure_notification_rule_trigger_config.py +130 -0
  314. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_connection_notification_rule_trigger_config.py +163 -0
  315. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_event.py +370 -0
  316. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_event_id.py +127 -0
  317. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_id.py +162 -0
  318. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_info.py +478 -0
  319. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_install_instructions.py +126 -0
  320. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_instructions.py +126 -0
  321. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_search_query.py +180 -0
  322. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_search_query_filter.py +266 -0
  323. tb_rest_client-4.3/tb_rest_client/models/models_ce/edge_type_filter.py +182 -0
  324. tb_rest_client-4.3/tb_rest_client/models/models_ce/edqs_state.py +163 -0
  325. tb_rest_client-4.3/tb_rest_client/models/models_ce/edqs_sync_request.py +98 -0
  326. tb_rest_client-4.3/tb_rest_client/models/models_ce/efento_coap_device_type_configuration.py +104 -0
  327. tb_rest_client-4.3/tb_rest_client/models/models_ce/email_delivery_method_notification_template.py +131 -0
  328. tb_rest_client-4.3/tb_rest_client/models/models_ce/email_two_fa_account_config.py +131 -0
  329. tb_rest_client-4.3/tb_rest_client/models/models_ce/email_two_fa_provider_config.py +130 -0
  330. tb_rest_client-4.3/tb_rest_client/models/models_ce/entities_limit_notification_rule_trigger_config.py +163 -0
  331. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_action_notification_rule_trigger_config.py +215 -0
  332. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_count_query.py +150 -0
  333. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data.py +202 -0
  334. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data_diff.py +150 -0
  335. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data_info.py +176 -0
  336. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data_page_link.py +228 -0
  337. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data_query.py +228 -0
  338. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_data_sort_order.py +156 -0
  339. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_export_data_object.py +219 -0
  340. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_filter.py +134 -0
  341. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_id.py +160 -0
  342. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_id_clearstart_timeend_time_body.py +98 -0
  343. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_info.py +152 -0
  344. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_key.py +156 -0
  345. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_list_filter.py +162 -0
  346. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_load_error.py +202 -0
  347. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_name_filter.py +162 -0
  348. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_relation.py +264 -0
  349. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_relation_info.py +320 -0
  350. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_relations_query.py +152 -0
  351. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_subtype.py +182 -0
  352. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_type_filter.py +136 -0
  353. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_type_load_result.py +208 -0
  354. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_type_version_create_config.py +260 -0
  355. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_type_version_load_config.py +228 -0
  356. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_type_version_load_request.py +156 -0
  357. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_version.py +202 -0
  358. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view.py +423 -0
  359. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view_id.py +162 -0
  360. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view_info.py +479 -0
  361. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view_search_query.py +180 -0
  362. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view_search_query_filter.py +266 -0
  363. tb_rest_client-4.3/tb_rest_client/models/models_ce/entity_view_type_filter.py +182 -0
  364. tb_rest_client-4.3/tb_rest_client/models/models_ce/error_event_filter.py +188 -0
  365. tb_rest_client-4.3/tb_rest_client/models/models_ce/escalated_notification_rule_recipients_config.py +131 -0
  366. tb_rest_client-4.3/tb_rest_client/models/models_ce/event_filter.py +171 -0
  367. tb_rest_client-4.3/tb_rest_client/models/models_ce/event_id.py +127 -0
  368. tb_rest_client-4.3/tb_rest_client/models/models_ce/event_info.py +286 -0
  369. tb_rest_client-4.3/tb_rest_client/models/models_ce/failure.py +98 -0
  370. tb_rest_client-4.3/tb_rest_client/models/models_ce/features_info.py +228 -0
  371. tb_rest_client-4.3/tb_rest_client/models/models_ce/filter_predicate_value_boolean.py +176 -0
  372. tb_rest_client-4.3/tb_rest_client/models/models_ce/filter_predicate_value_double.py +176 -0
  373. tb_rest_client-4.3/tb_rest_client/models/models_ce/filter_predicate_value_integer.py +176 -0
  374. tb_rest_client-4.3/tb_rest_client/models/models_ce/filter_predicate_value_long.py +176 -0
  375. tb_rest_client-4.3/tb_rest_client/models/models_ce/filter_predicate_value_string.py +176 -0
  376. tb_rest_client-4.3/tb_rest_client/models/models_ce/git_hub_models_chat_model_config.py +98 -0
  377. tb_rest_client-4.3/tb_rest_client/models/models_ce/git_hub_models_provider_config.py +125 -0
  378. tb_rest_client-4.3/tb_rest_client/models/models_ce/google_ai_gemini_chat_model_config.py +98 -0
  379. tb_rest_client-4.3/tb_rest_client/models/models_ce/google_ai_gemini_provider_config.py +125 -0
  380. tb_rest_client-4.3/tb_rest_client/models/models_ce/google_vertex_ai_gemini_chat_model_config.py +98 -0
  381. tb_rest_client-4.3/tb_rest_client/models/models_ce/google_vertex_ai_gemini_provider_config.py +206 -0
  382. tb_rest_client-4.3/tb_rest_client/models/models_ce/has_id_object.py +124 -0
  383. tb_rest_client-4.3/tb_rest_client/models/models_ce/home_dashboard.py +427 -0
  384. tb_rest_client-4.3/tb_rest_client/models/models_ce/home_dashboard_info.py +152 -0
  385. tb_rest_client-4.3/tb_rest_client/models/models_ce/image_export_data.py +332 -0
  386. tb_rest_client-4.3/tb_rest_client/models/models_ce/inline_response200.py +99 -0
  387. tb_rest_client-4.3/tb_rest_client/models/models_ce/input_stream.py +98 -0
  388. tb_rest_client-4.3/tb_rest_client/models/models_ce/ios_config.py +176 -0
  389. tb_rest_client-4.3/tb_rest_client/models/models_ce/job.py +351 -0
  390. tb_rest_client-4.3/tb_rest_client/models/models_ce/job_configuration.py +173 -0
  391. tb_rest_client-4.3/tb_rest_client/models/models_ce/job_id.py +142 -0
  392. tb_rest_client-4.3/tb_rest_client/models/models_ce/job_result.py +354 -0
  393. tb_rest_client-4.3/tb_rest_client/models/models_ce/json_node.py +98 -0
  394. tb_rest_client-4.3/tb_rest_client/models/models_ce/json_transport_payload_configuration.py +104 -0
  395. tb_rest_client-4.3/tb_rest_client/models/models_ce/jwt_pair.py +186 -0
  396. tb_rest_client-4.3/tb_rest_client/models/models_ce/jwt_settings.py +210 -0
  397. tb_rest_client-4.3/tb_rest_client/models/models_ce/key_filter.py +182 -0
  398. tb_rest_client-4.3/tb_rest_client/models/models_ce/key_filter_predicate.py +136 -0
  399. tb_rest_client-4.3/tb_rest_client/models/models_ce/last_visited_dashboard_info.py +210 -0
  400. tb_rest_client-4.3/tb_rest_client/models/models_ce/life_cycle_event_filter.py +222 -0
  401. tb_rest_client-4.3/tb_rest_client/models/models_ce/login_mobile_info.py +176 -0
  402. tb_rest_client-4.3/tb_rest_client/models/models_ce/login_request.py +156 -0
  403. tb_rest_client-4.3/tb_rest_client/models/models_ce/login_response.py +156 -0
  404. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2_m_bootstrap_server_credential.py +136 -0
  405. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2_m_server_security_config_default.py +490 -0
  406. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2m_instance.py +154 -0
  407. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2m_object.py +266 -0
  408. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2m_resource_observe.py +266 -0
  409. tb_rest_client-4.3/tb_rest_client/models/models_ce/lw_m2m_version.py +124 -0
  410. tb_rest_client-4.3/tb_rest_client/models/models_ce/lwm2m_device_profile_transport_configuration.py +208 -0
  411. tb_rest_client-4.3/tb_rest_client/models/models_ce/lwm2m_device_transport_configuration.py +214 -0
  412. tb_rest_client-4.3/tb_rest_client/models/models_ce/mapping.py +202 -0
  413. tb_rest_client-4.3/tb_rest_client/models/models_ce/microsoft_teams_delivery_method_notification_template.py +182 -0
  414. tb_rest_client-4.3/tb_rest_client/models/models_ce/microsoft_teams_notification_target_config.py +314 -0
  415. tb_rest_client-4.3/tb_rest_client/models/models_ce/mistral_ai_chat_model_config.py +98 -0
  416. tb_rest_client-4.3/tb_rest_client/models/models_ce/mistral_ai_provider_config.py +125 -0
  417. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app.py +290 -0
  418. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_bundle.py +375 -0
  419. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_bundle_id.py +154 -0
  420. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_bundle_info.py +487 -0
  421. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_delivery_method_notification_template.py +157 -0
  422. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_id.py +160 -0
  423. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_info.py +318 -0
  424. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_notification_delivery_method_config.py +157 -0
  425. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_settings_id.py +127 -0
  426. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_app_version_info.py +210 -0
  427. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_layout_config.py +126 -0
  428. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_page.py +158 -0
  429. tb_rest_client-4.3/tb_rest_client/models/models_ce/mobile_session_info.py +124 -0
  430. tb_rest_client-4.3/tb_rest_client/models/models_ce/model_none.py +98 -0
  431. tb_rest_client-4.3/tb_rest_client/models/models_ce/mqtt_device_profile_transport_configuration.py +286 -0
  432. tb_rest_client-4.3/tb_rest_client/models/models_ce/mqtt_device_transport_configuration.py +104 -0
  433. tb_rest_client-4.3/tb_rest_client/models/models_ce/new_platform_version_notification_rule_trigger_config.py +104 -0
  434. tb_rest_client-4.3/tb_rest_client/models/models_ce/no_sec_lw_m2_m_bootstrap_server_credential.py +440 -0
  435. tb_rest_client-4.3/tb_rest_client/models/models_ce/node_connection_info.py +185 -0
  436. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification.py +402 -0
  437. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_delivery_method_config.py +134 -0
  438. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_id.py +162 -0
  439. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_info.py +185 -0
  440. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_pref.py +151 -0
  441. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request.py +417 -0
  442. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request_config.py +124 -0
  443. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request_id.py +162 -0
  444. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request_info.py +476 -0
  445. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request_preview.py +202 -0
  446. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_request_stats.py +202 -0
  447. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule.py +369 -0
  448. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule_config.py +124 -0
  449. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule_id.py +162 -0
  450. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule_info.py +428 -0
  451. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule_recipients_config.py +139 -0
  452. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_rule_trigger_config.py +178 -0
  453. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_settings.py +125 -0
  454. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_target.py +230 -0
  455. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_target_config.py +148 -0
  456. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_target_id.py +162 -0
  457. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_template.py +263 -0
  458. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_template_config.py +125 -0
  459. tb_rest_client-4.3/tb_rest_client/models/models_ce/notification_template_id.py +162 -0
  460. tb_rest_client-4.3/tb_rest_client/models/models_ce/numeric_filter_predicate.py +162 -0
  461. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_basic_mapper_config.py +329 -0
  462. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client.py +636 -0
  463. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client_id.py +160 -0
  464. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client_info.py +267 -0
  465. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client_login_info.py +182 -0
  466. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client_registration_template.py +565 -0
  467. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_client_registration_template_id.py +127 -0
  468. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_custom_mapper_config.py +202 -0
  469. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_domain_info.py +162 -0
  470. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_info.py +183 -0
  471. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_mapper_config.py +241 -0
  472. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_mobile_info.py +156 -0
  473. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_params_info.py +185 -0
  474. tb_rest_client-4.3/tb_rest_client/models/models_ce/o_auth2_registration_info.py +502 -0
  475. tb_rest_client-4.3/tb_rest_client/models/models_ce/object_attributes.py +410 -0
  476. tb_rest_client-4.3/tb_rest_client/models/models_ce/object_node.py +98 -0
  477. tb_rest_client-4.3/tb_rest_client/models/models_ce/ollama_auth.py +133 -0
  478. tb_rest_client-4.3/tb_rest_client/models/models_ce/ollama_chat_model_config.py +98 -0
  479. tb_rest_client-4.3/tb_rest_client/models/models_ce/ollama_provider_config.py +152 -0
  480. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_alarm_condition_filter_predicate.py +98 -0
  481. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_alarm_condition_spec.py +98 -0
  482. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_alarm_count_query_entity_filter.py +98 -0
  483. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_alarm_data_query_entity_filter.py +98 -0
  484. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_alarm_rule_schedule.py +98 -0
  485. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_device_data_configuration.py +98 -0
  486. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_device_data_transport_configuration.py +98 -0
  487. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_device_profile_data_configuration.py +98 -0
  488. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_device_profile_data_provision_configuration.py +98 -0
  489. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_device_profile_data_transport_configuration.py +98 -0
  490. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_entity_count_query_entity_filter.py +98 -0
  491. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_entity_data_diff_current_version.py +98 -0
  492. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_entity_data_diff_other_version.py +98 -0
  493. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_entity_data_query_entity_filter.py +98 -0
  494. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_key_filter_predicate.py +98 -0
  495. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_notification_rule_info_recipients_config.py +98 -0
  496. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_notification_rule_info_trigger_config.py +98 -0
  497. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_notification_rule_recipients_config.py +98 -0
  498. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_notification_rule_trigger_config.py +98 -0
  499. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_notification_target_configuration.py +98 -0
  500. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_platform_two_fa_settings_providers_items.py +98 -0
  501. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_tenant_profile_data_configuration.py +98 -0
  502. tb_rest_client-4.3/tb_rest_client/models/models_ce/one_of_test_sms_request_provider_configuration.py +98 -0
  503. tb_rest_client-4.3/tb_rest_client/models/models_ce/open_ai_chat_model_config.py +98 -0
  504. tb_rest_client-4.3/tb_rest_client/models/models_ce/open_ai_provider_config.py +150 -0
  505. tb_rest_client-4.3/tb_rest_client/models/models_ce/originator_entity_owner_users_filter.py +104 -0
  506. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package.py +576 -0
  507. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package_data.py +306 -0
  508. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package_export_data.py +98 -0
  509. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package_id.py +162 -0
  510. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package_info.py +550 -0
  511. tb_rest_client-4.3/tb_rest_client/models/models_ce/ota_package_ota_package_idchecksumchecksum_algorithm_body.py +127 -0
  512. tb_rest_client-4.3/tb_rest_client/models/models_ce/other_configuration.py +364 -0
  513. tb_rest_client-4.3/tb_rest_client/models/models_ce/output.py +202 -0
  514. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_ai_model.py +210 -0
  515. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_alarm_comment_info.py +210 -0
  516. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_alarm_data.py +210 -0
  517. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_alarm_info.py +210 -0
  518. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_asset.py +210 -0
  519. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_asset_info.py +210 -0
  520. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_asset_profile.py +210 -0
  521. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_asset_profile_info.py +210 -0
  522. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_audit_log.py +210 -0
  523. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_calculated_field.py +210 -0
  524. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_customer.py +210 -0
  525. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_dashboard_info.py +210 -0
  526. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_device.py +210 -0
  527. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_device_info.py +210 -0
  528. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_device_profile.py +210 -0
  529. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_device_profile_info.py +210 -0
  530. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_domain_info.py +210 -0
  531. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_edge.py +210 -0
  532. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_edge_event.py +210 -0
  533. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_edge_info.py +210 -0
  534. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_data.py +210 -0
  535. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_info.py +210 -0
  536. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_subtype.py +210 -0
  537. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_version.py +210 -0
  538. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_view.py +210 -0
  539. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_entity_view_info.py +210 -0
  540. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_event.py +210 -0
  541. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_event_info.py +210 -0
  542. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_job.py +210 -0
  543. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_mobile_app.py +210 -0
  544. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_mobile_app_bundle_info.py +196 -0
  545. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_mobile_app_info.py +210 -0
  546. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_notification.py +210 -0
  547. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_notification_request_info.py +210 -0
  548. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_notification_rule_info.py +210 -0
  549. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_notification_target.py +210 -0
  550. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_notification_template.py +210 -0
  551. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_o_auth2_client_info.py +210 -0
  552. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_ota_package_info.py +210 -0
  553. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_queue.py +210 -0
  554. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_queue_stats.py +210 -0
  555. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_rule_chain.py +210 -0
  556. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_string.py +210 -0
  557. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_tb_resource_info.py +210 -0
  558. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_tenant.py +210 -0
  559. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_tenant_info.py +210 -0
  560. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_tenant_profile.py +210 -0
  561. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_user.py +210 -0
  562. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_user_email_info.py +210 -0
  563. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_widget_type_info.py +210 -0
  564. tb_rest_client-4.3/tb_rest_client/models/models_ce/page_data_widgets_bundle.py +210 -0
  565. tb_rest_client-4.3/tb_rest_client/models/models_ce/platform_two_fa_settings.py +231 -0
  566. tb_rest_client-4.3/tb_rest_client/models/models_ce/platform_users_notification_target_config.py +131 -0
  567. tb_rest_client-4.3/tb_rest_client/models/models_ce/power_saving_configuration.py +208 -0
  568. tb_rest_client-4.3/tb_rest_client/models/models_ce/processing_strategy.py +234 -0
  569. tb_rest_client-4.3/tb_rest_client/models/models_ce/proto_transport_payload_configuration.py +260 -0
  570. tb_rest_client-4.3/tb_rest_client/models/models_ce/psklw_m2_m_bootstrap_server_credential.py +440 -0
  571. tb_rest_client-4.3/tb_rest_client/models/models_ce/qr_code_config.py +234 -0
  572. tb_rest_client-4.3/tb_rest_client/models/models_ce/qr_code_settings.py +399 -0
  573. tb_rest_client-4.3/tb_rest_client/models/models_ce/qr_code_settings_id.py +127 -0
  574. tb_rest_client-4.3/tb_rest_client/models/models_ce/queue.py +410 -0
  575. tb_rest_client-4.3/tb_rest_client/models/models_ce/queue_id.py +162 -0
  576. tb_rest_client-4.3/tb_rest_client/models/models_ce/queue_stats.py +228 -0
  577. tb_rest_client-4.3/tb_rest_client/models/models_ce/queue_stats_id.py +162 -0
  578. tb_rest_client-4.3/tb_rest_client/models/models_ce/rate_limits_notification_rule_trigger_config.py +137 -0
  579. tb_rest_client-4.3/tb_rest_client/models/models_ce/referenced_entity_key.py +176 -0
  580. tb_rest_client-4.3/tb_rest_client/models/models_ce/relation_entity_type_filter.py +189 -0
  581. tb_rest_client-4.3/tb_rest_client/models/models_ce/relations_query_filter.py +350 -0
  582. tb_rest_client-4.3/tb_rest_client/models/models_ce/relations_search_parameters.py +284 -0
  583. tb_rest_client-4.3/tb_rest_client/models/models_ce/repeating_alarm_condition_spec.py +130 -0
  584. tb_rest_client-4.3/tb_rest_client/models/models_ce/repository_settings.py +390 -0
  585. tb_rest_client-4.3/tb_rest_client/models/models_ce/repository_settings_info.py +150 -0
  586. tb_rest_client-4.3/tb_rest_client/models/models_ce/reset_password_email_request.py +126 -0
  587. tb_rest_client-4.3/tb_rest_client/models/models_ce/reset_password_request.py +154 -0
  588. tb_rest_client-4.3/tb_rest_client/models/models_ce/resource.py +306 -0
  589. tb_rest_client-4.3/tb_rest_client/models/models_ce/resource_export_data.py +384 -0
  590. tb_rest_client-4.3/tb_rest_client/models/models_ce/resources_shortage_notification_rule_trigger_config.py +98 -0
  591. tb_rest_client-4.3/tb_rest_client/models/models_ce/response_entity.py +182 -0
  592. tb_rest_client-4.3/tb_rest_client/models/models_ce/rpc.py +344 -0
  593. tb_rest_client-4.3/tb_rest_client/models/models_ce/rpc_id.py +162 -0
  594. tb_rest_client-4.3/tb_rest_client/models/models_ce/rpklw_m2_m_bootstrap_server_credential.py +440 -0
  595. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain.py +402 -0
  596. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_connection_info.py +210 -0
  597. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_data.py +156 -0
  598. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_debug_event_filter.py +240 -0
  599. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_export_data.py +156 -0
  600. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_id.py +162 -0
  601. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_import_result.py +202 -0
  602. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_meta_data.py +267 -0
  603. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_chain_output_labels_usage.py +239 -0
  604. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_engine_component_lifecycle_event_notification_rule_trigger_config.py +274 -0
  605. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_node.py +424 -0
  606. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_node_debug_event_filter.py +448 -0
  607. tb_rest_client-4.3/tb_rest_client/models/models_ce/rule_node_id.py +162 -0
  608. tb_rest_client-4.3/tb_rest_client/models/models_ce/save_device_with_credentials_request.py +152 -0
  609. tb_rest_client-4.3/tb_rest_client/models/models_ce/save_ota_package_info_request.py +578 -0
  610. tb_rest_client-4.3/tb_rest_client/models/models_ce/security_settings.py +266 -0
  611. tb_rest_client-4.3/tb_rest_client/models/models_ce/server_security_config.py +332 -0
  612. tb_rest_client-4.3/tb_rest_client/models/models_ce/shared_attributes_setting_snmp_communication_config.py +130 -0
  613. tb_rest_client-4.3/tb_rest_client/models/models_ce/short_customer_info.py +204 -0
  614. tb_rest_client-4.3/tb_rest_client/models/models_ce/simple_alarm_condition_spec.py +104 -0
  615. tb_rest_client-4.3/tb_rest_client/models/models_ce/simple_calculated_field_configuration.py +202 -0
  616. tb_rest_client-4.3/tb_rest_client/models/models_ce/single_entity_filter.py +130 -0
  617. tb_rest_client-4.3/tb_rest_client/models/models_ce/single_entity_version_create_request.py +156 -0
  618. tb_rest_client-4.3/tb_rest_client/models/models_ce/single_entity_version_load_request.py +156 -0
  619. tb_rest_client-4.3/tb_rest_client/models/models_ce/slack_conversation.py +263 -0
  620. tb_rest_client-4.3/tb_rest_client/models/models_ce/slack_delivery_method_notification_template.py +104 -0
  621. tb_rest_client-4.3/tb_rest_client/models/models_ce/slack_notification_delivery_method_config.py +131 -0
  622. tb_rest_client-4.3/tb_rest_client/models/models_ce/slack_notification_target_config.py +163 -0
  623. tb_rest_client-4.3/tb_rest_client/models/models_ce/smpp_sms_provider_configuration.py +541 -0
  624. tb_rest_client-4.3/tb_rest_client/models/models_ce/sms_delivery_method_notification_template.py +104 -0
  625. tb_rest_client-4.3/tb_rest_client/models/models_ce/sms_provider_configuration.py +135 -0
  626. tb_rest_client-4.3/tb_rest_client/models/models_ce/sms_two_fa_account_config.py +131 -0
  627. tb_rest_client-4.3/tb_rest_client/models/models_ce/sms_two_fa_provider_config.py +157 -0
  628. tb_rest_client-4.3/tb_rest_client/models/models_ce/snmp_communication_config.py +142 -0
  629. tb_rest_client-4.3/tb_rest_client/models/models_ce/snmp_device_profile_transport_configuration.py +182 -0
  630. tb_rest_client-4.3/tb_rest_client/models/models_ce/snmp_device_transport_configuration.py +434 -0
  631. tb_rest_client-4.3/tb_rest_client/models/models_ce/snmp_mapping.py +182 -0
  632. tb_rest_client-4.3/tb_rest_client/models/models_ce/specific_time_schedule.py +208 -0
  633. tb_rest_client-4.3/tb_rest_client/models/models_ce/starred_dashboard_info.py +182 -0
  634. tb_rest_client-4.3/tb_rest_client/models/models_ce/statistics_event_filter.py +244 -0
  635. tb_rest_client-4.3/tb_rest_client/models/models_ce/store_info.py +176 -0
  636. tb_rest_client-4.3/tb_rest_client/models/models_ce/string_filter_predicate.py +188 -0
  637. tb_rest_client-4.3/tb_rest_client/models/models_ce/submit_strategy.py +156 -0
  638. tb_rest_client-4.3/tb_rest_client/models/models_ce/success.py +98 -0
  639. tb_rest_client-4.3/tb_rest_client/models/models_ce/system_administrators_filter.py +104 -0
  640. tb_rest_client-4.3/tb_rest_client/models/models_ce/system_info.py +152 -0
  641. tb_rest_client-4.3/tb_rest_client/models/models_ce/system_info_data.py +322 -0
  642. tb_rest_client-4.3/tb_rest_client/models/models_ce/task_processing_failure_notification_rule_trigger_config.py +104 -0
  643. tb_rest_client-4.3/tb_rest_client/models/models_ce/task_result.py +237 -0
  644. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_chat_request.py +184 -0
  645. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_chat_response.py +134 -0
  646. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_content.py +133 -0
  647. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_image_delete_result.py +150 -0
  648. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_resource.py +568 -0
  649. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_resource_delete_result.py +150 -0
  650. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_resource_id.py +162 -0
  651. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_resource_info.py +514 -0
  652. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_text_content.py +98 -0
  653. tb_rest_client-4.3/tb_rest_client/models/models_ce/tb_user_message.py +127 -0
  654. tb_rest_client-4.3/tb_rest_client/models/models_ce/telemetry_entity_view.py +154 -0
  655. tb_rest_client-4.3/tb_rest_client/models/models_ce/telemetry_mapping_configuration.py +228 -0
  656. tb_rest_client-4.3/tb_rest_client/models/models_ce/telemetry_querying_snmp_communication_config.py +156 -0
  657. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant.py +539 -0
  658. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_administrators_filter.py +156 -0
  659. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_id.py +162 -0
  660. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_info.py +567 -0
  661. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_profile.py +288 -0
  662. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_profile_configuration.py +133 -0
  663. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_profile_data.py +154 -0
  664. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_profile_id.py +162 -0
  665. tb_rest_client-4.3/tb_rest_client/models/models_ce/tenant_profile_queue_configuration.py +332 -0
  666. tb_rest_client-4.3/tb_rest_client/models/models_ce/test_sms_request.py +182 -0
  667. tb_rest_client-4.3/tb_rest_client/models/models_ce/thingsboard_credentials_expired_response.py +238 -0
  668. tb_rest_client-4.3/tb_rest_client/models/models_ce/thingsboard_error_response.py +210 -0
  669. tb_rest_client-4.3/tb_rest_client/models/models_ce/to_core_edqs_request.py +150 -0
  670. tb_rest_client-4.3/tb_rest_client/models/models_ce/to_device_rpc_request_snmp_communication_config.py +130 -0
  671. tb_rest_client-4.3/tb_rest_client/models/models_ce/to_server_rpc_request_snmp_communication_config.py +130 -0
  672. tb_rest_client-4.3/tb_rest_client/models/models_ce/token.py +98 -0
  673. tb_rest_client-4.3/tb_rest_client/models/models_ce/totp_two_fa_account_config.py +131 -0
  674. tb_rest_client-4.3/tb_rest_client/models/models_ce/totp_two_fa_provider_config.py +131 -0
  675. tb_rest_client-4.3/tb_rest_client/models/models_ce/transport_payload_type_configuration.py +134 -0
  676. tb_rest_client-4.3/tb_rest_client/models/models_ce/trendz_settings.py +162 -0
  677. tb_rest_client-4.3/tb_rest_client/models/models_ce/ts_value.py +176 -0
  678. tb_rest_client-4.3/tb_rest_client/models/models_ce/twilio_sms_provider_configuration.py +188 -0
  679. tb_rest_client-4.3/tb_rest_client/models/models_ce/two_fa_account_config.py +162 -0
  680. tb_rest_client-4.3/tb_rest_client/models/models_ce/two_fa_account_config_update_request.py +124 -0
  681. tb_rest_client-4.3/tb_rest_client/models/models_ce/two_fa_provider_config.py +136 -0
  682. tb_rest_client-4.3/tb_rest_client/models/models_ce/two_fa_provider_info.py +234 -0
  683. tb_rest_client-4.3/tb_rest_client/models/models_ce/type_key_body.py +125 -0
  684. tb_rest_client-4.3/tb_rest_client/models/models_ce/update_message.py +266 -0
  685. tb_rest_client-4.3/tb_rest_client/models/models_ce/usage_info.py +696 -0
  686. tb_rest_client-4.3/tb_rest_client/models/models_ce/user.py +432 -0
  687. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_activation_link.py +150 -0
  688. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_dashboards_info.py +154 -0
  689. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_email_info.py +208 -0
  690. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_id.py +162 -0
  691. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_list_filter.py +131 -0
  692. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_mobile_info.py +228 -0
  693. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_notification_settings.py +125 -0
  694. tb_rest_client-4.3/tb_rest_client/models/models_ce/user_password_policy.py +378 -0
  695. tb_rest_client-4.3/tb_rest_client/models/models_ce/users_filter.py +140 -0
  696. tb_rest_client-4.3/tb_rest_client/models/models_ce/vc_entity_body.py +98 -0
  697. tb_rest_client-4.3/tb_rest_client/models/models_ce/vc_version_body.py +98 -0
  698. tb_rest_client-4.3/tb_rest_client/models/models_ce/version.py +98 -0
  699. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_create_config.py +176 -0
  700. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_create_request.py +191 -0
  701. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_creation_result.py +254 -0
  702. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_load_config.py +176 -0
  703. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_load_request.py +165 -0
  704. tb_rest_client-4.3/tb_rest_client/models/models_ce/version_load_result.py +176 -0
  705. tb_rest_client-4.3/tb_rest_client/models/models_ce/versioned_entity_info.py +124 -0
  706. tb_rest_client-4.3/tb_rest_client/models/models_ce/web_delivery_method_notification_template.py +157 -0
  707. tb_rest_client-4.3/tb_rest_client/models/models_ce/web_view_page.py +98 -0
  708. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_bundle_info.py +154 -0
  709. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_type.py +342 -0
  710. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_type_details.py +426 -0
  711. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_type_export_data.py +130 -0
  712. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_type_id.py +162 -0
  713. tb_rest_client-4.3/tb_rest_client/models/models_ce/widget_type_info.py +428 -0
  714. tb_rest_client-4.3/tb_rest_client/models/models_ce/widgets_bundle.py +400 -0
  715. tb_rest_client-4.3/tb_rest_client/models/models_ce/widgets_bundle_export_data.py +182 -0
  716. tb_rest_client-4.3/tb_rest_client/models/models_ce/widgets_bundle_id.py +162 -0
  717. tb_rest_client-4.3/tb_rest_client/models/models_ce/x509_certificate_chain_provision_configuration.py +156 -0
  718. tb_rest_client-4.3/tb_rest_client/models/models_ce/x509_lw_m2_m_bootstrap_server_credential.py +440 -0
  719. tb_rest_client-4.3/tb_rest_client/models/models_pe/__init__.py +437 -0
  720. tb_rest_client-4.3/tb_rest_client/models/models_pe/account_two_fa_settings.py +124 -0
  721. tb_rest_client-4.3/tb_rest_client/models/models_pe/activate_user_request.py +154 -0
  722. tb_rest_client-4.3/tb_rest_client/models/models_pe/admin_settings.py +232 -0
  723. tb_rest_client-4.3/tb_rest_client/models/models_pe/admin_settings_id.py +127 -0
  724. tb_rest_client-4.3/tb_rest_client/models/models_pe/affected_tenant_administrators_filter.py +104 -0
  725. tb_rest_client-4.3/tb_rest_client/models/models_pe/affected_user_filter.py +104 -0
  726. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm.py +749 -0
  727. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_assignee.py +202 -0
  728. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_assignment_notification_rule_trigger_config.py +230 -0
  729. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_comment.py +292 -0
  730. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_comment_id.py +127 -0
  731. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_comment_info.py +376 -0
  732. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_comment_notification_rule_trigger_config.py +248 -0
  733. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_condition.py +154 -0
  734. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_condition_filter.py +214 -0
  735. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_condition_filter_key.py +160 -0
  736. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_condition_spec.py +135 -0
  737. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_count_query.py +372 -0
  738. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_data.py +883 -0
  739. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_data_page_link.py +450 -0
  740. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_data_query.py +254 -0
  741. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_id.py +162 -0
  742. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_info.py +831 -0
  743. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_notification_rule_trigger_config.py +223 -0
  744. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_rule.py +206 -0
  745. tb_rest_client-4.3/tb_rest_client/models/models_pe/alarm_schedule.py +152 -0
  746. tb_rest_client-4.3/tb_rest_client/models/models_pe/all_users_filter.py +104 -0
  747. tb_rest_client-4.3/tb_rest_client/models/models_pe/allow_create_new_devices_device_profile_provision_configuration.py +104 -0
  748. tb_rest_client-4.3/tb_rest_client/models/models_pe/allowed_permissions_info.py +318 -0
  749. tb_rest_client-4.3/tb_rest_client/models/models_pe/any_time_schedule.py +104 -0
  750. tb_rest_client-4.3/tb_rest_client/models/models_pe/api_usage_limit_notification_rule_trigger_config.py +170 -0
  751. tb_rest_client-4.3/tb_rest_client/models/models_pe/api_usage_state_filter.py +130 -0
  752. tb_rest_client-4.3/tb_rest_client/models/models_pe/array_node.py +98 -0
  753. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset.py +393 -0
  754. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_id.py +162 -0
  755. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_info.py +449 -0
  756. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_profile_id.py +162 -0
  757. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_search_query.py +180 -0
  758. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_search_query_filter.py +266 -0
  759. tb_rest_client-4.3/tb_rest_client/models/models_pe/asset_type_filter.py +182 -0
  760. tb_rest_client-4.3/tb_rest_client/models/models_pe/atomic_integer.py +228 -0
  761. tb_rest_client-4.3/tb_rest_client/models/models_pe/attribute_export_data.py +280 -0
  762. tb_rest_client-4.3/tb_rest_client/models/models_pe/attributes_entity_view.py +185 -0
  763. tb_rest_client-4.3/tb_rest_client/models/models_pe/audit_log.py +434 -0
  764. tb_rest_client-4.3/tb_rest_client/models/models_pe/audit_log_id.py +127 -0
  765. tb_rest_client-4.3/tb_rest_client/models/models_pe/auto_version_create_config.py +254 -0
  766. tb_rest_client-4.3/tb_rest_client/models/models_pe/aws_sns_sms_provider_configuration.py +188 -0
  767. tb_rest_client-4.3/tb_rest_client/models/models_pe/backup_code_two_fa_account_config.py +157 -0
  768. tb_rest_client-4.3/tb_rest_client/models/models_pe/backup_code_two_fa_provider_config.py +130 -0
  769. tb_rest_client-4.3/tb_rest_client/models/models_pe/blob_entity_id.py +162 -0
  770. tb_rest_client-4.3/tb_rest_client/models/models_pe/blob_entity_info.py +346 -0
  771. tb_rest_client-4.3/tb_rest_client/models/models_pe/blob_entity_with_customer_info.py +402 -0
  772. tb_rest_client-4.3/tb_rest_client/models/models_pe/boolean_filter_predicate.py +162 -0
  773. tb_rest_client-4.3/tb_rest_client/models/models_pe/branch_info.py +150 -0
  774. tb_rest_client-4.3/tb_rest_client/models/models_pe/bulk_import_request.py +202 -0
  775. tb_rest_client-4.3/tb_rest_client/models/models_pe/bulk_import_result_asset.py +202 -0
  776. tb_rest_client-4.3/tb_rest_client/models/models_pe/bulk_import_result_device.py +202 -0
  777. tb_rest_client-4.3/tb_rest_client/models/models_pe/bulk_import_result_edge.py +202 -0
  778. tb_rest_client-4.3/tb_rest_client/models/models_pe/byte_buffer.py +306 -0
  779. tb_rest_client-4.3/tb_rest_client/models/models_pe/calculated_field_configuration.py +211 -0
  780. tb_rest_client-4.3/tb_rest_client/models/models_pe/calculated_field_debug_event_filter.py +98 -0
  781. tb_rest_client-4.3/tb_rest_client/models/models_pe/calculated_field_id.py +156 -0
  782. tb_rest_client-4.3/tb_rest_client/models/models_pe/captcha_params.py +132 -0
  783. tb_rest_client-4.3/tb_rest_client/models/models_pe/cf_reprocessing_validation_result.py +163 -0
  784. tb_rest_client-4.3/tb_rest_client/models/models_pe/change_password_request.py +154 -0
  785. tb_rest_client-4.3/tb_rest_client/models/models_pe/check_pre_provisioned_devices_device_profile_provision_configuration.py +104 -0
  786. tb_rest_client-4.3/tb_rest_client/models/models_pe/claim_request.py +124 -0
  787. tb_rest_client-4.3/tb_rest_client/models/models_pe/clear_rule.py +131 -0
  788. tb_rest_client-4.3/tb_rest_client/models/models_pe/client_attributes_querying_snmp_communication_config.py +156 -0
  789. tb_rest_client-4.3/tb_rest_client/models/models_pe/coap_device_profile_transport_configuration.py +156 -0
  790. tb_rest_client-4.3/tb_rest_client/models/models_pe/coap_device_transport_configuration.py +214 -0
  791. tb_rest_client-4.3/tb_rest_client/models/models_pe/coap_device_type_configuration.py +134 -0
  792. tb_rest_client-4.3/tb_rest_client/models/models_pe/column_mapping.py +156 -0
  793. tb_rest_client-4.3/tb_rest_client/models/models_pe/comparison_ts_value.py +150 -0
  794. tb_rest_client-4.3/tb_rest_client/models/models_pe/complex_filter_predicate.py +162 -0
  795. tb_rest_client-4.3/tb_rest_client/models/models_pe/complex_version_create_request.py +162 -0
  796. tb_rest_client-4.3/tb_rest_client/models/models_pe/component_descriptor.py +420 -0
  797. tb_rest_client-4.3/tb_rest_client/models/models_pe/component_descriptor_id.py +127 -0
  798. tb_rest_client-4.3/tb_rest_client/models/models_pe/contact_based_object.py +410 -0
  799. tb_rest_client-4.3/tb_rest_client/models/models_pe/converter.py +376 -0
  800. tb_rest_client-4.3/tb_rest_client/models/models_pe/converter_id.py +162 -0
  801. tb_rest_client-4.3/tb_rest_client/models/models_pe/converters_info.py +136 -0
  802. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu.py +327 -0
  803. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu_config.py +113 -0
  804. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu_delete_result.py +168 -0
  805. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu_id.py +113 -0
  806. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu_info.py +287 -0
  807. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_menu_item.py +398 -0
  808. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_time_schedule.py +156 -0
  809. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_time_schedule_item.py +202 -0
  810. tb_rest_client-4.3/tb_rest_client/models/models_pe/custom_translation.py +127 -0
  811. tb_rest_client-4.3/tb_rest_client/models/models_pe/customer_id.py +162 -0
  812. tb_rest_client-4.3/tb_rest_client/models/models_pe/customer_info.py +672 -0
  813. tb_rest_client-4.3/tb_rest_client/models/models_pe/customer_users_filter.py +131 -0
  814. tb_rest_client-4.3/tb_rest_client/models/models_pe/dashboard_id.py +162 -0
  815. tb_rest_client-4.3/tb_rest_client/models/models_pe/dashboard_info.py +506 -0
  816. tb_rest_client-4.3/tb_rest_client/models/models_pe/debug_converter_event_filter.py +316 -0
  817. tb_rest_client-4.3/tb_rest_client/models/models_pe/debug_integration_event_filter.py +290 -0
  818. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_coap_device_type_configuration.py +130 -0
  819. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_dashboard_params.py +154 -0
  820. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_device_configuration.py +104 -0
  821. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_device_profile_configuration.py +104 -0
  822. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_device_profile_transport_configuration.py +104 -0
  823. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_device_transport_configuration.py +104 -0
  824. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_menu_item.py +230 -0
  825. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_rule_chain_create_request.py +127 -0
  826. tb_rest_client-4.3/tb_rest_client/models/models_pe/default_tenant_profile_configuration.py +1794 -0
  827. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_entity_data_diff.py +150 -0
  828. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_entity_data_info.py +150 -0
  829. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_list_branch_info.py +150 -0
  830. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_list_versioned_entity_info.py +150 -0
  831. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_page_data_entity_version.py +150 -0
  832. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_repository_settings.py +150 -0
  833. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_result_void.py +150 -0
  834. tb_rest_client-4.3/tb_rest_client/models/models_pe/deferred_resultuuid.py +150 -0
  835. tb_rest_client-4.3/tb_rest_client/models/models_pe/delivery_method_notification_template.py +191 -0
  836. tb_rest_client-4.3/tb_rest_client/models/models_pe/device.py +471 -0
  837. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_activity_notification_rule_trigger_config.py +190 -0
  838. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_configuration.py +133 -0
  839. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_credentials_id.py +127 -0
  840. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_data.py +154 -0
  841. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_export_data.py +156 -0
  842. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_group_ota_package.py +234 -0
  843. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_id.py +162 -0
  844. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_info.py +555 -0
  845. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_alarm.py +348 -0
  846. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_configuration.py +133 -0
  847. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_data.py +210 -0
  848. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_id.py +162 -0
  849. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_provision_configuration.py +162 -0
  850. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_profile_transport_configuration.py +137 -0
  851. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_search_query.py +180 -0
  852. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_search_query_filter.py +266 -0
  853. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_transport_configuration.py +137 -0
  854. tb_rest_client-4.3/tb_rest_client/models/models_pe/device_type_filter.py +182 -0
  855. tb_rest_client-4.3/tb_rest_client/models/models_pe/disabled_device_profile_provision_configuration.py +104 -0
  856. tb_rest_client-4.3/tb_rest_client/models/models_pe/duration_alarm_condition_spec.py +162 -0
  857. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge.py +510 -0
  858. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_communication_failure_notification_rule_trigger_config.py +130 -0
  859. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_connection_notification_rule_trigger_config.py +163 -0
  860. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_event.py +396 -0
  861. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_event_id.py +127 -0
  862. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_id.py +162 -0
  863. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_info.py +566 -0
  864. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_instructions.py +126 -0
  865. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_search_query.py +180 -0
  866. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_search_query_filter.py +266 -0
  867. tb_rest_client-4.3/tb_rest_client/models/models_pe/edge_type_filter.py +168 -0
  868. tb_rest_client-4.3/tb_rest_client/models/models_pe/edqs_sync_request.py +99 -0
  869. tb_rest_client-4.3/tb_rest_client/models/models_pe/efento_coap_device_type_configuration.py +104 -0
  870. tb_rest_client-4.3/tb_rest_client/models/models_pe/email_delivery_method_notification_template.py +131 -0
  871. tb_rest_client-4.3/tb_rest_client/models/models_pe/email_two_fa_account_config.py +131 -0
  872. tb_rest_client-4.3/tb_rest_client/models/models_pe/email_two_fa_provider_config.py +130 -0
  873. tb_rest_client-4.3/tb_rest_client/models/models_pe/enterprise_captcha_params.py +98 -0
  874. tb_rest_client-4.3/tb_rest_client/models/models_pe/entities_by_group_name_filter.py +188 -0
  875. tb_rest_client-4.3/tb_rest_client/models/models_pe/entities_limit_notification_rule_trigger_config.py +163 -0
  876. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_action_notification_rule_trigger_config.py +215 -0
  877. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_count_query.py +150 -0
  878. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data.py +254 -0
  879. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data_diff.py +150 -0
  880. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data_info.py +228 -0
  881. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data_page_link.py +228 -0
  882. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data_query.py +228 -0
  883. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_data_sort_order.py +156 -0
  884. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_export_data_object.py +210 -0
  885. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_filter.py +152 -0
  886. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group.py +400 -0
  887. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_export_data.py +182 -0
  888. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_filter.py +162 -0
  889. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_id.py +162 -0
  890. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_info.py +429 -0
  891. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_list_filter.py +162 -0
  892. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_group_name_filter.py +162 -0
  893. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_id.py +160 -0
  894. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_key.py +156 -0
  895. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_list_filter.py +162 -0
  896. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_load_error.py +202 -0
  897. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_name_filter.py +162 -0
  898. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_relation_info.py +320 -0
  899. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_relations_query.py +152 -0
  900. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_subtype.py +182 -0
  901. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_type_filter.py +136 -0
  902. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_type_load_result.py +286 -0
  903. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_type_version_create_config.py +312 -0
  904. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_type_version_load_config.py +306 -0
  905. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_type_version_load_request.py +156 -0
  906. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_version.py +202 -0
  907. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view.py +449 -0
  908. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view_id.py +162 -0
  909. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view_info.py +505 -0
  910. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view_search_query.py +180 -0
  911. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view_search_query_filter.py +266 -0
  912. tb_rest_client-4.3/tb_rest_client/models/models_pe/entity_view_type_filter.py +182 -0
  913. tb_rest_client-4.3/tb_rest_client/models/models_pe/error_event_filter.py +188 -0
  914. tb_rest_client-4.3/tb_rest_client/models/models_pe/escalated_notification_rule_recipients_config.py +131 -0
  915. tb_rest_client-4.3/tb_rest_client/models/models_pe/event_filter.py +174 -0
  916. tb_rest_client-4.3/tb_rest_client/models/models_pe/event_id.py +127 -0
  917. tb_rest_client-4.3/tb_rest_client/models/models_pe/event_info.py +286 -0
  918. tb_rest_client-4.3/tb_rest_client/models/models_pe/exportable_entity_entity_id.py +150 -0
  919. tb_rest_client-4.3/tb_rest_client/models/models_pe/favicon.py +124 -0
  920. tb_rest_client-4.3/tb_rest_client/models/models_pe/features_info.py +254 -0
  921. tb_rest_client-4.3/tb_rest_client/models/models_pe/group_entity_export_data.py +130 -0
  922. tb_rest_client-4.3/tb_rest_client/models/models_pe/group_permission.py +370 -0
  923. tb_rest_client-4.3/tb_rest_client/models/models_pe/group_permission_id.py +162 -0
  924. tb_rest_client-4.3/tb_rest_client/models/models_pe/group_permission_info.py +560 -0
  925. tb_rest_client-4.3/tb_rest_client/models/models_pe/home_dashboard.py +478 -0
  926. tb_rest_client-4.3/tb_rest_client/models/models_pe/home_menu_item.py +320 -0
  927. tb_rest_client-4.3/tb_rest_client/models/models_pe/input_stream.py +98 -0
  928. tb_rest_client-4.3/tb_rest_client/models/models_pe/integration.py +571 -0
  929. tb_rest_client-4.3/tb_rest_client/models/models_pe/integration_converters_info.py +136 -0
  930. tb_rest_client-4.3/tb_rest_client/models/models_pe/integration_id.py +162 -0
  931. tb_rest_client-4.3/tb_rest_client/models/models_pe/integration_info.py +460 -0
  932. tb_rest_client-4.3/tb_rest_client/models/models_pe/integration_lifecycle_event_notification_rule_trigger_config.py +222 -0
  933. tb_rest_client-4.3/tb_rest_client/models/models_pe/json_node.py +98 -0
  934. tb_rest_client-4.3/tb_rest_client/models/models_pe/json_transport_payload_configuration.py +104 -0
  935. tb_rest_client-4.3/tb_rest_client/models/models_pe/key_filter.py +182 -0
  936. tb_rest_client-4.3/tb_rest_client/models/models_pe/key_filter_predicate.py +136 -0
  937. tb_rest_client-4.3/tb_rest_client/models/models_pe/last_visited_dashboard_info.py +210 -0
  938. tb_rest_client-4.3/tb_rest_client/models/models_pe/license_usage_info.py +332 -0
  939. tb_rest_client-4.3/tb_rest_client/models/models_pe/life_cycle_event_filter.py +222 -0
  940. tb_rest_client-4.3/tb_rest_client/models/models_pe/locale_code_upload_body.py +125 -0
  941. tb_rest_client-4.3/tb_rest_client/models/models_pe/login_request.py +156 -0
  942. tb_rest_client-4.3/tb_rest_client/models/models_pe/login_response.py +156 -0
  943. tb_rest_client-4.3/tb_rest_client/models/models_pe/login_white_labeling_params.py +682 -0
  944. tb_rest_client-4.3/tb_rest_client/models/models_pe/lw_m2_m_bootstrap_server_credential.py +136 -0
  945. tb_rest_client-4.3/tb_rest_client/models/models_pe/lw_m2_m_server_security_config_default.py +490 -0
  946. tb_rest_client-4.3/tb_rest_client/models/models_pe/lw_m2m_instance.py +154 -0
  947. tb_rest_client-4.3/tb_rest_client/models/models_pe/lw_m2m_object.py +266 -0
  948. tb_rest_client-4.3/tb_rest_client/models/models_pe/lw_m2m_resource_observe.py +266 -0
  949. tb_rest_client-4.3/tb_rest_client/models/models_pe/lwm2m_device_profile_transport_configuration.py +208 -0
  950. tb_rest_client-4.3/tb_rest_client/models/models_pe/lwm2m_device_transport_configuration.py +214 -0
  951. tb_rest_client-4.3/tb_rest_client/models/models_pe/mapping.py +202 -0
  952. tb_rest_client-4.3/tb_rest_client/models/models_pe/menu_item.py +152 -0
  953. tb_rest_client-4.3/tb_rest_client/models/models_pe/merged_group_permission_info.py +163 -0
  954. tb_rest_client-4.3/tb_rest_client/models/models_pe/merged_group_type_permission_info.py +154 -0
  955. tb_rest_client-4.3/tb_rest_client/models/models_pe/merged_user_permissions.py +273 -0
  956. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_app_delivery_method_notification_template.py +157 -0
  957. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_app_notification_delivery_method_config.py +182 -0
  958. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_app_settings_id.py +113 -0
  959. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_redirect_params.py +154 -0
  960. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_self_registration_params.py +98 -0
  961. tb_rest_client-4.3/tb_rest_client/models/models_pe/mobile_session_info.py +124 -0
  962. tb_rest_client-4.3/tb_rest_client/models/models_pe/model.py +162 -0
  963. tb_rest_client-4.3/tb_rest_client/models/models_pe/mqtt_device_profile_transport_configuration.py +286 -0
  964. tb_rest_client-4.3/tb_rest_client/models/models_pe/mqtt_device_transport_configuration.py +104 -0
  965. tb_rest_client-4.3/tb_rest_client/models/models_pe/new_platform_version_notification_rule_trigger_config.py +104 -0
  966. tb_rest_client-4.3/tb_rest_client/models/models_pe/no_sec_lw_m2_m_bootstrap_server_credential.py +440 -0
  967. tb_rest_client-4.3/tb_rest_client/models/models_pe/node_connection_info.py +185 -0
  968. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification.py +402 -0
  969. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_delivery_method_config.py +134 -0
  970. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_id.py +162 -0
  971. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_info.py +185 -0
  972. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_request.py +417 -0
  973. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_request_config.py +124 -0
  974. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_request_id.py +162 -0
  975. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_request_preview.py +202 -0
  976. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_request_stats.py +202 -0
  977. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_rule_config.py +124 -0
  978. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_rule_id.py +162 -0
  979. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_rule_recipients_config.py +139 -0
  980. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_rule_trigger_config.py +135 -0
  981. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_template_config.py +125 -0
  982. tb_rest_client-4.3/tb_rest_client/models/models_pe/notification_template_id.py +162 -0
  983. tb_rest_client-4.3/tb_rest_client/models/models_pe/numeric_filter_predicate.py +162 -0
  984. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_basic_mapper_config.py +381 -0
  985. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_client_info.py +267 -0
  986. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_client_registration_template.py +565 -0
  987. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_client_registration_template_id.py +127 -0
  988. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_custom_mapper_config.py +202 -0
  989. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_domain_info.py +162 -0
  990. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_info.py +183 -0
  991. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_mapper_config.py +241 -0
  992. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_mobile_info.py +156 -0
  993. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_params_info.py +185 -0
  994. tb_rest_client-4.3/tb_rest_client/models/models_pe/o_auth2_registration_info.py +502 -0
  995. tb_rest_client-4.3/tb_rest_client/models/models_pe/object_attributes.py +410 -0
  996. tb_rest_client-4.3/tb_rest_client/models/models_pe/object_node.py +98 -0
  997. tb_rest_client-4.3/tb_rest_client/models/models_pe/originator_entity_owner_users_filter.py +104 -0
  998. tb_rest_client-4.3/tb_rest_client/models/models_pe/ota_package.py +576 -0
  999. tb_rest_client-4.3/tb_rest_client/models/models_pe/ota_package_id.py +162 -0
  1000. tb_rest_client-4.3/tb_rest_client/models/models_pe/ota_package_info.py +550 -0
  1001. tb_rest_client-4.3/tb_rest_client/models/models_pe/ota_package_ota_package_id_body.py +184 -0
  1002. tb_rest_client-4.3/tb_rest_client/models/models_pe/other_configuration.py +364 -0
  1003. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_blob_entity_with_customer_info.py +210 -0
  1004. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_contact_basedobject.py +210 -0
  1005. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_converter.py +210 -0
  1006. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_customer_info.py +210 -0
  1007. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_edge.py +210 -0
  1008. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_edge_event.py +210 -0
  1009. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_edge_info.py +210 -0
  1010. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_entity_group_info.py +210 -0
  1011. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_entity_version.py +210 -0
  1012. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_entity_view_info.py +210 -0
  1013. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_event_info.py +210 -0
  1014. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_integration.py +210 -0
  1015. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_integration_info.py +210 -0
  1016. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_ota_package_info.py +210 -0
  1017. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_queue.py +210 -0
  1018. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_report_template_info.py +210 -0
  1019. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_role.py +210 -0
  1020. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_rule_chain.py +210 -0
  1021. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_scheduler_event_info.py +210 -0
  1022. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_scheduler_report_info.py +210 -0
  1023. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_secret_info.py +197 -0
  1024. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_short_entity_view.py +210 -0
  1025. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_trendz_view_config_lite.py +210 -0
  1026. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_user_email_info.py +210 -0
  1027. tb_rest_client-4.3/tb_rest_client/models/models_pe/page_data_user_info.py +210 -0
  1028. tb_rest_client-4.3/tb_rest_client/models/models_pe/palette.py +183 -0
  1029. tb_rest_client-4.3/tb_rest_client/models/models_pe/palette_settings.py +152 -0
  1030. tb_rest_client-4.3/tb_rest_client/models/models_pe/platform_two_fa_settings.py +257 -0
  1031. tb_rest_client-4.3/tb_rest_client/models/models_pe/platform_users_notification_target_config.py +131 -0
  1032. tb_rest_client-4.3/tb_rest_client/models/models_pe/power_saving_configuration.py +208 -0
  1033. tb_rest_client-4.3/tb_rest_client/models/models_pe/processing_strategy.py +234 -0
  1034. tb_rest_client-4.3/tb_rest_client/models/models_pe/proto_transport_payload_configuration.py +260 -0
  1035. tb_rest_client-4.3/tb_rest_client/models/models_pe/psklw_m2_m_bootstrap_server_credential.py +440 -0
  1036. tb_rest_client-4.3/tb_rest_client/models/models_pe/queue.py +410 -0
  1037. tb_rest_client-4.3/tb_rest_client/models/models_pe/raw_data_event_filter.py +216 -0
  1038. tb_rest_client-4.3/tb_rest_client/models/models_pe/relation_entity_type_filter.py +189 -0
  1039. tb_rest_client-4.3/tb_rest_client/models/models_pe/relations_query_filter.py +350 -0
  1040. tb_rest_client-4.3/tb_rest_client/models/models_pe/relations_search_parameters.py +284 -0
  1041. tb_rest_client-4.3/tb_rest_client/models/models_pe/repeating_alarm_condition_spec.py +130 -0
  1042. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_config.py +381 -0
  1043. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_request.py +290 -0
  1044. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_template.py +408 -0
  1045. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_template_config.py +262 -0
  1046. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_template_id.py +156 -0
  1047. tb_rest_client-4.3/tb_rest_client/models/models_pe/report_template_info.py +407 -0
  1048. tb_rest_client-4.3/tb_rest_client/models/models_pe/repository_settings.py +390 -0
  1049. tb_rest_client-4.3/tb_rest_client/models/models_pe/repository_settings_info.py +150 -0
  1050. tb_rest_client-4.3/tb_rest_client/models/models_pe/reset_password_email_request.py +126 -0
  1051. tb_rest_client-4.3/tb_rest_client/models/models_pe/reset_password_request.py +154 -0
  1052. tb_rest_client-4.3/tb_rest_client/models/models_pe/resource.py +306 -0
  1053. tb_rest_client-4.3/tb_rest_client/models/models_pe/response_entity.py +182 -0
  1054. tb_rest_client-4.3/tb_rest_client/models/models_pe/role.py +371 -0
  1055. tb_rest_client-4.3/tb_rest_client/models/models_pe/role_id.py +162 -0
  1056. tb_rest_client-4.3/tb_rest_client/models/models_pe/rpc.py +344 -0
  1057. tb_rest_client-4.3/tb_rest_client/models/models_pe/rpc_id.py +162 -0
  1058. tb_rest_client-4.3/tb_rest_client/models/models_pe/rpklw_m2_m_bootstrap_server_credential.py +440 -0
  1059. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain.py +402 -0
  1060. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_connection_info.py +210 -0
  1061. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_data.py +156 -0
  1062. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_debug_event_filter.py +240 -0
  1063. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_export_data.py +156 -0
  1064. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_id.py +162 -0
  1065. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_import_result.py +202 -0
  1066. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_meta_data.py +269 -0
  1067. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_chain_output_labels_usage.py +239 -0
  1068. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_engine_component_lifecycle_event_notification_rule_trigger_config.py +274 -0
  1069. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_node.py +424 -0
  1070. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_node_debug_event_filter.py +448 -0
  1071. tb_rest_client-4.3/tb_rest_client/models/models_pe/rule_node_id.py +162 -0
  1072. tb_rest_client-4.3/tb_rest_client/models/models_pe/save_device_with_credentials_request.py +152 -0
  1073. tb_rest_client-4.3/tb_rest_client/models/models_pe/save_ota_package_info_request.py +578 -0
  1074. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_event.py +444 -0
  1075. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_event_filter.py +156 -0
  1076. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_event_id.py +162 -0
  1077. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_event_info.py +418 -0
  1078. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_event_with_customer_info.py +474 -0
  1079. tb_rest_client-4.3/tb_rest_client/models/models_pe/scheduler_report_info.py +516 -0
  1080. tb_rest_client-4.3/tb_rest_client/models/models_pe/secret.py +282 -0
  1081. tb_rest_client-4.3/tb_rest_client/models/models_pe/secret_id.py +143 -0
  1082. tb_rest_client-4.3/tb_rest_client/models/models_pe/secret_info.py +253 -0
  1083. tb_rest_client-4.3/tb_rest_client/models/models_pe/security_settings.py +266 -0
  1084. tb_rest_client-4.3/tb_rest_client/models/models_pe/self_registration_params.py +630 -0
  1085. tb_rest_client-4.3/tb_rest_client/models/models_pe/share_group_request.py +235 -0
  1086. tb_rest_client-4.3/tb_rest_client/models/models_pe/shared_attributes_setting_snmp_communication_config.py +130 -0
  1087. tb_rest_client-4.3/tb_rest_client/models/models_pe/short_customer_info.py +204 -0
  1088. tb_rest_client-4.3/tb_rest_client/models/models_pe/short_entity_view.py +154 -0
  1089. tb_rest_client-4.3/tb_rest_client/models/models_pe/sign_up_field.py +184 -0
  1090. tb_rest_client-4.3/tb_rest_client/models/models_pe/sign_up_request.py +294 -0
  1091. tb_rest_client-4.3/tb_rest_client/models/models_pe/sign_up_self_registration_params.py +266 -0
  1092. tb_rest_client-4.3/tb_rest_client/models/models_pe/simple_alarm_condition_spec.py +104 -0
  1093. tb_rest_client-4.3/tb_rest_client/models/models_pe/single_entity_filter.py +130 -0
  1094. tb_rest_client-4.3/tb_rest_client/models/models_pe/single_entity_version_create_request.py +156 -0
  1095. tb_rest_client-4.3/tb_rest_client/models/models_pe/single_entity_version_load_request.py +182 -0
  1096. tb_rest_client-4.3/tb_rest_client/models/models_pe/slack_conversation.py +263 -0
  1097. tb_rest_client-4.3/tb_rest_client/models/models_pe/slack_delivery_method_notification_template.py +104 -0
  1098. tb_rest_client-4.3/tb_rest_client/models/models_pe/slack_notification_delivery_method_config.py +131 -0
  1099. tb_rest_client-4.3/tb_rest_client/models/models_pe/slack_notification_target_config.py +163 -0
  1100. tb_rest_client-4.3/tb_rest_client/models/models_pe/smpp_sms_provider_configuration.py +541 -0
  1101. tb_rest_client-4.3/tb_rest_client/models/models_pe/sms_delivery_method_notification_template.py +104 -0
  1102. tb_rest_client-4.3/tb_rest_client/models/models_pe/sms_provider_configuration.py +135 -0
  1103. tb_rest_client-4.3/tb_rest_client/models/models_pe/sms_two_fa_account_config.py +131 -0
  1104. tb_rest_client-4.3/tb_rest_client/models/models_pe/sms_two_fa_provider_config.py +157 -0
  1105. tb_rest_client-4.3/tb_rest_client/models/models_pe/snmp_communication_config.py +142 -0
  1106. tb_rest_client-4.3/tb_rest_client/models/models_pe/snmp_device_profile_transport_configuration.py +182 -0
  1107. tb_rest_client-4.3/tb_rest_client/models/models_pe/snmp_device_transport_configuration.py +434 -0
  1108. tb_rest_client-4.3/tb_rest_client/models/models_pe/snmp_mapping.py +182 -0
  1109. tb_rest_client-4.3/tb_rest_client/models/models_pe/solution_install_response.py +260 -0
  1110. tb_rest_client-4.3/tb_rest_client/models/models_pe/specific_time_schedule.py +208 -0
  1111. tb_rest_client-4.3/tb_rest_client/models/models_pe/starred_dashboard_info.py +182 -0
  1112. tb_rest_client-4.3/tb_rest_client/models/models_pe/state_entity_owner_filter.py +130 -0
  1113. tb_rest_client-4.3/tb_rest_client/models/models_pe/statistics_event_filter.py +244 -0
  1114. tb_rest_client-4.3/tb_rest_client/models/models_pe/string_filter_predicate.py +188 -0
  1115. tb_rest_client-4.3/tb_rest_client/models/models_pe/submit_strategy.py +156 -0
  1116. tb_rest_client-4.3/tb_rest_client/models/models_pe/subscription_usage.py +540 -0
  1117. tb_rest_client-4.3/tb_rest_client/models/models_pe/system_administrators_filter.py +104 -0
  1118. tb_rest_client-4.3/tb_rest_client/models/models_pe/system_info.py +152 -0
  1119. tb_rest_client-4.3/tb_rest_client/models/models_pe/system_info_data.py +322 -0
  1120. tb_rest_client-4.3/tb_rest_client/models/models_pe/task_processing_failure_notification_rule_trigger_config.py +98 -0
  1121. tb_rest_client-4.3/tb_rest_client/models/models_pe/tb_image_delete_result.py +176 -0
  1122. tb_rest_client-4.3/tb_rest_client/models/models_pe/tb_resource.py +594 -0
  1123. tb_rest_client-4.3/tb_rest_client/models/models_pe/tb_resource_id.py +162 -0
  1124. tb_rest_client-4.3/tb_rest_client/models/models_pe/tb_resource_info.py +540 -0
  1125. tb_rest_client-4.3/tb_rest_client/models/models_pe/tb_secret_delete_result.py +137 -0
  1126. tb_rest_client-4.3/tb_rest_client/models/models_pe/telemetry_entity_view.py +154 -0
  1127. tb_rest_client-4.3/tb_rest_client/models/models_pe/telemetry_mapping_configuration.py +228 -0
  1128. tb_rest_client-4.3/tb_rest_client/models/models_pe/telemetry_querying_snmp_communication_config.py +156 -0
  1129. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_administrators_filter.py +156 -0
  1130. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_profile_configuration.py +133 -0
  1131. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_profile_data.py +154 -0
  1132. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_profile_id.py +162 -0
  1133. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_profile_queue_configuration.py +332 -0
  1134. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_solution_template_details.py +376 -0
  1135. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_solution_template_info.py +440 -0
  1136. tb_rest_client-4.3/tb_rest_client/models/models_pe/tenant_solution_template_instructions.py +232 -0
  1137. tb_rest_client-4.3/tb_rest_client/models/models_pe/test_sms_request.py +182 -0
  1138. tb_rest_client-4.3/tb_rest_client/models/models_pe/thingsboard_credentials_expired_response.py +238 -0
  1139. tb_rest_client-4.3/tb_rest_client/models/models_pe/thingsboard_error_response.py +210 -0
  1140. tb_rest_client-4.3/tb_rest_client/models/models_pe/to_device_rpc_request_snmp_communication_config.py +130 -0
  1141. tb_rest_client-4.3/tb_rest_client/models/models_pe/totp_two_fa_account_config.py +131 -0
  1142. tb_rest_client-4.3/tb_rest_client/models/models_pe/totp_two_fa_provider_config.py +131 -0
  1143. tb_rest_client-4.3/tb_rest_client/models/models_pe/translation_info.py +238 -0
  1144. tb_rest_client-4.3/tb_rest_client/models/models_pe/transport_payload_type_configuration.py +134 -0
  1145. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_configuration.py +150 -0
  1146. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_healthcheck_result.py +202 -0
  1147. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_summary.py +254 -0
  1148. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_synchronization_result.py +202 -0
  1149. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_usage.py +280 -0
  1150. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_view_config.py +176 -0
  1151. tb_rest_client-4.3/tb_rest_client/models/models_pe/trendz_view_config_lite.py +150 -0
  1152. tb_rest_client-4.3/tb_rest_client/models/models_pe/ts_value.py +176 -0
  1153. tb_rest_client-4.3/tb_rest_client/models/models_pe/twilio_sms_provider_configuration.py +188 -0
  1154. tb_rest_client-4.3/tb_rest_client/models/models_pe/two_fa_account_config.py +162 -0
  1155. tb_rest_client-4.3/tb_rest_client/models/models_pe/two_fa_account_config_update_request.py +124 -0
  1156. tb_rest_client-4.3/tb_rest_client/models/models_pe/two_fa_provider_config.py +136 -0
  1157. tb_rest_client-4.3/tb_rest_client/models/models_pe/two_fa_provider_info.py +234 -0
  1158. tb_rest_client-4.3/tb_rest_client/models/models_pe/update_message.py +266 -0
  1159. tb_rest_client-4.3/tb_rest_client/models/models_pe/user.py +484 -0
  1160. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_dashboards_info.py +154 -0
  1161. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_email_info.py +208 -0
  1162. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_group_list_filter.py +131 -0
  1163. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_id.py +162 -0
  1164. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_info.py +540 -0
  1165. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_list_filter.py +131 -0
  1166. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_password_policy.py +378 -0
  1167. tb_rest_client-4.3/tb_rest_client/models/models_pe/user_role_filter.py +131 -0
  1168. tb_rest_client-4.3/tb_rest_client/models/models_pe/users_filter.py +142 -0
  1169. tb_rest_client-4.3/tb_rest_client/models/models_pe/v2_captcha_params.py +98 -0
  1170. tb_rest_client-4.3/tb_rest_client/models/models_pe/v3_captcha_params.py +98 -0
  1171. tb_rest_client-4.3/tb_rest_client/models/models_pe/vendor.py +150 -0
  1172. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_create_config.py +228 -0
  1173. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_create_request.py +191 -0
  1174. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_creation_result.py +254 -0
  1175. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_load_config.py +254 -0
  1176. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_load_request.py +165 -0
  1177. tb_rest_client-4.3/tb_rest_client/models/models_pe/version_load_result.py +176 -0
  1178. tb_rest_client-4.3/tb_rest_client/models/models_pe/versioned_entity_info.py +150 -0
  1179. tb_rest_client-4.3/tb_rest_client/models/models_pe/web_delivery_method_notification_template.py +157 -0
  1180. tb_rest_client-4.3/tb_rest_client/models/models_pe/web_self_registration_params.py +98 -0
  1181. tb_rest_client-4.3/tb_rest_client/models/models_pe/white_labeling.py +234 -0
  1182. tb_rest_client-4.3/tb_rest_client/models/models_pe/white_labeling_params.py +486 -0
  1183. tb_rest_client-4.3/tb_rest_client/models/models_pe/widget_type.py +342 -0
  1184. tb_rest_client-4.3/tb_rest_client/models/models_pe/widget_type_details.py +426 -0
  1185. tb_rest_client-4.3/tb_rest_client/models/models_pe/widget_type_export_data.py +130 -0
  1186. tb_rest_client-4.3/tb_rest_client/models/models_pe/widget_type_id.py +162 -0
  1187. tb_rest_client-4.3/tb_rest_client/models/models_pe/widget_type_info.py +428 -0
  1188. tb_rest_client-4.3/tb_rest_client/models/models_pe/widgets_bundle_export_data.py +182 -0
  1189. tb_rest_client-4.3/tb_rest_client/models/models_pe/widgets_bundle_id.py +162 -0
  1190. tb_rest_client-4.3/tb_rest_client/models/models_pe/x509_certificate_chain_provision_configuration.py +156 -0
  1191. tb_rest_client-4.3/tb_rest_client/models/models_pe/x509_lw_m2_m_bootstrap_server_credential.py +440 -0
  1192. tb_rest_client-4.3/tb_rest_client/rest.py +342 -0
  1193. tb_rest_client-4.3/tb_rest_client/rest_client_base.py +2371 -0
  1194. tb_rest_client-4.3/tb_rest_client/rest_client_ce.py +1288 -0
  1195. tb_rest_client-4.3/tb_rest_client/rest_client_pe.py +1817 -0
  1196. tb_rest_client-4.1.0/PKG-INFO +0 -80
  1197. tb_rest_client-4.1.0/README.md +0 -50
  1198. tb_rest_client-4.1.0/pyproject.toml +0 -30
  1199. tb_rest_client-4.1.0/tb_rest_client/__init__.py +0 -16
  1200. tb_rest_client-4.1.0/tb_rest_client/api/__init__.py +0 -14
  1201. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/__init__.py +0 -69
  1202. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/admin_controller_api.py +0 -2250
  1203. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/alarm_comment_controller_api.py +0 -376
  1204. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/alarm_controller_api.py +0 -1639
  1205. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/asset_controller_api.py +0 -2040
  1206. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/asset_profile_controller_api.py +0 -934
  1207. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/audit_log_controller_api.py +0 -587
  1208. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/auth_controller_api.py +0 -882
  1209. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/calculated_field_controller_api.py +0 -661
  1210. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/component_descriptor_controller_api.py +0 -340
  1211. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/customer_controller_api.py +0 -731
  1212. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/dashboard_controller_api.py +0 -2364
  1213. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/device_api_controller_api.py +0 -1212
  1214. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/device_connectivity_controller_api.py +0 -332
  1215. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/device_controller_api.py +0 -2737
  1216. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/device_profile_controller_api.py +0 -1120
  1217. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/domain_controller_api.py +0 -678
  1218. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/edge_controller_api.py +0 -2475
  1219. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/edge_event_controller_api.py +0 -178
  1220. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/entities_version_control_controller_api.py +0 -1327
  1221. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/entity_query_controller_api.py +0 -810
  1222. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/entity_relation_controller_api.py +0 -1355
  1223. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/entity_view_controller_api.py +0 -1828
  1224. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/event_controller_api.py +0 -623
  1225. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/image_controller_api.py +0 -1295
  1226. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/job_controller_api.py +0 -538
  1227. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/login_endpoint_api.py +0 -237
  1228. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/lwm_2m_controller_api.py +0 -240
  1229. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/mail_config_template_controller_api.py +0 -134
  1230. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/mobile_app_bundle_controller_api.py +0 -562
  1231. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/mobile_app_controller_api.py +0 -563
  1232. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/mobile_application_controller_api.py +0 -508
  1233. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/notification_controller_api.py +0 -1480
  1234. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/notification_rule_controller_api.py +0 -447
  1235. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/notification_target_controller_api.py +0 -776
  1236. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/notification_template_controller_api.py +0 -550
  1237. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/o_auth_2_config_template_controller_api.py +0 -324
  1238. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/o_auth_2_controller_api.py +0 -915
  1239. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/ota_package_controller_api.py +0 -879
  1240. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/qr_code_settings_controller_api.py +0 -508
  1241. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/queue_controller_api.py +0 -558
  1242. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/queue_stats_controller_api.py +0 -352
  1243. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/rpc_v_1_controller_api.py +0 -253
  1244. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/rpc_v_2_controller_api.py +0 -570
  1245. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/rule_chain_controller_api.py +0 -2201
  1246. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/rule_engine_controller_api.py +0 -515
  1247. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/tb_resource_controller_api.py +0 -1497
  1248. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/telemetry_controller_api.py +0 -1808
  1249. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/tenant_controller_api.py +0 -657
  1250. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/tenant_profile_controller_api.py +0 -932
  1251. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/trendz_controller_api.py +0 -219
  1252. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/two_factor_auth_config_controller_api.py +0 -890
  1253. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/two_factor_auth_controller_api.py +0 -332
  1254. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/ui_settings_controller_api.py +0 -134
  1255. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/usage_info_controller_api.py +0 -132
  1256. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/user_controller_api.py +0 -2645
  1257. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/widget_type_controller_api.py +0 -1505
  1258. tb_rest_client-4.1.0/tb_rest_client/api/api_ce/widgets_bundle_controller_api.py +0 -752
  1259. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/__init__.py +0 -72
  1260. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/admin_controller_api.py +0 -2310
  1261. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/alarm_comment_controller_api.py +0 -372
  1262. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/alarm_controller_api.py +0 -1629
  1263. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/asset_controller_api.py +0 -1648
  1264. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/asset_profile_controller_api.py +0 -1029
  1265. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/audit_log_controller_api.py +0 -587
  1266. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/auth_controller_api.py +0 -882
  1267. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/billing_endpoint_controller_api.py +0 -868
  1268. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/blob_entity_controller_api.py +0 -554
  1269. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/calculated_field_controller_api.py +0 -971
  1270. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/chirp_stack_integration_controller_api.py +0 -838
  1271. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/cloud_endpoint_controller_api.py +0 -298
  1272. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/component_descriptor_controller_api.py +0 -340
  1273. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/converter_controller_api.py +0 -959
  1274. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/converter_library_controller_api.py +0 -915
  1275. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/custom_menu_controller_api.py +0 -1090
  1276. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/custom_translation_controller_api.py +0 -757
  1277. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/customer_controller_api.py +0 -1413
  1278. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/dashboard_controller_api.py +0 -2194
  1279. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/device_api_controller_api.py +0 -1212
  1280. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/device_connectivity_controller_api.py +0 -332
  1281. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/device_controller_api.py +0 -2468
  1282. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/device_group_ota_package_controller_api.py +0 -334
  1283. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/device_profile_controller_api.py +0 -1215
  1284. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/domain_controller_api.py +0 -664
  1285. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/edge_controller_api.py +0 -2638
  1286. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/edge_event_controller_api.py +0 -178
  1287. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/entities_version_control_controller_api.py +0 -1335
  1288. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/entity_group_controller_api.py +0 -3936
  1289. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/entity_query_controller_api.py +0 -810
  1290. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/entity_relation_controller_api.py +0 -1355
  1291. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/entity_view_controller_api.py +0 -1549
  1292. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/event_controller_api.py +0 -623
  1293. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/group_permission_controller_api.py +0 -720
  1294. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/http_integration_controller_api.py +0 -358
  1295. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/image_controller_api.py +0 -1505
  1296. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/integration_controller_api.py +0 -1592
  1297. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/job_controller_api.py +0 -546
  1298. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/login_endpoint_api.py +0 -237
  1299. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/lwm_2m_controller_api.py +0 -244
  1300. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/mail_config_template_controller_api.py +0 -134
  1301. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/mobile_app_bundle_controller_api.py +0 -562
  1302. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/mobile_app_controller_api.py +0 -549
  1303. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/mobile_application_controller_api.py +0 -581
  1304. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/notification_controller_api.py +0 -1476
  1305. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/notification_rule_controller_api.py +0 -447
  1306. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/notification_target_controller_api.py +0 -776
  1307. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/notification_template_controller_api.py +0 -550
  1308. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/o_auth_2_config_template_controller_api.py +0 -324
  1309. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/o_auth_2_controller_api.py +0 -816
  1310. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/ota_package_controller_api.py +0 -1010
  1311. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/owner_controller_api.py +0 -285
  1312. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/qr_code_settings_controller_api.py +0 -595
  1313. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/queue_controller_api.py +0 -558
  1314. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/queue_stats_controller_api.py +0 -339
  1315. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/report_controller_api.py +0 -245
  1316. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/role_controller_api.py +0 -546
  1317. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/rpc_controller_api.py +0 -257
  1318. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/rpc_v_1_controller_api.py +0 -253
  1319. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/rpc_v_2_controller_api.py +0 -570
  1320. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/rule_chain_controller_api.py +0 -2297
  1321. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/rule_engine_controller_api.py +0 -499
  1322. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/scheduler_event_controller_api.py +0 -1140
  1323. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/secret_controller_api.py +0 -829
  1324. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/self_registration_controller_api.py +0 -859
  1325. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/sig_fox_integration_controller_api.py +0 -838
  1326. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/sign_up_controller_api.py +0 -882
  1327. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/solution_controller_api.py +0 -514
  1328. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/subscription_controller_api.py +0 -310
  1329. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/t_mobile_iot_cdp_integration_controller_api.py +0 -838
  1330. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/tb_resource_controller_api.py +0 -1497
  1331. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/telemetry_controller_api.py +0 -1808
  1332. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/tenant_controller_api.py +0 -750
  1333. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/tenant_profile_controller_api.py +0 -932
  1334. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/thing_park_integration_controller_api.py +0 -1741
  1335. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/translation_controller_api.py +0 -690
  1336. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/trendz_controller_api.py +0 -219
  1337. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/two_factor_auth_config_controller_api.py +0 -890
  1338. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/two_factor_auth_controller_api.py +0 -332
  1339. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/ui_settings_controller_api.py +0 -134
  1340. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/usage_info_controller_api.py +0 -132
  1341. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/user_controller_api.py +0 -3328
  1342. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/user_permissions_controller_api.py +0 -134
  1343. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/white_labeling_controller_api.py +0 -1238
  1344. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/widget_type_controller_api.py +0 -1410
  1345. tb_rest_client-4.1.0/tb_rest_client/api/api_pe/widgets_bundle_controller_api.py +0 -847
  1346. tb_rest_client-4.1.0/tb_rest_client/api_client.py +0 -705
  1347. tb_rest_client-4.1.0/tb_rest_client/configuration.py +0 -234
  1348. tb_rest_client-4.1.0/tb_rest_client/models/__init__.py +0 -14
  1349. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/__init__.py +0 -506
  1350. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/account_configverification_code_body.py +0 -98
  1351. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/account_two_fa_settings.py +0 -124
  1352. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/activate_user_request.py +0 -154
  1353. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/admin_settings.py +0 -232
  1354. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/admin_settings_id.py +0 -127
  1355. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/affected_tenant_administrators_filter.py +0 -104
  1356. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/affected_user_filter.py +0 -104
  1357. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm.py +0 -707
  1358. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_assignee.py +0 -202
  1359. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_assignment_notification_rule_trigger_config.py +0 -216
  1360. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_comment.py +0 -292
  1361. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_comment_id.py +0 -127
  1362. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_comment_info.py +0 -376
  1363. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_comment_notification_rule_trigger_config.py +0 -248
  1364. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_condition.py +0 -154
  1365. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_condition_filter.py +0 -214
  1366. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_condition_filter_key.py +0 -160
  1367. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_condition_spec.py +0 -135
  1368. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_count_query.py +0 -372
  1369. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_data.py +0 -855
  1370. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_data_page_link.py +0 -450
  1371. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_data_query.py +0 -254
  1372. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_id.py +0 -162
  1373. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_info.py +0 -803
  1374. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_notification_rule_trigger_config.py +0 -223
  1375. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_rule.py +0 -206
  1376. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/alarm_schedule.py +0 -166
  1377. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/all_users_filter.py +0 -104
  1378. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/allow_create_new_devices_device_profile_provision_configuration.py +0 -104
  1379. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/android_config.py +0 -202
  1380. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/any_time_schedule.py +0 -104
  1381. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/api_image_body.py +0 -177
  1382. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/api_usage_limit_notification_rule_trigger_config.py +0 -170
  1383. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/api_usage_state_filter.py +0 -130
  1384. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/argument.py +0 -214
  1385. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset.py +0 -367
  1386. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_id.py +0 -162
  1387. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_info.py +0 -451
  1388. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_profile.py +0 -422
  1389. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_profile_id.py +0 -162
  1390. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_profile_info.py +0 -232
  1391. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_search_query.py +0 -180
  1392. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_search_query_filter.py +0 -266
  1393. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/asset_type_filter.py +0 -182
  1394. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/atomic_integer.py +0 -228
  1395. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/attribute_export_data.py +0 -280
  1396. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/attributes_entity_view.py +0 -185
  1397. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/audit_log.py +0 -434
  1398. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/audit_log_id.py +0 -127
  1399. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/auto_commit_settings.py +0 -103
  1400. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/auto_version_create_config.py +0 -202
  1401. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/aws_sns_sms_provider_configuration.py +0 -188
  1402. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/backup_code_two_fa_account_config.py +0 -157
  1403. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/backup_code_two_fa_provider_config.py +0 -130
  1404. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/boolean_filter_predicate.py +0 -162
  1405. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/branch_info.py +0 -150
  1406. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/bulk_import_request.py +0 -150
  1407. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/bulk_import_result_asset.py +0 -202
  1408. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/bulk_import_result_asset_created.py +0 -254
  1409. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/bulk_import_result_device.py +0 -202
  1410. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/bulk_import_result_edge.py +0 -202
  1411. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/button.py +0 -286
  1412. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/byte_array_resource.py +0 -332
  1413. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/byte_buffer.py +0 -306
  1414. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/calculated_field.py +0 -394
  1415. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/calculated_field_configuration.py +0 -211
  1416. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/calculated_field_debug_event_filter.py +0 -98
  1417. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/calculated_field_id.py +0 -156
  1418. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/change_password_request.py +0 -154
  1419. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/check_pre_provisioned_devices_device_profile_provision_configuration.py +0 -104
  1420. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/claim_request.py +0 -124
  1421. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/clear_rule.py +0 -131
  1422. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/client_attributes_querying_snmp_communication_config.py +0 -156
  1423. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/coap_device_profile_transport_configuration.py +0 -156
  1424. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/coap_device_transport_configuration.py +0 -214
  1425. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/coap_device_type_configuration.py +0 -134
  1426. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/column_mapping.py +0 -156
  1427. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/comparison_ts_value.py +0 -150
  1428. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/complex_filter_predicate.py +0 -162
  1429. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/complex_version_create_request.py +0 -162
  1430. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/component_descriptor.py +0 -420
  1431. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/component_descriptor_id.py +0 -127
  1432. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/config_submit_body.py +0 -98
  1433. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/custom_mobile_page.py +0 -98
  1434. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/custom_time_schedule.py +0 -156
  1435. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/custom_time_schedule_item.py +0 -202
  1436. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/customer.py +0 -510
  1437. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/customer_id.py +0 -162
  1438. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/customer_users_filter.py +0 -131
  1439. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dashboard.py +0 -399
  1440. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dashboard_id.py +0 -162
  1441. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dashboard_info.py +0 -373
  1442. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dashboard_page.py +0 -98
  1443. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/debug_converter_event_filter.py +0 -351
  1444. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/debug_integration_event_filter.py +0 -325
  1445. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/debug_rule_chain_event_filter.py +0 -429
  1446. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/debug_settings.py +0 -182
  1447. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_coap_device_type_configuration.py +0 -130
  1448. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_device_configuration.py +0 -104
  1449. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_device_profile_configuration.py +0 -104
  1450. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_device_profile_transport_configuration.py +0 -104
  1451. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_device_transport_configuration.py +0 -104
  1452. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_mobile_page.py +0 -98
  1453. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_rule_chain_create_request.py +0 -127
  1454. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/default_tenant_profile_configuration.py +0 -1638
  1455. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_entity_data_diff.py +0 -150
  1456. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_entity_data_info.py +0 -150
  1457. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_list_branch_info.py +0 -150
  1458. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_list_versioned_entity_info.py +0 -150
  1459. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_page_data_entity_version.py +0 -150
  1460. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_repository_settings.py +0 -150
  1461. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_response_entity.py +0 -150
  1462. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_result_void.py +0 -150
  1463. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/deferred_resultuuid.py +0 -150
  1464. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/delivery_method_notification_template.py +0 -191
  1465. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device.py +0 -446
  1466. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_activity_notification_rule_trigger_config.py +0 -190
  1467. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_configuration.py +0 -133
  1468. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_credentials.py +0 -293
  1469. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_credentials_id.py +0 -127
  1470. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_data.py +0 -154
  1471. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_export_data.py +0 -156
  1472. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_id.py +0 -162
  1473. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_info.py +0 -558
  1474. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile.py +0 -630
  1475. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_alarm.py +0 -320
  1476. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_configuration.py +0 -133
  1477. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_data.py +0 -210
  1478. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_id.py +0 -162
  1479. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_info.py +0 -300
  1480. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_provision_configuration.py +0 -162
  1481. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_profile_transport_configuration.py +0 -137
  1482. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_search_query.py +0 -180
  1483. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_search_query_filter.py +0 -266
  1484. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_transport_configuration.py +0 -137
  1485. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/device_type_filter.py +0 -182
  1486. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/disabled_device_profile_provision_configuration.py +0 -104
  1487. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/domain.py +0 -247
  1488. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/domain_id.py +0 -146
  1489. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/domain_info.py +0 -275
  1490. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/duration_alarm_condition_spec.py +0 -162
  1491. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dynamic_value_boolean.py +0 -182
  1492. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dynamic_value_double.py +0 -182
  1493. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dynamic_value_integer.py +0 -182
  1494. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dynamic_value_long.py +0 -182
  1495. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/dynamic_value_string.py +0 -182
  1496. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge.py +0 -426
  1497. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_communication_failure_notification_rule_trigger_config.py +0 -130
  1498. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_connection_notification_rule_trigger_config.py +0 -163
  1499. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_event.py +0 -370
  1500. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_event_id.py +0 -127
  1501. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_id.py +0 -162
  1502. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_info.py +0 -478
  1503. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_install_instructions.py +0 -126
  1504. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_instructions.py +0 -126
  1505. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_search_query.py +0 -180
  1506. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_search_query_filter.py +0 -266
  1507. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edge_type_filter.py +0 -182
  1508. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edqs_state.py +0 -163
  1509. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/edqs_sync_request.py +0 -98
  1510. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/efento_coap_device_type_configuration.py +0 -104
  1511. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/email_delivery_method_notification_template.py +0 -131
  1512. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/email_two_fa_account_config.py +0 -131
  1513. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/email_two_fa_provider_config.py +0 -130
  1514. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entities_limit_notification_rule_trigger_config.py +0 -163
  1515. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_action_notification_rule_trigger_config.py +0 -215
  1516. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_count_query.py +0 -150
  1517. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data.py +0 -202
  1518. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data_diff.py +0 -150
  1519. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data_info.py +0 -176
  1520. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data_page_link.py +0 -228
  1521. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data_query.py +0 -228
  1522. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_data_sort_order.py +0 -156
  1523. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_export_data_object.py +0 -219
  1524. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_filter.py +0 -134
  1525. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_id.py +0 -160
  1526. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_id_clearstart_timeend_time_body.py +0 -98
  1527. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_info.py +0 -152
  1528. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_key.py +0 -156
  1529. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_list_filter.py +0 -162
  1530. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_load_error.py +0 -202
  1531. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_name_filter.py +0 -162
  1532. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_relation.py +0 -264
  1533. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_relation_info.py +0 -320
  1534. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_relations_query.py +0 -152
  1535. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_subtype.py +0 -182
  1536. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_entity_idtenant_idpage_sizepagetext_searchsort_propertysort_orderstart_timeend_time_body.py +0 -98
  1537. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_filter.py +0 -136
  1538. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_load_result.py +0 -208
  1539. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_version_create_config.py +0 -260
  1540. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_version_load_config.py +0 -228
  1541. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_type_version_load_request.py +0 -156
  1542. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_version.py +0 -202
  1543. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view.py +0 -423
  1544. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view_id.py +0 -162
  1545. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view_info.py +0 -479
  1546. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view_search_query.py +0 -180
  1547. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view_search_query_filter.py +0 -266
  1548. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/entity_view_type_filter.py +0 -182
  1549. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/error_event_filter.py +0 -188
  1550. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/escalated_notification_rule_recipients_config.py +0 -131
  1551. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/event.py +0 -286
  1552. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/event_filter.py +0 -171
  1553. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/event_id.py +0 -127
  1554. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/event_info.py +0 -286
  1555. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/features_info.py +0 -228
  1556. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/file.py +0 -488
  1557. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/filter_predicate_value_boolean.py +0 -176
  1558. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/filter_predicate_value_double.py +0 -176
  1559. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/filter_predicate_value_integer.py +0 -176
  1560. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/filter_predicate_value_long.py +0 -176
  1561. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/filter_predicate_value_string.py +0 -176
  1562. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/has_id_object.py +0 -124
  1563. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/home_dashboard.py +0 -427
  1564. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/home_dashboard_info.py +0 -152
  1565. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/image_export_data.py +0 -332
  1566. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/inline_response200.py +0 -99
  1567. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/input_stream.py +0 -98
  1568. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ios_config.py +0 -176
  1569. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/job.py +0 -351
  1570. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/job_configuration.py +0 -173
  1571. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/job_id.py +0 -142
  1572. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/job_result.py +0 -354
  1573. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/json_node.py +0 -98
  1574. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/json_transport_payload_configuration.py +0 -104
  1575. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/jwt_pair.py +0 -186
  1576. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/jwt_settings.py +0 -210
  1577. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/key_filter.py +0 -182
  1578. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/key_filter_predicate.py +0 -136
  1579. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/last_visited_dashboard_info.py +0 -210
  1580. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/life_cycle_event_filter.py +0 -222
  1581. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/login_mobile_info.py +0 -176
  1582. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/login_request.py +0 -156
  1583. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/login_response.py +0 -156
  1584. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2_m_bootstrap_server_credential.py +0 -136
  1585. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2_m_server_security_config_default.py +0 -490
  1586. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2m_instance.py +0 -154
  1587. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2m_object.py +0 -266
  1588. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2m_resource_observe.py +0 -266
  1589. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lw_m2m_version.py +0 -124
  1590. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lwm2m_device_profile_transport_configuration.py +0 -208
  1591. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/lwm2m_device_transport_configuration.py +0 -214
  1592. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mapping.py +0 -202
  1593. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/microsoft_teams_delivery_method_notification_template.py +0 -182
  1594. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/microsoft_teams_notification_target_config.py +0 -314
  1595. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app.py +0 -290
  1596. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_bundle.py +0 -375
  1597. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_bundle_id.py +0 -154
  1598. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_bundle_info.py +0 -487
  1599. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_delivery_method_notification_template.py +0 -157
  1600. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_id.py +0 -160
  1601. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_info.py +0 -318
  1602. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_notification_delivery_method_config.py +0 -157
  1603. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_settings_id.py +0 -127
  1604. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_app_version_info.py +0 -210
  1605. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_layout_config.py +0 -126
  1606. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_page.py +0 -158
  1607. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mobile_session_info.py +0 -124
  1608. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mqtt_device_profile_transport_configuration.py +0 -286
  1609. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/mqtt_device_transport_configuration.py +0 -104
  1610. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/new_platform_version_notification_rule_trigger_config.py +0 -104
  1611. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/no_sec_lw_m2_m_bootstrap_server_credential.py +0 -440
  1612. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/node_connection_info.py +0 -185
  1613. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification.py +0 -402
  1614. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_delivery_method_config.py +0 -134
  1615. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_id.py +0 -162
  1616. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_info.py +0 -185
  1617. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_pref.py +0 -151
  1618. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request.py +0 -417
  1619. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request_config.py +0 -124
  1620. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request_id.py +0 -162
  1621. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request_info.py +0 -476
  1622. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request_preview.py +0 -202
  1623. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_request_stats.py +0 -202
  1624. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule.py +0 -369
  1625. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule_config.py +0 -124
  1626. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule_id.py +0 -162
  1627. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule_info.py +0 -428
  1628. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule_recipients_config.py +0 -139
  1629. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_rule_trigger_config.py +0 -178
  1630. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_settings.py +0 -125
  1631. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_target.py +0 -230
  1632. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_target_config.py +0 -148
  1633. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_target_id.py +0 -162
  1634. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_template.py +0 -263
  1635. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_template_config.py +0 -125
  1636. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/notification_template_id.py +0 -162
  1637. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/numeric_filter_predicate.py +0 -162
  1638. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_basic_mapper_config.py +0 -329
  1639. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client.py +0 -636
  1640. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client_id.py +0 -160
  1641. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client_info.py +0 -267
  1642. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client_login_info.py +0 -182
  1643. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client_registration_template.py +0 -565
  1644. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_client_registration_template_id.py +0 -127
  1645. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_custom_mapper_config.py +0 -202
  1646. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_domain_info.py +0 -162
  1647. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_info.py +0 -183
  1648. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_mapper_config.py +0 -241
  1649. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_mobile_info.py +0 -156
  1650. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_params_info.py +0 -185
  1651. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/o_auth2_registration_info.py +0 -502
  1652. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/object_attributes.py +0 -410
  1653. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/object_node.py +0 -98
  1654. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_alarm_condition_filter_predicate.py +0 -98
  1655. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_alarm_condition_spec.py +0 -98
  1656. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_alarm_count_query_entity_filter.py +0 -98
  1657. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_alarm_data_query_entity_filter.py +0 -98
  1658. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_alarm_rule_schedule.py +0 -98
  1659. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_device_data_configuration.py +0 -98
  1660. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_device_data_transport_configuration.py +0 -98
  1661. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_device_profile_data_configuration.py +0 -98
  1662. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_device_profile_data_provision_configuration.py +0 -98
  1663. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_device_profile_data_transport_configuration.py +0 -98
  1664. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_entity_count_query_entity_filter.py +0 -98
  1665. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_entity_data_diff_current_version.py +0 -98
  1666. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_entity_data_diff_other_version.py +0 -98
  1667. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_entity_data_query_entity_filter.py +0 -98
  1668. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_key_filter_predicate.py +0 -98
  1669. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_notification_rule_info_recipients_config.py +0 -98
  1670. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_notification_rule_info_trigger_config.py +0 -98
  1671. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_notification_rule_recipients_config.py +0 -98
  1672. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_notification_rule_trigger_config.py +0 -98
  1673. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_notification_target_configuration.py +0 -98
  1674. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_platform_two_fa_settings_providers_items.py +0 -98
  1675. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_tenant_profile_data_configuration.py +0 -98
  1676. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/one_of_test_sms_request_provider_configuration.py +0 -98
  1677. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/originator_entity_owner_users_filter.py +0 -104
  1678. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ota_package.py +0 -576
  1679. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ota_package_data.py +0 -306
  1680. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ota_package_id.py +0 -162
  1681. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ota_package_info.py +0 -550
  1682. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ota_package_ota_package_idchecksumchecksum_algorithm_body.py +0 -127
  1683. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/other_configuration.py +0 -364
  1684. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_alarm_comment_info.py +0 -210
  1685. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_alarm_data.py +0 -210
  1686. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_alarm_info.py +0 -210
  1687. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_asset.py +0 -210
  1688. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_asset_info.py +0 -210
  1689. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_asset_profile.py +0 -210
  1690. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_asset_profile_info.py +0 -210
  1691. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_audit_log.py +0 -210
  1692. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_calculated_field.py +0 -210
  1693. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_customer.py +0 -210
  1694. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_dashboard_info.py +0 -210
  1695. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_device.py +0 -210
  1696. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_device_info.py +0 -210
  1697. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_device_profile.py +0 -210
  1698. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_device_profile_info.py +0 -210
  1699. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_domain_info.py +0 -210
  1700. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_edge.py +0 -210
  1701. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_edge_event.py +0 -210
  1702. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_edge_info.py +0 -210
  1703. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_data.py +0 -210
  1704. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_info.py +0 -210
  1705. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_subtype.py +0 -210
  1706. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_version.py +0 -210
  1707. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_view.py +0 -210
  1708. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_entity_view_info.py +0 -210
  1709. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_event.py +0 -210
  1710. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_event_info.py +0 -210
  1711. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_mobile_app.py +0 -210
  1712. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_mobile_app_bundle_info.py +0 -196
  1713. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_mobile_app_info.py +0 -210
  1714. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_notification.py +0 -210
  1715. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_notification_request_info.py +0 -210
  1716. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_notification_rule_info.py +0 -210
  1717. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_notification_target.py +0 -210
  1718. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_notification_template.py +0 -210
  1719. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_o_auth2_client_info.py +0 -210
  1720. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_ota_package_info.py +0 -210
  1721. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_queue.py +0 -210
  1722. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_queue_stats.py +0 -210
  1723. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_rpc.py +0 -202
  1724. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_rule_chain.py +0 -210
  1725. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_tb_resource_info.py +0 -210
  1726. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_tenant.py +0 -210
  1727. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_tenant_info.py +0 -210
  1728. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_tenant_profile.py +0 -210
  1729. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_user.py +0 -210
  1730. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_user_email_info.py +0 -210
  1731. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_widget_type_info.py +0 -210
  1732. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/page_data_widgets_bundle.py +0 -210
  1733. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/platform_two_fa_settings.py +0 -231
  1734. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/platform_users_notification_target_config.py +0 -131
  1735. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/power_saving_configuration.py +0 -208
  1736. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/processing_strategy.py +0 -234
  1737. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/proto_transport_payload_configuration.py +0 -260
  1738. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/psklw_m2_m_bootstrap_server_credential.py +0 -440
  1739. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/qr_code_config.py +0 -234
  1740. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/qr_code_settings.py +0 -399
  1741. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/qr_code_settings_id.py +0 -127
  1742. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/queue.py +0 -410
  1743. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/queue_id.py +0 -162
  1744. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/queue_stats.py +0 -228
  1745. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/queue_stats_id.py +0 -162
  1746. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rate_limits_notification_rule_trigger_config.py +0 -137
  1747. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/referenced_entity_key.py +0 -176
  1748. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/relation_entity_type_filter.py +0 -189
  1749. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/relations_query_filter.py +0 -350
  1750. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/relations_search_parameters.py +0 -284
  1751. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/repeating_alarm_condition_spec.py +0 -130
  1752. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/repository_settings.py +0 -390
  1753. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/repository_settings_info.py +0 -150
  1754. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/reset_password_email_request.py +0 -126
  1755. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/reset_password_request.py +0 -154
  1756. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/resource.py +0 -306
  1757. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/resource_export_data.py +0 -384
  1758. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/response_entity.py +0 -182
  1759. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rpc.py +0 -344
  1760. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rpc_id.py +0 -162
  1761. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rpklw_m2_m_bootstrap_server_credential.py +0 -440
  1762. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain.py +0 -402
  1763. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_connection_info.py +0 -210
  1764. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_data.py +0 -156
  1765. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_debug_event_filter.py +0 -240
  1766. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_export_data.py +0 -156
  1767. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_id.py +0 -162
  1768. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_import_result.py +0 -202
  1769. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_meta_data.py +0 -267
  1770. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_chain_output_labels_usage.py +0 -239
  1771. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_engine_component_lifecycle_event_notification_rule_trigger_config.py +0 -274
  1772. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_node.py +0 -424
  1773. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_node_debug_event_filter.py +0 -448
  1774. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/rule_node_id.py +0 -162
  1775. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/save_device_with_credentials_request.py +0 -152
  1776. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/save_ota_package_info_request.py +0 -578
  1777. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/security_settings.py +0 -266
  1778. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/server_security_config.py +0 -332
  1779. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/shared_attributes_setting_snmp_communication_config.py +0 -130
  1780. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/short_customer_info.py +0 -204
  1781. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/sign_up_request.py +0 -294
  1782. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/simple_alarm_condition_spec.py +0 -104
  1783. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/single_entity_filter.py +0 -130
  1784. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/single_entity_version_create_request.py +0 -156
  1785. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/single_entity_version_load_request.py +0 -156
  1786. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/slack_conversation.py +0 -263
  1787. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/slack_delivery_method_notification_template.py +0 -104
  1788. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/slack_notification_delivery_method_config.py +0 -131
  1789. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/slack_notification_target_config.py +0 -163
  1790. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/smpp_sms_provider_configuration.py +0 -541
  1791. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/sms_delivery_method_notification_template.py +0 -104
  1792. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/sms_provider_configuration.py +0 -135
  1793. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/sms_two_fa_account_config.py +0 -131
  1794. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/sms_two_fa_provider_config.py +0 -157
  1795. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/snmp_communication_config.py +0 -142
  1796. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/snmp_device_profile_transport_configuration.py +0 -182
  1797. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/snmp_device_transport_configuration.py +0 -434
  1798. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/snmp_mapping.py +0 -182
  1799. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/specific_time_schedule.py +0 -208
  1800. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/starred_dashboard_info.py +0 -182
  1801. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/statistics_event_filter.py +0 -244
  1802. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/store_info.py +0 -176
  1803. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/string_filter_predicate.py +0 -188
  1804. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/submit_strategy.py +0 -156
  1805. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/system_administrators_filter.py +0 -104
  1806. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/system_info.py +0 -152
  1807. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/system_info_data.py +0 -322
  1808. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/task_processing_failure_notification_rule_trigger_config.py +0 -104
  1809. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tb_image_delete_result.py +0 -150
  1810. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tb_resource.py +0 -568
  1811. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tb_resource_id.py +0 -162
  1812. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tb_resource_info.py +0 -514
  1813. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/telemetry_entity_view.py +0 -154
  1814. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/telemetry_mapping_configuration.py +0 -228
  1815. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/telemetry_querying_snmp_communication_config.py +0 -156
  1816. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant.py +0 -539
  1817. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_administrators_filter.py +0 -156
  1818. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_id.py +0 -162
  1819. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_info.py +0 -567
  1820. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_profile.py +0 -288
  1821. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_profile_configuration.py +0 -133
  1822. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_profile_data.py +0 -154
  1823. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_profile_id.py +0 -162
  1824. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/tenant_profile_queue_configuration.py +0 -332
  1825. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/test_sms_request.py +0 -182
  1826. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/thingsboard_credentials_expired_response.py +0 -238
  1827. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/thingsboard_error_response.py +0 -210
  1828. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/to_core_edqs_request.py +0 -150
  1829. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/to_device_rpc_request_snmp_communication_config.py +0 -130
  1830. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/to_server_rpc_request_snmp_communication_config.py +0 -130
  1831. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/totp_two_fa_account_config.py +0 -131
  1832. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/totp_two_fa_provider_config.py +0 -131
  1833. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/transport_payload_type_configuration.py +0 -134
  1834. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/trendz_settings.py +0 -162
  1835. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/ts_value.py +0 -176
  1836. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/twilio_sms_provider_configuration.py +0 -188
  1837. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/two_fa_account_config.py +0 -162
  1838. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/two_fa_account_config_update_request.py +0 -124
  1839. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/two_fa_provider_config.py +0 -136
  1840. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/two_fa_provider_info.py +0 -234
  1841. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/type_key_body.py +0 -125
  1842. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/update_message.py +0 -266
  1843. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/usage_info.py +0 -696
  1844. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user.py +0 -432
  1845. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_activation_link.py +0 -150
  1846. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_dashboards_info.py +0 -154
  1847. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_email_info.py +0 -208
  1848. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_id.py +0 -162
  1849. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_list_filter.py +0 -131
  1850. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_mobile_info.py +0 -228
  1851. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_notification_settings.py +0 -125
  1852. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/user_password_policy.py +0 -378
  1853. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/users_filter.py +0 -140
  1854. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/vc_entity_body.py +0 -98
  1855. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/vc_version_body.py +0 -98
  1856. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version.py +0 -98
  1857. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_create_config.py +0 -176
  1858. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_create_request.py +0 -191
  1859. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_creation_result.py +0 -254
  1860. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_load_config.py +0 -176
  1861. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_load_request.py +0 -165
  1862. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/version_load_result.py +0 -176
  1863. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/versioned_entity_info.py +0 -124
  1864. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/web_delivery_method_notification_template.py +0 -157
  1865. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/web_view_page.py +0 -98
  1866. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widget_type.py +0 -342
  1867. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widget_type_details.py +0 -426
  1868. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widget_type_export_data.py +0 -130
  1869. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widget_type_id.py +0 -162
  1870. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widget_type_info.py +0 -428
  1871. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widgets_bundle.py +0 -400
  1872. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widgets_bundle_export_data.py +0 -182
  1873. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/widgets_bundle_id.py +0 -162
  1874. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/x509_certificate_chain_provision_configuration.py +0 -156
  1875. tb_rest_client-4.1.0/tb_rest_client/models/models_ce/x509_lw_m2_m_bootstrap_server_credential.py +0 -440
  1876. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/__init__.py +0 -421
  1877. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/account_two_fa_settings.py +0 -124
  1878. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/activate_user_request.py +0 -154
  1879. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/admin_settings.py +0 -232
  1880. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/admin_settings_id.py +0 -127
  1881. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/affected_tenant_administrators_filter.py +0 -104
  1882. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/affected_user_filter.py +0 -104
  1883. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm.py +0 -749
  1884. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_assignee.py +0 -202
  1885. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_assignment_notification_rule_trigger_config.py +0 -230
  1886. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_comment.py +0 -292
  1887. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_comment_id.py +0 -127
  1888. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_comment_info.py +0 -376
  1889. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_comment_notification_rule_trigger_config.py +0 -248
  1890. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_condition.py +0 -154
  1891. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_condition_filter.py +0 -214
  1892. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_condition_filter_key.py +0 -160
  1893. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_condition_spec.py +0 -135
  1894. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_count_query.py +0 -372
  1895. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_data.py +0 -883
  1896. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_data_page_link.py +0 -450
  1897. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_data_query.py +0 -254
  1898. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_id.py +0 -162
  1899. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_info.py +0 -831
  1900. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_notification_rule_trigger_config.py +0 -223
  1901. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_rule.py +0 -206
  1902. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/alarm_schedule.py +0 -152
  1903. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/all_users_filter.py +0 -104
  1904. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/allow_create_new_devices_device_profile_provision_configuration.py +0 -104
  1905. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/allowed_permissions_info.py +0 -318
  1906. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/any_time_schedule.py +0 -104
  1907. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/api_usage_limit_notification_rule_trigger_config.py +0 -170
  1908. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/api_usage_state_filter.py +0 -130
  1909. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/array_node.py +0 -98
  1910. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset.py +0 -393
  1911. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_id.py +0 -162
  1912. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_info.py +0 -449
  1913. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_profile_id.py +0 -162
  1914. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_search_query.py +0 -180
  1915. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_search_query_filter.py +0 -266
  1916. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/asset_type_filter.py +0 -182
  1917. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/atomic_integer.py +0 -228
  1918. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/attribute_export_data.py +0 -280
  1919. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/attributes_entity_view.py +0 -185
  1920. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/audit_log.py +0 -434
  1921. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/audit_log_id.py +0 -127
  1922. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/auto_version_create_config.py +0 -254
  1923. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/aws_sns_sms_provider_configuration.py +0 -188
  1924. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/backup_code_two_fa_account_config.py +0 -157
  1925. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/backup_code_two_fa_provider_config.py +0 -130
  1926. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/blob_entity_id.py +0 -162
  1927. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/blob_entity_info.py +0 -346
  1928. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/blob_entity_with_customer_info.py +0 -402
  1929. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/boolean_filter_predicate.py +0 -162
  1930. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/branch_info.py +0 -150
  1931. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/bulk_import_request.py +0 -202
  1932. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/bulk_import_result_asset.py +0 -202
  1933. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/bulk_import_result_device.py +0 -202
  1934. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/bulk_import_result_edge.py +0 -202
  1935. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/byte_buffer.py +0 -306
  1936. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/calculated_field_configuration.py +0 -211
  1937. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/calculated_field_debug_event_filter.py +0 -98
  1938. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/calculated_field_id.py +0 -156
  1939. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/captcha_params.py +0 -132
  1940. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/cf_reprocessing_validation_result.py +0 -163
  1941. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/change_password_request.py +0 -154
  1942. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/check_pre_provisioned_devices_device_profile_provision_configuration.py +0 -104
  1943. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/claim_request.py +0 -124
  1944. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/clear_rule.py +0 -131
  1945. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/client_attributes_querying_snmp_communication_config.py +0 -156
  1946. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/coap_device_profile_transport_configuration.py +0 -156
  1947. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/coap_device_transport_configuration.py +0 -214
  1948. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/coap_device_type_configuration.py +0 -134
  1949. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/column_mapping.py +0 -156
  1950. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/comparison_ts_value.py +0 -150
  1951. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/complex_filter_predicate.py +0 -162
  1952. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/complex_version_create_request.py +0 -162
  1953. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/component_descriptor.py +0 -420
  1954. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/component_descriptor_id.py +0 -127
  1955. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/contact_based_object.py +0 -410
  1956. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/converter.py +0 -376
  1957. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/converter_id.py +0 -162
  1958. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/converters_info.py +0 -136
  1959. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu.py +0 -327
  1960. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu_config.py +0 -113
  1961. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu_delete_result.py +0 -168
  1962. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu_id.py +0 -113
  1963. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu_info.py +0 -287
  1964. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_menu_item.py +0 -398
  1965. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_time_schedule.py +0 -156
  1966. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_time_schedule_item.py +0 -202
  1967. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/custom_translation.py +0 -127
  1968. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/customer_id.py +0 -162
  1969. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/customer_info.py +0 -672
  1970. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/customer_users_filter.py +0 -131
  1971. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/dashboard_id.py +0 -162
  1972. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/dashboard_info.py +0 -506
  1973. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/debug_converter_event_filter.py +0 -316
  1974. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/debug_integration_event_filter.py +0 -290
  1975. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_coap_device_type_configuration.py +0 -130
  1976. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_dashboard_params.py +0 -154
  1977. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_device_configuration.py +0 -104
  1978. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_device_profile_configuration.py +0 -104
  1979. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_device_profile_transport_configuration.py +0 -104
  1980. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_device_transport_configuration.py +0 -104
  1981. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_menu_item.py +0 -230
  1982. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_rule_chain_create_request.py +0 -127
  1983. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/default_tenant_profile_configuration.py +0 -1794
  1984. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_entity_data_diff.py +0 -150
  1985. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_entity_data_info.py +0 -150
  1986. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_list_branch_info.py +0 -150
  1987. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_list_versioned_entity_info.py +0 -150
  1988. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_page_data_entity_version.py +0 -150
  1989. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_repository_settings.py +0 -150
  1990. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_result_void.py +0 -150
  1991. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/deferred_resultuuid.py +0 -150
  1992. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/delivery_method_notification_template.py +0 -191
  1993. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device.py +0 -471
  1994. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_activity_notification_rule_trigger_config.py +0 -190
  1995. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_configuration.py +0 -133
  1996. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_credentials_id.py +0 -127
  1997. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_data.py +0 -154
  1998. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_export_data.py +0 -156
  1999. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_group_ota_package.py +0 -234
  2000. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_id.py +0 -162
  2001. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_info.py +0 -555
  2002. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_alarm.py +0 -348
  2003. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_configuration.py +0 -133
  2004. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_data.py +0 -210
  2005. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_id.py +0 -162
  2006. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_provision_configuration.py +0 -162
  2007. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_profile_transport_configuration.py +0 -137
  2008. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_search_query.py +0 -180
  2009. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_search_query_filter.py +0 -266
  2010. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_transport_configuration.py +0 -137
  2011. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/device_type_filter.py +0 -182
  2012. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/disabled_device_profile_provision_configuration.py +0 -104
  2013. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/duration_alarm_condition_spec.py +0 -162
  2014. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge.py +0 -510
  2015. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_communication_failure_notification_rule_trigger_config.py +0 -130
  2016. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_connection_notification_rule_trigger_config.py +0 -163
  2017. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_event.py +0 -396
  2018. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_event_id.py +0 -127
  2019. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_id.py +0 -162
  2020. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_info.py +0 -566
  2021. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_instructions.py +0 -126
  2022. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_search_query.py +0 -180
  2023. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_search_query_filter.py +0 -266
  2024. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edge_type_filter.py +0 -168
  2025. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/edqs_sync_request.py +0 -99
  2026. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/efento_coap_device_type_configuration.py +0 -104
  2027. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/email_delivery_method_notification_template.py +0 -131
  2028. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/email_two_fa_account_config.py +0 -131
  2029. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/email_two_fa_provider_config.py +0 -130
  2030. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/enterprise_captcha_params.py +0 -98
  2031. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entities_by_group_name_filter.py +0 -188
  2032. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entities_limit_notification_rule_trigger_config.py +0 -163
  2033. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_action_notification_rule_trigger_config.py +0 -215
  2034. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_count_query.py +0 -150
  2035. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data.py +0 -254
  2036. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data_diff.py +0 -150
  2037. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data_info.py +0 -228
  2038. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data_page_link.py +0 -228
  2039. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data_query.py +0 -228
  2040. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_data_sort_order.py +0 -156
  2041. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_export_data_object.py +0 -210
  2042. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_filter.py +0 -152
  2043. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group.py +0 -400
  2044. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_export_data.py +0 -182
  2045. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_filter.py +0 -162
  2046. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_id.py +0 -162
  2047. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_info.py +0 -429
  2048. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_list_filter.py +0 -162
  2049. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_group_name_filter.py +0 -162
  2050. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_id.py +0 -160
  2051. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_key.py +0 -156
  2052. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_list_filter.py +0 -162
  2053. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_load_error.py +0 -202
  2054. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_name_filter.py +0 -162
  2055. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_relation_info.py +0 -320
  2056. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_relations_query.py +0 -152
  2057. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_subtype.py +0 -182
  2058. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_type_filter.py +0 -136
  2059. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_type_load_result.py +0 -286
  2060. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_type_version_create_config.py +0 -312
  2061. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_type_version_load_config.py +0 -306
  2062. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_type_version_load_request.py +0 -156
  2063. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_version.py +0 -202
  2064. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view.py +0 -449
  2065. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view_id.py +0 -162
  2066. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view_info.py +0 -505
  2067. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view_search_query.py +0 -180
  2068. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view_search_query_filter.py +0 -266
  2069. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/entity_view_type_filter.py +0 -182
  2070. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/error_event_filter.py +0 -188
  2071. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/escalated_notification_rule_recipients_config.py +0 -131
  2072. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/event_filter.py +0 -174
  2073. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/event_id.py +0 -127
  2074. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/event_info.py +0 -286
  2075. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/exportable_entity_entity_id.py +0 -150
  2076. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/favicon.py +0 -124
  2077. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/features_info.py +0 -254
  2078. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/group_entity_export_data.py +0 -130
  2079. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/group_permission.py +0 -370
  2080. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/group_permission_id.py +0 -162
  2081. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/group_permission_info.py +0 -560
  2082. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/home_dashboard.py +0 -478
  2083. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/home_menu_item.py +0 -320
  2084. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/input_stream.py +0 -98
  2085. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/integration.py +0 -571
  2086. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/integration_converters_info.py +0 -136
  2087. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/integration_id.py +0 -162
  2088. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/integration_info.py +0 -460
  2089. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/integration_lifecycle_event_notification_rule_trigger_config.py +0 -222
  2090. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/json_node.py +0 -98
  2091. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/json_transport_payload_configuration.py +0 -104
  2092. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/key_filter.py +0 -182
  2093. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/key_filter_predicate.py +0 -136
  2094. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/last_visited_dashboard_info.py +0 -210
  2095. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/license_usage_info.py +0 -332
  2096. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/life_cycle_event_filter.py +0 -222
  2097. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/locale_code_upload_body.py +0 -125
  2098. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/login_request.py +0 -156
  2099. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/login_response.py +0 -156
  2100. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/login_white_labeling_params.py +0 -682
  2101. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lw_m2_m_bootstrap_server_credential.py +0 -136
  2102. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lw_m2_m_server_security_config_default.py +0 -490
  2103. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lw_m2m_instance.py +0 -154
  2104. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lw_m2m_object.py +0 -266
  2105. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lw_m2m_resource_observe.py +0 -266
  2106. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lwm2m_device_profile_transport_configuration.py +0 -208
  2107. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/lwm2m_device_transport_configuration.py +0 -214
  2108. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mapping.py +0 -202
  2109. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/menu_item.py +0 -152
  2110. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/merged_group_permission_info.py +0 -163
  2111. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/merged_group_type_permission_info.py +0 -154
  2112. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/merged_user_permissions.py +0 -273
  2113. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_app_delivery_method_notification_template.py +0 -157
  2114. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_app_notification_delivery_method_config.py +0 -182
  2115. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_app_settings_id.py +0 -113
  2116. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_redirect_params.py +0 -154
  2117. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_self_registration_params.py +0 -98
  2118. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mobile_session_info.py +0 -124
  2119. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/model.py +0 -162
  2120. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mqtt_device_profile_transport_configuration.py +0 -286
  2121. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/mqtt_device_transport_configuration.py +0 -104
  2122. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/new_platform_version_notification_rule_trigger_config.py +0 -104
  2123. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/no_sec_lw_m2_m_bootstrap_server_credential.py +0 -440
  2124. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/node_connection_info.py +0 -185
  2125. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification.py +0 -402
  2126. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_delivery_method_config.py +0 -134
  2127. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_id.py +0 -162
  2128. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_info.py +0 -185
  2129. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_request.py +0 -417
  2130. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_request_config.py +0 -124
  2131. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_request_id.py +0 -162
  2132. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_request_preview.py +0 -202
  2133. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_request_stats.py +0 -202
  2134. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_rule_config.py +0 -124
  2135. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_rule_id.py +0 -162
  2136. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_rule_recipients_config.py +0 -139
  2137. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_rule_trigger_config.py +0 -135
  2138. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_template_config.py +0 -125
  2139. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/notification_template_id.py +0 -162
  2140. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/numeric_filter_predicate.py +0 -162
  2141. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_basic_mapper_config.py +0 -381
  2142. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_client_info.py +0 -267
  2143. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_client_registration_template.py +0 -565
  2144. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_client_registration_template_id.py +0 -127
  2145. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_custom_mapper_config.py +0 -202
  2146. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_domain_info.py +0 -162
  2147. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_info.py +0 -183
  2148. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_mapper_config.py +0 -241
  2149. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_mobile_info.py +0 -156
  2150. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_params_info.py +0 -185
  2151. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/o_auth2_registration_info.py +0 -502
  2152. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/object_attributes.py +0 -410
  2153. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/object_node.py +0 -98
  2154. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/originator_entity_owner_users_filter.py +0 -104
  2155. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/ota_package.py +0 -576
  2156. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/ota_package_id.py +0 -162
  2157. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/ota_package_info.py +0 -550
  2158. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/ota_package_ota_package_id_body.py +0 -184
  2159. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/other_configuration.py +0 -364
  2160. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_blob_entity_with_customer_info.py +0 -210
  2161. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_contact_basedobject.py +0 -210
  2162. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_converter.py +0 -210
  2163. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_customer_info.py +0 -210
  2164. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_edge.py +0 -210
  2165. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_edge_event.py +0 -210
  2166. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_edge_info.py +0 -210
  2167. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_entity_group_info.py +0 -210
  2168. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_entity_version.py +0 -210
  2169. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_entity_view_info.py +0 -210
  2170. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_event_info.py +0 -210
  2171. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_integration.py +0 -210
  2172. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_integration_info.py +0 -210
  2173. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_ota_package_info.py +0 -210
  2174. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_queue.py +0 -210
  2175. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_role.py +0 -210
  2176. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_rule_chain.py +0 -210
  2177. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_scheduler_event_info.py +0 -210
  2178. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_secret_info.py +0 -197
  2179. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_short_entity_view.py +0 -210
  2180. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_user_email_info.py +0 -210
  2181. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/page_data_user_info.py +0 -210
  2182. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/palette.py +0 -183
  2183. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/palette_settings.py +0 -152
  2184. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/platform_two_fa_settings.py +0 -257
  2185. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/platform_users_notification_target_config.py +0 -131
  2186. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/power_saving_configuration.py +0 -208
  2187. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/processing_strategy.py +0 -234
  2188. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/proto_transport_payload_configuration.py +0 -260
  2189. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/psklw_m2_m_bootstrap_server_credential.py +0 -440
  2190. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/queue.py +0 -410
  2191. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/raw_data_event_filter.py +0 -216
  2192. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/relation_entity_type_filter.py +0 -189
  2193. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/relations_query_filter.py +0 -350
  2194. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/relations_search_parameters.py +0 -284
  2195. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/repeating_alarm_condition_spec.py +0 -130
  2196. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/report_config.py +0 -381
  2197. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/repository_settings.py +0 -390
  2198. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/repository_settings_info.py +0 -150
  2199. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/reset_password_email_request.py +0 -126
  2200. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/reset_password_request.py +0 -154
  2201. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/resource.py +0 -306
  2202. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/response_entity.py +0 -182
  2203. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/role.py +0 -371
  2204. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/role_id.py +0 -162
  2205. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rpc.py +0 -344
  2206. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rpc_id.py +0 -162
  2207. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rpklw_m2_m_bootstrap_server_credential.py +0 -440
  2208. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain.py +0 -402
  2209. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_connection_info.py +0 -210
  2210. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_data.py +0 -156
  2211. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_debug_event_filter.py +0 -240
  2212. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_export_data.py +0 -156
  2213. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_id.py +0 -162
  2214. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_import_result.py +0 -202
  2215. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_meta_data.py +0 -269
  2216. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_chain_output_labels_usage.py +0 -239
  2217. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_engine_component_lifecycle_event_notification_rule_trigger_config.py +0 -274
  2218. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_node.py +0 -424
  2219. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_node_debug_event_filter.py +0 -448
  2220. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/rule_node_id.py +0 -162
  2221. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/save_device_with_credentials_request.py +0 -152
  2222. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/save_ota_package_info_request.py +0 -578
  2223. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/scheduler_event.py +0 -444
  2224. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/scheduler_event_filter.py +0 -156
  2225. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/scheduler_event_id.py +0 -162
  2226. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/scheduler_event_info.py +0 -418
  2227. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/scheduler_event_with_customer_info.py +0 -474
  2228. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/secret.py +0 -282
  2229. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/secret_id.py +0 -143
  2230. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/secret_info.py +0 -253
  2231. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/security_settings.py +0 -266
  2232. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/self_registration_params.py +0 -630
  2233. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/share_group_request.py +0 -235
  2234. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/shared_attributes_setting_snmp_communication_config.py +0 -130
  2235. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/short_customer_info.py +0 -204
  2236. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/short_entity_view.py +0 -154
  2237. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sign_up_field.py +0 -184
  2238. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sign_up_request.py +0 -294
  2239. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sign_up_self_registration_params.py +0 -266
  2240. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/simple_alarm_condition_spec.py +0 -104
  2241. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/single_entity_filter.py +0 -130
  2242. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/single_entity_version_create_request.py +0 -156
  2243. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/single_entity_version_load_request.py +0 -182
  2244. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/slack_conversation.py +0 -263
  2245. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/slack_delivery_method_notification_template.py +0 -104
  2246. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/slack_notification_delivery_method_config.py +0 -131
  2247. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/slack_notification_target_config.py +0 -163
  2248. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/smpp_sms_provider_configuration.py +0 -541
  2249. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sms_delivery_method_notification_template.py +0 -104
  2250. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sms_provider_configuration.py +0 -135
  2251. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sms_two_fa_account_config.py +0 -131
  2252. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/sms_two_fa_provider_config.py +0 -157
  2253. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/snmp_communication_config.py +0 -142
  2254. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/snmp_device_profile_transport_configuration.py +0 -182
  2255. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/snmp_device_transport_configuration.py +0 -434
  2256. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/snmp_mapping.py +0 -182
  2257. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/solution_install_response.py +0 -260
  2258. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/specific_time_schedule.py +0 -208
  2259. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/starred_dashboard_info.py +0 -182
  2260. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/state_entity_owner_filter.py +0 -130
  2261. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/statistics_event_filter.py +0 -244
  2262. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/string_filter_predicate.py +0 -188
  2263. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/submit_strategy.py +0 -156
  2264. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/subscription_usage.py +0 -540
  2265. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/system_administrators_filter.py +0 -104
  2266. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/system_info.py +0 -152
  2267. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/system_info_data.py +0 -322
  2268. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/task_processing_failure_notification_rule_trigger_config.py +0 -98
  2269. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tb_image_delete_result.py +0 -176
  2270. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tb_resource.py +0 -594
  2271. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tb_resource_id.py +0 -162
  2272. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tb_resource_info.py +0 -540
  2273. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tb_secret_delete_result.py +0 -137
  2274. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/telemetry_entity_view.py +0 -154
  2275. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/telemetry_mapping_configuration.py +0 -228
  2276. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/telemetry_querying_snmp_communication_config.py +0 -156
  2277. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_administrators_filter.py +0 -156
  2278. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_profile_configuration.py +0 -133
  2279. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_profile_data.py +0 -154
  2280. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_profile_id.py +0 -162
  2281. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_profile_queue_configuration.py +0 -332
  2282. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_solution_template_details.py +0 -376
  2283. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_solution_template_info.py +0 -440
  2284. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/tenant_solution_template_instructions.py +0 -232
  2285. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/test_sms_request.py +0 -182
  2286. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/thingsboard_credentials_expired_response.py +0 -238
  2287. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/thingsboard_error_response.py +0 -210
  2288. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/to_device_rpc_request_snmp_communication_config.py +0 -130
  2289. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/totp_two_fa_account_config.py +0 -131
  2290. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/totp_two_fa_provider_config.py +0 -131
  2291. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/translation_info.py +0 -238
  2292. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/transport_payload_type_configuration.py +0 -134
  2293. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/ts_value.py +0 -176
  2294. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/twilio_sms_provider_configuration.py +0 -188
  2295. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/two_fa_account_config.py +0 -162
  2296. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/two_fa_account_config_update_request.py +0 -124
  2297. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/two_fa_provider_config.py +0 -136
  2298. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/two_fa_provider_info.py +0 -234
  2299. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/update_message.py +0 -266
  2300. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user.py +0 -484
  2301. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_dashboards_info.py +0 -154
  2302. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_email_info.py +0 -208
  2303. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_group_list_filter.py +0 -131
  2304. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_id.py +0 -162
  2305. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_info.py +0 -540
  2306. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_list_filter.py +0 -131
  2307. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_password_policy.py +0 -378
  2308. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/user_role_filter.py +0 -131
  2309. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/users_filter.py +0 -142
  2310. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/v2_captcha_params.py +0 -98
  2311. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/v3_captcha_params.py +0 -98
  2312. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/vendor.py +0 -150
  2313. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_create_config.py +0 -228
  2314. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_create_request.py +0 -191
  2315. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_creation_result.py +0 -254
  2316. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_load_config.py +0 -254
  2317. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_load_request.py +0 -165
  2318. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/version_load_result.py +0 -176
  2319. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/versioned_entity_info.py +0 -150
  2320. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/web_delivery_method_notification_template.py +0 -157
  2321. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/web_self_registration_params.py +0 -98
  2322. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/white_labeling.py +0 -234
  2323. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/white_labeling_params.py +0 -486
  2324. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widget_type.py +0 -342
  2325. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widget_type_details.py +0 -426
  2326. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widget_type_export_data.py +0 -130
  2327. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widget_type_id.py +0 -162
  2328. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widget_type_info.py +0 -428
  2329. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widgets_bundle_export_data.py +0 -182
  2330. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/widgets_bundle_id.py +0 -162
  2331. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/x509_certificate_chain_provision_configuration.py +0 -156
  2332. tb_rest_client-4.1.0/tb_rest_client/models/models_pe/x509_lw_m2_m_bootstrap_server_credential.py +0 -440
  2333. tb_rest_client-4.1.0/tb_rest_client/rest.py +0 -342
  2334. tb_rest_client-4.1.0/tb_rest_client/rest_client_base.py +0 -2281
  2335. tb_rest_client-4.1.0/tb_rest_client/rest_client_ce.py +0 -1284
  2336. tb_rest_client-4.1.0/tb_rest_client/rest_client_pe.py +0 -1981
  2337. {tb_rest_client-4.1.0 → tb_rest_client-4.3}/LICENSE +0 -0
  2338. {tb_rest_client-4.1.0 → tb_rest_client-4.3}/tb_rest_client/models/models_ce/mobile_app_settings.py +0 -0
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: tb-rest-client
3
+ Version: 4.3
4
+ Summary: ThingsBoard REST API client
5
+ License: Apache-2.0
6
+ License-File: LICENSE
7
+ Keywords: tb-python-rest-client,tb-rest-client
8
+ Author: ThingsBoard
9
+ Author-email: info@thingsboard.io
10
+ Maintainer: Vitalii Bidochka
11
+ Maintainer-email: vbidochka@thingsboard.io
12
+ Requires-Python: >=3.9,<4.0
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Requires-Dist: certifi (>=2023.7.22)
22
+ Requires-Dist: pyjwt (>=2.6.0)
23
+ Requires-Dist: python_dateutil (>=2.5.3)
24
+ Requires-Dist: requests (>=2.31.0)
25
+ Requires-Dist: setuptools (>=21.0.0)
26
+ Requires-Dist: six (>=1.10)
27
+ Requires-Dist: urllib3 (>=2.0.7)
28
+ Project-URL: Documentation, https://thingsboard.io/docs/reference/python-rest-client/
29
+ Project-URL: Homepage, https://thingsboard.io/docs/reference/python-rest-client/
30
+ Project-URL: Repository, https://github.com/thingsboard/thingsboard-python-rest-client
31
+ Description-Content-Type: text/markdown
32
+
33
+ # ThingsBoard Python REST API client
34
+
35
+ [![Join our Discord](https://img.shields.io/badge/Discord-Join%20our%20server-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/mJxDjAM3PF)
36
+
37
+ The ThingsBoard REST API Client helps you interact with [ThingsBoard REST API](https://thingsboard.io/docs/reference/rest-api/) from your Python script.
38
+ With [Python Rest Client](https://thingsboard.io/docs/reference/python-rest-client/) you can programmatically create assets, devices, customers, users and other entities and their relations in ThingsBoard.
39
+
40
+ The recommended method for installing the Rest Client is a pip.
41
+
42
+ *The Python version of the REST API client is under developing. If you have discovered any bug, please write us using email or by opening the issue.*
43
+
44
+
45
+ ##### Installation
46
+
47
+ In order to install the ThingsBoard REST client, you should use the following command:
48
+
49
+ ```bash
50
+ pip3 install tb-rest-client
51
+ ```
52
+
53
+
54
+ ##### Examples
55
+
56
+ You can find the examples of the usage in the "examples" folder or on the [our website](https://thingsboard.io/docs/reference/python-rest-client/).
57
+
58
+
59
+ **Note:** There are 2 REST clients for ThingsBoard, they are depend on version of the ThingsBoard, you use.
60
+
61
+ - If you use the ThingsBoard Community Edition (ThingsBoard CE) - please use the following command to import the REST client into your script:
62
+ `from tb_rest_client.rest_client_ce import *`
63
+ The REST client class has name "RestClientCE".
64
+
65
+ - If you use the ThingsBoard Professional Edition (ThingsBoard PE) - please use the following command to import the REST client into your script:
66
+ `from tb_rest_client.rest_client_pe import *`
67
+ The REST client class has name "RestClientPE".
68
+
69
+ If you use the wrong version of the REST client, it could work unexpectedly.
70
+
71
+
72
+ ## Support
73
+
74
+ - [Join our Discord](https://discord.gg/mJxDjAM3PF)
75
+ - [Community chat](https://gitter.im/thingsboard/chat)
76
+ - [Q&A forum](https://groups.google.com/forum/#!forum/thingsboard)
77
+ - [Stackoverflow](http://stackoverflow.com/questions/tagged/thingsboard)
78
+
79
+ **Don't forget to star the repository to show your ❤️ and support.**
80
+
81
+
82
+ ## Licenses
83
+
84
+ This project is released under [Apache 2.0 License](./LICENSE).
85
+
@@ -0,0 +1,52 @@
1
+ # ThingsBoard Python REST API client
2
+
3
+ [![Join our Discord](https://img.shields.io/badge/Discord-Join%20our%20server-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/mJxDjAM3PF)
4
+
5
+ The ThingsBoard REST API Client helps you interact with [ThingsBoard REST API](https://thingsboard.io/docs/reference/rest-api/) from your Python script.
6
+ With [Python Rest Client](https://thingsboard.io/docs/reference/python-rest-client/) you can programmatically create assets, devices, customers, users and other entities and their relations in ThingsBoard.
7
+
8
+ The recommended method for installing the Rest Client is a pip.
9
+
10
+ *The Python version of the REST API client is under developing. If you have discovered any bug, please write us using email or by opening the issue.*
11
+
12
+
13
+ ##### Installation
14
+
15
+ In order to install the ThingsBoard REST client, you should use the following command:
16
+
17
+ ```bash
18
+ pip3 install tb-rest-client
19
+ ```
20
+
21
+
22
+ ##### Examples
23
+
24
+ You can find the examples of the usage in the "examples" folder or on the [our website](https://thingsboard.io/docs/reference/python-rest-client/).
25
+
26
+
27
+ **Note:** There are 2 REST clients for ThingsBoard, they are depend on version of the ThingsBoard, you use.
28
+
29
+ - If you use the ThingsBoard Community Edition (ThingsBoard CE) - please use the following command to import the REST client into your script:
30
+ `from tb_rest_client.rest_client_ce import *`
31
+ The REST client class has name "RestClientCE".
32
+
33
+ - If you use the ThingsBoard Professional Edition (ThingsBoard PE) - please use the following command to import the REST client into your script:
34
+ `from tb_rest_client.rest_client_pe import *`
35
+ The REST client class has name "RestClientPE".
36
+
37
+ If you use the wrong version of the REST client, it could work unexpectedly.
38
+
39
+
40
+ ## Support
41
+
42
+ - [Join our Discord](https://discord.gg/mJxDjAM3PF)
43
+ - [Community chat](https://gitter.im/thingsboard/chat)
44
+ - [Q&A forum](https://groups.google.com/forum/#!forum/thingsboard)
45
+ - [Stackoverflow](http://stackoverflow.com/questions/tagged/thingsboard)
46
+
47
+ **Don't forget to star the repository to show your ❤️ and support.**
48
+
49
+
50
+ ## Licenses
51
+
52
+ This project is released under [Apache 2.0 License](./LICENSE).
@@ -0,0 +1,28 @@
1
+ [tool.poetry]
2
+ name = "tb-rest-client"
3
+ version = "4.3"
4
+ description = "ThingsBoard REST API client"
5
+ authors = ["ThingsBoard <info@thingsboard.io>"]
6
+ license = "Apache-2.0"
7
+ readme = "README.md"
8
+ homepage = "https://thingsboard.io/docs/reference/python-rest-client/"
9
+ repository = "https://github.com/thingsboard/thingsboard-python-rest-client"
10
+ documentation = "https://thingsboard.io/docs/reference/python-rest-client/"
11
+ keywords = ["tb-python-rest-client", "tb-rest-client"]
12
+ maintainers = [
13
+ "Vitalii Bidochka <vbidochka@thingsboard.io>"
14
+ ]
15
+
16
+ [tool.poetry.dependencies]
17
+ python = "^3.9"
18
+ certifi = ">=2023.7.22"
19
+ six = ">=1.10"
20
+ python_dateutil = ">=2.5.3"
21
+ setuptools = ">=21.0.0"
22
+ urllib3 = ">=2.0.7"
23
+ requests = ">=2.31.0"
24
+ pyjwt = ">=2.6.0"
25
+
26
+ [build-system]
27
+ requires = ["poetry-core"]
28
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,16 @@
1
+ # Copyright 2026. ThingsBoard
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from .rest_client_ce import RestClientCE
16
+ from .rest_client_pe import RestClientPE
@@ -0,0 +1,14 @@
1
+ # Copyright 2026. ThingsBoard
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
@@ -0,0 +1,70 @@
1
+ # Copyright 2026. ThingsBoard
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from __future__ import absolute_import
16
+
17
+ from .o_auth_2_config_template_controller_api import OAuth2ConfigTemplateControllerApi
18
+ from .asset_controller_api import AssetControllerApi
19
+ from .rule_chain_controller_api import RuleChainControllerApi
20
+ from .auth_controller_api import AuthControllerApi
21
+ from .event_controller_api import EventControllerApi
22
+ from .telemetry_controller_api import TelemetryControllerApi
23
+ from .alarm_controller_api import AlarmControllerApi
24
+ from .edge_controller_api import EdgeControllerApi
25
+ from .rpc_v_2_controller_api import RpcV2ControllerApi
26
+ from .edge_event_controller_api import EdgeEventControllerApi
27
+ from .customer_controller_api import CustomerControllerApi
28
+ from .user_controller_api import UserControllerApi
29
+ from .queue_controller_api import QueueControllerApi
30
+ from .rpc_v_1_controller_api import RpcV1ControllerApi
31
+ from .device_controller_api import DeviceControllerApi
32
+ from .entity_relation_controller_api import EntityRelationControllerApi
33
+ from .entity_view_controller_api import EntityViewControllerApi
34
+ from .admin_controller_api import AdminControllerApi
35
+ from .tb_resource_controller_api import TbResourceControllerApi
36
+ from .o_auth_2_controller_api import OAuth2ControllerApi
37
+ from .tenant_profile_controller_api import TenantProfileControllerApi
38
+ from .widgets_bundle_controller_api import WidgetsBundleControllerApi
39
+ from .device_profile_controller_api import DeviceProfileControllerApi
40
+ from .dashboard_controller_api import DashboardControllerApi
41
+ from .entity_query_controller_api import EntityQueryControllerApi
42
+ from .widget_type_controller_api import WidgetTypeControllerApi
43
+ from .audit_log_controller_api import AuditLogControllerApi
44
+ from .lwm_2m_controller_api import Lwm2mControllerApi
45
+ from .component_descriptor_controller_api import ComponentDescriptorControllerApi
46
+ from .tenant_controller_api import TenantControllerApi
47
+ from .ota_package_controller_api import OtaPackageControllerApi
48
+ from .entities_version_control_controller_api import EntitiesVersionControlControllerApi
49
+ from .device_api_controller_api import DeviceApiControllerApi
50
+ from .two_factor_auth_controller_api import TwoFactorAuthControllerApi
51
+ from .alarm_comment_controller_api import AlarmCommentControllerApi
52
+ from .asset_profile_controller_api import AssetProfileControllerApi
53
+ from .notification_controller_api import NotificationControllerApi
54
+ from .notification_rule_controller_api import NotificationRuleControllerApi
55
+ from .notification_target_controller_api import NotificationTargetControllerApi
56
+ from .notification_template_controller_api import NotificationTemplateControllerApi
57
+ from .usage_info_controller_api import UsageInfoControllerApi
58
+ from .two_factor_auth_config_controller_api import TwoFactorAuthConfigControllerApi
59
+ from .image_controller_api import ImageControllerApi
60
+ from .queue_stats_controller_api import QueueStatsControllerApi
61
+ from .domain_controller_api import DomainControllerApi
62
+ from .mobile_app_controller_api import MobileAppControllerApi
63
+ from .mobile_app_bundle_controller_api import MobileAppBundleControllerApi
64
+ from .qr_code_settings_controller_api import QrCodeSettingsControllerApi
65
+ from .rule_engine_controller_api import RuleEngineControllerApi
66
+ from .calculated_field_controller_api import CalculatedFieldControllerApi
67
+ from .job_controller_api import JobControllerApi
68
+ from .trendz_controller_api import TrendzControllerApi
69
+ from .ai_model_controller_api import AiModelControllerApi
70
+ from .api_key_controller_api import ApiKeyControllerApi