octostar-python-client 0.1.759__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 (257) hide show
  1. octostar/__init__.py +9 -0
  2. octostar/api/__init__.py +1 -0
  3. octostar/api/apps/__init__.py +0 -0
  4. octostar/api/apps/deploy_app.py +210 -0
  5. octostar/api/apps/execute_app_job.py +188 -0
  6. octostar/api/apps/get_app_logs.py +210 -0
  7. octostar/api/apps/get_apps_url.py +188 -0
  8. octostar/api/apps/get_job_logs.py +210 -0
  9. octostar/api/apps/get_job_progress.py +162 -0
  10. octostar/api/apps/kill_job.py +160 -0
  11. octostar/api/apps/list_app_jobs.py +276 -0
  12. octostar/api/apps/list_apps.py +251 -0
  13. octostar/api/apps/set_job_progress.py +216 -0
  14. octostar/api/apps/undeploy_app.py +160 -0
  15. octostar/api/metadata/__init__.py +0 -0
  16. octostar/api/metadata/get_version.py +232 -0
  17. octostar/api/metadata/get_whoami.py +232 -0
  18. octostar/api/notifications/__init__.py +0 -0
  19. octostar/api/notifications/delete_stream.py +222 -0
  20. octostar/api/notifications/get_subscriptions.py +240 -0
  21. octostar/api/notifications/publish_notification.py +275 -0
  22. octostar/api/notifications/pull_events_from_stream.py +282 -0
  23. octostar/api/notifications/push_event_to_stream.py +265 -0
  24. octostar/api/notifications/toast.py +264 -0
  25. octostar/api/ontology/__init__.py +0 -0
  26. octostar/api/ontology/fetch_ontology_data.py +275 -0
  27. octostar/api/ontology/get_ontologies.py +237 -0
  28. octostar/api/ontology/multi_query.py +297 -0
  29. octostar/api/ontology/query.py +276 -0
  30. octostar/api/pipeline/__init__.py +1 -0
  31. octostar/api/pipeline/get_processing_status.py +185 -0
  32. octostar/api/pipeline/update_processing_status.py +164 -0
  33. octostar/api/search/__init__.py +0 -0
  34. octostar/api/search/get_annotations.py +153 -0
  35. octostar/api/workspace_data/__init__.py +0 -0
  36. octostar/api/workspace_data/delete_blob.py +212 -0
  37. octostar/api/workspace_data/delete_entities.py +326 -0
  38. octostar/api/workspace_data/download_blob.py +235 -0
  39. octostar/api/workspace_data/get_attachment.py +336 -0
  40. octostar/api/workspace_data/get_files_tree.py +397 -0
  41. octostar/api/workspace_data/upload_blob.py +235 -0
  42. octostar/api/workspace_data/upsert_entities.py +284 -0
  43. octostar/api/workspace_permissions/__init__.py +0 -0
  44. octostar/api/workspace_permissions/get_permissions.py +325 -0
  45. octostar/api/workspace_tags/__init__.py +0 -0
  46. octostar/api/workspace_tags/delete_tag_from_entities.py +141 -0
  47. octostar/api/workspace_tags/tag_entities.py +180 -0
  48. octostar/client.py +492 -0
  49. octostar/errors.py +50 -0
  50. octostar/models/__init__.py +249 -0
  51. octostar/models/acknowledgement.py +74 -0
  52. octostar/models/acknowledgement_with_data.py +82 -0
  53. octostar/models/app_status.py +239 -0
  54. octostar/models/app_status_annotations.py +66 -0
  55. octostar/models/app_status_labels.py +69 -0
  56. octostar/models/app_with_url.py +82 -0
  57. octostar/models/child_processing_status.py +118 -0
  58. octostar/models/delete_entities_response_401.py +74 -0
  59. octostar/models/delete_entities_response_409.py +82 -0
  60. octostar/models/delete_entities_response_500.py +82 -0
  61. octostar/models/delete_stream_response_401.py +74 -0
  62. octostar/models/delete_tag_from_entities_response_401.py +74 -0
  63. octostar/models/deploy_app_json_body.py +90 -0
  64. octostar/models/deploy_app_json_body_secrets.py +65 -0
  65. octostar/models/deploy_app_response_200.py +98 -0
  66. octostar/models/deploy_app_response_200_data.py +60 -0
  67. octostar/models/deploy_app_response_400.py +82 -0
  68. octostar/models/deploy_app_response_403.py +82 -0
  69. octostar/models/deploy_app_response_404.py +82 -0
  70. octostar/models/deploy_app_response_409.py +82 -0
  71. octostar/models/deploy_app_response_500.py +82 -0
  72. octostar/models/entity.py +80 -0
  73. octostar/models/entity_response.py +99 -0
  74. octostar/models/entity_response_s3_urls.py +93 -0
  75. octostar/models/entity_response_s3_urls_additional_property.py +105 -0
  76. octostar/models/entity_response_s3_urls_additional_property_fields.py +114 -0
  77. octostar/models/execute_app_job_json_body.py +151 -0
  78. octostar/models/execute_app_job_json_body_annotation.py +65 -0
  79. octostar/models/execute_app_job_response_401.py +74 -0
  80. octostar/models/fetch_ontology_data_response_200.py +60 -0
  81. octostar/models/fetch_ontology_data_response_401.py +74 -0
  82. octostar/models/fetch_ontology_data_response_500.py +82 -0
  83. octostar/models/get_app_logs_response_401.py +74 -0
  84. octostar/models/get_app_logs_response_404.py +74 -0
  85. octostar/models/get_app_logs_response_500.py +82 -0
  86. octostar/models/get_apps_url_json_body.py +76 -0
  87. octostar/models/get_apps_url_response_401.py +74 -0
  88. octostar/models/get_apps_url_response_500.py +82 -0
  89. octostar/models/get_attachment_response_200.py +74 -0
  90. octostar/models/get_attachment_response_401.py +74 -0
  91. octostar/models/get_files_tree_response_200.py +106 -0
  92. octostar/models/get_files_tree_response_200_status.py +8 -0
  93. octostar/models/get_files_tree_response_400.py +111 -0
  94. octostar/models/get_files_tree_response_400_data.py +60 -0
  95. octostar/models/get_files_tree_response_400_status.py +8 -0
  96. octostar/models/get_files_tree_response_401.py +74 -0
  97. octostar/models/get_files_tree_response_500.py +111 -0
  98. octostar/models/get_files_tree_response_500_data.py +60 -0
  99. octostar/models/get_files_tree_response_500_status.py +8 -0
  100. octostar/models/get_job_logs_response_401.py +74 -0
  101. octostar/models/get_job_logs_response_404.py +74 -0
  102. octostar/models/get_job_logs_response_500.py +82 -0
  103. octostar/models/get_job_progress_response_401.py +74 -0
  104. octostar/models/get_object_response_401.py +74 -0
  105. octostar/models/get_ontologies_response_401.py +74 -0
  106. octostar/models/get_ontologies_response_500.py +81 -0
  107. octostar/models/get_permissions_response_200.py +98 -0
  108. octostar/models/get_permissions_response_400.py +82 -0
  109. octostar/models/get_permissions_response_401.py +74 -0
  110. octostar/models/get_permissions_response_500.py +82 -0
  111. octostar/models/get_processing_status_response_200.py +104 -0
  112. octostar/models/get_processing_status_response_200_data.py +87 -0
  113. octostar/models/get_processing_status_response_400.py +82 -0
  114. octostar/models/get_processing_status_response_500.py +82 -0
  115. octostar/models/get_subscriptions_response_200_item.py +74 -0
  116. octostar/models/get_version_response_200.py +74 -0
  117. octostar/models/get_version_response_404.py +74 -0
  118. octostar/models/get_whoami_response_200.py +129 -0
  119. octostar/models/get_whoami_response_401.py +74 -0
  120. octostar/models/insert_entity.py +114 -0
  121. octostar/models/insert_entity_base.py +266 -0
  122. octostar/models/insert_entity_relationships_item.py +107 -0
  123. octostar/models/insert_entity_request.py +94 -0
  124. octostar/models/internal_server_error.py +82 -0
  125. octostar/models/job_execution_result.py +146 -0
  126. octostar/models/job_status.py +196 -0
  127. octostar/models/job_status_labels.py +60 -0
  128. octostar/models/job_with_url.py +82 -0
  129. octostar/models/kill_job_response_401.py +74 -0
  130. octostar/models/list_app_jobs_response_401.py +74 -0
  131. octostar/models/list_app_jobs_response_500.py +82 -0
  132. octostar/models/list_apps_response_401.py +74 -0
  133. octostar/models/list_apps_response_500.py +82 -0
  134. octostar/models/multi_query_json_body.py +100 -0
  135. octostar/models/multi_query_json_body_queries_item.py +80 -0
  136. octostar/models/multi_query_response_400.py +82 -0
  137. octostar/models/multi_query_response_401.py +74 -0
  138. octostar/models/not_found_error.py +74 -0
  139. octostar/models/octostar_event.py +96 -0
  140. octostar/models/octostar_event_octostar_payload.py +100 -0
  141. octostar/models/octostar_event_octostar_payload_level.py +11 -0
  142. octostar/models/os_notification.py +122 -0
  143. octostar/models/processing_status.py +262 -0
  144. octostar/models/processing_status_code.py +14 -0
  145. octostar/models/progress_request.py +73 -0
  146. octostar/models/publish_notification_response_401.py +74 -0
  147. octostar/models/pull_events_from_stream_response_401.py +74 -0
  148. octostar/models/push_event_to_stream_response_401.py +74 -0
  149. octostar/models/query_json_body.py +101 -0
  150. octostar/models/query_json_body_params.py +60 -0
  151. octostar/models/query_response_400.py +82 -0
  152. octostar/models/query_response_401.py +74 -0
  153. octostar/models/set_job_progress_response_401.py +74 -0
  154. octostar/models/string_to_value_label_map.py +99 -0
  155. octostar/models/string_to_value_label_map_data.py +89 -0
  156. octostar/models/string_to_value_label_map_data_additional_property.py +80 -0
  157. octostar/models/successful_get_tags.py +103 -0
  158. octostar/models/successful_insertion.py +98 -0
  159. octostar/models/tag_entities_response_401.py +74 -0
  160. octostar/models/toast_level.py +11 -0
  161. octostar/models/toast_response_401.py +74 -0
  162. octostar/models/undeploy_app_response_401.py +74 -0
  163. octostar/models/update_processing_status_response_200.py +82 -0
  164. octostar/models/update_processing_status_response_400.py +82 -0
  165. octostar/models/update_processing_status_response_500.py +82 -0
  166. octostar/models/upsert_entities_response_401.py +74 -0
  167. octostar/models/upsert_entity.py +114 -0
  168. octostar/models/upsert_entity_base.py +266 -0
  169. octostar/models/upsert_entity_relationships_item.py +107 -0
  170. octostar/py.typed +1 -0
  171. octostar/types.py +54 -0
  172. octostar/utils/__init__.py +15 -0
  173. octostar/utils/chat/__init__.py +0 -0
  174. octostar/utils/chat/chat.py +513 -0
  175. octostar/utils/chat/detokenize.py +105 -0
  176. octostar/utils/chat/get_default_model.py +50 -0
  177. octostar/utils/chat/list_models.py +91 -0
  178. octostar/utils/chat/tokenize.py +105 -0
  179. octostar/utils/commons.py +226 -0
  180. octostar/utils/exceptions.py +134 -0
  181. octostar/utils/jobs/__init__.py +0 -0
  182. octostar/utils/jobs/apps/__init__.py +0 -0
  183. octostar/utils/jobs/apps/deploy_app.py +81 -0
  184. octostar/utils/jobs/apps/execute_app_job.py +114 -0
  185. octostar/utils/jobs/apps/get_app_logs.py +113 -0
  186. octostar/utils/jobs/apps/get_app_secret.py +102 -0
  187. octostar/utils/jobs/apps/get_apps_url.py +73 -0
  188. octostar/utils/jobs/apps/list_app_jobs.py +62 -0
  189. octostar/utils/jobs/apps/list_apps.py +126 -0
  190. octostar/utils/jobs/apps/undeploy_app.py +48 -0
  191. octostar/utils/jobs/get_job_logs.py +113 -0
  192. octostar/utils/jobs/get_job_progress.py +76 -0
  193. octostar/utils/jobs/kill_job.py +47 -0
  194. octostar/utils/jobs/set_job_progress.py +67 -0
  195. octostar/utils/meta/__init__.py +0 -0
  196. octostar/utils/meta/get_version.py +30 -0
  197. octostar/utils/meta/get_whoami.py +30 -0
  198. octostar/utils/notifications/__init__.py +0 -0
  199. octostar/utils/notifications/delete_stream.py +58 -0
  200. octostar/utils/notifications/get_my_subscriptions.py +49 -0
  201. octostar/utils/notifications/publish_notification.py +73 -0
  202. octostar/utils/notifications/pull_event_from_stream.py +63 -0
  203. octostar/utils/notifications/pull_events_from_stream.py +64 -0
  204. octostar/utils/notifications/push_event_to_stream.py +109 -0
  205. octostar/utils/notifications/push_events_to_stream.py +137 -0
  206. octostar/utils/notifications/toast.py +92 -0
  207. octostar/utils/ontology/__init__.py +10 -0
  208. octostar/utils/ontology/fetch_ontology_data.py +141 -0
  209. octostar/utils/ontology/get_ontologies.py +55 -0
  210. octostar/utils/ontology/multiquery_ontology.py +287 -0
  211. octostar/utils/ontology/query_ontology.py +186 -0
  212. octostar/utils/pipeline/__init__.py +1 -0
  213. octostar/utils/pipeline/get_processing_status.py +230 -0
  214. octostar/utils/pipeline/update_processing_status.py +286 -0
  215. octostar/utils/search/__init__.py +11 -0
  216. octostar/utils/search/bulk_update.py +138 -0
  217. octostar/utils/search/count.py +117 -0
  218. octostar/utils/search/get_entity_annotations.py +304 -0
  219. octostar/utils/search/get_index_definition.py +111 -0
  220. octostar/utils/search/multi_search.py +129 -0
  221. octostar/utils/workspace/__init__.py +0 -0
  222. octostar/utils/workspace/delete_entities.py +247 -0
  223. octostar/utils/workspace/delete_entity.py +81 -0
  224. octostar/utils/workspace/delete_relationship.py +78 -0
  225. octostar/utils/workspace/delete_relationships.py +85 -0
  226. octostar/utils/workspace/delete_temporary_blob.py +85 -0
  227. octostar/utils/workspace/extract_entities.py +140 -0
  228. octostar/utils/workspace/get_filepath_from_item.py +85 -0
  229. octostar/utils/workspace/get_filepaths_from_items.py +100 -0
  230. octostar/utils/workspace/get_files_tree.py +102 -0
  231. octostar/utils/workspace/get_item_from_filepath.py +102 -0
  232. octostar/utils/workspace/get_items_from_filepaths.py +108 -0
  233. octostar/utils/workspace/linkcharts/__init__.py +0 -0
  234. octostar/utils/workspace/linkcharts/create_linkchart.py +241 -0
  235. octostar/utils/workspace/permissions/PermissionLevel.py +8 -0
  236. octostar/utils/workspace/permissions/__init__.py +1 -0
  237. octostar/utils/workspace/permissions/get_permissions.py +81 -0
  238. octostar/utils/workspace/read_attachment.py +284 -0
  239. octostar/utils/workspace/read_file.py +113 -0
  240. octostar/utils/workspace/read_temporary_blob.py +428 -0
  241. octostar/utils/workspace/saved_searches/__init__.py +0 -0
  242. octostar/utils/workspace/saved_searches/create_saved_search.py +183 -0
  243. octostar/utils/workspace/tags/__init__.py +0 -0
  244. octostar/utils/workspace/tags/delete_tag_from_entities.py +96 -0
  245. octostar/utils/workspace/tags/tag_entities.py +175 -0
  246. octostar/utils/workspace/upsert_entities.py +268 -0
  247. octostar/utils/workspace/upsert_entity.py +110 -0
  248. octostar/utils/workspace/upsert_relationship.py +128 -0
  249. octostar/utils/workspace/upsert_relationships.py +194 -0
  250. octostar/utils/workspace/write_attachment.py +263 -0
  251. octostar/utils/workspace/write_file.py +335 -0
  252. octostar/utils/workspace/write_temporary_blob.py +218 -0
  253. octostar_python_client-0.1.759.dist-info/METADATA +159 -0
  254. octostar_python_client-0.1.759.dist-info/RECORD +257 -0
  255. octostar_python_client-0.1.759.dist-info/WHEEL +5 -0
  256. octostar_python_client-0.1.759.dist-info/licenses/LICENSE +21 -0
  257. octostar_python_client-0.1.759.dist-info/top_level.txt +1 -0
