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.
- octostar/__init__.py +9 -0
- octostar/api/__init__.py +1 -0
- octostar/api/apps/__init__.py +0 -0
- octostar/api/apps/deploy_app.py +210 -0
- octostar/api/apps/execute_app_job.py +188 -0
- octostar/api/apps/get_app_logs.py +210 -0
- octostar/api/apps/get_apps_url.py +188 -0
- octostar/api/apps/get_job_logs.py +210 -0
- octostar/api/apps/get_job_progress.py +162 -0
- octostar/api/apps/kill_job.py +160 -0
- octostar/api/apps/list_app_jobs.py +276 -0
- octostar/api/apps/list_apps.py +251 -0
- octostar/api/apps/set_job_progress.py +216 -0
- octostar/api/apps/undeploy_app.py +160 -0
- octostar/api/metadata/__init__.py +0 -0
- octostar/api/metadata/get_version.py +232 -0
- octostar/api/metadata/get_whoami.py +232 -0
- octostar/api/notifications/__init__.py +0 -0
- octostar/api/notifications/delete_stream.py +222 -0
- octostar/api/notifications/get_subscriptions.py +240 -0
- octostar/api/notifications/publish_notification.py +275 -0
- octostar/api/notifications/pull_events_from_stream.py +282 -0
- octostar/api/notifications/push_event_to_stream.py +265 -0
- octostar/api/notifications/toast.py +264 -0
- octostar/api/ontology/__init__.py +0 -0
- octostar/api/ontology/fetch_ontology_data.py +275 -0
- octostar/api/ontology/get_ontologies.py +237 -0
- octostar/api/ontology/multi_query.py +297 -0
- octostar/api/ontology/query.py +276 -0
- octostar/api/pipeline/__init__.py +1 -0
- octostar/api/pipeline/get_processing_status.py +185 -0
- octostar/api/pipeline/update_processing_status.py +164 -0
- octostar/api/search/__init__.py +0 -0
- octostar/api/search/get_annotations.py +153 -0
- octostar/api/workspace_data/__init__.py +0 -0
- octostar/api/workspace_data/delete_blob.py +212 -0
- octostar/api/workspace_data/delete_entities.py +326 -0
- octostar/api/workspace_data/download_blob.py +235 -0
- octostar/api/workspace_data/get_attachment.py +336 -0
- octostar/api/workspace_data/get_files_tree.py +397 -0
- octostar/api/workspace_data/upload_blob.py +235 -0
- octostar/api/workspace_data/upsert_entities.py +284 -0
- octostar/api/workspace_permissions/__init__.py +0 -0
- octostar/api/workspace_permissions/get_permissions.py +325 -0
- octostar/api/workspace_tags/__init__.py +0 -0
- octostar/api/workspace_tags/delete_tag_from_entities.py +141 -0
- octostar/api/workspace_tags/tag_entities.py +180 -0
- octostar/client.py +492 -0
- octostar/errors.py +50 -0
- octostar/models/__init__.py +249 -0
- octostar/models/acknowledgement.py +74 -0
- octostar/models/acknowledgement_with_data.py +82 -0
- octostar/models/app_status.py +239 -0
- octostar/models/app_status_annotations.py +66 -0
- octostar/models/app_status_labels.py +69 -0
- octostar/models/app_with_url.py +82 -0
- octostar/models/child_processing_status.py +118 -0
- octostar/models/delete_entities_response_401.py +74 -0
- octostar/models/delete_entities_response_409.py +82 -0
- octostar/models/delete_entities_response_500.py +82 -0
- octostar/models/delete_stream_response_401.py +74 -0
- octostar/models/delete_tag_from_entities_response_401.py +74 -0
- octostar/models/deploy_app_json_body.py +90 -0
- octostar/models/deploy_app_json_body_secrets.py +65 -0
- octostar/models/deploy_app_response_200.py +98 -0
- octostar/models/deploy_app_response_200_data.py +60 -0
- octostar/models/deploy_app_response_400.py +82 -0
- octostar/models/deploy_app_response_403.py +82 -0
- octostar/models/deploy_app_response_404.py +82 -0
- octostar/models/deploy_app_response_409.py +82 -0
- octostar/models/deploy_app_response_500.py +82 -0
- octostar/models/entity.py +80 -0
- octostar/models/entity_response.py +99 -0
- octostar/models/entity_response_s3_urls.py +93 -0
- octostar/models/entity_response_s3_urls_additional_property.py +105 -0
- octostar/models/entity_response_s3_urls_additional_property_fields.py +114 -0
- octostar/models/execute_app_job_json_body.py +151 -0
- octostar/models/execute_app_job_json_body_annotation.py +65 -0
- octostar/models/execute_app_job_response_401.py +74 -0
- octostar/models/fetch_ontology_data_response_200.py +60 -0
- octostar/models/fetch_ontology_data_response_401.py +74 -0
- octostar/models/fetch_ontology_data_response_500.py +82 -0
- octostar/models/get_app_logs_response_401.py +74 -0
- octostar/models/get_app_logs_response_404.py +74 -0
- octostar/models/get_app_logs_response_500.py +82 -0
- octostar/models/get_apps_url_json_body.py +76 -0
- octostar/models/get_apps_url_response_401.py +74 -0
- octostar/models/get_apps_url_response_500.py +82 -0
- octostar/models/get_attachment_response_200.py +74 -0
- octostar/models/get_attachment_response_401.py +74 -0
- octostar/models/get_files_tree_response_200.py +106 -0
- octostar/models/get_files_tree_response_200_status.py +8 -0
- octostar/models/get_files_tree_response_400.py +111 -0
- octostar/models/get_files_tree_response_400_data.py +60 -0
- octostar/models/get_files_tree_response_400_status.py +8 -0
- octostar/models/get_files_tree_response_401.py +74 -0
- octostar/models/get_files_tree_response_500.py +111 -0
- octostar/models/get_files_tree_response_500_data.py +60 -0
- octostar/models/get_files_tree_response_500_status.py +8 -0
- octostar/models/get_job_logs_response_401.py +74 -0
- octostar/models/get_job_logs_response_404.py +74 -0
- octostar/models/get_job_logs_response_500.py +82 -0
- octostar/models/get_job_progress_response_401.py +74 -0
- octostar/models/get_object_response_401.py +74 -0
- octostar/models/get_ontologies_response_401.py +74 -0
- octostar/models/get_ontologies_response_500.py +81 -0
- octostar/models/get_permissions_response_200.py +98 -0
- octostar/models/get_permissions_response_400.py +82 -0
- octostar/models/get_permissions_response_401.py +74 -0
- octostar/models/get_permissions_response_500.py +82 -0
- octostar/models/get_processing_status_response_200.py +104 -0
- octostar/models/get_processing_status_response_200_data.py +87 -0
- octostar/models/get_processing_status_response_400.py +82 -0
- octostar/models/get_processing_status_response_500.py +82 -0
- octostar/models/get_subscriptions_response_200_item.py +74 -0
- octostar/models/get_version_response_200.py +74 -0
- octostar/models/get_version_response_404.py +74 -0
- octostar/models/get_whoami_response_200.py +129 -0
- octostar/models/get_whoami_response_401.py +74 -0
- octostar/models/insert_entity.py +114 -0
- octostar/models/insert_entity_base.py +266 -0
- octostar/models/insert_entity_relationships_item.py +107 -0
- octostar/models/insert_entity_request.py +94 -0
- octostar/models/internal_server_error.py +82 -0
- octostar/models/job_execution_result.py +146 -0
- octostar/models/job_status.py +196 -0
- octostar/models/job_status_labels.py +60 -0
- octostar/models/job_with_url.py +82 -0
- octostar/models/kill_job_response_401.py +74 -0
- octostar/models/list_app_jobs_response_401.py +74 -0
- octostar/models/list_app_jobs_response_500.py +82 -0
- octostar/models/list_apps_response_401.py +74 -0
- octostar/models/list_apps_response_500.py +82 -0
- octostar/models/multi_query_json_body.py +100 -0
- octostar/models/multi_query_json_body_queries_item.py +80 -0
- octostar/models/multi_query_response_400.py +82 -0
- octostar/models/multi_query_response_401.py +74 -0
- octostar/models/not_found_error.py +74 -0
- octostar/models/octostar_event.py +96 -0
- octostar/models/octostar_event_octostar_payload.py +100 -0
- octostar/models/octostar_event_octostar_payload_level.py +11 -0
- octostar/models/os_notification.py +122 -0
- octostar/models/processing_status.py +262 -0
- octostar/models/processing_status_code.py +14 -0
- octostar/models/progress_request.py +73 -0
- octostar/models/publish_notification_response_401.py +74 -0
- octostar/models/pull_events_from_stream_response_401.py +74 -0
- octostar/models/push_event_to_stream_response_401.py +74 -0
- octostar/models/query_json_body.py +101 -0
- octostar/models/query_json_body_params.py +60 -0
- octostar/models/query_response_400.py +82 -0
- octostar/models/query_response_401.py +74 -0
- octostar/models/set_job_progress_response_401.py +74 -0
- octostar/models/string_to_value_label_map.py +99 -0
- octostar/models/string_to_value_label_map_data.py +89 -0
- octostar/models/string_to_value_label_map_data_additional_property.py +80 -0
- octostar/models/successful_get_tags.py +103 -0
- octostar/models/successful_insertion.py +98 -0
- octostar/models/tag_entities_response_401.py +74 -0
- octostar/models/toast_level.py +11 -0
- octostar/models/toast_response_401.py +74 -0
- octostar/models/undeploy_app_response_401.py +74 -0
- octostar/models/update_processing_status_response_200.py +82 -0
- octostar/models/update_processing_status_response_400.py +82 -0
- octostar/models/update_processing_status_response_500.py +82 -0
- octostar/models/upsert_entities_response_401.py +74 -0
- octostar/models/upsert_entity.py +114 -0
- octostar/models/upsert_entity_base.py +266 -0
- octostar/models/upsert_entity_relationships_item.py +107 -0
- octostar/py.typed +1 -0
- octostar/types.py +54 -0
- octostar/utils/__init__.py +15 -0
- octostar/utils/chat/__init__.py +0 -0
- octostar/utils/chat/chat.py +513 -0
- octostar/utils/chat/detokenize.py +105 -0
- octostar/utils/chat/get_default_model.py +50 -0
- octostar/utils/chat/list_models.py +91 -0
- octostar/utils/chat/tokenize.py +105 -0
- octostar/utils/commons.py +226 -0
- octostar/utils/exceptions.py +134 -0
- octostar/utils/jobs/__init__.py +0 -0
- octostar/utils/jobs/apps/__init__.py +0 -0
- octostar/utils/jobs/apps/deploy_app.py +81 -0
- octostar/utils/jobs/apps/execute_app_job.py +114 -0
- octostar/utils/jobs/apps/get_app_logs.py +113 -0
- octostar/utils/jobs/apps/get_app_secret.py +102 -0
- octostar/utils/jobs/apps/get_apps_url.py +73 -0
- octostar/utils/jobs/apps/list_app_jobs.py +62 -0
- octostar/utils/jobs/apps/list_apps.py +126 -0
- octostar/utils/jobs/apps/undeploy_app.py +48 -0
- octostar/utils/jobs/get_job_logs.py +113 -0
- octostar/utils/jobs/get_job_progress.py +76 -0
- octostar/utils/jobs/kill_job.py +47 -0
- octostar/utils/jobs/set_job_progress.py +67 -0
- octostar/utils/meta/__init__.py +0 -0
- octostar/utils/meta/get_version.py +30 -0
- octostar/utils/meta/get_whoami.py +30 -0
- octostar/utils/notifications/__init__.py +0 -0
- octostar/utils/notifications/delete_stream.py +58 -0
- octostar/utils/notifications/get_my_subscriptions.py +49 -0
- octostar/utils/notifications/publish_notification.py +73 -0
- octostar/utils/notifications/pull_event_from_stream.py +63 -0
- octostar/utils/notifications/pull_events_from_stream.py +64 -0
- octostar/utils/notifications/push_event_to_stream.py +109 -0
- octostar/utils/notifications/push_events_to_stream.py +137 -0
- octostar/utils/notifications/toast.py +92 -0
- octostar/utils/ontology/__init__.py +10 -0
- octostar/utils/ontology/fetch_ontology_data.py +141 -0
- octostar/utils/ontology/get_ontologies.py +55 -0
- octostar/utils/ontology/multiquery_ontology.py +287 -0
- octostar/utils/ontology/query_ontology.py +186 -0
- octostar/utils/pipeline/__init__.py +1 -0
- octostar/utils/pipeline/get_processing_status.py +230 -0
- octostar/utils/pipeline/update_processing_status.py +286 -0
- octostar/utils/search/__init__.py +11 -0
- octostar/utils/search/bulk_update.py +138 -0
- octostar/utils/search/count.py +117 -0
- octostar/utils/search/get_entity_annotations.py +304 -0
- octostar/utils/search/get_index_definition.py +111 -0
- octostar/utils/search/multi_search.py +129 -0
- octostar/utils/workspace/__init__.py +0 -0
- octostar/utils/workspace/delete_entities.py +247 -0
- octostar/utils/workspace/delete_entity.py +81 -0
- octostar/utils/workspace/delete_relationship.py +78 -0
- octostar/utils/workspace/delete_relationships.py +85 -0
- octostar/utils/workspace/delete_temporary_blob.py +85 -0
- octostar/utils/workspace/extract_entities.py +140 -0
- octostar/utils/workspace/get_filepath_from_item.py +85 -0
- octostar/utils/workspace/get_filepaths_from_items.py +100 -0
- octostar/utils/workspace/get_files_tree.py +102 -0
- octostar/utils/workspace/get_item_from_filepath.py +102 -0
- octostar/utils/workspace/get_items_from_filepaths.py +108 -0
- octostar/utils/workspace/linkcharts/__init__.py +0 -0
- octostar/utils/workspace/linkcharts/create_linkchart.py +241 -0
- octostar/utils/workspace/permissions/PermissionLevel.py +8 -0
- octostar/utils/workspace/permissions/__init__.py +1 -0
- octostar/utils/workspace/permissions/get_permissions.py +81 -0
- octostar/utils/workspace/read_attachment.py +284 -0
- octostar/utils/workspace/read_file.py +113 -0
- octostar/utils/workspace/read_temporary_blob.py +428 -0
- octostar/utils/workspace/saved_searches/__init__.py +0 -0
- octostar/utils/workspace/saved_searches/create_saved_search.py +183 -0
- octostar/utils/workspace/tags/__init__.py +0 -0
- octostar/utils/workspace/tags/delete_tag_from_entities.py +96 -0
- octostar/utils/workspace/tags/tag_entities.py +175 -0
- octostar/utils/workspace/upsert_entities.py +268 -0
- octostar/utils/workspace/upsert_entity.py +110 -0
- octostar/utils/workspace/upsert_relationship.py +128 -0
- octostar/utils/workspace/upsert_relationships.py +194 -0
- octostar/utils/workspace/write_attachment.py +263 -0
- octostar/utils/workspace/write_file.py +335 -0
- octostar/utils/workspace/write_temporary_blob.py +218 -0
- octostar_python_client-0.1.759.dist-info/METADATA +159 -0
- octostar_python_client-0.1.759.dist-info/RECORD +257 -0
- octostar_python_client-0.1.759.dist-info/WHEEL +5 -0
- octostar_python_client-0.1.759.dist-info/licenses/LICENSE +21 -0
- octostar_python_client-0.1.759.dist-info/top_level.txt +1 -0
|
@@ -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="UpsertEntitiesResponse401")
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
@attr.s(auto_attribs=True)
|
|
28
|
+
class UpsertEntitiesResponse401:
|
|
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
|
+
upsert_entities_response_401 = cls(
|
|
54
|
+
message=message,
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
upsert_entities_response_401.additional_properties = d
|
|
58
|
+
return upsert_entities_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,114 @@
|
|
|
1
|
+
from typing import (
|
|
2
|
+
Any,
|
|
3
|
+
Dict,
|
|
4
|
+
Type,
|
|
5
|
+
TypeVar,
|
|
6
|
+
Tuple,
|
|
7
|
+
Optional,
|
|
8
|
+
BinaryIO,
|
|
9
|
+
TextIO,
|
|
10
|
+
TYPE_CHECKING,
|
|
11
|
+
List,
|
|
12
|
+
Union,
|
|
13
|
+
cast,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
import attr
|
|
17
|
+
|
|
18
|
+
from ..types import UNSET, Unset
|
|
19
|
+
|
|
20
|
+
if TYPE_CHECKING:
|
|
21
|
+
from ..models.upsert_entity_relationships_item import UpsertEntityRelationshipsItem
|
|
22
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
T = TypeVar("T", bound="UpsertEntity")
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
@attr.s(auto_attribs=True)
|
|
29
|
+
class UpsertEntity:
|
|
30
|
+
"""
|
|
31
|
+
### Attributes:
|
|
32
|
+
* `entity (Union[Unset, UpsertEntityBase])`:
|
|
33
|
+
* `relationships (Union[Unset, List['UpsertEntityRelationshipsItem']])`: None
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
entity: Union[Unset, "UpsertEntityBase"] = UNSET
|
|
37
|
+
relationships: Union[Unset, List["UpsertEntityRelationshipsItem"]] = UNSET
|
|
38
|
+
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
|
39
|
+
|
|
40
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
41
|
+
from ..models.upsert_entity_relationships_item import (
|
|
42
|
+
UpsertEntityRelationshipsItem,
|
|
43
|
+
)
|
|
44
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
45
|
+
|
|
46
|
+
entity: Union[Unset, Dict[str, Any]] = UNSET
|
|
47
|
+
if not isinstance(self.entity, Unset):
|
|
48
|
+
entity = self.entity.to_dict()
|
|
49
|
+
|
|
50
|
+
relationships: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
51
|
+
if not isinstance(self.relationships, Unset):
|
|
52
|
+
relationships = []
|
|
53
|
+
for relationships_item_data in self.relationships:
|
|
54
|
+
relationships_item = relationships_item_data.to_dict()
|
|
55
|
+
|
|
56
|
+
relationships.append(relationships_item)
|
|
57
|
+
|
|
58
|
+
field_dict: Dict[str, Any] = {}
|
|
59
|
+
field_dict.update(self.additional_properties)
|
|
60
|
+
field_dict.update({})
|
|
61
|
+
if entity is not UNSET:
|
|
62
|
+
field_dict["entity"] = entity
|
|
63
|
+
if relationships is not UNSET:
|
|
64
|
+
field_dict["relationships"] = relationships
|
|
65
|
+
|
|
66
|
+
return field_dict
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
70
|
+
from ..models.upsert_entity_relationships_item import (
|
|
71
|
+
UpsertEntityRelationshipsItem,
|
|
72
|
+
)
|
|
73
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
74
|
+
|
|
75
|
+
d = src_dict.copy()
|
|
76
|
+
_entity = d.pop("entity", UNSET)
|
|
77
|
+
entity: Union[Unset, UpsertEntityBase]
|
|
78
|
+
if isinstance(_entity, Unset):
|
|
79
|
+
entity = UNSET
|
|
80
|
+
else:
|
|
81
|
+
entity = UpsertEntityBase.from_dict(_entity)
|
|
82
|
+
|
|
83
|
+
relationships = []
|
|
84
|
+
_relationships = d.pop("relationships", UNSET)
|
|
85
|
+
for relationships_item_data in _relationships or []:
|
|
86
|
+
relationships_item = UpsertEntityRelationshipsItem.from_dict(
|
|
87
|
+
relationships_item_data
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
relationships.append(relationships_item)
|
|
91
|
+
|
|
92
|
+
upsert_entity = cls(
|
|
93
|
+
entity=entity,
|
|
94
|
+
relationships=relationships,
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
upsert_entity.additional_properties = d
|
|
98
|
+
return upsert_entity
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
def additional_keys(self) -> List[str]:
|
|
102
|
+
return list(self.additional_properties.keys())
|
|
103
|
+
|
|
104
|
+
def __getitem__(self, key: str) -> Any:
|
|
105
|
+
return self.additional_properties[key]
|
|
106
|
+
|
|
107
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
108
|
+
self.additional_properties[key] = value
|
|
109
|
+
|
|
110
|
+
def __delitem__(self, key: str) -> None:
|
|
111
|
+
del self.additional_properties[key]
|
|
112
|
+
|
|
113
|
+
def __contains__(self, key: str) -> bool:
|
|
114
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,266 @@
|
|
|
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="UpsertEntityBase")
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
@attr.s(auto_attribs=True)
|
|
28
|
+
class UpsertEntityBase:
|
|
29
|
+
"""
|
|
30
|
+
### Attributes:
|
|
31
|
+
* `entity_id (Union[Unset, str])`: None
|
|
32
|
+
* `entity_type (Union[Unset, str])`: None
|
|
33
|
+
* `entity_label (Union[Unset, str])`: None
|
|
34
|
+
* `os_item_content_type (Union[Unset, str])`: None
|
|
35
|
+
* `os_last_updated_by (Union[Unset, str])`: None
|
|
36
|
+
* `os_workspace (Union[Unset, str])`: None
|
|
37
|
+
* `os_deleted_at (Union[Unset, str])`: None
|
|
38
|
+
* `os_parent_folder (Union[Unset, str])`: None
|
|
39
|
+
* `os_deleted_by (Union[Unset, str])`: None
|
|
40
|
+
* `os_icon (Union[Unset, str])`: None
|
|
41
|
+
* `description (Union[Unset, str])`: None
|
|
42
|
+
* `os_textsearchfield (Union[Unset, str])`: None
|
|
43
|
+
* `os_item_content (Union[Unset, str])`: None
|
|
44
|
+
* `os_last_updated_at (Union[Unset, str])`: None
|
|
45
|
+
* `os_item_type (Union[Unset, str])`: None
|
|
46
|
+
* `os_hidden_at (Union[Unset, str])`: None
|
|
47
|
+
* `os_hidden_by (Union[Unset, str])`: None
|
|
48
|
+
* `os_entity_uid (Union[Unset, str])`: None
|
|
49
|
+
* `os_file_pointer (Union[Unset, str])`: None
|
|
50
|
+
* `os_custom_icon (Union[Unset, str])`: None
|
|
51
|
+
* `os_created_by (Union[Unset, str])`: None
|
|
52
|
+
* `os_concept (Union[Unset, str])`: None
|
|
53
|
+
* `os_created_at (Union[Unset, str])`: None
|
|
54
|
+
* `os_item_name (Union[Unset, str])`: None
|
|
55
|
+
* `concept_name (Union[Unset, str])`: None
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
entity_id: Union[Unset, str] = UNSET
|
|
59
|
+
entity_type: Union[Unset, str] = UNSET
|
|
60
|
+
entity_label: Union[Unset, str] = UNSET
|
|
61
|
+
os_item_content_type: Union[Unset, str] = UNSET
|
|
62
|
+
os_last_updated_by: Union[Unset, str] = UNSET
|
|
63
|
+
os_workspace: Union[Unset, str] = UNSET
|
|
64
|
+
os_deleted_at: Union[Unset, str] = UNSET
|
|
65
|
+
os_parent_folder: Union[Unset, str] = UNSET
|
|
66
|
+
os_deleted_by: Union[Unset, str] = UNSET
|
|
67
|
+
os_icon: Union[Unset, str] = UNSET
|
|
68
|
+
description: Union[Unset, str] = UNSET
|
|
69
|
+
os_textsearchfield: Union[Unset, str] = UNSET
|
|
70
|
+
os_item_content: Union[Unset, str] = UNSET
|
|
71
|
+
os_last_updated_at: Union[Unset, str] = UNSET
|
|
72
|
+
os_item_type: Union[Unset, str] = UNSET
|
|
73
|
+
os_hidden_at: Union[Unset, str] = UNSET
|
|
74
|
+
os_hidden_by: Union[Unset, str] = UNSET
|
|
75
|
+
os_entity_uid: Union[Unset, str] = UNSET
|
|
76
|
+
os_file_pointer: Union[Unset, str] = UNSET
|
|
77
|
+
os_custom_icon: Union[Unset, str] = UNSET
|
|
78
|
+
os_created_by: Union[Unset, str] = UNSET
|
|
79
|
+
os_concept: Union[Unset, str] = UNSET
|
|
80
|
+
os_created_at: Union[Unset, str] = UNSET
|
|
81
|
+
os_item_name: Union[Unset, str] = UNSET
|
|
82
|
+
concept_name: Union[Unset, str] = UNSET
|
|
83
|
+
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
|
84
|
+
|
|
85
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
86
|
+
entity_id = self.entity_id
|
|
87
|
+
entity_type = self.entity_type
|
|
88
|
+
entity_label = self.entity_label
|
|
89
|
+
os_item_content_type = self.os_item_content_type
|
|
90
|
+
os_last_updated_by = self.os_last_updated_by
|
|
91
|
+
os_workspace = self.os_workspace
|
|
92
|
+
os_deleted_at = self.os_deleted_at
|
|
93
|
+
os_parent_folder = self.os_parent_folder
|
|
94
|
+
os_deleted_by = self.os_deleted_by
|
|
95
|
+
os_icon = self.os_icon
|
|
96
|
+
description = self.description
|
|
97
|
+
os_textsearchfield = self.os_textsearchfield
|
|
98
|
+
os_item_content = self.os_item_content
|
|
99
|
+
os_last_updated_at = self.os_last_updated_at
|
|
100
|
+
os_item_type = self.os_item_type
|
|
101
|
+
os_hidden_at = self.os_hidden_at
|
|
102
|
+
os_hidden_by = self.os_hidden_by
|
|
103
|
+
os_entity_uid = self.os_entity_uid
|
|
104
|
+
os_file_pointer = self.os_file_pointer
|
|
105
|
+
os_custom_icon = self.os_custom_icon
|
|
106
|
+
os_created_by = self.os_created_by
|
|
107
|
+
os_concept = self.os_concept
|
|
108
|
+
os_created_at = self.os_created_at
|
|
109
|
+
os_item_name = self.os_item_name
|
|
110
|
+
concept_name = self.concept_name
|
|
111
|
+
|
|
112
|
+
field_dict: Dict[str, Any] = {}
|
|
113
|
+
field_dict.update(self.additional_properties)
|
|
114
|
+
field_dict.update({})
|
|
115
|
+
if entity_id is not UNSET:
|
|
116
|
+
field_dict["entity_id"] = entity_id
|
|
117
|
+
if entity_type is not UNSET:
|
|
118
|
+
field_dict["entity_type"] = entity_type
|
|
119
|
+
if entity_label is not UNSET:
|
|
120
|
+
field_dict["entity_label"] = entity_label
|
|
121
|
+
if os_item_content_type is not UNSET:
|
|
122
|
+
field_dict["os_item_content_type"] = os_item_content_type
|
|
123
|
+
if os_last_updated_by is not UNSET:
|
|
124
|
+
field_dict["os_last_updated_by"] = os_last_updated_by
|
|
125
|
+
if os_workspace is not UNSET:
|
|
126
|
+
field_dict["os_workspace"] = os_workspace
|
|
127
|
+
if os_deleted_at is not UNSET:
|
|
128
|
+
field_dict["os_deleted_at"] = os_deleted_at
|
|
129
|
+
if os_parent_folder is not UNSET:
|
|
130
|
+
field_dict["os_parent_folder"] = os_parent_folder
|
|
131
|
+
if os_deleted_by is not UNSET:
|
|
132
|
+
field_dict["os_deleted_by"] = os_deleted_by
|
|
133
|
+
if os_icon is not UNSET:
|
|
134
|
+
field_dict["os_icon"] = os_icon
|
|
135
|
+
if description is not UNSET:
|
|
136
|
+
field_dict["description"] = description
|
|
137
|
+
if os_textsearchfield is not UNSET:
|
|
138
|
+
field_dict["os_textsearchfield"] = os_textsearchfield
|
|
139
|
+
if os_item_content is not UNSET:
|
|
140
|
+
field_dict["os_item_content"] = os_item_content
|
|
141
|
+
if os_last_updated_at is not UNSET:
|
|
142
|
+
field_dict["os_last_updated_at"] = os_last_updated_at
|
|
143
|
+
if os_item_type is not UNSET:
|
|
144
|
+
field_dict["os_item_type"] = os_item_type
|
|
145
|
+
if os_hidden_at is not UNSET:
|
|
146
|
+
field_dict["os_hidden_at"] = os_hidden_at
|
|
147
|
+
if os_hidden_by is not UNSET:
|
|
148
|
+
field_dict["os_hidden_by"] = os_hidden_by
|
|
149
|
+
if os_entity_uid is not UNSET:
|
|
150
|
+
field_dict["os_entity_uid"] = os_entity_uid
|
|
151
|
+
if os_file_pointer is not UNSET:
|
|
152
|
+
field_dict["os_file_pointer"] = os_file_pointer
|
|
153
|
+
if os_custom_icon is not UNSET:
|
|
154
|
+
field_dict["os_custom_icon"] = os_custom_icon
|
|
155
|
+
if os_created_by is not UNSET:
|
|
156
|
+
field_dict["os_created_by"] = os_created_by
|
|
157
|
+
if os_concept is not UNSET:
|
|
158
|
+
field_dict["os_concept"] = os_concept
|
|
159
|
+
if os_created_at is not UNSET:
|
|
160
|
+
field_dict["os_created_at"] = os_created_at
|
|
161
|
+
if os_item_name is not UNSET:
|
|
162
|
+
field_dict["os_item_name"] = os_item_name
|
|
163
|
+
if concept_name is not UNSET:
|
|
164
|
+
field_dict["concept_name"] = concept_name
|
|
165
|
+
|
|
166
|
+
return field_dict
|
|
167
|
+
|
|
168
|
+
@classmethod
|
|
169
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
170
|
+
d = src_dict.copy()
|
|
171
|
+
entity_id = d.pop("entity_id", UNSET)
|
|
172
|
+
|
|
173
|
+
entity_type = d.pop("entity_type", UNSET)
|
|
174
|
+
|
|
175
|
+
entity_label = d.pop("entity_label", UNSET)
|
|
176
|
+
|
|
177
|
+
os_item_content_type = d.pop("os_item_content_type", UNSET)
|
|
178
|
+
|
|
179
|
+
os_last_updated_by = d.pop("os_last_updated_by", UNSET)
|
|
180
|
+
|
|
181
|
+
os_workspace = d.pop("os_workspace", UNSET)
|
|
182
|
+
|
|
183
|
+
os_deleted_at = d.pop("os_deleted_at", UNSET)
|
|
184
|
+
|
|
185
|
+
os_parent_folder = d.pop("os_parent_folder", UNSET)
|
|
186
|
+
|
|
187
|
+
os_deleted_by = d.pop("os_deleted_by", UNSET)
|
|
188
|
+
|
|
189
|
+
os_icon = d.pop("os_icon", UNSET)
|
|
190
|
+
|
|
191
|
+
description = d.pop("description", UNSET)
|
|
192
|
+
|
|
193
|
+
os_textsearchfield = d.pop("os_textsearchfield", UNSET)
|
|
194
|
+
|
|
195
|
+
os_item_content = d.pop("os_item_content", UNSET)
|
|
196
|
+
|
|
197
|
+
os_last_updated_at = d.pop("os_last_updated_at", UNSET)
|
|
198
|
+
|
|
199
|
+
os_item_type = d.pop("os_item_type", UNSET)
|
|
200
|
+
|
|
201
|
+
os_hidden_at = d.pop("os_hidden_at", UNSET)
|
|
202
|
+
|
|
203
|
+
os_hidden_by = d.pop("os_hidden_by", UNSET)
|
|
204
|
+
|
|
205
|
+
os_entity_uid = d.pop("os_entity_uid", UNSET)
|
|
206
|
+
|
|
207
|
+
os_file_pointer = d.pop("os_file_pointer", UNSET)
|
|
208
|
+
|
|
209
|
+
os_custom_icon = d.pop("os_custom_icon", UNSET)
|
|
210
|
+
|
|
211
|
+
os_created_by = d.pop("os_created_by", UNSET)
|
|
212
|
+
|
|
213
|
+
os_concept = d.pop("os_concept", UNSET)
|
|
214
|
+
|
|
215
|
+
os_created_at = d.pop("os_created_at", UNSET)
|
|
216
|
+
|
|
217
|
+
os_item_name = d.pop("os_item_name", UNSET)
|
|
218
|
+
|
|
219
|
+
concept_name = d.pop("concept_name", UNSET)
|
|
220
|
+
|
|
221
|
+
upsert_entity_base = cls(
|
|
222
|
+
entity_id=entity_id,
|
|
223
|
+
entity_type=entity_type,
|
|
224
|
+
entity_label=entity_label,
|
|
225
|
+
os_item_content_type=os_item_content_type,
|
|
226
|
+
os_last_updated_by=os_last_updated_by,
|
|
227
|
+
os_workspace=os_workspace,
|
|
228
|
+
os_deleted_at=os_deleted_at,
|
|
229
|
+
os_parent_folder=os_parent_folder,
|
|
230
|
+
os_deleted_by=os_deleted_by,
|
|
231
|
+
os_icon=os_icon,
|
|
232
|
+
description=description,
|
|
233
|
+
os_textsearchfield=os_textsearchfield,
|
|
234
|
+
os_item_content=os_item_content,
|
|
235
|
+
os_last_updated_at=os_last_updated_at,
|
|
236
|
+
os_item_type=os_item_type,
|
|
237
|
+
os_hidden_at=os_hidden_at,
|
|
238
|
+
os_hidden_by=os_hidden_by,
|
|
239
|
+
os_entity_uid=os_entity_uid,
|
|
240
|
+
os_file_pointer=os_file_pointer,
|
|
241
|
+
os_custom_icon=os_custom_icon,
|
|
242
|
+
os_created_by=os_created_by,
|
|
243
|
+
os_concept=os_concept,
|
|
244
|
+
os_created_at=os_created_at,
|
|
245
|
+
os_item_name=os_item_name,
|
|
246
|
+
concept_name=concept_name,
|
|
247
|
+
)
|
|
248
|
+
|
|
249
|
+
upsert_entity_base.additional_properties = d
|
|
250
|
+
return upsert_entity_base
|
|
251
|
+
|
|
252
|
+
@property
|
|
253
|
+
def additional_keys(self) -> List[str]:
|
|
254
|
+
return list(self.additional_properties.keys())
|
|
255
|
+
|
|
256
|
+
def __getitem__(self, key: str) -> Any:
|
|
257
|
+
return self.additional_properties[key]
|
|
258
|
+
|
|
259
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
260
|
+
self.additional_properties[key] = value
|
|
261
|
+
|
|
262
|
+
def __delitem__(self, key: str) -> None:
|
|
263
|
+
del self.additional_properties[key]
|
|
264
|
+
|
|
265
|
+
def __contains__(self, key: str) -> bool:
|
|
266
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,107 @@
|
|
|
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 typing import cast
|
|
22
|
+
from typing import Dict
|
|
23
|
+
from ..types import UNSET, Unset
|
|
24
|
+
|
|
25
|
+
if TYPE_CHECKING:
|
|
26
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
T = TypeVar("T", bound="UpsertEntityRelationshipsItem")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@attr.s(auto_attribs=True)
|
|
33
|
+
class UpsertEntityRelationshipsItem:
|
|
34
|
+
"""
|
|
35
|
+
### Attributes:
|
|
36
|
+
* `entity (Union[Unset, UpsertEntityBase])`:
|
|
37
|
+
* `relationship_name (Union[Unset, str])`: None
|
|
38
|
+
* `relationship_uid (Union[Unset, str])`: None
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
entity: Union[Unset, "UpsertEntityBase"] = UNSET
|
|
42
|
+
relationship_name: Union[Unset, str] = UNSET
|
|
43
|
+
relationship_uid: Union[Unset, str] = UNSET
|
|
44
|
+
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
|
|
45
|
+
|
|
46
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
47
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
48
|
+
|
|
49
|
+
entity: Union[Unset, Dict[str, Any]] = UNSET
|
|
50
|
+
if not isinstance(self.entity, Unset):
|
|
51
|
+
entity = self.entity.to_dict()
|
|
52
|
+
|
|
53
|
+
relationship_name = self.relationship_name
|
|
54
|
+
relationship_uid = self.relationship_uid
|
|
55
|
+
|
|
56
|
+
field_dict: Dict[str, Any] = {}
|
|
57
|
+
field_dict.update(self.additional_properties)
|
|
58
|
+
field_dict.update({})
|
|
59
|
+
if entity is not UNSET:
|
|
60
|
+
field_dict["entity"] = entity
|
|
61
|
+
if relationship_name is not UNSET:
|
|
62
|
+
field_dict["relationship_name"] = relationship_name
|
|
63
|
+
if relationship_uid is not UNSET:
|
|
64
|
+
field_dict["relationship_uid"] = relationship_uid
|
|
65
|
+
|
|
66
|
+
return field_dict
|
|
67
|
+
|
|
68
|
+
@classmethod
|
|
69
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
70
|
+
from ..models.upsert_entity_base import UpsertEntityBase
|
|
71
|
+
|
|
72
|
+
d = src_dict.copy()
|
|
73
|
+
_entity = d.pop("entity", UNSET)
|
|
74
|
+
entity: Union[Unset, UpsertEntityBase]
|
|
75
|
+
if isinstance(_entity, Unset):
|
|
76
|
+
entity = UNSET
|
|
77
|
+
else:
|
|
78
|
+
entity = UpsertEntityBase.from_dict(_entity)
|
|
79
|
+
|
|
80
|
+
relationship_name = d.pop("relationship_name", UNSET)
|
|
81
|
+
|
|
82
|
+
relationship_uid = d.pop("relationship_uid", UNSET)
|
|
83
|
+
|
|
84
|
+
upsert_entity_relationships_item = cls(
|
|
85
|
+
entity=entity,
|
|
86
|
+
relationship_name=relationship_name,
|
|
87
|
+
relationship_uid=relationship_uid,
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
upsert_entity_relationships_item.additional_properties = d
|
|
91
|
+
return upsert_entity_relationships_item
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
def additional_keys(self) -> List[str]:
|
|
95
|
+
return list(self.additional_properties.keys())
|
|
96
|
+
|
|
97
|
+
def __getitem__(self, key: str) -> Any:
|
|
98
|
+
return self.additional_properties[key]
|
|
99
|
+
|
|
100
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
101
|
+
self.additional_properties[key] = value
|
|
102
|
+
|
|
103
|
+
def __delitem__(self, key: str) -> None:
|
|
104
|
+
del self.additional_properties[key]
|
|
105
|
+
|
|
106
|
+
def __contains__(self, key: str) -> bool:
|
|
107
|
+
return key in self.additional_properties
|
octostar/py.typed
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Marker file for PEP 561
|
octostar/types.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"""Contains some shared types for properties"""
|
|
2
|
+
|
|
3
|
+
from http import HTTPStatus
|
|
4
|
+
from typing import (
|
|
5
|
+
Any,
|
|
6
|
+
BinaryIO,
|
|
7
|
+
Generic,
|
|
8
|
+
MutableMapping,
|
|
9
|
+
Optional,
|
|
10
|
+
Tuple,
|
|
11
|
+
TypeVar,
|
|
12
|
+
Literal,
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
import attr
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class Unset:
|
|
19
|
+
def __bool__(self) -> Literal[False]:
|
|
20
|
+
return False
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
UNSET: Unset = Unset()
|
|
24
|
+
|
|
25
|
+
FileJsonType = Tuple[Optional[str], BinaryIO, Optional[str]]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
@attr.s(auto_attribs=True)
|
|
29
|
+
class File:
|
|
30
|
+
"""Contains information for file uploads"""
|
|
31
|
+
|
|
32
|
+
payload: BinaryIO
|
|
33
|
+
file_name: Optional[str] = None
|
|
34
|
+
mime_type: Optional[str] = None
|
|
35
|
+
|
|
36
|
+
def to_tuple(self) -> FileJsonType:
|
|
37
|
+
"""Return a tuple representation that httpx will accept for multipart/form-data"""
|
|
38
|
+
return self.file_name, self.payload, self.mime_type
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
T = TypeVar("T")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
@attr.s(auto_attribs=True)
|
|
45
|
+
class Response(Generic[T]):
|
|
46
|
+
"""A response from an endpoint"""
|
|
47
|
+
|
|
48
|
+
status_code: HTTPStatus
|
|
49
|
+
content: bytes
|
|
50
|
+
headers: MutableMapping[str, str]
|
|
51
|
+
parsed: Optional[T]
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
__all__ = ["File", "Response", "FileJsonType"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
# General utilities
|
|
3
|
+
This is a collection of general utilities that build on top the Octostar REST API, and are useful for python developers to interact with Octostar backend in a simplified, safer, more performant way.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Installation
|
|
9
|
+
The exact SDK version that is compatible with your current Octostar installation, can be installed using pip from octostar itself:
|
|
10
|
+
```bash
|
|
11
|
+
pip install "${OS_API_ENDPOINT}/api/octostar/meta/octostar-python-client.tar.gz"
|
|
12
|
+
```
|
|
13
|
+
You can find this command in the default main.sh script of your Octostar example apps.
|
|
14
|
+
|
|
15
|
+
"""
|
|
File without changes
|