seeq 66.68.0.20251029__py3-none-any.whl → 66.90.0.20251219__py3-none-any.whl

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 (662) hide show
  1. seeq/sdk/__init__.py +60 -2
  2. seeq/sdk/api/__init__.py +4 -2
  3. seeq/sdk/api/access_keys_api.py +1 -1
  4. seeq/sdk/api/add_ons_api.py +1 -1
  5. seeq/sdk/api/agents_api.py +1 -1
  6. seeq/sdk/api/annotations_api.py +1 -1
  7. seeq/sdk/api/assets_api.py +1 -1
  8. seeq/sdk/api/audit_api.py +1 -1
  9. seeq/sdk/api/auth_api.py +1 -1
  10. seeq/sdk/api/cache_api.py +1 -1
  11. seeq/sdk/api/condition_monitors_api.py +1 -1
  12. seeq/sdk/api/conditions_api.py +115 -1
  13. seeq/sdk/api/content_api.py +1 -1
  14. seeq/sdk/api/context_api.py +949 -39
  15. seeq/sdk/api/datafiles_api.py +1 -1
  16. seeq/sdk/api/datasources_api.py +1 -1
  17. seeq/sdk/api/display_templates_api.py +1 -1
  18. seeq/sdk/api/displays_api.py +1 -1
  19. seeq/sdk/api/export_api.py +1 -1
  20. seeq/sdk/api/folders_api.py +355 -1
  21. seeq/sdk/api/formulas_api.py +115 -1
  22. seeq/sdk/api/graph_ql_api.py +1 -1
  23. seeq/sdk/api/hierarchies_api.py +1 -1
  24. seeq/sdk/api/items_api.py +118 -1
  25. seeq/sdk/api/jobs_api.py +1 -1
  26. seeq/sdk/api/logs_api.py +120 -1
  27. seeq/sdk/api/markdown_items_api.py +1 -1
  28. seeq/sdk/api/markdown_links_api.py +1 -1
  29. seeq/sdk/api/materialized_tables_api.py +133 -5
  30. seeq/sdk/api/metrics_api.py +1 -1
  31. seeq/sdk/api/models_api.py +364 -1
  32. seeq/sdk/api/monitors_api.py +1 -1
  33. seeq/sdk/api/networks_api.py +1 -1
  34. seeq/sdk/api/notification_configurations_api.py +1 -1
  35. seeq/sdk/api/notifier_api.py +1 -1
  36. seeq/sdk/api/plugins_api.py +1 -1
  37. seeq/sdk/api/projects_api.py +1 -1
  38. seeq/sdk/api/report_templates_api.py +1 -1
  39. seeq/sdk/api/reports_api.py +1 -1
  40. seeq/sdk/api/requests_api.py +1 -1
  41. seeq/sdk/api/scalars_api.py +1 -1
  42. seeq/sdk/api/scim_api.py +1 -1
  43. seeq/sdk/api/sharing_api.py +390 -0
  44. seeq/sdk/api/signal_monitors_api.py +1 -1
  45. seeq/sdk/api/signals_api.py +1 -1
  46. seeq/sdk/api/stored_tables_api.py +871 -0
  47. seeq/sdk/api/subscriptions_api.py +1 -1
  48. seeq/sdk/api/system_api.py +1 -1
  49. seeq/sdk/api/table_definitions_api.py +2 -2
  50. seeq/sdk/api/trees_api.py +1 -1
  51. seeq/sdk/api/usage_api.py +1 -1
  52. seeq/sdk/api/user_groups_api.py +1 -1
  53. seeq/sdk/api/users_api.py +124 -3
  54. seeq/sdk/api/workbooks_api.py +127 -1
  55. seeq/sdk/api_client.py +2 -2
  56. seeq/sdk/configuration.py +3 -3
  57. seeq/sdk/models/__init__.py +58 -2
  58. seeq/sdk/models/access_key_input_v1.py +1 -1
  59. seeq/sdk/models/access_key_output_list_v1.py +1 -1
  60. seeq/sdk/models/access_key_output_v1.py +30 -2
  61. seeq/sdk/models/ace_input_v1.py +1 -1
  62. seeq/sdk/models/ace_output_v1.py +1 -1
  63. seeq/sdk/models/acl_input_v1.py +1 -1
  64. seeq/sdk/models/acl_output_v1.py +1 -1
  65. seeq/sdk/models/activity_graph_output_v1.py +1 -1
  66. seeq/sdk/models/activity_output_v1.py +1 -1
  67. seeq/sdk/models/add_on_input_v1.py +1 -1
  68. seeq/sdk/models/add_on_output_list_v1.py +1 -1
  69. seeq/sdk/models/add_on_output_v1.py +1 -1
  70. seeq/sdk/models/add_on_preview_output_list_v1.py +1 -1
  71. seeq/sdk/models/add_on_preview_v1.py +1 -1
  72. seeq/sdk/models/add_on_tool_input_v1.py +1 -1
  73. seeq/sdk/models/add_on_tool_output_v1.py +1 -1
  74. seeq/sdk/models/administrator_contact_information_v1.py +1 -1
  75. seeq/sdk/models/agent_input_v1.py +1 -1
  76. seeq/sdk/models/agent_key_output_v1.py +1 -1
  77. seeq/sdk/models/agent_orchestrator_output_v1.py +1 -1
  78. seeq/sdk/models/agent_output_v1.py +1 -1
  79. seeq/sdk/models/agent_status_output_v1.py +1 -1
  80. seeq/sdk/models/agent_status_v1.py +1 -1
  81. seeq/sdk/models/all_context_output_v1.py +216 -0
  82. seeq/sdk/models/annotation_image_link_output_v1.py +1 -1
  83. seeq/sdk/models/annotation_input_v1.py +1 -1
  84. seeq/sdk/models/annotation_interest_input_v1.py +1 -1
  85. seeq/sdk/models/annotation_interest_output_v1.py +1 -1
  86. seeq/sdk/models/annotation_list_output_v1.py +1 -1
  87. seeq/sdk/models/annotation_output_v1.py +1 -1
  88. seeq/sdk/models/archive_output_v1.py +1 -1
  89. seeq/sdk/models/asset_batch_input_v1.py +1 -1
  90. seeq/sdk/models/asset_error.py +1 -1
  91. seeq/sdk/models/asset_group_asset_input_v1.py +1 -1
  92. seeq/sdk/models/asset_group_input_v1.py +1 -1
  93. seeq/sdk/models/asset_group_output_v1.py +1 -1
  94. seeq/sdk/models/asset_group_root_input_v1.py +1 -1
  95. seeq/sdk/models/asset_group_tree_output_v1.py +1 -1
  96. seeq/sdk/models/asset_input_v1.py +1 -1
  97. seeq/sdk/models/asset_output_v1.py +1 -1
  98. seeq/sdk/models/asset_selection_input_v1.py +1 -1
  99. seeq/sdk/models/asset_selection_output_v1.py +1 -1
  100. seeq/sdk/models/asset_tree_batch_input_v1.py +1 -1
  101. seeq/sdk/models/asset_tree_output_v1.py +1 -1
  102. seeq/sdk/models/asset_tree_single_input_v1.py +1 -1
  103. seeq/sdk/models/attachment_input_v1.py +1 -1
  104. seeq/sdk/models/audit_output_list_v1.py +1 -1
  105. seeq/sdk/models/audit_output_v1.py +1 -1
  106. seeq/sdk/models/auth_input_v1.py +1 -1
  107. seeq/sdk/models/auth_providers_output_v1.py +1 -1
  108. seeq/sdk/models/authoritative_region_output_v1.py +1 -1
  109. seeq/sdk/models/base_output.py +1 -1
  110. seeq/sdk/models/boolean_config_field_v1.py +1 -1
  111. seeq/sdk/models/cache_block.py +1 -1
  112. seeq/sdk/models/cache_info_v1.py +1 -1
  113. seeq/sdk/models/calculated_item_output_v1.py +1 -1
  114. seeq/sdk/models/capability_inheritance_output_v1.py +1 -1
  115. seeq/sdk/models/capsule_input_v1.py +1 -1
  116. seeq/sdk/models/capsule_property_input_v1.py +1 -1
  117. seeq/sdk/models/capsule_property_output_v1.py +1 -1
  118. seeq/sdk/models/capsule_v1.py +1 -1
  119. seeq/sdk/models/capsules_input_v1.py +1 -1
  120. seeq/sdk/models/capsules_output_v1.py +1 -1
  121. seeq/sdk/models/capsules_overwrite_input_v1.py +1 -1
  122. seeq/sdk/models/category_label_pair_input_v1.py +152 -0
  123. seeq/sdk/models/channel_output_v1.py +1 -1
  124. seeq/sdk/models/column_definition_bulk_edit_input_list_v1.py +1 -1
  125. seeq/sdk/models/column_definition_bulk_edit_input_v1.py +1 -1
  126. seeq/sdk/models/column_definition_input_list_v1.py +1 -1
  127. seeq/sdk/models/column_definition_input_v1.py +1 -1
  128. seeq/sdk/models/column_definition_order_input_v1.py +1 -1
  129. seeq/sdk/models/column_definition_output_v1.py +1 -1
  130. seeq/sdk/models/column_header_output_v1.py +152 -0
  131. seeq/sdk/models/column_model_input_v1.py +1 -1
  132. seeq/sdk/models/column_model_output.py +1 -1
  133. seeq/sdk/models/column_override_input_list_v1.py +1 -1
  134. seeq/sdk/models/column_override_input_v1.py +1 -1
  135. seeq/sdk/models/column_rule_ancestor_input_v1.py +1 -1
  136. seeq/sdk/models/column_rule_asset_creator_input_v1.py +1 -1
  137. seeq/sdk/models/column_rule_concat_input_v1.py +1 -1
  138. seeq/sdk/models/column_rule_constant_input_v1.py +1 -1
  139. seeq/sdk/models/column_rule_context_condition_input_v1.py +1 -1
  140. seeq/sdk/models/column_rule_datasource_input_v1.py +1 -1
  141. seeq/sdk/models/column_rule_descendant_input_v1.py +1 -1
  142. seeq/sdk/models/column_rule_descendant_search_input_v1.py +1 -1
  143. seeq/sdk/models/column_rule_event_asset_creator_input_v1.py +1 -1
  144. seeq/sdk/models/column_rule_event_property_input_v1.py +1 -1
  145. seeq/sdk/models/column_rule_find_descendant_input_v1.py +1 -1
  146. seeq/sdk/models/column_rule_find_property_input_v1.py +1 -1
  147. seeq/sdk/models/column_rule_formula_creator_input_v1.py +1 -1
  148. seeq/sdk/models/column_rule_get_item_property_input_v1.py +1 -1
  149. seeq/sdk/models/column_rule_input_v1.py +1 -1
  150. seeq/sdk/models/column_rule_item_search_input_v1.py +1 -1
  151. seeq/sdk/models/column_rule_item_type_input_v1.py +1 -1
  152. seeq/sdk/models/column_rule_manager_input_v1.py +1 -1
  153. seeq/sdk/models/column_rule_output_v1.py +1 -1
  154. seeq/sdk/models/column_rule_path_input_v1.py +1 -1
  155. seeq/sdk/models/column_rule_path_search_input_v1.py +1 -1
  156. seeq/sdk/models/column_rule_preserve_existing_input_v1.py +1 -1
  157. seeq/sdk/models/column_rule_scalar_creator_input_v1.py +1 -1
  158. seeq/sdk/models/column_rule_search_ancestor_input_v1.py +1 -1
  159. seeq/sdk/models/column_rule_set_item_property_input_v1.py +1 -1
  160. seeq/sdk/models/column_rule_text_extractor_input_v1.py +1 -1
  161. seeq/sdk/models/column_rule_text_replacement_input_v1.py +1 -1
  162. seeq/sdk/models/column_rule_tree_path_creator_input_v1.py +1 -1
  163. seeq/sdk/models/comment_category_input_v1.py +1 -1
  164. seeq/sdk/models/comment_category_output_list_v1.py +3 -1
  165. seeq/sdk/models/comment_category_output_v1.py +1 -1
  166. seeq/sdk/models/complex_object_config_field_v1.py +96 -0
  167. seeq/sdk/models/composite_filter.py +176 -0
  168. seeq/sdk/models/condition_batch_input_v1.py +1 -1
  169. seeq/sdk/models/condition_input_v1.py +1 -1
  170. seeq/sdk/models/condition_monitor_input_v1.py +3 -3
  171. seeq/sdk/models/condition_monitor_metadata_output_list_v1.py +1 -1
  172. seeq/sdk/models/condition_monitor_metadata_output_v1.py +1 -1
  173. seeq/sdk/models/condition_monitor_notification_configuration_input_v1.py +1 -1
  174. seeq/sdk/models/condition_monitor_output_v1.py +1 -1
  175. seeq/sdk/models/condition_monitor_workbook_output_v1.py +1 -1
  176. seeq/sdk/models/condition_output_v1.py +1 -1
  177. seeq/sdk/models/condition_source_v1.py +148 -0
  178. seeq/sdk/models/condition_table_input_v1.py +292 -0
  179. seeq/sdk/models/condition_table_stat_input_for_direct_items_v1.py +156 -0
  180. seeq/sdk/models/condition_table_stat_input_for_table_v1.py +182 -0
  181. seeq/sdk/models/condition_update_input_v1.py +1 -1
  182. seeq/sdk/models/config_field_v1.py +32 -2
  183. seeq/sdk/models/configuration_input_v1.py +6 -2
  184. seeq/sdk/models/configuration_option_input_v1.py +9 -1
  185. seeq/sdk/models/configuration_option_output_simple_v1.py +9 -1
  186. seeq/sdk/models/configuration_option_output_v1.py +38 -2
  187. seeq/sdk/models/configuration_output_v1.py +1 -1
  188. seeq/sdk/models/configured_directives_output_v1.py +1 -1
  189. seeq/sdk/models/connection_input_v1.py +1 -1
  190. seeq/sdk/models/connection_output_v1.py +3 -3
  191. seeq/sdk/models/connection_status_output_v1.py +1 -1
  192. seeq/sdk/models/connection_status_v1.py +1 -1
  193. seeq/sdk/models/connections_output_v1.py +1 -1
  194. seeq/sdk/models/connector_input_v1.py +1 -1
  195. seeq/sdk/models/connector_output_v1.py +1 -1
  196. seeq/sdk/models/connectors_output_v1.py +1 -1
  197. seeq/sdk/models/content_input_v1.py +1 -1
  198. seeq/sdk/models/content_output_v1.py +1 -1
  199. seeq/sdk/models/content_with_metadata_list_output_v1.py +1 -1
  200. seeq/sdk/models/content_with_metadata_output_v1.py +1 -1
  201. seeq/sdk/models/context_comment_input_v1.py +30 -2
  202. seeq/sdk/models/context_comment_list_output_v1.py +126 -0
  203. seeq/sdk/models/context_comment_output_v1.py +56 -2
  204. seeq/sdk/models/context_condition_output_list_v1.py +124 -0
  205. seeq/sdk/models/context_condition_output_v1.py +156 -0
  206. seeq/sdk/models/context_id_input_v1.py +154 -0
  207. seeq/sdk/models/context_item.py +208 -0
  208. seeq/sdk/models/context_label_input_v1.py +1 -1
  209. seeq/sdk/models/context_label_list_output_v1.py +126 -0
  210. seeq/sdk/models/context_label_output_v1.py +84 -2
  211. seeq/sdk/models/context_label_with_id_input_v1.py +1 -1
  212. seeq/sdk/models/context_numeric_input_v1.py +1 -1
  213. seeq/sdk/models/context_numeric_list_output_v1.py +126 -0
  214. seeq/sdk/models/context_numeric_output_v1.py +56 -2
  215. seeq/sdk/models/context_opaque_input_v1.py +1 -1
  216. seeq/sdk/models/context_opaque_list_output_v1.py +126 -0
  217. seeq/sdk/models/context_opaque_output_v1.py +56 -2
  218. seeq/sdk/models/context_user.py +152 -0
  219. seeq/sdk/models/csv_datafile_output_v1.py +1 -1
  220. seeq/sdk/models/datafile_input_v1.py +1 -1
  221. seeq/sdk/models/datafile_output_v1.py +1 -1
  222. seeq/sdk/models/datafiles_csv_body.py +1 -1
  223. seeq/sdk/models/datasource_access_stats_v1.py +1 -1
  224. seeq/sdk/models/datasource_cache_clear_output_v1.py +1 -1
  225. seeq/sdk/models/datasource_clean_up_input_v1.py +1 -1
  226. seeq/sdk/models/datasource_clean_up_output_v1.py +1 -1
  227. seeq/sdk/models/datasource_input_v1.py +1 -1
  228. seeq/sdk/models/datasource_output_list_v1.py +1 -1
  229. seeq/sdk/models/datasource_output_v1.py +1 -1
  230. seeq/sdk/models/datasource_pair_output_v1.py +1 -1
  231. seeq/sdk/models/datasource_pairs_output_v1.py +1 -1
  232. seeq/sdk/models/datasource_preview_v1.py +1 -1
  233. seeq/sdk/models/datasource_statistics_v1.py +1 -1
  234. seeq/sdk/models/datasource_status_output_v1.py +1 -1
  235. seeq/sdk/models/datasource_status_v1.py +1 -1
  236. seeq/sdk/models/datasource_summary_status_output_v1.py +1 -1
  237. seeq/sdk/models/datasources_status_output_v1.py +1 -1
  238. seeq/sdk/models/date_range_input_v1.py +1 -1
  239. seeq/sdk/models/date_range_output_v1.py +1 -1
  240. seeq/sdk/models/debug_cache_block_output_v1.py +1 -1
  241. seeq/sdk/models/delete_column_error_output_v1.py +1 -1
  242. seeq/sdk/models/delete_rows_input_v1.py +4 -34
  243. seeq/sdk/models/delete_rows_output_v1.py +1 -1
  244. seeq/sdk/models/derived_feature_v1.py +1 -1
  245. seeq/sdk/models/detailed_meter_output_v1.py +1 -1
  246. seeq/sdk/models/detailed_timer_output_v1.py +1 -1
  247. seeq/sdk/models/direct_item_ids_source_v1.py +154 -0
  248. seeq/sdk/models/directive_input_v1.py +1 -1
  249. seeq/sdk/models/display_input_v1.py +1 -1
  250. seeq/sdk/models/display_output_list_v1.py +1 -1
  251. seeq/sdk/models/display_output_v1.py +1 -1
  252. seeq/sdk/models/display_template_input_v1.py +1 -1
  253. seeq/sdk/models/display_template_output_list_v1.py +1 -1
  254. seeq/sdk/models/display_template_output_v1.py +1 -1
  255. seeq/sdk/models/document_backup_output_v1.py +1 -1
  256. seeq/sdk/models/double_config_field_v1.py +1 -1
  257. seeq/sdk/models/duration_config_field_v1.py +1 -1
  258. seeq/sdk/models/email_notification_recipient_output_v1.py +9 -1
  259. seeq/sdk/models/emailer_configuration_output_v1.py +1 -1
  260. seeq/sdk/models/enum_config_field_v1.py +1 -1
  261. seeq/sdk/models/export_item_v1.py +1 -1
  262. seeq/sdk/models/export_items_output_v1.py +1 -1
  263. seeq/sdk/models/export_items_v1.py +1 -1
  264. seeq/sdk/models/export_preview_list_v1.py +1 -1
  265. seeq/sdk/models/export_preview_v1.py +1 -1
  266. seeq/sdk/models/feature_argument_output_v1.py +1 -1
  267. seeq/sdk/models/feature_output_v1.py +1 -1
  268. seeq/sdk/models/feature_rule_v1.py +28 -2
  269. seeq/sdk/models/feature_value_output_v1.py +1 -1
  270. seeq/sdk/models/filter.py +174 -0
  271. seeq/sdk/models/fixed_list_search_v1.py +30 -2
  272. seeq/sdk/models/folded_stack_node_v1.py +1 -1
  273. seeq/sdk/models/folder_input_v1.py +1 -1
  274. seeq/sdk/models/folder_navigation_output_v1.py +1 -1
  275. seeq/sdk/models/folder_output_v1.py +1 -1
  276. seeq/sdk/models/folder_search_results_v1.py +274 -0
  277. seeq/sdk/models/formula_compile_input_v1.py +1 -1
  278. seeq/sdk/models/formula_compile_output_v1.py +1 -1
  279. seeq/sdk/models/formula_compiler_error_output_v1.py +1 -1
  280. seeq/sdk/models/formula_dependency_input_v1.py +1 -1
  281. seeq/sdk/models/formula_doc_example_input_v1.py +1 -1
  282. seeq/sdk/models/formula_doc_example_list_input_v1.py +1 -1
  283. seeq/sdk/models/formula_doc_input_v1.py +1 -1
  284. seeq/sdk/models/formula_doc_keyword_list_input_v1.py +1 -1
  285. seeq/sdk/models/formula_doc_output_v1.py +1 -1
  286. seeq/sdk/models/formula_doc_summaries_output_v1.py +1 -1
  287. seeq/sdk/models/formula_doc_summary_output_v1.py +1 -1
  288. seeq/sdk/models/formula_error_output_v1.py +1 -1
  289. seeq/sdk/models/formula_example_output_v1.py +1 -1
  290. seeq/sdk/models/formula_generic_output_v1.py +1 -1
  291. seeq/sdk/models/formula_item_input_v1.py +1 -1
  292. seeq/sdk/models/formula_item_output_v1.py +1 -1
  293. seeq/sdk/models/formula_log_entry.py +1 -1
  294. seeq/sdk/models/formula_log_entry_details.py +1 -1
  295. seeq/sdk/models/formula_log_v1.py +1 -1
  296. seeq/sdk/models/formula_package_import_input_v1.py +1 -1
  297. seeq/sdk/models/formula_package_import_output_v1.py +1 -1
  298. seeq/sdk/models/formula_package_input_v1.py +1 -1
  299. seeq/sdk/models/formula_package_output_v1.py +1 -1
  300. seeq/sdk/models/formula_parameter_input_v1.py +1 -1
  301. seeq/sdk/models/formula_parameter_output_v1.py +1 -1
  302. seeq/sdk/models/formula_run_input_v1.py +1 -1
  303. seeq/sdk/models/formula_run_output_v1.py +1 -1
  304. seeq/sdk/models/formula_token.py +1 -1
  305. seeq/sdk/models/formula_update_input_v1.py +1 -1
  306. seeq/sdk/models/formula_upgrade_change_v1.py +1 -1
  307. seeq/sdk/models/formula_upgrade_output_v1.py +1 -1
  308. seeq/sdk/models/function_input_v1.py +1 -1
  309. seeq/sdk/models/function_parameter_output_v1.py +1 -1
  310. seeq/sdk/models/function_variant_output_v1.py +1 -1
  311. seeq/sdk/models/gauge_datum_v1.py +1 -1
  312. seeq/sdk/models/generic_table_output_v1.py +1 -1
  313. seeq/sdk/models/get_add_on_tools_output_v1.py +1 -1
  314. seeq/sdk/models/get_all_context_input_v1.py +230 -0
  315. seeq/sdk/models/get_channels_output_v1.py +1 -1
  316. seeq/sdk/models/get_condition_monitor_items_output_v1.py +1 -1
  317. seeq/sdk/models/get_content_items_output_v1.py +1 -1
  318. seeq/sdk/models/get_context_condition_input_v1.py +126 -0
  319. seeq/sdk/models/get_context_input_v1.py +152 -0
  320. seeq/sdk/models/get_date_ranges_output_v1.py +1 -1
  321. seeq/sdk/models/get_jobs_output_v1.py +1 -1
  322. seeq/sdk/models/get_metrics_output_v1.py +1 -1
  323. seeq/sdk/models/get_organizations_output_v1.py +294 -0
  324. seeq/sdk/models/get_projects_output_v1.py +1 -1
  325. seeq/sdk/models/get_request_output_v1.py +1 -1
  326. seeq/sdk/models/get_requests_output_v1.py +3 -1
  327. seeq/sdk/models/get_sample_output_v1.py +1 -1
  328. seeq/sdk/models/get_samples_output_v1.py +1 -1
  329. seeq/sdk/models/get_signal_monitor_items_output_v1.py +1 -1
  330. seeq/sdk/models/get_signals_output_v1.py +1 -1
  331. seeq/sdk/models/graph_ql_input_v1.py +1 -1
  332. seeq/sdk/models/graph_ql_output_v1.py +1 -1
  333. seeq/sdk/models/hierarchy_input_v1.py +1 -1
  334. seeq/sdk/models/hierarchy_node_output_list_v1.py +1 -1
  335. seeq/sdk/models/hierarchy_node_output_v1.py +1 -1
  336. seeq/sdk/models/hierarchy_node_with_path_output_v1.py +1 -1
  337. seeq/sdk/models/hierarchy_output_list_v1.py +1 -1
  338. seeq/sdk/models/hierarchy_output_v1.py +20 -20
  339. seeq/sdk/models/hierarchy_search_v1.py +30 -2
  340. seeq/sdk/models/hierarchy_validation_output_v1.py +1 -1
  341. seeq/sdk/models/id_images_body.py +1 -1
  342. seeq/sdk/models/identity_mapping_list_v1.py +1 -1
  343. seeq/sdk/models/identity_mapping_v1.py +1 -1
  344. seeq/sdk/models/identity_preview_list_v1.py +1 -1
  345. seeq/sdk/models/identity_preview_v1.py +1 -1
  346. seeq/sdk/models/import_table_csv_output_v1.py +5 -1
  347. seeq/sdk/models/indexing_parameters_input_v1.py +1 -1
  348. seeq/sdk/models/input_feature_v1.py +1 -1
  349. seeq/sdk/models/installer_output_v1.py +1 -1
  350. seeq/sdk/models/instance_output_mapping_v1.py +58 -4
  351. seeq/sdk/models/instance_output_paginated_list_v1.py +1 -1
  352. seeq/sdk/models/instance_output_v1.py +86 -2
  353. seeq/sdk/models/instance_retired_output_v1.py +152 -0
  354. seeq/sdk/models/interval_v1.py +1 -1
  355. seeq/sdk/models/invalid_swap_out_v1.py +1 -1
  356. seeq/sdk/models/issue_summary_output_v1.py +1 -1
  357. seeq/sdk/models/item_batch_output_v1.py +1 -1
  358. seeq/sdk/models/item_dependency_output_v1.py +1 -1
  359. seeq/sdk/models/item_finder_input_v1.py +30 -2
  360. seeq/sdk/models/item_finder_output_list_v1.py +1 -1
  361. seeq/sdk/models/item_finder_output_v1.py +1 -1
  362. seeq/sdk/models/item_finder_searches_input_v1.py +32 -4
  363. seeq/sdk/models/item_finder_searches_output_v1.py +1 -1
  364. seeq/sdk/models/item_id_list_input_v1.py +1 -1
  365. seeq/sdk/models/item_metadata.py +1 -1
  366. seeq/sdk/models/item_output_v1.py +1 -1
  367. seeq/sdk/models/item_parameter_of_output_v1.py +1 -1
  368. seeq/sdk/models/item_preview_list_v1.py +1 -1
  369. seeq/sdk/models/item_preview_v1.py +1 -1
  370. seeq/sdk/models/item_preview_with_assets_v1.py +1 -1
  371. seeq/sdk/models/item_search_input_v1.py +1 -1
  372. seeq/sdk/models/item_search_preview_list_v1.py +1 -1
  373. seeq/sdk/models/item_search_preview_paginated_list_v1.py +1 -1
  374. seeq/sdk/models/item_search_preview_v1.py +3 -1
  375. seeq/sdk/models/item_swap_result_output_v1.py +1 -1
  376. seeq/sdk/models/item_update_output_v1.py +1 -1
  377. seeq/sdk/models/item_user_attributes_input_v1.py +1 -1
  378. seeq/sdk/models/item_user_attributes_output_v1.py +1 -1
  379. seeq/sdk/models/item_with_swap_pairs_v1.py +1 -1
  380. seeq/sdk/models/jira_attachment.py +1 -1
  381. seeq/sdk/models/jira_attachment_media_type.py +1 -1
  382. seeq/sdk/models/job_accepted_output_v1.py +1 -1
  383. seeq/sdk/models/job_output_v1.py +1 -1
  384. seeq/sdk/models/json_backup_output_v1.py +1 -1
  385. seeq/sdk/models/label_category_input_v1.py +5 -1
  386. seeq/sdk/models/label_category_output_list_v1.py +3 -1
  387. seeq/sdk/models/label_category_output_v1.py +1 -1
  388. seeq/sdk/models/label_hierarchy_input_v1.py +208 -0
  389. seeq/sdk/models/label_hierarchy_output_list_v1.py +126 -0
  390. seeq/sdk/models/label_hierarchy_output_v1.py +246 -0
  391. seeq/sdk/models/label_input_v1.py +1 -1
  392. seeq/sdk/models/label_output_list_v1.py +3 -1
  393. seeq/sdk/models/label_output_v1.py +1 -1
  394. seeq/sdk/models/last_run_state_output_v1.py +19 -1
  395. seeq/sdk/models/license_importer_output_v1.py +1 -1
  396. seeq/sdk/models/license_status_output_v1.py +1 -1
  397. seeq/sdk/models/licensed_feature_status_output_v1.py +1 -1
  398. seeq/sdk/models/list_config_field_v1.py +28 -2
  399. seeq/sdk/models/lock_error_output_v1.py +1 -1
  400. seeq/sdk/models/lock_error_path_output_v1.py +1 -1
  401. seeq/sdk/models/lock_errors_output_v1.py +1 -1
  402. seeq/sdk/models/lock_item_output_v1.py +1 -1
  403. seeq/sdk/models/locked_item_list_output_v1.py +1 -1
  404. seeq/sdk/models/log_message.py +155 -5
  405. seeq/sdk/models/log_message_input_v1.py +272 -0
  406. seeq/sdk/models/log_message_output_v1.py +300 -0
  407. seeq/sdk/models/long_config_field_v1.py +1 -1
  408. seeq/sdk/models/manual_run_input_v1.py +1 -1
  409. seeq/sdk/models/markdown_item_input_v1.py +1 -1
  410. seeq/sdk/models/markdown_item_list_v1.py +1 -1
  411. seeq/sdk/models/markdown_item_output_v1.py +1 -1
  412. seeq/sdk/models/markdown_link_upload_output_v1.py +1 -1
  413. seeq/sdk/models/markdown_links_body.py +1 -1
  414. seeq/sdk/models/materialized_table_header_v1.py +1 -1
  415. seeq/sdk/models/materialized_table_source_v1.py +212 -0
  416. seeq/sdk/models/materialized_table_v1.py +1 -1
  417. seeq/sdk/models/mention_input_v1.py +272 -0
  418. seeq/sdk/models/meter_datum_v1.py +1 -1
  419. seeq/sdk/models/migrate_editor_input_v1.py +1 -1
  420. seeq/sdk/models/model_application_error_output_v1.py +264 -0
  421. seeq/sdk/models/model_application_input_v1.py +1 -1
  422. seeq/sdk/models/model_application_mapping_v1.py +30 -2
  423. seeq/sdk/models/model_boolean_constant_rule_v1.py +124 -0
  424. seeq/sdk/models/model_derived_column_names_input_v1.py +9 -1
  425. seeq/sdk/models/model_formula_creator_rule_v1.py +1 -1
  426. seeq/sdk/models/model_from_ids_input_v1.py +1 -1
  427. seeq/sdk/models/model_output_list_v1.py +1 -1
  428. seeq/sdk/models/model_output_v1.py +32 -4
  429. seeq/sdk/models/model_rule_input_v1_list_string.py +1 -1
  430. seeq/sdk/models/model_rule_input_v1_object.py +1 -1
  431. seeq/sdk/models/model_rule_input_v1_string.py +1 -1
  432. seeq/sdk/models/model_rule_input_v1_uuid.py +1 -1
  433. seeq/sdk/models/model_scalar_creator_rule_v1.py +1 -1
  434. seeq/sdk/models/model_table_application_output_v1.py +1 -1
  435. seeq/sdk/models/model_table_applications_output_list_v1.py +1 -1
  436. seeq/sdk/models/model_table_applications_output_v1.py +30 -2
  437. seeq/sdk/models/model_v1.py +1 -1
  438. seeq/sdk/models/monitor_definition_output_v1.py +1 -1
  439. seeq/sdk/models/monitor_definitions_output_v1.py +1 -1
  440. seeq/sdk/models/monitor_input_v1.py +1 -1
  441. seeq/sdk/models/monitor_output_v1.py +1 -1
  442. seeq/sdk/models/monitor_values.py +1 -1
  443. seeq/sdk/models/monitored_condition_output_list_v1.py +9 -1
  444. seeq/sdk/models/monitored_condition_output_v1.py +13 -1
  445. seeq/sdk/models/monitored_signal_last_run_state_output_v1.py +15 -1
  446. seeq/sdk/models/monitored_signal_output_list_v1.py +1 -1
  447. seeq/sdk/models/monitored_signal_output_v1.py +7 -1
  448. seeq/sdk/models/monitors_output_v1.py +1 -1
  449. seeq/sdk/models/notifiable_report_output_list_v1.py +1 -1
  450. seeq/sdk/models/notifiable_report_output_v1.py +1 -1
  451. seeq/sdk/models/notification_configuration_output_v1.py +1 -1
  452. seeq/sdk/models/numeric_description_input_v1.py +1 -1
  453. seeq/sdk/models/numeric_description_output_list_v1.py +3 -1
  454. seeq/sdk/models/numeric_description_output_v1.py +1 -1
  455. seeq/sdk/models/one_off_model_application_input_v1.py +1 -1
  456. seeq/sdk/models/optional_report_input_v1.py +1 -1
  457. seeq/sdk/models/organization_input_v1.py +182 -0
  458. seeq/sdk/models/organization_output_v1.py +544 -0
  459. seeq/sdk/models/parameter_doc_output_v1.py +1 -1
  460. seeq/sdk/models/password_reset_input.py +1 -1
  461. seeq/sdk/models/permissions_v1.py +1 -1
  462. seeq/sdk/models/plugin_output_list_v1.py +1 -1
  463. seeq/sdk/models/plugin_output_v1.py +1 -1
  464. seeq/sdk/models/plugins_body.py +1 -1
  465. seeq/sdk/models/pre_cached_condition_capsule_property_info_v1.py +1 -1
  466. seeq/sdk/models/pre_provision_input_v1.py +1 -1
  467. seeq/sdk/models/pre_provision_output_v1.py +1 -1
  468. seeq/sdk/models/precached_item_output_v1.py +1 -1
  469. seeq/sdk/models/precached_items_output_v1.py +1 -1
  470. seeq/sdk/models/priority_v1.py +1 -1
  471. seeq/sdk/models/progress_information_output_v1.py +1 -1
  472. seeq/sdk/models/project_input_v1.py +1 -1
  473. seeq/sdk/models/project_output_v1.py +1 -1
  474. seeq/sdk/models/properties_for_item_uuid_column_input_v1.py +156 -0
  475. seeq/sdk/models/property_filter_input_v1.py +1 -1
  476. seeq/sdk/models/property_href_output_v1.py +1 -1
  477. seeq/sdk/models/property_input_v1.py +1 -1
  478. seeq/sdk/models/property_output_v1.py +1 -1
  479. seeq/sdk/models/property_search_v1.py +30 -2
  480. seeq/sdk/models/provision_input_v1.py +1 -1
  481. seeq/sdk/models/put_asset_input_v1.py +1 -1
  482. seeq/sdk/models/put_scalar_input_v1.py +1 -1
  483. seeq/sdk/models/put_scalars_input_v1.py +1 -1
  484. seeq/sdk/models/put_signals_input_v1.py +1 -1
  485. seeq/sdk/models/put_user_groups_input_v1.py +1 -1
  486. seeq/sdk/models/recompute_table_input_v1.py +124 -0
  487. seeq/sdk/models/recompute_table_output_v1.py +124 -0
  488. seeq/sdk/models/referenced_input_item_v1.py +1 -1
  489. seeq/sdk/models/referenced_items_output_v1.py +1 -1
  490. seeq/sdk/models/referenced_output_item_v1.py +1 -1
  491. seeq/sdk/models/regex_config_field_v1.py +1 -1
  492. seeq/sdk/models/regression_output_v1.py +1 -1
  493. seeq/sdk/models/release_notes_output_v1.py +1 -1
  494. seeq/sdk/models/remote_agent_directives_output_v1.py +1 -1
  495. seeq/sdk/models/remote_agent_status_input_v1.py +1 -1
  496. seeq/sdk/models/remote_agent_status_output_v1.py +1 -1
  497. seeq/sdk/models/report_input_item_v1.py +1 -1
  498. seeq/sdk/models/report_input_v1.py +1 -1
  499. seeq/sdk/models/report_notification_configuration_input_v1.py +1 -1
  500. seeq/sdk/models/report_template_input_v1.py +1 -1
  501. seeq/sdk/models/report_template_output_v1.py +1 -1
  502. seeq/sdk/models/request_output_v1.py +1 -1
  503. seeq/sdk/models/request_password_reset_input.py +1 -1
  504. seeq/sdk/models/row_id.py +1 -1
  505. seeq/sdk/models/row_id_input_list_v1.py +1 -1
  506. seeq/sdk/models/row_id_input_v1.py +1 -1
  507. seeq/sdk/models/row_rules_result_v1.py +1 -1
  508. seeq/sdk/models/rules_result_message_v1.py +1 -1
  509. seeq/sdk/models/rules_result_v1.py +1 -1
  510. seeq/sdk/models/run_condition_monitor_job_input_v1.py +1 -1
  511. seeq/sdk/models/sample_input_v1.py +1 -1
  512. seeq/sdk/models/sample_output_v1.py +1 -1
  513. seeq/sdk/models/samples_input_v1.py +1 -1
  514. seeq/sdk/models/samples_output_v1.py +1 -1
  515. seeq/sdk/models/samples_overwrite_input_v1.py +1 -1
  516. seeq/sdk/models/scalar_evaluate_output_v1.py +1 -1
  517. seeq/sdk/models/scalar_input_v1.py +1 -1
  518. seeq/sdk/models/scalar_property_v1.py +1 -1
  519. seeq/sdk/models/scalar_value_output_v1.py +1 -1
  520. seeq/sdk/models/scale_across_tree_output_v1.py +1 -1
  521. seeq/sdk/models/scaling_table_uuid_column_search_v1.py +30 -2
  522. seeq/sdk/models/schedulable_admin_list_output_v1.py +1 -1
  523. seeq/sdk/models/schedulable_admin_output_v1.py +1 -1
  524. seeq/sdk/models/schedulable_summary_day_output_v1.py +1 -1
  525. seeq/sdk/models/schedulable_summary_week_output_v1.py +1 -1
  526. seeq/sdk/models/schedulable_workbook_output_v1.py +13 -1
  527. seeq/sdk/models/schedule_input_v1.py +1 -1
  528. seeq/sdk/models/schedule_output_v1.py +1 -1
  529. seeq/sdk/models/scheduled_notebook_input_v1.py +22 -2
  530. seeq/sdk/models/scheduled_notebook_list_output_v1.py +1 -1
  531. seeq/sdk/models/scheduled_notebook_output_v1.py +1 -1
  532. seeq/sdk/models/scheduled_notebook_result_input_v1.py +1 -1
  533. seeq/sdk/models/scim_token_input_v1.py +1 -1
  534. seeq/sdk/models/scim_token_output_v1.py +1 -1
  535. seeq/sdk/models/screenshot_output_v1.py +1 -1
  536. seeq/sdk/models/secret_config_field_v1.py +1 -1
  537. seeq/sdk/models/secret_status.py +1 -1
  538. seeq/sdk/models/see_also_doc_output_v1.py +1 -1
  539. seeq/sdk/models/send_email_attachment_v1.py +1 -1
  540. seeq/sdk/models/send_email_contact_v1.py +1 -1
  541. seeq/sdk/models/send_email_input_v1.py +1 -1
  542. seeq/sdk/models/sent_email_attachment_output_v1.py +1 -1
  543. seeq/sdk/models/sent_email_output_v1.py +1 -1
  544. seeq/sdk/models/sent_emails_list_output_v1.py +1 -1
  545. seeq/sdk/models/server_build_info_output_v1.py +1 -1
  546. seeq/sdk/models/server_load_output_v1.py +1 -1
  547. seeq/sdk/models/server_spec_output_v1.py +1 -1
  548. seeq/sdk/models/server_status_output_v1.py +1 -1
  549. seeq/sdk/models/set_trust_input_v1.py +124 -0
  550. seeq/sdk/models/shared_item_information.py +180 -0
  551. seeq/sdk/models/signal_input_v1.py +1 -1
  552. seeq/sdk/models/signal_monitor_input_v1.py +3 -1
  553. seeq/sdk/models/signal_monitor_metadata_output_list_v1.py +1 -1
  554. seeq/sdk/models/signal_monitor_metadata_output_v1.py +1 -1
  555. seeq/sdk/models/signal_monitor_output_v1.py +1 -1
  556. seeq/sdk/models/signal_monitor_workbook_output_v1.py +1 -1
  557. seeq/sdk/models/signal_output_v1.py +1 -1
  558. seeq/sdk/models/signal_with_id_input_v1.py +1 -1
  559. seeq/sdk/models/simple_filter.py +152 -0
  560. seeq/sdk/models/status_message.py +3 -1
  561. seeq/sdk/models/status_message_base.py +1 -1
  562. seeq/sdk/models/store_secret_input_v1.py +1 -1
  563. seeq/sdk/models/stored_table_column_input_v1.py +320 -0
  564. seeq/sdk/models/stored_table_column_output_v1.py +388 -0
  565. seeq/sdk/models/stored_table_csv_input_v1.py +330 -0
  566. seeq/sdk/models/stored_table_delete_rows_input_v1.py +126 -0
  567. seeq/sdk/models/stored_table_output_v1.py +522 -0
  568. seeq/sdk/models/stored_table_search_v1.py +274 -0
  569. seeq/sdk/models/storedtables_csv_body.py +126 -0
  570. seeq/sdk/models/string_config_field_v1.py +1 -1
  571. seeq/sdk/models/subscription_input_v1.py +1 -1
  572. seeq/sdk/models/subscription_output_v1.py +1 -1
  573. seeq/sdk/models/subscription_update_input_v1.py +1 -1
  574. seeq/sdk/models/support_request_input_v1.py +1 -1
  575. seeq/sdk/models/support_request_output_v1.py +1 -1
  576. seeq/sdk/models/supported_units_output_v1.py +1 -1
  577. seeq/sdk/models/suppress_condition_input_v1.py +1 -1
  578. seeq/sdk/models/suppressed_condition_input_v1.py +1 -1
  579. seeq/sdk/models/suppressed_condition_output_v1.py +1 -1
  580. seeq/sdk/models/swap_across_assets_search_v1.py +30 -2
  581. seeq/sdk/models/swap_input_v1.py +1 -1
  582. seeq/sdk/models/swap_option_list_v1.py +1 -1
  583. seeq/sdk/models/swap_option_v1.py +1 -1
  584. seeq/sdk/models/swap_output_v1.py +1 -1
  585. seeq/sdk/models/sync_progress.py +1 -1
  586. seeq/sdk/models/sync_progress_output_v1.py +1 -1
  587. seeq/sdk/models/system_license_body.py +1 -1
  588. seeq/sdk/models/table_application_retired_output_v1.py +152 -0
  589. seeq/sdk/models/table_column_output_v1.py +1 -1
  590. seeq/sdk/models/table_compute_output_v1.py +1 -1
  591. seeq/sdk/models/table_definition_csv_input_v1.py +5 -1
  592. seeq/sdk/models/table_definition_csv_publish_rows_input_v1.py +1 -1
  593. seeq/sdk/models/table_definition_csv_publish_rows_output_v1.py +9 -1
  594. seeq/sdk/models/table_definition_csv_update_input_v1.py +5 -1
  595. seeq/sdk/models/table_definition_input_v1.py +1 -1
  596. seeq/sdk/models/table_definition_output_list_v1.py +1 -1
  597. seeq/sdk/models/table_definition_output_v1.py +30 -2
  598. seeq/sdk/models/table_definition_preview_input_v1.py +30 -2
  599. seeq/sdk/models/table_definition_preview_output_v1.py +1 -1
  600. seeq/sdk/models/table_definition_update_input_v1.py +30 -2
  601. seeq/sdk/models/table_model_application_input_v1.py +7 -1
  602. seeq/sdk/models/table_property_filter_input_v1.py +212 -0
  603. seeq/sdk/models/table_result_output_v1.py +208 -0
  604. seeq/sdk/models/tabledefinitions_csv_body.py +1 -1
  605. seeq/sdk/models/threshold_metric_input_v1.py +1 -1
  606. seeq/sdk/models/threshold_metric_output_v1.py +1 -1
  607. seeq/sdk/models/threshold_output_v1.py +1 -1
  608. seeq/sdk/models/time_interval.py +1 -1
  609. seeq/sdk/models/timer_datum_v1.py +1 -1
  610. seeq/sdk/models/topic_sandbox_input_v1.py +154 -0
  611. seeq/sdk/models/tree_item_output_v1.py +1 -1
  612. seeq/sdk/models/treemap_item_output_v1.py +1 -1
  613. seeq/sdk/models/treemap_output_v1.py +1 -1
  614. seeq/sdk/models/units_of_measure_batch_input_v1.py +1 -1
  615. seeq/sdk/models/units_of_measure_item_v1.py +1 -1
  616. seeq/sdk/models/units_of_measure_output_v1.py +1 -1
  617. seeq/sdk/models/unsubscribe_output_v1.py +1 -1
  618. seeq/sdk/models/usage_output_list_v1.py +1 -1
  619. seeq/sdk/models/usage_output_v1.py +1 -1
  620. seeq/sdk/models/usage_types_v1.py +1 -1
  621. seeq/sdk/models/user_group_input_v1.py +1 -1
  622. seeq/sdk/models/user_group_output_v1.py +1 -1
  623. seeq/sdk/models/user_group_with_id_input_v1.py +1 -1
  624. seeq/sdk/models/user_input_v1.py +1 -1
  625. seeq/sdk/models/user_output_list_v1.py +1 -1
  626. seeq/sdk/models/user_output_v1.py +28 -2
  627. seeq/sdk/models/user_password_input_v1.py +1 -1
  628. seeq/sdk/models/validate_cron_list_input_v1.py +1 -1
  629. seeq/sdk/models/validate_cron_list_output_v1.py +1 -1
  630. seeq/sdk/models/validate_cron_output_v1.py +1 -1
  631. seeq/sdk/models/value.py +122 -0
  632. seeq/sdk/models/value_filter.py +178 -0
  633. seeq/sdk/models/version_history_output_list_v1.py +1 -1
  634. seeq/sdk/models/version_history_output_v1.py +1 -1
  635. seeq/sdk/models/version_input_v1.py +1 -1
  636. seeq/sdk/models/version_output_v1.py +1 -1
  637. seeq/sdk/models/version_source_output_v1.py +1 -1
  638. seeq/sdk/models/view_column_filter_input_v1.py +1 -1
  639. seeq/sdk/models/view_column_filter_output_v1.py +1 -1
  640. seeq/sdk/models/view_column_input_v1.py +1 -1
  641. seeq/sdk/models/view_column_output_v1.py +1 -1
  642. seeq/sdk/models/workbench_item_output_list_v1.py +1 -1
  643. seeq/sdk/models/workbench_search_result_preview_v1.py +30 -2
  644. seeq/sdk/models/workbook_input_v1.py +1 -1
  645. seeq/sdk/models/workbook_output_list_v1.py +1 -1
  646. seeq/sdk/models/workbook_output_v1.py +1 -1
  647. seeq/sdk/models/workbook_owner_output_v1.py +5 -1
  648. seeq/sdk/models/worksheet_input_v1.py +1 -1
  649. seeq/sdk/models/worksheet_output_list_v1.py +1 -1
  650. seeq/sdk/models/worksheet_output_v1.py +1 -1
  651. seeq/sdk/models/workstep_chronology_entry_v1.py +1 -1
  652. seeq/sdk/models/workstep_chronology_output_v1.py +1 -1
  653. seeq/sdk/models/workstep_input_v1.py +1 -1
  654. seeq/sdk/models/workstep_output_v1.py +1 -1
  655. seeq/sdk/rest.py +2 -2
  656. seeq-66.90.0.20251219.dist-info/METADATA +520 -0
  657. seeq-66.90.0.20251219.dist-info/RECORD +659 -0
  658. {seeq-66.68.0.20251029.dist-info → seeq-66.90.0.20251219.dist-info}/WHEEL +1 -1
  659. seeq-66.68.0.20251029.dist-info/LICENSE +0 -415
  660. seeq-66.68.0.20251029.dist-info/METADATA +0 -105
  661. seeq-66.68.0.20251029.dist-info/RECORD +0 -602
  662. {seeq-66.68.0.20251029.dist-info → seeq-66.90.0.20251219.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,871 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Seeq REST API
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: 66.90.0-v202512190926-CD
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+ from __future__ import absolute_import
14
+
15
+ import sys
16
+ import os
17
+ import re
18
+
19
+ from deprecated import deprecated
20
+ # python 2 and python 3 compatibility library
21
+ from six import iteritems
22
+
23
+ from ..configuration import Configuration
24
+ from ..api_client import ApiClient
25
+ from ..models import *
26
+
27
+ class StoredTablesApi(object):
28
+ """
29
+ NOTE: This class is auto generated by the swagger code generator program.
30
+ Do not edit the class manually.
31
+ Ref: https://github.com/swagger-api/swagger-codegen
32
+ """
33
+
34
+ def __init__(self, api_client=None):
35
+ config = Configuration()
36
+ if api_client:
37
+ self.api_client = api_client
38
+ else:
39
+ if not config.api_client:
40
+ config.api_client = ApiClient()
41
+ self.api_client = config.api_client
42
+
43
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
44
+ def create_stored_table_from_csv(self, **kwargs):
45
+ """
46
+ Create a new stored table from CSV. The column order will be equal to the order in the CSV.
47
+ This method makes a synchronous HTTP request by default. To make an
48
+ asynchronous HTTP request, please define a `callback` function
49
+ to be invoked when receiving the response.
50
+ >>> def callback_function(response):
51
+ >>> pprint(response)
52
+ >>>
53
+ >>> thread = api.create_stored_table_from_csv(body=body_value, callback=callback_function)
54
+
55
+ :param callback function: The callback function
56
+ for asynchronous request. (optional)
57
+ :param StoredTableCSVInputV1 body: (required)
58
+ :return: StoredTableOutputV1
59
+ If the method is called asynchronously,
60
+ returns the request thread.
61
+ :rtype: StoredTableOutputV1
62
+ """
63
+ kwargs['_return_http_data_only'] = True
64
+ if kwargs.get('callback'):
65
+ return self.create_stored_table_from_csv_with_http_info(**kwargs)
66
+ else:
67
+ (data) = self.create_stored_table_from_csv_with_http_info(**kwargs)
68
+ return data
69
+
70
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
71
+ def create_stored_table_from_csv_with_http_info(self, **kwargs):
72
+ """
73
+ Create a new stored table from CSV. The column order will be equal to the order in the CSV.
74
+ This method makes a synchronous HTTP request by default. To make an
75
+ asynchronous HTTP request, please define a `callback` function
76
+ to be invoked when receiving the response.
77
+ >>> def callback_function(response):
78
+ >>> pprint(response)
79
+ >>>
80
+ >>> thread = api.create_stored_table_from_csv_with_http_info(body=body_value, callback=callback_function)
81
+
82
+ :param callback function: The callback function
83
+ for asynchronous request. (optional)
84
+ :param StoredTableCSVInputV1 body: (required)
85
+ :return: StoredTableOutputV1
86
+ If the method is called asynchronously,
87
+ returns the request thread.
88
+ :rtype: StoredTableOutputV1
89
+ """
90
+
91
+ all_params = ['body']
92
+ all_params.append('callback')
93
+ all_params.append('_return_http_data_only')
94
+ all_params.append('_preload_content')
95
+ all_params.append('_request_timeout')
96
+ all_params.append('_response_type')
97
+ all_params.append('_custom_headers')
98
+
99
+ params = locals()
100
+ for key, val in iteritems(params['kwargs']):
101
+ if key not in all_params:
102
+ raise TypeError(
103
+ "Got an unexpected keyword argument '%s'"
104
+ " to method create_stored_table_from_csv" % key
105
+ )
106
+ params[key] = val
107
+ del params['kwargs']
108
+ # verify the required parameter 'body' is set
109
+ if ('body' not in params) or (params['body'] is None):
110
+ raise ValueError("Missing the required parameter `body` when calling `create_stored_table_from_csv`")
111
+
112
+
113
+ collection_formats = {}
114
+
115
+ path_params = {}
116
+
117
+ query_params = []
118
+
119
+ header_params = {}
120
+
121
+ for key, value in params.get('_custom_headers', {}).items():
122
+ header_params[key] = value
123
+
124
+
125
+ form_params = []
126
+ local_var_files = {}
127
+
128
+ body_params = None
129
+ if 'body' in params:
130
+ body_params = params['body']
131
+ # HTTP header `Accept`
132
+ header_params['Accept'] = self.api_client.\
133
+ select_header_accept(['application/vnd.seeq.v1+json'])
134
+
135
+ # HTTP header `Content-Type`
136
+ header_params['Content-Type'] = self.api_client.\
137
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
138
+
139
+ # Authentication setting
140
+ auth_settings = ['api_key']
141
+
142
+ return self.api_client.call_api('/stored-tables/csv/create', 'POST',
143
+ path_params,
144
+ query_params,
145
+ header_params,
146
+ body=body_params,
147
+ post_params=form_params,
148
+ files=local_var_files,
149
+ response_type=params.get('_response_type', 'StoredTableOutputV1'),
150
+ auth_settings=auth_settings,
151
+ callback=params.get('callback'),
152
+ _return_http_data_only=params.get('_return_http_data_only'),
153
+ _preload_content=params.get('_preload_content', True),
154
+ _request_timeout=params.get('_request_timeout'),
155
+ collection_formats=collection_formats)
156
+
157
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
158
+ def delete_column_from_stored_table(self, **kwargs):
159
+ """
160
+ Delete a column from a stored table. This endpoint is experimental and may change in future releases.
161
+ This method makes a synchronous HTTP request by default. To make an
162
+ asynchronous HTTP request, please define a `callback` function
163
+ to be invoked when receiving the response.
164
+ >>> def callback_function(response):
165
+ >>> pprint(response)
166
+ >>>
167
+ >>> thread = api.delete_column_from_stored_table(id=id_value, column_id=column_id_value, callback=callback_function)
168
+
169
+ :param callback function: The callback function
170
+ for asynchronous request. (optional)
171
+ :param str id: The Seeq ID for the stored table (required)
172
+ :param str column_id: The column ID to be deleted (required)
173
+ :return: StoredTableOutputV1
174
+ If the method is called asynchronously,
175
+ returns the request thread.
176
+ :rtype: StoredTableOutputV1
177
+ """
178
+ kwargs['_return_http_data_only'] = True
179
+ if kwargs.get('callback'):
180
+ return self.delete_column_from_stored_table_with_http_info(**kwargs)
181
+ else:
182
+ (data) = self.delete_column_from_stored_table_with_http_info(**kwargs)
183
+ return data
184
+
185
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
186
+ def delete_column_from_stored_table_with_http_info(self, **kwargs):
187
+ """
188
+ Delete a column from a stored table. This endpoint is experimental and may change in future releases.
189
+ This method makes a synchronous HTTP request by default. To make an
190
+ asynchronous HTTP request, please define a `callback` function
191
+ to be invoked when receiving the response.
192
+ >>> def callback_function(response):
193
+ >>> pprint(response)
194
+ >>>
195
+ >>> thread = api.delete_column_from_stored_table_with_http_info(id=id_value, column_id=column_id_value, callback=callback_function)
196
+
197
+ :param callback function: The callback function
198
+ for asynchronous request. (optional)
199
+ :param str id: The Seeq ID for the stored table (required)
200
+ :param str column_id: The column ID to be deleted (required)
201
+ :return: StoredTableOutputV1
202
+ If the method is called asynchronously,
203
+ returns the request thread.
204
+ :rtype: StoredTableOutputV1
205
+ """
206
+
207
+ all_params = ['id', 'column_id']
208
+ all_params.append('callback')
209
+ all_params.append('_return_http_data_only')
210
+ all_params.append('_preload_content')
211
+ all_params.append('_request_timeout')
212
+ all_params.append('_response_type')
213
+ all_params.append('_custom_headers')
214
+
215
+ params = locals()
216
+ for key, val in iteritems(params['kwargs']):
217
+ if key not in all_params:
218
+ raise TypeError(
219
+ "Got an unexpected keyword argument '%s'"
220
+ " to method delete_column_from_stored_table" % key
221
+ )
222
+ params[key] = val
223
+ del params['kwargs']
224
+ # verify the required parameter 'id' is set
225
+ if ('id' not in params) or (params['id'] is None):
226
+ raise ValueError("Missing the required parameter `id` when calling `delete_column_from_stored_table`")
227
+ # verify the required parameter 'column_id' is set
228
+ if ('column_id' not in params) or (params['column_id'] is None):
229
+ raise ValueError("Missing the required parameter `column_id` when calling `delete_column_from_stored_table`")
230
+
231
+
232
+ collection_formats = {}
233
+
234
+ path_params = {}
235
+ if 'id' in params:
236
+ path_params['id'] = params['id']
237
+ if 'column_id' in params:
238
+ path_params['columnId'] = params['column_id']
239
+
240
+ query_params = []
241
+
242
+ header_params = {}
243
+
244
+ for key, value in params.get('_custom_headers', {}).items():
245
+ header_params[key] = value
246
+
247
+
248
+ form_params = []
249
+ local_var_files = {}
250
+
251
+ body_params = None
252
+ # HTTP header `Accept`
253
+ header_params['Accept'] = self.api_client.\
254
+ select_header_accept(['application/vnd.seeq.v1+json'])
255
+
256
+ # HTTP header `Content-Type`
257
+ header_params['Content-Type'] = self.api_client.\
258
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
259
+
260
+ # Authentication setting
261
+ auth_settings = ['api_key']
262
+
263
+ return self.api_client.call_api('/stored-tables/{id}/columns/{columnId}', 'DELETE',
264
+ path_params,
265
+ query_params,
266
+ header_params,
267
+ body=body_params,
268
+ post_params=form_params,
269
+ files=local_var_files,
270
+ response_type=params.get('_response_type', 'StoredTableOutputV1'),
271
+ auth_settings=auth_settings,
272
+ callback=params.get('callback'),
273
+ _return_http_data_only=params.get('_return_http_data_only'),
274
+ _preload_content=params.get('_preload_content', True),
275
+ _request_timeout=params.get('_request_timeout'),
276
+ collection_formats=collection_formats)
277
+
278
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
279
+ def delete_stored_table_rows(self, **kwargs):
280
+ """
281
+ Delete rows from a stored table
282
+ This method makes a synchronous HTTP request by default. To make an
283
+ asynchronous HTTP request, please define a `callback` function
284
+ to be invoked when receiving the response.
285
+ >>> def callback_function(response):
286
+ >>> pprint(response)
287
+ >>>
288
+ >>> thread = api.delete_stored_table_rows(body=body_value, table_id=table_id_value, callback=callback_function)
289
+
290
+ :param callback function: The callback function
291
+ for asynchronous request. (optional)
292
+ :param StoredTableDeleteRowsInputV1 body: (required)
293
+ :param str table_id: The id of the table to delete rows from (required)
294
+ :return: DeleteRowsOutputV1
295
+ If the method is called asynchronously,
296
+ returns the request thread.
297
+ :rtype: DeleteRowsOutputV1
298
+ """
299
+ kwargs['_return_http_data_only'] = True
300
+ if kwargs.get('callback'):
301
+ return self.delete_stored_table_rows_with_http_info(**kwargs)
302
+ else:
303
+ (data) = self.delete_stored_table_rows_with_http_info(**kwargs)
304
+ return data
305
+
306
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
307
+ def delete_stored_table_rows_with_http_info(self, **kwargs):
308
+ """
309
+ Delete rows from a stored table
310
+ This method makes a synchronous HTTP request by default. To make an
311
+ asynchronous HTTP request, please define a `callback` function
312
+ to be invoked when receiving the response.
313
+ >>> def callback_function(response):
314
+ >>> pprint(response)
315
+ >>>
316
+ >>> thread = api.delete_stored_table_rows_with_http_info(body=body_value, table_id=table_id_value, callback=callback_function)
317
+
318
+ :param callback function: The callback function
319
+ for asynchronous request. (optional)
320
+ :param StoredTableDeleteRowsInputV1 body: (required)
321
+ :param str table_id: The id of the table to delete rows from (required)
322
+ :return: DeleteRowsOutputV1
323
+ If the method is called asynchronously,
324
+ returns the request thread.
325
+ :rtype: DeleteRowsOutputV1
326
+ """
327
+
328
+ all_params = ['body', 'table_id']
329
+ all_params.append('callback')
330
+ all_params.append('_return_http_data_only')
331
+ all_params.append('_preload_content')
332
+ all_params.append('_request_timeout')
333
+ all_params.append('_response_type')
334
+ all_params.append('_custom_headers')
335
+
336
+ params = locals()
337
+ for key, val in iteritems(params['kwargs']):
338
+ if key not in all_params:
339
+ raise TypeError(
340
+ "Got an unexpected keyword argument '%s'"
341
+ " to method delete_stored_table_rows" % key
342
+ )
343
+ params[key] = val
344
+ del params['kwargs']
345
+ # verify the required parameter 'body' is set
346
+ if ('body' not in params) or (params['body'] is None):
347
+ raise ValueError("Missing the required parameter `body` when calling `delete_stored_table_rows`")
348
+ # verify the required parameter 'table_id' is set
349
+ if ('table_id' not in params) or (params['table_id'] is None):
350
+ raise ValueError("Missing the required parameter `table_id` when calling `delete_stored_table_rows`")
351
+
352
+
353
+ collection_formats = {}
354
+
355
+ path_params = {}
356
+ if 'table_id' in params:
357
+ path_params['tableId'] = params['table_id']
358
+
359
+ query_params = []
360
+
361
+ header_params = {}
362
+
363
+ for key, value in params.get('_custom_headers', {}).items():
364
+ header_params[key] = value
365
+
366
+
367
+ form_params = []
368
+ local_var_files = {}
369
+
370
+ body_params = None
371
+ if 'body' in params:
372
+ body_params = params['body']
373
+ # HTTP header `Accept`
374
+ header_params['Accept'] = self.api_client.\
375
+ select_header_accept(['application/vnd.seeq.v1+json'])
376
+
377
+ # HTTP header `Content-Type`
378
+ header_params['Content-Type'] = self.api_client.\
379
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
380
+
381
+ # Authentication setting
382
+ auth_settings = ['api_key']
383
+
384
+ return self.api_client.call_api('/stored-tables/{tableId}/deleteRows', 'POST',
385
+ path_params,
386
+ query_params,
387
+ header_params,
388
+ body=body_params,
389
+ post_params=form_params,
390
+ files=local_var_files,
391
+ response_type=params.get('_response_type', 'DeleteRowsOutputV1'),
392
+ auth_settings=auth_settings,
393
+ callback=params.get('callback'),
394
+ _return_http_data_only=params.get('_return_http_data_only'),
395
+ _preload_content=params.get('_preload_content', True),
396
+ _request_timeout=params.get('_request_timeout'),
397
+ collection_formats=collection_formats)
398
+
399
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
400
+ def get_stored_table(self, **kwargs):
401
+ """
402
+ Get a stored table. This endpoint is experimental and may change in future releases.
403
+ This method makes a synchronous HTTP request by default. To make an
404
+ asynchronous HTTP request, please define a `callback` function
405
+ to be invoked when receiving the response.
406
+ >>> def callback_function(response):
407
+ >>> pprint(response)
408
+ >>>
409
+ >>> thread = api.get_stored_table(id=id_value, callback=callback_function)
410
+
411
+ :param callback function: The callback function
412
+ for asynchronous request. (optional)
413
+ :param str id: The ID of the stored table (required)
414
+ :return: StoredTableOutputV1
415
+ If the method is called asynchronously,
416
+ returns the request thread.
417
+ :rtype: StoredTableOutputV1
418
+ """
419
+ kwargs['_return_http_data_only'] = True
420
+ if kwargs.get('callback'):
421
+ return self.get_stored_table_with_http_info(**kwargs)
422
+ else:
423
+ (data) = self.get_stored_table_with_http_info(**kwargs)
424
+ return data
425
+
426
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
427
+ def get_stored_table_with_http_info(self, **kwargs):
428
+ """
429
+ Get a stored table. This endpoint is experimental and may change in future releases.
430
+ This method makes a synchronous HTTP request by default. To make an
431
+ asynchronous HTTP request, please define a `callback` function
432
+ to be invoked when receiving the response.
433
+ >>> def callback_function(response):
434
+ >>> pprint(response)
435
+ >>>
436
+ >>> thread = api.get_stored_table_with_http_info(id=id_value, callback=callback_function)
437
+
438
+ :param callback function: The callback function
439
+ for asynchronous request. (optional)
440
+ :param str id: The ID of the stored table (required)
441
+ :return: StoredTableOutputV1
442
+ If the method is called asynchronously,
443
+ returns the request thread.
444
+ :rtype: StoredTableOutputV1
445
+ """
446
+
447
+ all_params = ['id']
448
+ all_params.append('callback')
449
+ all_params.append('_return_http_data_only')
450
+ all_params.append('_preload_content')
451
+ all_params.append('_request_timeout')
452
+ all_params.append('_response_type')
453
+ all_params.append('_custom_headers')
454
+
455
+ params = locals()
456
+ for key, val in iteritems(params['kwargs']):
457
+ if key not in all_params:
458
+ raise TypeError(
459
+ "Got an unexpected keyword argument '%s'"
460
+ " to method get_stored_table" % key
461
+ )
462
+ params[key] = val
463
+ del params['kwargs']
464
+ # verify the required parameter 'id' is set
465
+ if ('id' not in params) or (params['id'] is None):
466
+ raise ValueError("Missing the required parameter `id` when calling `get_stored_table`")
467
+
468
+
469
+ collection_formats = {}
470
+
471
+ path_params = {}
472
+ if 'id' in params:
473
+ path_params['id'] = params['id']
474
+
475
+ query_params = []
476
+
477
+ header_params = {}
478
+
479
+ for key, value in params.get('_custom_headers', {}).items():
480
+ header_params[key] = value
481
+
482
+
483
+ form_params = []
484
+ local_var_files = {}
485
+
486
+ body_params = None
487
+ # HTTP header `Accept`
488
+ header_params['Accept'] = self.api_client.\
489
+ select_header_accept(['application/vnd.seeq.v1+json'])
490
+
491
+ # HTTP header `Content-Type`
492
+ header_params['Content-Type'] = self.api_client.\
493
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
494
+
495
+ # Authentication setting
496
+ auth_settings = ['api_key']
497
+
498
+ return self.api_client.call_api('/stored-tables/{id}', 'GET',
499
+ path_params,
500
+ query_params,
501
+ header_params,
502
+ body=body_params,
503
+ post_params=form_params,
504
+ files=local_var_files,
505
+ response_type=params.get('_response_type', 'StoredTableOutputV1'),
506
+ auth_settings=auth_settings,
507
+ callback=params.get('callback'),
508
+ _return_http_data_only=params.get('_return_http_data_only'),
509
+ _preload_content=params.get('_preload_content', True),
510
+ _request_timeout=params.get('_request_timeout'),
511
+ collection_formats=collection_formats)
512
+
513
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
514
+ def import_stored_table_csv(self, **kwargs):
515
+ """
516
+ Import a CSV file that can be used to create a stored table
517
+ This method makes a synchronous HTTP request by default. To make an
518
+ asynchronous HTTP request, please define a `callback` function
519
+ to be invoked when receiving the response.
520
+ >>> def callback_function(response):
521
+ >>> pprint(response)
522
+ >>>
523
+ >>> thread = api.import_stored_table_csv(callback=callback_function)
524
+
525
+ :param callback function: The callback function
526
+ for asynchronous request. (optional)
527
+ :param str file:
528
+ :return: ImportTableCSVOutputV1
529
+ If the method is called asynchronously,
530
+ returns the request thread.
531
+ :rtype: ImportTableCSVOutputV1
532
+ """
533
+ kwargs['_return_http_data_only'] = True
534
+ if kwargs.get('callback'):
535
+ return self.import_stored_table_csv_with_http_info(**kwargs)
536
+ else:
537
+ (data) = self.import_stored_table_csv_with_http_info(**kwargs)
538
+ return data
539
+
540
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
541
+ def import_stored_table_csv_with_http_info(self, **kwargs):
542
+ """
543
+ Import a CSV file that can be used to create a stored table
544
+ This method makes a synchronous HTTP request by default. To make an
545
+ asynchronous HTTP request, please define a `callback` function
546
+ to be invoked when receiving the response.
547
+ >>> def callback_function(response):
548
+ >>> pprint(response)
549
+ >>>
550
+ >>> thread = api.import_stored_table_csv_with_http_info(callback=callback_function)
551
+
552
+ :param callback function: The callback function
553
+ for asynchronous request. (optional)
554
+ :param str file:
555
+ :return: ImportTableCSVOutputV1
556
+ If the method is called asynchronously,
557
+ returns the request thread.
558
+ :rtype: ImportTableCSVOutputV1
559
+ """
560
+
561
+ all_params = ['file']
562
+ all_params.append('callback')
563
+ all_params.append('_return_http_data_only')
564
+ all_params.append('_preload_content')
565
+ all_params.append('_request_timeout')
566
+ all_params.append('_response_type')
567
+ all_params.append('_custom_headers')
568
+
569
+ params = locals()
570
+ for key, val in iteritems(params['kwargs']):
571
+ if key not in all_params:
572
+ raise TypeError(
573
+ "Got an unexpected keyword argument '%s'"
574
+ " to method import_stored_table_csv" % key
575
+ )
576
+ params[key] = val
577
+ del params['kwargs']
578
+
579
+
580
+ collection_formats = {}
581
+
582
+ path_params = {}
583
+
584
+ query_params = []
585
+
586
+ header_params = {}
587
+
588
+ for key, value in params.get('_custom_headers', {}).items():
589
+ header_params[key] = value
590
+
591
+
592
+ form_params = []
593
+ local_var_files = {}
594
+ if 'file' in params:
595
+ local_var_files['file'] = params['file']
596
+
597
+ body_params = None
598
+ # HTTP header `Accept`
599
+ header_params['Accept'] = self.api_client.\
600
+ select_header_accept(['application/vnd.seeq.v1+json'])
601
+
602
+ # HTTP header `Content-Type`
603
+ header_params['Content-Type'] = self.api_client.\
604
+ select_header_content_type(['multipart/form-data', ])
605
+
606
+ # Authentication setting
607
+ auth_settings = ['api_key']
608
+
609
+ return self.api_client.call_api('/stored-tables/csv', 'POST',
610
+ path_params,
611
+ query_params,
612
+ header_params,
613
+ body=body_params,
614
+ post_params=form_params,
615
+ files=local_var_files,
616
+ response_type=params.get('_response_type', 'ImportTableCSVOutputV1'),
617
+ auth_settings=auth_settings,
618
+ callback=params.get('callback'),
619
+ _return_http_data_only=params.get('_return_http_data_only'),
620
+ _preload_content=params.get('_preload_content', True),
621
+ _request_timeout=params.get('_request_timeout'),
622
+ collection_formats=collection_formats)
623
+
624
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
625
+ def modify_column_in_stored_table(self, **kwargs):
626
+ """
627
+ Modify a column in a stored table. This endpoint is experimental and may change in future releases.
628
+ This method makes a synchronous HTTP request by default. To make an
629
+ asynchronous HTTP request, please define a `callback` function
630
+ to be invoked when receiving the response.
631
+ >>> def callback_function(response):
632
+ >>> pprint(response)
633
+ >>>
634
+ >>> thread = api.modify_column_in_stored_table(body=body_value, id=id_value, column_id=column_id_value, callback=callback_function)
635
+
636
+ :param callback function: The callback function
637
+ for asynchronous request. (optional)
638
+ :param StoredTableColumnInputV1 body: (required)
639
+ :param str id: The Seeq ID for the stored table (required)
640
+ :param str column_id: The column ID to be modified. Possible modifications are: changing the column's index, renaming the column, changing the column's type, and updating the column's unit of measure. Once a column has become a non-String type, it's type can not be changed.For type conversions:- String to TIMESTAMPTZ: If the string value is in ISO8601 format, it gets directly cast to a timestamp with the same information. If not, then it gets cast to the epoch timestamp.- String to Numeric: The string values will get directly converted into their numeric equivalent. So, '1' becomes 1, '1.5' becomes 1.5, 1e10 becomes 10000000000. So integers, decimals, and scientific notation is handled. If a string cannot become converted, it will be cast as null. Units of measure are parsed out of numeric values and stored separately if multiple exist. If only one unit of measure exists, it is set as the column uom.- String to Boolean: If 'false', 'f', or '0', convert to false. If 'true', 't', or '1', convert to true. The string to boolean conversion is case-insensitive. (required)
641
+ :return: StoredTableOutputV1
642
+ If the method is called asynchronously,
643
+ returns the request thread.
644
+ :rtype: StoredTableOutputV1
645
+ """
646
+ kwargs['_return_http_data_only'] = True
647
+ if kwargs.get('callback'):
648
+ return self.modify_column_in_stored_table_with_http_info(**kwargs)
649
+ else:
650
+ (data) = self.modify_column_in_stored_table_with_http_info(**kwargs)
651
+ return data
652
+
653
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
654
+ def modify_column_in_stored_table_with_http_info(self, **kwargs):
655
+ """
656
+ Modify a column in a stored table. This endpoint is experimental and may change in future releases.
657
+ This method makes a synchronous HTTP request by default. To make an
658
+ asynchronous HTTP request, please define a `callback` function
659
+ to be invoked when receiving the response.
660
+ >>> def callback_function(response):
661
+ >>> pprint(response)
662
+ >>>
663
+ >>> thread = api.modify_column_in_stored_table_with_http_info(body=body_value, id=id_value, column_id=column_id_value, callback=callback_function)
664
+
665
+ :param callback function: The callback function
666
+ for asynchronous request. (optional)
667
+ :param StoredTableColumnInputV1 body: (required)
668
+ :param str id: The Seeq ID for the stored table (required)
669
+ :param str column_id: The column ID to be modified. Possible modifications are: changing the column's index, renaming the column, changing the column's type, and updating the column's unit of measure. Once a column has become a non-String type, it's type can not be changed.For type conversions:- String to TIMESTAMPTZ: If the string value is in ISO8601 format, it gets directly cast to a timestamp with the same information. If not, then it gets cast to the epoch timestamp.- String to Numeric: The string values will get directly converted into their numeric equivalent. So, '1' becomes 1, '1.5' becomes 1.5, 1e10 becomes 10000000000. So integers, decimals, and scientific notation is handled. If a string cannot become converted, it will be cast as null. Units of measure are parsed out of numeric values and stored separately if multiple exist. If only one unit of measure exists, it is set as the column uom.- String to Boolean: If 'false', 'f', or '0', convert to false. If 'true', 't', or '1', convert to true. The string to boolean conversion is case-insensitive. (required)
670
+ :return: StoredTableOutputV1
671
+ If the method is called asynchronously,
672
+ returns the request thread.
673
+ :rtype: StoredTableOutputV1
674
+ """
675
+
676
+ all_params = ['body', 'id', 'column_id']
677
+ all_params.append('callback')
678
+ all_params.append('_return_http_data_only')
679
+ all_params.append('_preload_content')
680
+ all_params.append('_request_timeout')
681
+ all_params.append('_response_type')
682
+ all_params.append('_custom_headers')
683
+
684
+ params = locals()
685
+ for key, val in iteritems(params['kwargs']):
686
+ if key not in all_params:
687
+ raise TypeError(
688
+ "Got an unexpected keyword argument '%s'"
689
+ " to method modify_column_in_stored_table" % key
690
+ )
691
+ params[key] = val
692
+ del params['kwargs']
693
+ # verify the required parameter 'body' is set
694
+ if ('body' not in params) or (params['body'] is None):
695
+ raise ValueError("Missing the required parameter `body` when calling `modify_column_in_stored_table`")
696
+ # verify the required parameter 'id' is set
697
+ if ('id' not in params) or (params['id'] is None):
698
+ raise ValueError("Missing the required parameter `id` when calling `modify_column_in_stored_table`")
699
+ # verify the required parameter 'column_id' is set
700
+ if ('column_id' not in params) or (params['column_id'] is None):
701
+ raise ValueError("Missing the required parameter `column_id` when calling `modify_column_in_stored_table`")
702
+
703
+
704
+ collection_formats = {}
705
+
706
+ path_params = {}
707
+ if 'id' in params:
708
+ path_params['id'] = params['id']
709
+ if 'column_id' in params:
710
+ path_params['columnId'] = params['column_id']
711
+
712
+ query_params = []
713
+
714
+ header_params = {}
715
+
716
+ for key, value in params.get('_custom_headers', {}).items():
717
+ header_params[key] = value
718
+
719
+
720
+ form_params = []
721
+ local_var_files = {}
722
+
723
+ body_params = None
724
+ if 'body' in params:
725
+ body_params = params['body']
726
+ # HTTP header `Accept`
727
+ header_params['Accept'] = self.api_client.\
728
+ select_header_accept(['application/vnd.seeq.v1+json'])
729
+
730
+ # HTTP header `Content-Type`
731
+ header_params['Content-Type'] = self.api_client.\
732
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
733
+
734
+ # Authentication setting
735
+ auth_settings = ['api_key']
736
+
737
+ return self.api_client.call_api('/stored-tables/{id}/columns/{columnId}', 'POST',
738
+ path_params,
739
+ query_params,
740
+ header_params,
741
+ body=body_params,
742
+ post_params=form_params,
743
+ files=local_var_files,
744
+ response_type=params.get('_response_type', 'StoredTableOutputV1'),
745
+ auth_settings=auth_settings,
746
+ callback=params.get('callback'),
747
+ _return_http_data_only=params.get('_return_http_data_only'),
748
+ _preload_content=params.get('_preload_content', True),
749
+ _request_timeout=params.get('_request_timeout'),
750
+ collection_formats=collection_formats)
751
+
752
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
753
+ def update_stored_table_from_csv(self, **kwargs):
754
+ """
755
+ Update an existing stored table from a CSV. The column order will be equal to the order in the CSV. All existing data in the stored table will be preseved and new rows/columns from the new CSV will be added to the existing data.
756
+ This method makes a synchronous HTTP request by default. To make an
757
+ asynchronous HTTP request, please define a `callback` function
758
+ to be invoked when receiving the response.
759
+ >>> def callback_function(response):
760
+ >>> pprint(response)
761
+ >>>
762
+ >>> thread = api.update_stored_table_from_csv(body=body_value, id=id_value, callback=callback_function)
763
+
764
+ :param callback function: The callback function
765
+ for asynchronous request. (optional)
766
+ :param StoredTableCSVInputV1 body: (required)
767
+ :param str id: The Seeq ID for the stored table (required)
768
+ :return: StoredTableOutputV1
769
+ If the method is called asynchronously,
770
+ returns the request thread.
771
+ :rtype: StoredTableOutputV1
772
+ """
773
+ kwargs['_return_http_data_only'] = True
774
+ if kwargs.get('callback'):
775
+ return self.update_stored_table_from_csv_with_http_info(**kwargs)
776
+ else:
777
+ (data) = self.update_stored_table_from_csv_with_http_info(**kwargs)
778
+ return data
779
+
780
+ @deprecated(reason="This API is experimental and may change or be removed in future releases without prior notice.")
781
+ def update_stored_table_from_csv_with_http_info(self, **kwargs):
782
+ """
783
+ Update an existing stored table from a CSV. The column order will be equal to the order in the CSV. All existing data in the stored table will be preseved and new rows/columns from the new CSV will be added to the existing data.
784
+ This method makes a synchronous HTTP request by default. To make an
785
+ asynchronous HTTP request, please define a `callback` function
786
+ to be invoked when receiving the response.
787
+ >>> def callback_function(response):
788
+ >>> pprint(response)
789
+ >>>
790
+ >>> thread = api.update_stored_table_from_csv_with_http_info(body=body_value, id=id_value, callback=callback_function)
791
+
792
+ :param callback function: The callback function
793
+ for asynchronous request. (optional)
794
+ :param StoredTableCSVInputV1 body: (required)
795
+ :param str id: The Seeq ID for the stored table (required)
796
+ :return: StoredTableOutputV1
797
+ If the method is called asynchronously,
798
+ returns the request thread.
799
+ :rtype: StoredTableOutputV1
800
+ """
801
+
802
+ all_params = ['body', 'id']
803
+ all_params.append('callback')
804
+ all_params.append('_return_http_data_only')
805
+ all_params.append('_preload_content')
806
+ all_params.append('_request_timeout')
807
+ all_params.append('_response_type')
808
+ all_params.append('_custom_headers')
809
+
810
+ params = locals()
811
+ for key, val in iteritems(params['kwargs']):
812
+ if key not in all_params:
813
+ raise TypeError(
814
+ "Got an unexpected keyword argument '%s'"
815
+ " to method update_stored_table_from_csv" % key
816
+ )
817
+ params[key] = val
818
+ del params['kwargs']
819
+ # verify the required parameter 'body' is set
820
+ if ('body' not in params) or (params['body'] is None):
821
+ raise ValueError("Missing the required parameter `body` when calling `update_stored_table_from_csv`")
822
+ # verify the required parameter 'id' is set
823
+ if ('id' not in params) or (params['id'] is None):
824
+ raise ValueError("Missing the required parameter `id` when calling `update_stored_table_from_csv`")
825
+
826
+
827
+ collection_formats = {}
828
+
829
+ path_params = {}
830
+ if 'id' in params:
831
+ path_params['id'] = params['id']
832
+
833
+ query_params = []
834
+
835
+ header_params = {}
836
+
837
+ for key, value in params.get('_custom_headers', {}).items():
838
+ header_params[key] = value
839
+
840
+
841
+ form_params = []
842
+ local_var_files = {}
843
+
844
+ body_params = None
845
+ if 'body' in params:
846
+ body_params = params['body']
847
+ # HTTP header `Accept`
848
+ header_params['Accept'] = self.api_client.\
849
+ select_header_accept(['application/vnd.seeq.v1+json'])
850
+
851
+ # HTTP header `Content-Type`
852
+ header_params['Content-Type'] = self.api_client.\
853
+ select_header_content_type(['application/vnd.seeq.v1+json', ])
854
+
855
+ # Authentication setting
856
+ auth_settings = ['api_key']
857
+
858
+ return self.api_client.call_api('/stored-tables/{id}/csv/update', 'POST',
859
+ path_params,
860
+ query_params,
861
+ header_params,
862
+ body=body_params,
863
+ post_params=form_params,
864
+ files=local_var_files,
865
+ response_type=params.get('_response_type', 'StoredTableOutputV1'),
866
+ auth_settings=auth_settings,
867
+ callback=params.get('callback'),
868
+ _return_http_data_only=params.get('_return_http_data_only'),
869
+ _preload_content=params.get('_preload_content', True),
870
+ _request_timeout=params.get('_request_timeout'),
871
+ collection_formats=collection_formats)