@@ -0,0 +1,82 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import Union
21
+ from ..types import UNSET, Unset
22
+
23
+
24
+ T = TypeVar("T", bound="ListAppsResponse500")
25
+
26
+
27
+ @attr.s(auto_attribs=True)
28
+ class ListAppsResponse500:
29
+ """
30
+ ### Attributes:
31
+ * `error (Union[Unset, str])`: None
32
+ * `traceback (Union[Unset, str])`: None
33
+ """
34
+
35
+ error: Union[Unset, str] = UNSET
36
+ traceback: Union[Unset, str] = UNSET
37
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
38
+
39
+ def to_dict(self) -> Dict[str, Any]:
40
+ error = self.error
41
+ traceback = self.traceback
42
+
43
+ field_dict: Dict[str, Any] = {}
44
+ field_dict.update(self.additional_properties)
45
+ field_dict.update({})
46
+ if error is not UNSET:
47
+ field_dict["error"] = error
48
+ if traceback is not UNSET:
49
+ field_dict["traceback"] = traceback
50
+
51
+ return field_dict
52
+
53
+ @classmethod
54
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
55
+ d = src_dict.copy()
56
+ error = d.pop("error", UNSET)
57
+
58
+ traceback = d.pop("traceback", UNSET)
59
+
60
+ list_apps_response_500 = cls(
61
+ error=error,
62
+ traceback=traceback,
63
+ )
64
+
65
+ list_apps_response_500.additional_properties = d
66
+ return list_apps_response_500
67
+
68
+ @property
69
+ def additional_keys(self) -> List[str]:
70
+ return list(self.additional_properties.keys())
71
+
72
+ def __getitem__(self, key: str) -> Any:
73
+ return self.additional_properties[key]
74
+
75
+ def __setitem__(self, key: str, value: Any) -> None:
76
+ self.additional_properties[key] = value
77
+
78
+ def __delitem__(self, key: str) -> None:
79
+ del self.additional_properties[key]
80
+
81
+ def __contains__(self, key: str) -> bool:
82
+ return key in self.additional_properties
@@ -0,0 +1,100 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import cast, List
21
+ from typing import Dict
22
+ from typing import cast
23
+
24
+ if TYPE_CHECKING:
25
+ from ..models.multi_query_json_body_queries_item import (
26
+ MultiQueryJsonBodyQueriesItem,
27
+ )
28
+
29
+
30
+ T = TypeVar("T", bound="MultiQueryJsonBody")
31
+
32
+
33
+ @attr.s(auto_attribs=True)
34
+ class MultiQueryJsonBody:
35
+ """The SQL queries to be executed
36
+
37
+ ### Attributes:
38
+ * `queries (List['MultiQueryJsonBodyQueriesItem'])`: None
39
+ """
40
+
41
+ queries: List["MultiQueryJsonBodyQueriesItem"]
42
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
43
+
44
+ def to_dict(self) -> Dict[str, Any]:
45
+ from ..models.multi_query_json_body_queries_item import (
46
+ MultiQueryJsonBodyQueriesItem,
47
+ )
48
+
49
+ queries = []
50
+ for queries_item_data in self.queries:
51
+ queries_item = queries_item_data.to_dict()
52
+
53
+ queries.append(queries_item)
54
+
55
+ field_dict: Dict[str, Any] = {}
56
+ field_dict.update(self.additional_properties)
57
+ field_dict.update(
58
+ {
59
+ "queries": queries,
60
+ }
61
+ )
62
+
63
+ return field_dict
64
+
65
+ @classmethod
66
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
67
+ from ..models.multi_query_json_body_queries_item import (
68
+ MultiQueryJsonBodyQueriesItem,
69
+ )
70
+
71
+ d = src_dict.copy()
72
+ queries = []
73
+ _queries = d.pop("queries")
74
+ for queries_item_data in _queries:
75
+ queries_item = MultiQueryJsonBodyQueriesItem.from_dict(queries_item_data)
76
+
77
+ queries.append(queries_item)
78
+
79
+ multi_query_json_body = cls(
80
+ queries=queries,
81
+ )
82
+
83
+ multi_query_json_body.additional_properties = d
84
+ return multi_query_json_body
85
+
86
+ @property
87
+ def additional_keys(self) -> List[str]:
88
+ return list(self.additional_properties.keys())
89
+
90
+ def __getitem__(self, key: str) -> Any:
91
+ return self.additional_properties[key]
92
+
93
+ def __setitem__(self, key: str, value: Any) -> None:
94
+ self.additional_properties[key] = value
95
+
96
+ def __delitem__(self, key: str) -> None:
97
+ del self.additional_properties[key]
98
+
99
+ def __contains__(self, key: str) -> bool:
100
+ return key in self.additional_properties
@@ -0,0 +1,80 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+
21
+ T = TypeVar("T", bound="MultiQueryJsonBodyQueriesItem")
22
+
23
+
24
+ @attr.s(auto_attribs=True)
25
+ class MultiQueryJsonBodyQueriesItem:
26
+ """
27
+ ### Attributes:
28
+ * `query_id (str)`: None
29
+ * `sql (str)`: None
30
+ """
31
+
32
+ query_id: str
33
+ sql: str
34
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
35
+
36
+ def to_dict(self) -> Dict[str, Any]:
37
+ query_id = self.query_id
38
+ sql = self.sql
39
+
40
+ field_dict: Dict[str, Any] = {}
41
+ field_dict.update(self.additional_properties)
42
+ field_dict.update(
43
+ {
44
+ "query_id": query_id,
45
+ "sql": sql,
46
+ }
47
+ )
48
+
49
+ return field_dict
50
+
51
+ @classmethod
52
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
53
+ d = src_dict.copy()
54
+ query_id = d.pop("query_id")
55
+
56
+ sql = d.pop("sql")
57
+
58
+ multi_query_json_body_queries_item = cls(
59
+ query_id=query_id,
60
+ sql=sql,
61
+ )
62
+
63
+ multi_query_json_body_queries_item.additional_properties = d
64
+ return multi_query_json_body_queries_item
65
+
66
+ @property
67
+ def additional_keys(self) -> List[str]:
68
+ return list(self.additional_properties.keys())
69
+
70
+ def __getitem__(self, key: str) -> Any:
71
+ return self.additional_properties[key]
72
+
73
+ def __setitem__(self, key: str, value: Any) -> None:
74
+ self.additional_properties[key] = value
75
+
76
+ def __delitem__(self, key: str) -> None:
77
+ del self.additional_properties[key]
78
+
79
+ def __contains__(self, key: str) -> bool:
80
+ return key in self.additional_properties
@@ -0,0 +1,82 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import Union
21
+ from ..types import UNSET, Unset
22
+
23
+
24
+ T = TypeVar("T", bound="MultiQueryResponse400")
25
+
26
+
27
+ @attr.s(auto_attribs=True)
28
+ class MultiQueryResponse400:
29
+ """
30
+ ### Attributes:
31
+ * `data (Union[Unset, str])`: None
32
+ * `status (Union[Unset, str])`: None
33
+ """
34
+
35
+ data: Union[Unset, str] = UNSET
36
+ status: Union[Unset, str] = UNSET
37
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
38
+
39
+ def to_dict(self) -> Dict[str, Any]:
40
+ data = self.data
41
+ status = self.status
42
+
43
+ field_dict: Dict[str, Any] = {}
44
+ field_dict.update(self.additional_properties)
45
+ field_dict.update({})
46
+ if data is not UNSET:
47
+ field_dict["data"] = data
48
+ if status is not UNSET:
49
+ field_dict["status"] = status
50
+
51
+ return field_dict
52
+
53
+ @classmethod
54
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
55
+ d = src_dict.copy()
56
+ data = d.pop("data", UNSET)
57
+
58
+ status = d.pop("status", UNSET)
59
+
60
+ multi_query_response_400 = cls(
61
+ data=data,
62
+ status=status,
63
+ )
64
+
65
+ multi_query_response_400.additional_properties = d
66
+ return multi_query_response_400
67
+
68
+ @property
69
+ def additional_keys(self) -> List[str]:
70
+ return list(self.additional_properties.keys())
71
+
72
+ def __getitem__(self, key: str) -> Any:
73
+ return self.additional_properties[key]
74
+
75
+ def __setitem__(self, key: str, value: Any) -> None:
76
+ self.additional_properties[key] = value
77
+
78
+ def __delitem__(self, key: str) -> None:
79
+ del self.additional_properties[key]
80
+
81
+ def __contains__(self, key: str) -> bool:
82
+ return key in self.additional_properties
@@ -0,0 +1,74 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import Union
21
+ from ..types import UNSET, Unset
22
+
23
+
24
+ T = TypeVar("T", bound="MultiQueryResponse401")
25
+
26
+
27
+ @attr.s(auto_attribs=True)
28
+ class MultiQueryResponse401:
29
+ """
30
+ ### Attributes:
31
+ * `message (Union[Unset, str])`: None
32
+ """
33
+
34
+ message: Union[Unset, str] = UNSET
35
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
36
+
37
+ def to_dict(self) -> Dict[str, Any]:
38
+ message = self.message
39
+
40
+ field_dict: Dict[str, Any] = {}
41
+ field_dict.update(self.additional_properties)
42
+ field_dict.update({})
43
+ if message is not UNSET:
44
+ field_dict["message"] = message
45
+
46
+ return field_dict
47
+
48
+ @classmethod
49
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
50
+ d = src_dict.copy()
51
+ message = d.pop("message", UNSET)
52
+
53
+ multi_query_response_401 = cls(
54
+ message=message,
55
+ )
56
+
57
+ multi_query_response_401.additional_properties = d
58
+ return multi_query_response_401
59
+
60
+ @property
61
+ def additional_keys(self) -> List[str]:
62
+ return list(self.additional_properties.keys())
63
+
64
+ def __getitem__(self, key: str) -> Any:
65
+ return self.additional_properties[key]
66
+
67
+ def __setitem__(self, key: str, value: Any) -> None:
68
+ self.additional_properties[key] = value
69
+
70
+ def __delitem__(self, key: str) -> None:
71
+ del self.additional_properties[key]
72
+
73
+ def __contains__(self, key: str) -> bool:
74
+ return key in self.additional_properties
@@ -0,0 +1,74 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import Union
21
+ from ..types import UNSET, Unset
22
+
23
+
24
+ T = TypeVar("T", bound="NotFoundError")
25
+
26
+
27
+ @attr.s(auto_attribs=True)
28
+ class NotFoundError:
29
+ """
30
+ ### Attributes:
31
+ * `error (Union[Unset, str])`: None
32
+ """
33
+
34
+ error: Union[Unset, str] = UNSET
35
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
36
+
37
+ def to_dict(self) -> Dict[str, Any]:
38
+ error = self.error
39
+
40
+ field_dict: Dict[str, Any] = {}
41
+ field_dict.update(self.additional_properties)
42
+ field_dict.update({})
43
+ if error is not UNSET:
44
+ field_dict["error"] = error
45
+
46
+ return field_dict
47
+
48
+ @classmethod
49
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
50
+ d = src_dict.copy()
51
+ error = d.pop("error", UNSET)
52
+
53
+ not_found_error = cls(
54
+ error=error,
55
+ )
56
+
57
+ not_found_error.additional_properties = d
58
+ return not_found_error
59
+
60
+ @property
61
+ def additional_keys(self) -> List[str]:
62
+ return list(self.additional_properties.keys())
63
+
64
+ def __getitem__(self, key: str) -> Any:
65
+ return self.additional_properties[key]
66
+
67
+ def __setitem__(self, key: str, value: Any) -> None:
68
+ self.additional_properties[key] = value
69
+
70
+ def __delitem__(self, key: str) -> None:
71
+ del self.additional_properties[key]
72
+
73
+ def __contains__(self, key: str) -> bool:
74
+ return key in self.additional_properties
@@ -0,0 +1,96 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import cast
21
+ from typing import Dict
22
+
23
+ if TYPE_CHECKING:
24
+ from ..models.octostar_event_octostar_payload import OctostarEventOctostarPayload
25
+
26
+
27
+ T = TypeVar("T", bound="OctostarEvent")
28
+
29
+
30
+ @attr.s(auto_attribs=True)
31
+ class OctostarEvent:
32
+ """
33
+ ### Attributes:
34
+ * `octostar_stream (str)`: The channel where the Octostar event is posted
35
+ * `octostar_payload (OctostarEventOctostarPayload)`:
36
+ """
37
+
38
+ octostar_stream: str
39
+ octostar_payload: "OctostarEventOctostarPayload"
40
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
41
+
42
+ def to_dict(self) -> Dict[str, Any]:
43
+ from ..models.octostar_event_octostar_payload import (
44
+ OctostarEventOctostarPayload,
45
+ )
46
+
47
+ octostar_stream = self.octostar_stream
48
+ octostar_payload = self.octostar_payload.to_dict()
49
+
50
+ field_dict: Dict[str, Any] = {}
51
+ field_dict.update(self.additional_properties)
52
+ field_dict.update(
53
+ {
54
+ "octostar_stream": octostar_stream,
55
+ "octostar_payload": octostar_payload,
56
+ }
57
+ )
58
+
59
+ return field_dict
60
+
61
+ @classmethod
62
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
63
+ from ..models.octostar_event_octostar_payload import (
64
+ OctostarEventOctostarPayload,
65
+ )
66
+
67
+ d = src_dict.copy()
68
+ octostar_stream = d.pop("octostar_stream")
69
+
70
+ octostar_payload = OctostarEventOctostarPayload.from_dict(
71
+ d.pop("octostar_payload")
72
+ )
73
+
74
+ octostar_event = cls(
75
+ octostar_stream=octostar_stream,
76
+ octostar_payload=octostar_payload,
77
+ )
78
+
79
+ octostar_event.additional_properties = d
80
+ return octostar_event
81
+
82
+ @property
83
+ def additional_keys(self) -> List[str]:
84
+ return list(self.additional_properties.keys())
85
+
86
+ def __getitem__(self, key: str) -> Any:
87
+ return self.additional_properties[key]
88
+
89
+ def __setitem__(self, key: str, value: Any) -> None:
90
+ self.additional_properties[key] = value
91
+
92
+ def __delitem__(self, key: str) -> None:
93
+ del self.additional_properties[key]
94
+
95
+ def __contains__(self, key: str) -> bool:
96
+ return key in self.additional_properties
@@ -0,0 +1,100 @@
1
+ from typing import (
2
+ Any,
3
+ Dict,
4
+ Type,
5
+ TypeVar,
6
+ Tuple,
7
+ Optional,
8
+ BinaryIO,
9
+ TextIO,
10
+ TYPE_CHECKING,
11
+ )
12
+
13
+ from typing import List
14
+
15
+
16
+ import attr
17
+
18
+ from ..types import UNSET, Unset
19
+
20
+ from typing import Union
21
+ from ..types import UNSET, Unset
22
+ from ..models.octostar_event_octostar_payload_level import (
23
+ OctostarEventOctostarPayloadLevel,
24
+ )
25
+
26
+
27
+ T = TypeVar("T", bound="OctostarEventOctostarPayload")
28
+
29
+
30
+ @attr.s(auto_attribs=True)
31
+ class OctostarEventOctostarPayload:
32
+ """
33
+ ### Attributes:
34
+ * `message (Union[Unset, str])`: The message of the event
35
+ * `description (Union[Unset, str])`: The description of the event
36
+ * `level (Union[Unset, OctostarEventOctostarPayloadLevel])`: The level of the event
37
+ """
38
+
39
+ message: Union[Unset, str] = UNSET
40
+ description: Union[Unset, str] = UNSET
41
+ level: Union[Unset, OctostarEventOctostarPayloadLevel] = UNSET
42
+ additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
43
+
44
+ def to_dict(self) -> Dict[str, Any]:
45
+ message = self.message
46
+ description = self.description
47
+ level: Union[Unset, str] = UNSET
48
+ if not isinstance(self.level, Unset):
49
+ level = self.level.value
50
+
51
+ field_dict: Dict[str, Any] = {}
52
+ field_dict.update(self.additional_properties)
53
+ field_dict.update({})
54
+ if message is not UNSET:
55
+ field_dict["message"] = message
56
+ if description is not UNSET:
57
+ field_dict["description"] = description
58
+ if level is not UNSET:
59
+ field_dict["level"] = level
60
+
61
+ return field_dict
62
+
63
+ @classmethod
64
+ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
65
+ d = src_dict.copy()
66
+ message = d.pop("message", UNSET)
67
+
68
+ description = d.pop("description", UNSET)
69
+
70
+ _level = d.pop("level", UNSET)
71
+ level: Union[Unset, OctostarEventOctostarPayloadLevel]
72
+ if isinstance(_level, Unset):
73
+ level = UNSET
74
+ else:
75
+ level = OctostarEventOctostarPayloadLevel(_level)
76
+
77
+ octostar_event_octostar_payload = cls(
78
+ message=message,
79
+ description=description,
80
+ level=level,
81
+ )
82
+
83
+ octostar_event_octostar_payload.additional_properties = d
84
+ return octostar_event_octostar_payload
85
+
86
+ @property
87
+ def additional_keys(self) -> List[str]:
88
+ return list(self.additional_properties.keys())
89
+
90
+ def __getitem__(self, key: str) -> Any:
91
+ return self.additional_properties[key]
92
+
93
+ def __setitem__(self, key: str, value: Any) -> None:
94
+ self.additional_properties[key] = value
95
+
96
+ def __delitem__(self, key: str) -> None:
97
+ del self.additional_properties[key]
98
+
99
+ def __contains__(self, key: str) -> bool:
100
+ return key in self.additional_properties
@@ -0,0 +1,11 @@
1
+ from enum import Enum
2
+
3
+
4
+ class OctostarEventOctostarPayloadLevel(str, Enum):
5
+ DEBUG = "debug"
6
+ ERROR = "error"
7
+ INFO = "info"
8
+ WARNING = "warning"
9
+
10
+ def __str__(self) -> str:
11
+ return str(self.value)