aind-metadata-service-client 2.2.3__py3-none-any.whl → 2.3.3__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.
Potentially problematic release.
This version of aind-metadata-service-client might be problematic. Click here for more details.
- aind_metadata_service_client/__init__.py +3 -3
- aind_metadata_service_client/api/default_api.py +2256 -50
- aind_metadata_service_client/api/healthcheck_api.py +1 -1
- aind_metadata_service_client/api_client.py +2 -2
- aind_metadata_service_client/configuration.py +3 -3
- aind_metadata_service_client/exceptions.py +1 -1
- aind_metadata_service_client/models/__init__.py +2 -2
- aind_metadata_service_client/models/{slims_workflow.py → aind_metadata_service_server_routes_slims_slims_workflow.py} +3 -3
- aind_metadata_service_client/models/health_check.py +3 -3
- aind_metadata_service_client/models/http_validation_error.py +1 -1
- aind_metadata_service_client/models/validation_error.py +1 -1
- aind_metadata_service_client/models/validation_error_loc_inner.py +1 -1
- aind_metadata_service_client/rest.py +1 -1
- {aind_metadata_service_client-2.2.3.dist-info → aind_metadata_service_client-2.3.3.dist-info}/METADATA +1 -1
- aind_metadata_service_client-2.3.3.dist-info/RECORD +20 -0
- aind_metadata_service_client-2.2.3.dist-info/RECORD +0 -20
- {aind_metadata_service_client-2.2.3.dist-info → aind_metadata_service_client-2.3.3.dist-info}/WHEEL +0 -0
- {aind_metadata_service_client-2.2.3.dist-info → aind_metadata_service_client-2.3.3.dist-info}/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/2.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/2.3.3/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
def __enter__(self):
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -500,8 +500,8 @@ class Configuration:
|
|
|
500
500
|
return "Python SDK Debug Report:\n"\
|
|
501
501
|
"OS: {env}\n"\
|
|
502
502
|
"Python Version: {pyversion}\n"\
|
|
503
|
-
"Version of the API: 2.
|
|
504
|
-
"SDK Package Version: 2.
|
|
503
|
+
"Version of the API: 2.3.3\n"\
|
|
504
|
+
"SDK Package Version: 2.3.3".\
|
|
505
505
|
format(env=sys.platform, pyversion=sys.version)
|
|
506
506
|
|
|
507
507
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## aind-metadata-service Service to pull data from example backend.
|
|
8
8
|
|
|
9
|
-
The version of the OpenAPI document: 2.
|
|
9
|
+
The version of the OpenAPI document: 2.3.3
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
12
12
|
Do not edit the class manually.
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
# import models into model package
|
|
17
|
+
from aind_metadata_service_client.models.aind_metadata_service_server_routes_slims_slims_workflow import AindMetadataServiceServerRoutesSlimsSlimsWorkflow
|
|
17
18
|
from aind_metadata_service_client.models.http_validation_error import HTTPValidationError
|
|
18
19
|
from aind_metadata_service_client.models.health_check import HealthCheck
|
|
19
|
-
from aind_metadata_service_client.models.slims_workflow import SlimsWorkflow
|
|
20
20
|
from aind_metadata_service_client.models.validation_error import ValidationError
|
|
21
21
|
from aind_metadata_service_client.models.validation_error_loc_inner import ValidationErrorLocInner
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -18,7 +18,7 @@ from enum import Enum
|
|
|
18
18
|
from typing_extensions import Self
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
class
|
|
21
|
+
class AindMetadataServiceServerRoutesSlimsSlimsWorkflow(str, Enum):
|
|
22
22
|
"""
|
|
23
23
|
Available workflows that can be queried.
|
|
24
24
|
"""
|
|
@@ -34,7 +34,7 @@ class SlimsWorkflow(str, Enum):
|
|
|
34
34
|
|
|
35
35
|
@classmethod
|
|
36
36
|
def from_json(cls, json_str: str) -> Self:
|
|
37
|
-
"""Create an instance of
|
|
37
|
+
"""Create an instance of AindMetadataServiceServerRoutesSlimsSlimsWorkflow from a JSON string"""
|
|
38
38
|
return cls(json.loads(json_str))
|
|
39
39
|
|
|
40
40
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -27,7 +27,7 @@ class HealthCheck(BaseModel):
|
|
|
27
27
|
Response model to validate and return when performing a health check.
|
|
28
28
|
""" # noqa: E501
|
|
29
29
|
status: Optional[StrictStr] = 'OK'
|
|
30
|
-
service_version: Optional[StrictStr] = '2.
|
|
30
|
+
service_version: Optional[StrictStr] = '2.3.3'
|
|
31
31
|
__properties: ClassVar[List[str]] = ["status", "service_version"]
|
|
32
32
|
|
|
33
33
|
@field_validator('status')
|
|
@@ -92,7 +92,7 @@ class HealthCheck(BaseModel):
|
|
|
92
92
|
|
|
93
93
|
_obj = cls.model_validate({
|
|
94
94
|
"status": obj.get("status") if obj.get("status") is not None else 'OK',
|
|
95
|
-
"service_version": obj.get("service_version") if obj.get("service_version") is not None else '2.
|
|
95
|
+
"service_version": obj.get("service_version") if obj.get("service_version") is not None else '2.3.3'
|
|
96
96
|
})
|
|
97
97
|
return _obj
|
|
98
98
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.3.3
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
aind_metadata_service_client/__init__.py,sha256=e03eDBq7Fn1IMv89HItaW07KAinTj3ojC_QZu8mDqYY,1659
|
|
2
|
+
aind_metadata_service_client/api_client.py,sha256=xzXMWXVaeDvfFcFEpVbk-mA_N7K07wT4DT7SgYQVQB0,27537
|
|
3
|
+
aind_metadata_service_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
aind_metadata_service_client/configuration.py,sha256=oX6ziMC5W-LFdwkIwdg_tuyBsCTeQCfDVjdkD6loPK0,17911
|
|
5
|
+
aind_metadata_service_client/exceptions.py,sha256=QeMgky3U1K4iy0BWBYrJNHrtPgmbyKPRcAsXXVMFuIk,6450
|
|
6
|
+
aind_metadata_service_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
aind_metadata_service_client/rest.py,sha256=cS7hqAsDTYWbKPVprqDrySbRiTYCwogonrgRbhG6XSI,9461
|
|
8
|
+
aind_metadata_service_client/api/__init__.py,sha256=60TzViCpt-t7vx84cy9NPdPzaYFC2Q7i2SJeVvpRk2g,192
|
|
9
|
+
aind_metadata_service_client/api/default_api.py,sha256=0Vm0sXtZZ9qiFqfDqOsZN8Zs3MwiXREg_HatZub-4mE,269043
|
|
10
|
+
aind_metadata_service_client/api/healthcheck_api.py,sha256=yN-p-pgxxkM7ZRhnRMRFd8T-IwOLl3c7kUtuxTfQmks,10577
|
|
11
|
+
aind_metadata_service_client/models/__init__.py,sha256=412FirvWq2pojaRTwR943xYgnZUJzh2vpamvmFyeZc8,845
|
|
12
|
+
aind_metadata_service_client/models/aind_metadata_service_server_routes_slims_slims_workflow.py,sha256=MR1U05-Szw1carLJ8M5IY8t-NC8A_sU1vdlFpTJUs-Q,986
|
|
13
|
+
aind_metadata_service_client/models/health_check.py,sha256=C9vOnEKKoWYIlWn18nAk36wIYmExFfz9HERQsXbZiQk,3059
|
|
14
|
+
aind_metadata_service_client/models/http_validation_error.py,sha256=sgYFbODAWnx-8r_u5NZTMn0N2b3aoQwqvwbHbn-EDyQ,2997
|
|
15
|
+
aind_metadata_service_client/models/validation_error.py,sha256=SaDQi-7LDUzx9vH-5VscUJrkOsfiWXDnrUaAZONs680,3089
|
|
16
|
+
aind_metadata_service_client/models/validation_error_loc_inner.py,sha256=hps5rhnQlxmYjz5NqzJlzEfIb8s-khHyPIUoggz5OlM,4864
|
|
17
|
+
aind_metadata_service_client-2.3.3.dist-info/METADATA,sha256=rbLXQ-cojrIvyF2TBypE8tsd8cB2DLKMP500M7MGFMI,660
|
|
18
|
+
aind_metadata_service_client-2.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
aind_metadata_service_client-2.3.3.dist-info/top_level.txt,sha256=fuQi3EOLWlrnWp7wAuEPObBnrVkdEpHJIqkMv34drEg,29
|
|
20
|
+
aind_metadata_service_client-2.3.3.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
aind_metadata_service_client/__init__.py,sha256=kylftR8q5joZ9eF6buJuLyiB34fDk4tHF2SPKpzHXzg,1581
|
|
2
|
-
aind_metadata_service_client/api_client.py,sha256=gn_EBEX-GYxX-u3tYCHy0A0Fhjx67K23eZZSA2goEkU,27537
|
|
3
|
-
aind_metadata_service_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
aind_metadata_service_client/configuration.py,sha256=J1wA0U5W3gVzP-f1AKs26BDYL9Oo6s-bTHZqfmcwTPo,17911
|
|
5
|
-
aind_metadata_service_client/exceptions.py,sha256=o-WPN2Xyf4aUzvropMTadsrUTF7Q-jB6ikYWLvRjrbs,6450
|
|
6
|
-
aind_metadata_service_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
aind_metadata_service_client/rest.py,sha256=DUpDYTWckJoyKamyNiI6V4m1xxhsI3SL3zSekEeWELI,9461
|
|
8
|
-
aind_metadata_service_client/api/__init__.py,sha256=60TzViCpt-t7vx84cy9NPdPzaYFC2Q7i2SJeVvpRk2g,192
|
|
9
|
-
aind_metadata_service_client/api/default_api.py,sha256=v2o3B6w2uw6rbQPcgoBaKCmuEaMF19ZxwrSpewYjz9c,183797
|
|
10
|
-
aind_metadata_service_client/api/healthcheck_api.py,sha256=Ol-9_AJWmNZIju7DF32iRMPLPJy1_kNmKOfVqB4mYmI,10577
|
|
11
|
-
aind_metadata_service_client/models/__init__.py,sha256=Qt-t5mctv283m6xhYfWpJfMm1PVm3v-oFkpkxQA3CC4,767
|
|
12
|
-
aind_metadata_service_client/models/health_check.py,sha256=EAPtw5v3B5xQxQrUrdccZQQWruxXh72oLwpgzT9u5r0,3059
|
|
13
|
-
aind_metadata_service_client/models/http_validation_error.py,sha256=TkbtCpC3iLRokLprIzgNrSa2MwwrABalJpENWZGlMd8,2997
|
|
14
|
-
aind_metadata_service_client/models/slims_workflow.py,sha256=pLMvXTQg6kcO6wsesRKmodN5O-Ee-QR9qqSjwRJDJ3o,914
|
|
15
|
-
aind_metadata_service_client/models/validation_error.py,sha256=-_tAt1Jx-mMEVRI0noyW1IvArmbUlvA4UFMmyDdDMCU,3089
|
|
16
|
-
aind_metadata_service_client/models/validation_error_loc_inner.py,sha256=lnT8CEXjAY_ChK007lz7LGEEYLKpU2sgIW0QuZbpT48,4864
|
|
17
|
-
aind_metadata_service_client-2.2.3.dist-info/METADATA,sha256=GFGiBF5W52gcxkyYEfoX-Keg9EYX_UXFHta6SvooyHs,660
|
|
18
|
-
aind_metadata_service_client-2.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
aind_metadata_service_client-2.2.3.dist-info/top_level.txt,sha256=fuQi3EOLWlrnWp7wAuEPObBnrVkdEpHJIqkMv34drEg,29
|
|
20
|
-
aind_metadata_service_client-2.2.3.dist-info/RECORD,,
|
{aind_metadata_service_client-2.2.3.dist-info → aind_metadata_service_client-2.3.3.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|