aind-metadata-service-async-client 1.1.5__py3-none-any.whl → 2.1.0__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.
- aind_metadata_service_async_client/__init__.py +2 -15
- aind_metadata_service_async_client/api/default_api.py +700 -175
- aind_metadata_service_async_client/api/healthcheck_api.py +2 -2
- aind_metadata_service_async_client/api_client.py +2 -2
- aind_metadata_service_async_client/configuration.py +3 -3
- aind_metadata_service_async_client/exceptions.py +1 -1
- aind_metadata_service_async_client/models/__init__.py +1 -14
- aind_metadata_service_async_client/models/health_check.py +3 -3
- aind_metadata_service_async_client/models/http_validation_error.py +1 -1
- aind_metadata_service_async_client/models/slims_workflow.py +1 -1
- aind_metadata_service_async_client/models/validation_error.py +1 -1
- aind_metadata_service_async_client/models/validation_error_loc_inner.py +1 -1
- aind_metadata_service_async_client/rest.py +1 -1
- {aind_metadata_service_async_client-1.1.5.dist-info → aind_metadata_service_async_client-2.1.0.dist-info}/METADATA +1 -1
- aind_metadata_service_async_client-2.1.0.dist-info/RECORD +20 -0
- aind_metadata_service_async_client/models/anyof_schema1_validator.py +0 -144
- aind_metadata_service_async_client/models/average_hit_rate.py +0 -144
- aind_metadata_service_async_client/models/fov_coordinate_ap.py +0 -144
- aind_metadata_service_async_client/models/fov_coordinate_ml.py +0 -112
- aind_metadata_service_async_client/models/hit_rate_trials010.py +0 -144
- aind_metadata_service_async_client/models/hit_rate_trials2040.py +0 -144
- aind_metadata_service_async_client/models/input_source.py +0 -122
- aind_metadata_service_async_client/models/job_settings.py +0 -369
- aind_metadata_service_async_client/models/job_settings_starting_lickport_position_inner.py +0 -138
- aind_metadata_service_async_client/models/output_directory.py +0 -108
- aind_metadata_service_async_client/models/total_hits.py +0 -144
- aind_metadata_service_async_client/models/trial_num.py +0 -144
- aind_metadata_service_async_client/models/user_settings_config_file.py +0 -108
- aind_metadata_service_async_client-1.1.5.dist-info/RECORD +0 -33
- {aind_metadata_service_async_client-1.1.5.dist-info → aind_metadata_service_async_client-2.1.0.dist-info}/WHEEL +0 -0
- {aind_metadata_service_async_client-1.1.5.dist-info → aind_metadata_service_async_client-2.1.0.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:
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -17,9 +17,8 @@ from typing import Any, Dict, List, Optional, Tuple, Union
|
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
19
|
from pydantic import Field, StrictBool, StrictStr
|
|
20
|
-
from typing import Any, Optional
|
|
20
|
+
from typing import Any, Dict, Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
|
-
from aind_metadata_service_async_client.models.job_settings import JobSettings
|
|
23
22
|
from aind_metadata_service_async_client.models.slims_workflow import SlimsWorkflow
|
|
24
23
|
|
|
25
24
|
from aind_metadata_service_async_client.api_client import ApiClient, RequestSerialized
|
|
@@ -41,9 +40,535 @@ class DefaultApi:
|
|
|
41
40
|
|
|
42
41
|
|
|
43
42
|
@validate_call
|
|
44
|
-
async def
|
|
43
|
+
async def get_procedures(
|
|
44
|
+
self,
|
|
45
|
+
subject_id: StrictStr,
|
|
46
|
+
_request_timeout: Union[
|
|
47
|
+
None,
|
|
48
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
49
|
+
Tuple[
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
52
|
+
]
|
|
53
|
+
] = None,
|
|
54
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
55
|
+
_content_type: Optional[StrictStr] = None,
|
|
56
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
58
|
+
) -> object:
|
|
59
|
+
"""Get Procedures
|
|
60
|
+
|
|
61
|
+
## Procedures Return Procedure metadata.
|
|
62
|
+
|
|
63
|
+
:param subject_id: (required)
|
|
64
|
+
:type subject_id: str
|
|
65
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
66
|
+
number provided, it will be total request
|
|
67
|
+
timeout. It can also be a pair (tuple) of
|
|
68
|
+
(connection, read) timeouts.
|
|
69
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
70
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
71
|
+
request; this effectively ignores the
|
|
72
|
+
authentication in the spec for a single request.
|
|
73
|
+
:type _request_auth: dict, optional
|
|
74
|
+
:param _content_type: force content-type for the request.
|
|
75
|
+
:type _content_type: str, Optional
|
|
76
|
+
:param _headers: set to override the headers for a single
|
|
77
|
+
request; this effectively ignores the headers
|
|
78
|
+
in the spec for a single request.
|
|
79
|
+
:type _headers: dict, optional
|
|
80
|
+
:param _host_index: set to override the host_index for a single
|
|
81
|
+
request; this effectively ignores the host_index
|
|
82
|
+
in the spec for a single request.
|
|
83
|
+
:type _host_index: int, optional
|
|
84
|
+
:return: Returns the result object.
|
|
85
|
+
""" # noqa: E501
|
|
86
|
+
|
|
87
|
+
_param = self._get_procedures_serialize(
|
|
88
|
+
subject_id=subject_id,
|
|
89
|
+
_request_auth=_request_auth,
|
|
90
|
+
_content_type=_content_type,
|
|
91
|
+
_headers=_headers,
|
|
92
|
+
_host_index=_host_index
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
96
|
+
'200': "object",
|
|
97
|
+
'422': "HTTPValidationError",
|
|
98
|
+
}
|
|
99
|
+
response_data = await self.api_client.call_api(
|
|
100
|
+
*_param,
|
|
101
|
+
_request_timeout=_request_timeout
|
|
102
|
+
)
|
|
103
|
+
await response_data.read()
|
|
104
|
+
return self.api_client.response_deserialize(
|
|
105
|
+
response_data=response_data,
|
|
106
|
+
response_types_map=_response_types_map,
|
|
107
|
+
).data
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
@validate_call
|
|
111
|
+
async def get_procedures_with_http_info(
|
|
112
|
+
self,
|
|
113
|
+
subject_id: StrictStr,
|
|
114
|
+
_request_timeout: Union[
|
|
115
|
+
None,
|
|
116
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
117
|
+
Tuple[
|
|
118
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
120
|
+
]
|
|
121
|
+
] = None,
|
|
122
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
123
|
+
_content_type: Optional[StrictStr] = None,
|
|
124
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
126
|
+
) -> ApiResponse[object]:
|
|
127
|
+
"""Get Procedures
|
|
128
|
+
|
|
129
|
+
## Procedures Return Procedure metadata.
|
|
130
|
+
|
|
131
|
+
:param subject_id: (required)
|
|
132
|
+
:type subject_id: str
|
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
134
|
+
number provided, it will be total request
|
|
135
|
+
timeout. It can also be a pair (tuple) of
|
|
136
|
+
(connection, read) timeouts.
|
|
137
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
138
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
139
|
+
request; this effectively ignores the
|
|
140
|
+
authentication in the spec for a single request.
|
|
141
|
+
:type _request_auth: dict, optional
|
|
142
|
+
:param _content_type: force content-type for the request.
|
|
143
|
+
:type _content_type: str, Optional
|
|
144
|
+
:param _headers: set to override the headers for a single
|
|
145
|
+
request; this effectively ignores the headers
|
|
146
|
+
in the spec for a single request.
|
|
147
|
+
:type _headers: dict, optional
|
|
148
|
+
:param _host_index: set to override the host_index for a single
|
|
149
|
+
request; this effectively ignores the host_index
|
|
150
|
+
in the spec for a single request.
|
|
151
|
+
:type _host_index: int, optional
|
|
152
|
+
:return: Returns the result object.
|
|
153
|
+
""" # noqa: E501
|
|
154
|
+
|
|
155
|
+
_param = self._get_procedures_serialize(
|
|
156
|
+
subject_id=subject_id,
|
|
157
|
+
_request_auth=_request_auth,
|
|
158
|
+
_content_type=_content_type,
|
|
159
|
+
_headers=_headers,
|
|
160
|
+
_host_index=_host_index
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
|
+
'200': "object",
|
|
165
|
+
'422': "HTTPValidationError",
|
|
166
|
+
}
|
|
167
|
+
response_data = await self.api_client.call_api(
|
|
168
|
+
*_param,
|
|
169
|
+
_request_timeout=_request_timeout
|
|
170
|
+
)
|
|
171
|
+
await response_data.read()
|
|
172
|
+
return self.api_client.response_deserialize(
|
|
173
|
+
response_data=response_data,
|
|
174
|
+
response_types_map=_response_types_map,
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
@validate_call
|
|
179
|
+
async def get_procedures_without_preload_content(
|
|
180
|
+
self,
|
|
181
|
+
subject_id: StrictStr,
|
|
182
|
+
_request_timeout: Union[
|
|
183
|
+
None,
|
|
184
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
185
|
+
Tuple[
|
|
186
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
187
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
188
|
+
]
|
|
189
|
+
] = None,
|
|
190
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
191
|
+
_content_type: Optional[StrictStr] = None,
|
|
192
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
193
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
194
|
+
) -> RESTResponseType:
|
|
195
|
+
"""Get Procedures
|
|
196
|
+
|
|
197
|
+
## Procedures Return Procedure metadata.
|
|
198
|
+
|
|
199
|
+
:param subject_id: (required)
|
|
200
|
+
:type subject_id: str
|
|
201
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
202
|
+
number provided, it will be total request
|
|
203
|
+
timeout. It can also be a pair (tuple) of
|
|
204
|
+
(connection, read) timeouts.
|
|
205
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
206
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
207
|
+
request; this effectively ignores the
|
|
208
|
+
authentication in the spec for a single request.
|
|
209
|
+
:type _request_auth: dict, optional
|
|
210
|
+
:param _content_type: force content-type for the request.
|
|
211
|
+
:type _content_type: str, Optional
|
|
212
|
+
:param _headers: set to override the headers for a single
|
|
213
|
+
request; this effectively ignores the headers
|
|
214
|
+
in the spec for a single request.
|
|
215
|
+
:type _headers: dict, optional
|
|
216
|
+
:param _host_index: set to override the host_index for a single
|
|
217
|
+
request; this effectively ignores the host_index
|
|
218
|
+
in the spec for a single request.
|
|
219
|
+
:type _host_index: int, optional
|
|
220
|
+
:return: Returns the result object.
|
|
221
|
+
""" # noqa: E501
|
|
222
|
+
|
|
223
|
+
_param = self._get_procedures_serialize(
|
|
224
|
+
subject_id=subject_id,
|
|
225
|
+
_request_auth=_request_auth,
|
|
226
|
+
_content_type=_content_type,
|
|
227
|
+
_headers=_headers,
|
|
228
|
+
_host_index=_host_index
|
|
229
|
+
)
|
|
230
|
+
|
|
231
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
232
|
+
'200': "object",
|
|
233
|
+
'422': "HTTPValidationError",
|
|
234
|
+
}
|
|
235
|
+
response_data = await self.api_client.call_api(
|
|
236
|
+
*_param,
|
|
237
|
+
_request_timeout=_request_timeout
|
|
238
|
+
)
|
|
239
|
+
return response_data.response
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
def _get_procedures_serialize(
|
|
243
|
+
self,
|
|
244
|
+
subject_id,
|
|
245
|
+
_request_auth,
|
|
246
|
+
_content_type,
|
|
247
|
+
_headers,
|
|
248
|
+
_host_index,
|
|
249
|
+
) -> RequestSerialized:
|
|
250
|
+
|
|
251
|
+
_host = None
|
|
252
|
+
|
|
253
|
+
_collection_formats: Dict[str, str] = {
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
_path_params: Dict[str, str] = {}
|
|
257
|
+
_query_params: List[Tuple[str, str]] = []
|
|
258
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
259
|
+
_form_params: List[Tuple[str, str]] = []
|
|
260
|
+
_files: Dict[
|
|
261
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
262
|
+
] = {}
|
|
263
|
+
_body_params: Optional[bytes] = None
|
|
264
|
+
|
|
265
|
+
# process the path parameters
|
|
266
|
+
if subject_id is not None:
|
|
267
|
+
_path_params['subject_id'] = subject_id
|
|
268
|
+
# process the query parameters
|
|
269
|
+
# process the header parameters
|
|
270
|
+
# process the form parameters
|
|
271
|
+
# process the body parameter
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# set the HTTP header `Accept`
|
|
275
|
+
if 'Accept' not in _header_params:
|
|
276
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
277
|
+
[
|
|
278
|
+
'application/json'
|
|
279
|
+
]
|
|
280
|
+
)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
# authentication setting
|
|
284
|
+
_auth_settings: List[str] = [
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
return self.api_client.param_serialize(
|
|
288
|
+
method='GET',
|
|
289
|
+
resource_path='/api/v2/procedures/{subject_id}',
|
|
290
|
+
path_params=_path_params,
|
|
291
|
+
query_params=_query_params,
|
|
292
|
+
header_params=_header_params,
|
|
293
|
+
body=_body_params,
|
|
294
|
+
post_params=_form_params,
|
|
295
|
+
files=_files,
|
|
296
|
+
auth_settings=_auth_settings,
|
|
297
|
+
collection_formats=_collection_formats,
|
|
298
|
+
_host=_host,
|
|
299
|
+
_request_auth=_request_auth
|
|
300
|
+
)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
@validate_call
|
|
306
|
+
async def get_subject(
|
|
307
|
+
self,
|
|
308
|
+
subject_id: StrictStr,
|
|
309
|
+
_request_timeout: Union[
|
|
310
|
+
None,
|
|
311
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
312
|
+
Tuple[
|
|
313
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
314
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
315
|
+
]
|
|
316
|
+
] = None,
|
|
317
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
318
|
+
_content_type: Optional[StrictStr] = None,
|
|
319
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
320
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
321
|
+
) -> object:
|
|
322
|
+
"""Get Subject
|
|
323
|
+
|
|
324
|
+
## Subject Return Subject metadata.
|
|
325
|
+
|
|
326
|
+
:param subject_id: (required)
|
|
327
|
+
:type subject_id: str
|
|
328
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
329
|
+
number provided, it will be total request
|
|
330
|
+
timeout. It can also be a pair (tuple) of
|
|
331
|
+
(connection, read) timeouts.
|
|
332
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
333
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
334
|
+
request; this effectively ignores the
|
|
335
|
+
authentication in the spec for a single request.
|
|
336
|
+
:type _request_auth: dict, optional
|
|
337
|
+
:param _content_type: force content-type for the request.
|
|
338
|
+
:type _content_type: str, Optional
|
|
339
|
+
:param _headers: set to override the headers for a single
|
|
340
|
+
request; this effectively ignores the headers
|
|
341
|
+
in the spec for a single request.
|
|
342
|
+
:type _headers: dict, optional
|
|
343
|
+
:param _host_index: set to override the host_index for a single
|
|
344
|
+
request; this effectively ignores the host_index
|
|
345
|
+
in the spec for a single request.
|
|
346
|
+
:type _host_index: int, optional
|
|
347
|
+
:return: Returns the result object.
|
|
348
|
+
""" # noqa: E501
|
|
349
|
+
|
|
350
|
+
_param = self._get_subject_serialize(
|
|
351
|
+
subject_id=subject_id,
|
|
352
|
+
_request_auth=_request_auth,
|
|
353
|
+
_content_type=_content_type,
|
|
354
|
+
_headers=_headers,
|
|
355
|
+
_host_index=_host_index
|
|
356
|
+
)
|
|
357
|
+
|
|
358
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
359
|
+
'200': "object",
|
|
360
|
+
'422': "HTTPValidationError",
|
|
361
|
+
}
|
|
362
|
+
response_data = await self.api_client.call_api(
|
|
363
|
+
*_param,
|
|
364
|
+
_request_timeout=_request_timeout
|
|
365
|
+
)
|
|
366
|
+
await response_data.read()
|
|
367
|
+
return self.api_client.response_deserialize(
|
|
368
|
+
response_data=response_data,
|
|
369
|
+
response_types_map=_response_types_map,
|
|
370
|
+
).data
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
@validate_call
|
|
374
|
+
async def get_subject_with_http_info(
|
|
375
|
+
self,
|
|
376
|
+
subject_id: StrictStr,
|
|
377
|
+
_request_timeout: Union[
|
|
378
|
+
None,
|
|
379
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
380
|
+
Tuple[
|
|
381
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
382
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
383
|
+
]
|
|
384
|
+
] = None,
|
|
385
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
386
|
+
_content_type: Optional[StrictStr] = None,
|
|
387
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
388
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
389
|
+
) -> ApiResponse[object]:
|
|
390
|
+
"""Get Subject
|
|
391
|
+
|
|
392
|
+
## Subject Return Subject metadata.
|
|
393
|
+
|
|
394
|
+
:param subject_id: (required)
|
|
395
|
+
:type subject_id: str
|
|
396
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
397
|
+
number provided, it will be total request
|
|
398
|
+
timeout. It can also be a pair (tuple) of
|
|
399
|
+
(connection, read) timeouts.
|
|
400
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
401
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
402
|
+
request; this effectively ignores the
|
|
403
|
+
authentication in the spec for a single request.
|
|
404
|
+
:type _request_auth: dict, optional
|
|
405
|
+
:param _content_type: force content-type for the request.
|
|
406
|
+
:type _content_type: str, Optional
|
|
407
|
+
:param _headers: set to override the headers for a single
|
|
408
|
+
request; this effectively ignores the headers
|
|
409
|
+
in the spec for a single request.
|
|
410
|
+
:type _headers: dict, optional
|
|
411
|
+
:param _host_index: set to override the host_index for a single
|
|
412
|
+
request; this effectively ignores the host_index
|
|
413
|
+
in the spec for a single request.
|
|
414
|
+
:type _host_index: int, optional
|
|
415
|
+
:return: Returns the result object.
|
|
416
|
+
""" # noqa: E501
|
|
417
|
+
|
|
418
|
+
_param = self._get_subject_serialize(
|
|
419
|
+
subject_id=subject_id,
|
|
420
|
+
_request_auth=_request_auth,
|
|
421
|
+
_content_type=_content_type,
|
|
422
|
+
_headers=_headers,
|
|
423
|
+
_host_index=_host_index
|
|
424
|
+
)
|
|
425
|
+
|
|
426
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
427
|
+
'200': "object",
|
|
428
|
+
'422': "HTTPValidationError",
|
|
429
|
+
}
|
|
430
|
+
response_data = await self.api_client.call_api(
|
|
431
|
+
*_param,
|
|
432
|
+
_request_timeout=_request_timeout
|
|
433
|
+
)
|
|
434
|
+
await response_data.read()
|
|
435
|
+
return self.api_client.response_deserialize(
|
|
436
|
+
response_data=response_data,
|
|
437
|
+
response_types_map=_response_types_map,
|
|
438
|
+
)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
@validate_call
|
|
442
|
+
async def get_subject_without_preload_content(
|
|
443
|
+
self,
|
|
444
|
+
subject_id: StrictStr,
|
|
445
|
+
_request_timeout: Union[
|
|
446
|
+
None,
|
|
447
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
448
|
+
Tuple[
|
|
449
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
450
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
451
|
+
]
|
|
452
|
+
] = None,
|
|
453
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
454
|
+
_content_type: Optional[StrictStr] = None,
|
|
455
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
456
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
457
|
+
) -> RESTResponseType:
|
|
458
|
+
"""Get Subject
|
|
459
|
+
|
|
460
|
+
## Subject Return Subject metadata.
|
|
461
|
+
|
|
462
|
+
:param subject_id: (required)
|
|
463
|
+
:type subject_id: str
|
|
464
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
465
|
+
number provided, it will be total request
|
|
466
|
+
timeout. It can also be a pair (tuple) of
|
|
467
|
+
(connection, read) timeouts.
|
|
468
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
469
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
470
|
+
request; this effectively ignores the
|
|
471
|
+
authentication in the spec for a single request.
|
|
472
|
+
:type _request_auth: dict, optional
|
|
473
|
+
:param _content_type: force content-type for the request.
|
|
474
|
+
:type _content_type: str, Optional
|
|
475
|
+
:param _headers: set to override the headers for a single
|
|
476
|
+
request; this effectively ignores the headers
|
|
477
|
+
in the spec for a single request.
|
|
478
|
+
:type _headers: dict, optional
|
|
479
|
+
:param _host_index: set to override the host_index for a single
|
|
480
|
+
request; this effectively ignores the host_index
|
|
481
|
+
in the spec for a single request.
|
|
482
|
+
:type _host_index: int, optional
|
|
483
|
+
:return: Returns the result object.
|
|
484
|
+
""" # noqa: E501
|
|
485
|
+
|
|
486
|
+
_param = self._get_subject_serialize(
|
|
487
|
+
subject_id=subject_id,
|
|
488
|
+
_request_auth=_request_auth,
|
|
489
|
+
_content_type=_content_type,
|
|
490
|
+
_headers=_headers,
|
|
491
|
+
_host_index=_host_index
|
|
492
|
+
)
|
|
493
|
+
|
|
494
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
495
|
+
'200': "object",
|
|
496
|
+
'422': "HTTPValidationError",
|
|
497
|
+
}
|
|
498
|
+
response_data = await self.api_client.call_api(
|
|
499
|
+
*_param,
|
|
500
|
+
_request_timeout=_request_timeout
|
|
501
|
+
)
|
|
502
|
+
return response_data.response
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
def _get_subject_serialize(
|
|
506
|
+
self,
|
|
507
|
+
subject_id,
|
|
508
|
+
_request_auth,
|
|
509
|
+
_content_type,
|
|
510
|
+
_headers,
|
|
511
|
+
_host_index,
|
|
512
|
+
) -> RequestSerialized:
|
|
513
|
+
|
|
514
|
+
_host = None
|
|
515
|
+
|
|
516
|
+
_collection_formats: Dict[str, str] = {
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
_path_params: Dict[str, str] = {}
|
|
520
|
+
_query_params: List[Tuple[str, str]] = []
|
|
521
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
522
|
+
_form_params: List[Tuple[str, str]] = []
|
|
523
|
+
_files: Dict[
|
|
524
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
525
|
+
] = {}
|
|
526
|
+
_body_params: Optional[bytes] = None
|
|
527
|
+
|
|
528
|
+
# process the path parameters
|
|
529
|
+
if subject_id is not None:
|
|
530
|
+
_path_params['subject_id'] = subject_id
|
|
531
|
+
# process the query parameters
|
|
532
|
+
# process the header parameters
|
|
533
|
+
# process the form parameters
|
|
534
|
+
# process the body parameter
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
# set the HTTP header `Accept`
|
|
538
|
+
if 'Accept' not in _header_params:
|
|
539
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
540
|
+
[
|
|
541
|
+
'application/json'
|
|
542
|
+
]
|
|
543
|
+
)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
# authentication setting
|
|
547
|
+
_auth_settings: List[str] = [
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
return self.api_client.param_serialize(
|
|
551
|
+
method='GET',
|
|
552
|
+
resource_path='/api/v2/subject/{subject_id}',
|
|
553
|
+
path_params=_path_params,
|
|
554
|
+
query_params=_query_params,
|
|
555
|
+
header_params=_header_params,
|
|
556
|
+
body=_body_params,
|
|
557
|
+
post_params=_form_params,
|
|
558
|
+
files=_files,
|
|
559
|
+
auth_settings=_auth_settings,
|
|
560
|
+
collection_formats=_collection_formats,
|
|
561
|
+
_host=_host,
|
|
562
|
+
_request_auth=_request_auth
|
|
563
|
+
)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
@validate_call
|
|
569
|
+
async def get_v1_bergamo_session(
|
|
45
570
|
self,
|
|
46
|
-
|
|
571
|
+
request_body: Dict[str, Any],
|
|
47
572
|
_request_timeout: Union[
|
|
48
573
|
None,
|
|
49
574
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -57,12 +582,12 @@ class DefaultApi:
|
|
|
57
582
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
58
583
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
59
584
|
) -> object:
|
|
60
|
-
"""Get Bergamo Session
|
|
585
|
+
"""Get V1 Bergamo Session
|
|
61
586
|
|
|
62
587
|
## Session Return session metadata computed from aind-metadata-mapper.
|
|
63
588
|
|
|
64
|
-
:param
|
|
65
|
-
:type
|
|
589
|
+
:param request_body: (required)
|
|
590
|
+
:type request_body: Dict[str, object]
|
|
66
591
|
:param _request_timeout: timeout setting for this request. If one
|
|
67
592
|
number provided, it will be total request
|
|
68
593
|
timeout. It can also be a pair (tuple) of
|
|
@@ -85,8 +610,8 @@ class DefaultApi:
|
|
|
85
610
|
:return: Returns the result object.
|
|
86
611
|
""" # noqa: E501
|
|
87
612
|
|
|
88
|
-
_param = self.
|
|
89
|
-
|
|
613
|
+
_param = self._get_v1_bergamo_session_serialize(
|
|
614
|
+
request_body=request_body,
|
|
90
615
|
_request_auth=_request_auth,
|
|
91
616
|
_content_type=_content_type,
|
|
92
617
|
_headers=_headers,
|
|
@@ -109,9 +634,9 @@ class DefaultApi:
|
|
|
109
634
|
|
|
110
635
|
|
|
111
636
|
@validate_call
|
|
112
|
-
async def
|
|
637
|
+
async def get_v1_bergamo_session_with_http_info(
|
|
113
638
|
self,
|
|
114
|
-
|
|
639
|
+
request_body: Dict[str, Any],
|
|
115
640
|
_request_timeout: Union[
|
|
116
641
|
None,
|
|
117
642
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -125,12 +650,12 @@ class DefaultApi:
|
|
|
125
650
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
126
651
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
127
652
|
) -> ApiResponse[object]:
|
|
128
|
-
"""Get Bergamo Session
|
|
653
|
+
"""Get V1 Bergamo Session
|
|
129
654
|
|
|
130
655
|
## Session Return session metadata computed from aind-metadata-mapper.
|
|
131
656
|
|
|
132
|
-
:param
|
|
133
|
-
:type
|
|
657
|
+
:param request_body: (required)
|
|
658
|
+
:type request_body: Dict[str, object]
|
|
134
659
|
:param _request_timeout: timeout setting for this request. If one
|
|
135
660
|
number provided, it will be total request
|
|
136
661
|
timeout. It can also be a pair (tuple) of
|
|
@@ -153,8 +678,8 @@ class DefaultApi:
|
|
|
153
678
|
:return: Returns the result object.
|
|
154
679
|
""" # noqa: E501
|
|
155
680
|
|
|
156
|
-
_param = self.
|
|
157
|
-
|
|
681
|
+
_param = self._get_v1_bergamo_session_serialize(
|
|
682
|
+
request_body=request_body,
|
|
158
683
|
_request_auth=_request_auth,
|
|
159
684
|
_content_type=_content_type,
|
|
160
685
|
_headers=_headers,
|
|
@@ -177,9 +702,9 @@ class DefaultApi:
|
|
|
177
702
|
|
|
178
703
|
|
|
179
704
|
@validate_call
|
|
180
|
-
async def
|
|
705
|
+
async def get_v1_bergamo_session_without_preload_content(
|
|
181
706
|
self,
|
|
182
|
-
|
|
707
|
+
request_body: Dict[str, Any],
|
|
183
708
|
_request_timeout: Union[
|
|
184
709
|
None,
|
|
185
710
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -193,12 +718,12 @@ class DefaultApi:
|
|
|
193
718
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
194
719
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
195
720
|
) -> RESTResponseType:
|
|
196
|
-
"""Get Bergamo Session
|
|
721
|
+
"""Get V1 Bergamo Session
|
|
197
722
|
|
|
198
723
|
## Session Return session metadata computed from aind-metadata-mapper.
|
|
199
724
|
|
|
200
|
-
:param
|
|
201
|
-
:type
|
|
725
|
+
:param request_body: (required)
|
|
726
|
+
:type request_body: Dict[str, object]
|
|
202
727
|
:param _request_timeout: timeout setting for this request. If one
|
|
203
728
|
number provided, it will be total request
|
|
204
729
|
timeout. It can also be a pair (tuple) of
|
|
@@ -221,8 +746,8 @@ class DefaultApi:
|
|
|
221
746
|
:return: Returns the result object.
|
|
222
747
|
""" # noqa: E501
|
|
223
748
|
|
|
224
|
-
_param = self.
|
|
225
|
-
|
|
749
|
+
_param = self._get_v1_bergamo_session_serialize(
|
|
750
|
+
request_body=request_body,
|
|
226
751
|
_request_auth=_request_auth,
|
|
227
752
|
_content_type=_content_type,
|
|
228
753
|
_headers=_headers,
|
|
@@ -240,9 +765,9 @@ class DefaultApi:
|
|
|
240
765
|
return response_data.response
|
|
241
766
|
|
|
242
767
|
|
|
243
|
-
def
|
|
768
|
+
def _get_v1_bergamo_session_serialize(
|
|
244
769
|
self,
|
|
245
|
-
|
|
770
|
+
request_body,
|
|
246
771
|
_request_auth,
|
|
247
772
|
_content_type,
|
|
248
773
|
_headers,
|
|
@@ -268,8 +793,8 @@ class DefaultApi:
|
|
|
268
793
|
# process the header parameters
|
|
269
794
|
# process the form parameters
|
|
270
795
|
# process the body parameter
|
|
271
|
-
if
|
|
272
|
-
_body_params =
|
|
796
|
+
if request_body is not None:
|
|
797
|
+
_body_params = request_body
|
|
273
798
|
|
|
274
799
|
|
|
275
800
|
# set the HTTP header `Accept`
|
|
@@ -317,7 +842,7 @@ class DefaultApi:
|
|
|
317
842
|
|
|
318
843
|
|
|
319
844
|
@validate_call
|
|
320
|
-
async def
|
|
845
|
+
async def get_v1_funding(
|
|
321
846
|
self,
|
|
322
847
|
project_name: StrictStr,
|
|
323
848
|
_request_timeout: Union[
|
|
@@ -333,9 +858,9 @@ class DefaultApi:
|
|
|
333
858
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
334
859
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
335
860
|
) -> object:
|
|
336
|
-
"""Get Funding
|
|
861
|
+
"""Get V1 Funding
|
|
337
862
|
|
|
338
|
-
##
|
|
863
|
+
## Procedures V1 Return Procedure metadata.
|
|
339
864
|
|
|
340
865
|
:param project_name: (required)
|
|
341
866
|
:type project_name: str
|
|
@@ -361,7 +886,7 @@ class DefaultApi:
|
|
|
361
886
|
:return: Returns the result object.
|
|
362
887
|
""" # noqa: E501
|
|
363
888
|
|
|
364
|
-
_param = self.
|
|
889
|
+
_param = self._get_v1_funding_serialize(
|
|
365
890
|
project_name=project_name,
|
|
366
891
|
_request_auth=_request_auth,
|
|
367
892
|
_content_type=_content_type,
|
|
@@ -385,7 +910,7 @@ class DefaultApi:
|
|
|
385
910
|
|
|
386
911
|
|
|
387
912
|
@validate_call
|
|
388
|
-
async def
|
|
913
|
+
async def get_v1_funding_with_http_info(
|
|
389
914
|
self,
|
|
390
915
|
project_name: StrictStr,
|
|
391
916
|
_request_timeout: Union[
|
|
@@ -401,9 +926,9 @@ class DefaultApi:
|
|
|
401
926
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
402
927
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
403
928
|
) -> ApiResponse[object]:
|
|
404
|
-
"""Get Funding
|
|
929
|
+
"""Get V1 Funding
|
|
405
930
|
|
|
406
|
-
##
|
|
931
|
+
## Procedures V1 Return Procedure metadata.
|
|
407
932
|
|
|
408
933
|
:param project_name: (required)
|
|
409
934
|
:type project_name: str
|
|
@@ -429,7 +954,7 @@ class DefaultApi:
|
|
|
429
954
|
:return: Returns the result object.
|
|
430
955
|
""" # noqa: E501
|
|
431
956
|
|
|
432
|
-
_param = self.
|
|
957
|
+
_param = self._get_v1_funding_serialize(
|
|
433
958
|
project_name=project_name,
|
|
434
959
|
_request_auth=_request_auth,
|
|
435
960
|
_content_type=_content_type,
|
|
@@ -453,7 +978,7 @@ class DefaultApi:
|
|
|
453
978
|
|
|
454
979
|
|
|
455
980
|
@validate_call
|
|
456
|
-
async def
|
|
981
|
+
async def get_v1_funding_without_preload_content(
|
|
457
982
|
self,
|
|
458
983
|
project_name: StrictStr,
|
|
459
984
|
_request_timeout: Union[
|
|
@@ -469,9 +994,9 @@ class DefaultApi:
|
|
|
469
994
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
470
995
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
471
996
|
) -> RESTResponseType:
|
|
472
|
-
"""Get Funding
|
|
997
|
+
"""Get V1 Funding
|
|
473
998
|
|
|
474
|
-
##
|
|
999
|
+
## Procedures V1 Return Procedure metadata.
|
|
475
1000
|
|
|
476
1001
|
:param project_name: (required)
|
|
477
1002
|
:type project_name: str
|
|
@@ -497,7 +1022,7 @@ class DefaultApi:
|
|
|
497
1022
|
:return: Returns the result object.
|
|
498
1023
|
""" # noqa: E501
|
|
499
1024
|
|
|
500
|
-
_param = self.
|
|
1025
|
+
_param = self._get_v1_funding_serialize(
|
|
501
1026
|
project_name=project_name,
|
|
502
1027
|
_request_auth=_request_auth,
|
|
503
1028
|
_content_type=_content_type,
|
|
@@ -516,7 +1041,7 @@ class DefaultApi:
|
|
|
516
1041
|
return response_data.response
|
|
517
1042
|
|
|
518
1043
|
|
|
519
|
-
def
|
|
1044
|
+
def _get_v1_funding_serialize(
|
|
520
1045
|
self,
|
|
521
1046
|
project_name,
|
|
522
1047
|
_request_auth,
|
|
@@ -580,7 +1105,7 @@ class DefaultApi:
|
|
|
580
1105
|
|
|
581
1106
|
|
|
582
1107
|
@validate_call
|
|
583
|
-
async def
|
|
1108
|
+
async def get_v1_injection_materials(
|
|
584
1109
|
self,
|
|
585
1110
|
prep_lot_number: StrictStr,
|
|
586
1111
|
_request_timeout: Union[
|
|
@@ -596,9 +1121,9 @@ class DefaultApi:
|
|
|
596
1121
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
597
1122
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
598
1123
|
) -> object:
|
|
599
|
-
"""Get Injection Materials
|
|
1124
|
+
"""Get V1 Injection Materials
|
|
600
1125
|
|
|
601
|
-
## Injection Materials Return Injection Materials metadata.
|
|
1126
|
+
## Injection Materials V1 Return Injection Materials metadata.
|
|
602
1127
|
|
|
603
1128
|
:param prep_lot_number: (required)
|
|
604
1129
|
:type prep_lot_number: str
|
|
@@ -624,7 +1149,7 @@ class DefaultApi:
|
|
|
624
1149
|
:return: Returns the result object.
|
|
625
1150
|
""" # noqa: E501
|
|
626
1151
|
|
|
627
|
-
_param = self.
|
|
1152
|
+
_param = self._get_v1_injection_materials_serialize(
|
|
628
1153
|
prep_lot_number=prep_lot_number,
|
|
629
1154
|
_request_auth=_request_auth,
|
|
630
1155
|
_content_type=_content_type,
|
|
@@ -648,7 +1173,7 @@ class DefaultApi:
|
|
|
648
1173
|
|
|
649
1174
|
|
|
650
1175
|
@validate_call
|
|
651
|
-
async def
|
|
1176
|
+
async def get_v1_injection_materials_with_http_info(
|
|
652
1177
|
self,
|
|
653
1178
|
prep_lot_number: StrictStr,
|
|
654
1179
|
_request_timeout: Union[
|
|
@@ -664,9 +1189,9 @@ class DefaultApi:
|
|
|
664
1189
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
665
1190
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
666
1191
|
) -> ApiResponse[object]:
|
|
667
|
-
"""Get Injection Materials
|
|
1192
|
+
"""Get V1 Injection Materials
|
|
668
1193
|
|
|
669
|
-
## Injection Materials Return Injection Materials metadata.
|
|
1194
|
+
## Injection Materials V1 Return Injection Materials metadata.
|
|
670
1195
|
|
|
671
1196
|
:param prep_lot_number: (required)
|
|
672
1197
|
:type prep_lot_number: str
|
|
@@ -692,7 +1217,7 @@ class DefaultApi:
|
|
|
692
1217
|
:return: Returns the result object.
|
|
693
1218
|
""" # noqa: E501
|
|
694
1219
|
|
|
695
|
-
_param = self.
|
|
1220
|
+
_param = self._get_v1_injection_materials_serialize(
|
|
696
1221
|
prep_lot_number=prep_lot_number,
|
|
697
1222
|
_request_auth=_request_auth,
|
|
698
1223
|
_content_type=_content_type,
|
|
@@ -716,7 +1241,7 @@ class DefaultApi:
|
|
|
716
1241
|
|
|
717
1242
|
|
|
718
1243
|
@validate_call
|
|
719
|
-
async def
|
|
1244
|
+
async def get_v1_injection_materials_without_preload_content(
|
|
720
1245
|
self,
|
|
721
1246
|
prep_lot_number: StrictStr,
|
|
722
1247
|
_request_timeout: Union[
|
|
@@ -732,9 +1257,9 @@ class DefaultApi:
|
|
|
732
1257
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
733
1258
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
734
1259
|
) -> RESTResponseType:
|
|
735
|
-
"""Get Injection Materials
|
|
1260
|
+
"""Get V1 Injection Materials
|
|
736
1261
|
|
|
737
|
-
## Injection Materials Return Injection Materials metadata.
|
|
1262
|
+
## Injection Materials V1 Return Injection Materials metadata.
|
|
738
1263
|
|
|
739
1264
|
:param prep_lot_number: (required)
|
|
740
1265
|
:type prep_lot_number: str
|
|
@@ -760,7 +1285,7 @@ class DefaultApi:
|
|
|
760
1285
|
:return: Returns the result object.
|
|
761
1286
|
""" # noqa: E501
|
|
762
1287
|
|
|
763
|
-
_param = self.
|
|
1288
|
+
_param = self._get_v1_injection_materials_serialize(
|
|
764
1289
|
prep_lot_number=prep_lot_number,
|
|
765
1290
|
_request_auth=_request_auth,
|
|
766
1291
|
_content_type=_content_type,
|
|
@@ -779,7 +1304,7 @@ class DefaultApi:
|
|
|
779
1304
|
return response_data.response
|
|
780
1305
|
|
|
781
1306
|
|
|
782
|
-
def
|
|
1307
|
+
def _get_v1_injection_materials_serialize(
|
|
783
1308
|
self,
|
|
784
1309
|
prep_lot_number,
|
|
785
1310
|
_request_auth,
|
|
@@ -843,7 +1368,7 @@ class DefaultApi:
|
|
|
843
1368
|
|
|
844
1369
|
|
|
845
1370
|
@validate_call
|
|
846
|
-
async def
|
|
1371
|
+
async def get_v1_instrument(
|
|
847
1372
|
self,
|
|
848
1373
|
instrument_id: StrictStr,
|
|
849
1374
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -860,9 +1385,9 @@ class DefaultApi:
|
|
|
860
1385
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
861
1386
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
862
1387
|
) -> object:
|
|
863
|
-
"""Get Instrument
|
|
1388
|
+
"""Get V1 Instrument
|
|
864
1389
|
|
|
865
|
-
## Instrument Return an Instrument.
|
|
1390
|
+
## Instrument v1 Return an Instrument.
|
|
866
1391
|
|
|
867
1392
|
:param instrument_id: (required)
|
|
868
1393
|
:type instrument_id: str
|
|
@@ -890,7 +1415,7 @@ class DefaultApi:
|
|
|
890
1415
|
:return: Returns the result object.
|
|
891
1416
|
""" # noqa: E501
|
|
892
1417
|
|
|
893
|
-
_param = self.
|
|
1418
|
+
_param = self._get_v1_instrument_serialize(
|
|
894
1419
|
instrument_id=instrument_id,
|
|
895
1420
|
partial_match=partial_match,
|
|
896
1421
|
_request_auth=_request_auth,
|
|
@@ -915,7 +1440,7 @@ class DefaultApi:
|
|
|
915
1440
|
|
|
916
1441
|
|
|
917
1442
|
@validate_call
|
|
918
|
-
async def
|
|
1443
|
+
async def get_v1_instrument_with_http_info(
|
|
919
1444
|
self,
|
|
920
1445
|
instrument_id: StrictStr,
|
|
921
1446
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -932,9 +1457,9 @@ class DefaultApi:
|
|
|
932
1457
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
933
1458
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
934
1459
|
) -> ApiResponse[object]:
|
|
935
|
-
"""Get Instrument
|
|
1460
|
+
"""Get V1 Instrument
|
|
936
1461
|
|
|
937
|
-
## Instrument Return an Instrument.
|
|
1462
|
+
## Instrument v1 Return an Instrument.
|
|
938
1463
|
|
|
939
1464
|
:param instrument_id: (required)
|
|
940
1465
|
:type instrument_id: str
|
|
@@ -962,7 +1487,7 @@ class DefaultApi:
|
|
|
962
1487
|
:return: Returns the result object.
|
|
963
1488
|
""" # noqa: E501
|
|
964
1489
|
|
|
965
|
-
_param = self.
|
|
1490
|
+
_param = self._get_v1_instrument_serialize(
|
|
966
1491
|
instrument_id=instrument_id,
|
|
967
1492
|
partial_match=partial_match,
|
|
968
1493
|
_request_auth=_request_auth,
|
|
@@ -987,7 +1512,7 @@ class DefaultApi:
|
|
|
987
1512
|
|
|
988
1513
|
|
|
989
1514
|
@validate_call
|
|
990
|
-
async def
|
|
1515
|
+
async def get_v1_instrument_without_preload_content(
|
|
991
1516
|
self,
|
|
992
1517
|
instrument_id: StrictStr,
|
|
993
1518
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -1004,9 +1529,9 @@ class DefaultApi:
|
|
|
1004
1529
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1005
1530
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1006
1531
|
) -> RESTResponseType:
|
|
1007
|
-
"""Get Instrument
|
|
1532
|
+
"""Get V1 Instrument
|
|
1008
1533
|
|
|
1009
|
-
## Instrument Return an Instrument.
|
|
1534
|
+
## Instrument v1 Return an Instrument.
|
|
1010
1535
|
|
|
1011
1536
|
:param instrument_id: (required)
|
|
1012
1537
|
:type instrument_id: str
|
|
@@ -1034,7 +1559,7 @@ class DefaultApi:
|
|
|
1034
1559
|
:return: Returns the result object.
|
|
1035
1560
|
""" # noqa: E501
|
|
1036
1561
|
|
|
1037
|
-
_param = self.
|
|
1562
|
+
_param = self._get_v1_instrument_serialize(
|
|
1038
1563
|
instrument_id=instrument_id,
|
|
1039
1564
|
partial_match=partial_match,
|
|
1040
1565
|
_request_auth=_request_auth,
|
|
@@ -1054,7 +1579,7 @@ class DefaultApi:
|
|
|
1054
1579
|
return response_data.response
|
|
1055
1580
|
|
|
1056
1581
|
|
|
1057
|
-
def
|
|
1582
|
+
def _get_v1_instrument_serialize(
|
|
1058
1583
|
self,
|
|
1059
1584
|
instrument_id,
|
|
1060
1585
|
partial_match,
|
|
@@ -1123,7 +1648,7 @@ class DefaultApi:
|
|
|
1123
1648
|
|
|
1124
1649
|
|
|
1125
1650
|
@validate_call
|
|
1126
|
-
async def
|
|
1651
|
+
async def get_v1_intended_measurements(
|
|
1127
1652
|
self,
|
|
1128
1653
|
subject_id: StrictStr,
|
|
1129
1654
|
_request_timeout: Union[
|
|
@@ -1139,9 +1664,9 @@ class DefaultApi:
|
|
|
1139
1664
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1140
1665
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1141
1666
|
) -> object:
|
|
1142
|
-
"""Get Intended Measurements
|
|
1667
|
+
"""Get V1 Intended Measurements
|
|
1143
1668
|
|
|
1144
|
-
## Intended Measurements Return Intended Measurements metadata.
|
|
1669
|
+
## Intended Measurements V1 Return Intended Measurements metadata.
|
|
1145
1670
|
|
|
1146
1671
|
:param subject_id: (required)
|
|
1147
1672
|
:type subject_id: str
|
|
@@ -1167,7 +1692,7 @@ class DefaultApi:
|
|
|
1167
1692
|
:return: Returns the result object.
|
|
1168
1693
|
""" # noqa: E501
|
|
1169
1694
|
|
|
1170
|
-
_param = self.
|
|
1695
|
+
_param = self._get_v1_intended_measurements_serialize(
|
|
1171
1696
|
subject_id=subject_id,
|
|
1172
1697
|
_request_auth=_request_auth,
|
|
1173
1698
|
_content_type=_content_type,
|
|
@@ -1191,7 +1716,7 @@ class DefaultApi:
|
|
|
1191
1716
|
|
|
1192
1717
|
|
|
1193
1718
|
@validate_call
|
|
1194
|
-
async def
|
|
1719
|
+
async def get_v1_intended_measurements_with_http_info(
|
|
1195
1720
|
self,
|
|
1196
1721
|
subject_id: StrictStr,
|
|
1197
1722
|
_request_timeout: Union[
|
|
@@ -1207,9 +1732,9 @@ class DefaultApi:
|
|
|
1207
1732
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1208
1733
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1209
1734
|
) -> ApiResponse[object]:
|
|
1210
|
-
"""Get Intended Measurements
|
|
1735
|
+
"""Get V1 Intended Measurements
|
|
1211
1736
|
|
|
1212
|
-
## Intended Measurements Return Intended Measurements metadata.
|
|
1737
|
+
## Intended Measurements V1 Return Intended Measurements metadata.
|
|
1213
1738
|
|
|
1214
1739
|
:param subject_id: (required)
|
|
1215
1740
|
:type subject_id: str
|
|
@@ -1235,7 +1760,7 @@ class DefaultApi:
|
|
|
1235
1760
|
:return: Returns the result object.
|
|
1236
1761
|
""" # noqa: E501
|
|
1237
1762
|
|
|
1238
|
-
_param = self.
|
|
1763
|
+
_param = self._get_v1_intended_measurements_serialize(
|
|
1239
1764
|
subject_id=subject_id,
|
|
1240
1765
|
_request_auth=_request_auth,
|
|
1241
1766
|
_content_type=_content_type,
|
|
@@ -1259,7 +1784,7 @@ class DefaultApi:
|
|
|
1259
1784
|
|
|
1260
1785
|
|
|
1261
1786
|
@validate_call
|
|
1262
|
-
async def
|
|
1787
|
+
async def get_v1_intended_measurements_without_preload_content(
|
|
1263
1788
|
self,
|
|
1264
1789
|
subject_id: StrictStr,
|
|
1265
1790
|
_request_timeout: Union[
|
|
@@ -1275,9 +1800,9 @@ class DefaultApi:
|
|
|
1275
1800
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1276
1801
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1277
1802
|
) -> RESTResponseType:
|
|
1278
|
-
"""Get Intended Measurements
|
|
1803
|
+
"""Get V1 Intended Measurements
|
|
1279
1804
|
|
|
1280
|
-
## Intended Measurements Return Intended Measurements metadata.
|
|
1805
|
+
## Intended Measurements V1 Return Intended Measurements metadata.
|
|
1281
1806
|
|
|
1282
1807
|
:param subject_id: (required)
|
|
1283
1808
|
:type subject_id: str
|
|
@@ -1303,7 +1828,7 @@ class DefaultApi:
|
|
|
1303
1828
|
:return: Returns the result object.
|
|
1304
1829
|
""" # noqa: E501
|
|
1305
1830
|
|
|
1306
|
-
_param = self.
|
|
1831
|
+
_param = self._get_v1_intended_measurements_serialize(
|
|
1307
1832
|
subject_id=subject_id,
|
|
1308
1833
|
_request_auth=_request_auth,
|
|
1309
1834
|
_content_type=_content_type,
|
|
@@ -1322,7 +1847,7 @@ class DefaultApi:
|
|
|
1322
1847
|
return response_data.response
|
|
1323
1848
|
|
|
1324
1849
|
|
|
1325
|
-
def
|
|
1850
|
+
def _get_v1_intended_measurements_serialize(
|
|
1326
1851
|
self,
|
|
1327
1852
|
subject_id,
|
|
1328
1853
|
_request_auth,
|
|
@@ -1386,7 +1911,7 @@ class DefaultApi:
|
|
|
1386
1911
|
|
|
1387
1912
|
|
|
1388
1913
|
@validate_call
|
|
1389
|
-
async def
|
|
1914
|
+
async def get_v1_mgi_allele(
|
|
1390
1915
|
self,
|
|
1391
1916
|
allele_name: StrictStr,
|
|
1392
1917
|
_request_timeout: Union[
|
|
@@ -1402,7 +1927,7 @@ class DefaultApi:
|
|
|
1402
1927
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1403
1928
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1404
1929
|
) -> object:
|
|
1405
|
-
"""Get Mgi Allele
|
|
1930
|
+
"""Get V1 Mgi Allele
|
|
1406
1931
|
|
|
1407
1932
|
## MGI Allele Return MGI Allele metadata.
|
|
1408
1933
|
|
|
@@ -1430,7 +1955,7 @@ class DefaultApi:
|
|
|
1430
1955
|
:return: Returns the result object.
|
|
1431
1956
|
""" # noqa: E501
|
|
1432
1957
|
|
|
1433
|
-
_param = self.
|
|
1958
|
+
_param = self._get_v1_mgi_allele_serialize(
|
|
1434
1959
|
allele_name=allele_name,
|
|
1435
1960
|
_request_auth=_request_auth,
|
|
1436
1961
|
_content_type=_content_type,
|
|
@@ -1454,7 +1979,7 @@ class DefaultApi:
|
|
|
1454
1979
|
|
|
1455
1980
|
|
|
1456
1981
|
@validate_call
|
|
1457
|
-
async def
|
|
1982
|
+
async def get_v1_mgi_allele_with_http_info(
|
|
1458
1983
|
self,
|
|
1459
1984
|
allele_name: StrictStr,
|
|
1460
1985
|
_request_timeout: Union[
|
|
@@ -1470,7 +1995,7 @@ class DefaultApi:
|
|
|
1470
1995
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1471
1996
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1472
1997
|
) -> ApiResponse[object]:
|
|
1473
|
-
"""Get Mgi Allele
|
|
1998
|
+
"""Get V1 Mgi Allele
|
|
1474
1999
|
|
|
1475
2000
|
## MGI Allele Return MGI Allele metadata.
|
|
1476
2001
|
|
|
@@ -1498,7 +2023,7 @@ class DefaultApi:
|
|
|
1498
2023
|
:return: Returns the result object.
|
|
1499
2024
|
""" # noqa: E501
|
|
1500
2025
|
|
|
1501
|
-
_param = self.
|
|
2026
|
+
_param = self._get_v1_mgi_allele_serialize(
|
|
1502
2027
|
allele_name=allele_name,
|
|
1503
2028
|
_request_auth=_request_auth,
|
|
1504
2029
|
_content_type=_content_type,
|
|
@@ -1522,7 +2047,7 @@ class DefaultApi:
|
|
|
1522
2047
|
|
|
1523
2048
|
|
|
1524
2049
|
@validate_call
|
|
1525
|
-
async def
|
|
2050
|
+
async def get_v1_mgi_allele_without_preload_content(
|
|
1526
2051
|
self,
|
|
1527
2052
|
allele_name: StrictStr,
|
|
1528
2053
|
_request_timeout: Union[
|
|
@@ -1538,7 +2063,7 @@ class DefaultApi:
|
|
|
1538
2063
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1539
2064
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1540
2065
|
) -> RESTResponseType:
|
|
1541
|
-
"""Get Mgi Allele
|
|
2066
|
+
"""Get V1 Mgi Allele
|
|
1542
2067
|
|
|
1543
2068
|
## MGI Allele Return MGI Allele metadata.
|
|
1544
2069
|
|
|
@@ -1566,7 +2091,7 @@ class DefaultApi:
|
|
|
1566
2091
|
:return: Returns the result object.
|
|
1567
2092
|
""" # noqa: E501
|
|
1568
2093
|
|
|
1569
|
-
_param = self.
|
|
2094
|
+
_param = self._get_v1_mgi_allele_serialize(
|
|
1570
2095
|
allele_name=allele_name,
|
|
1571
2096
|
_request_auth=_request_auth,
|
|
1572
2097
|
_content_type=_content_type,
|
|
@@ -1585,7 +2110,7 @@ class DefaultApi:
|
|
|
1585
2110
|
return response_data.response
|
|
1586
2111
|
|
|
1587
2112
|
|
|
1588
|
-
def
|
|
2113
|
+
def _get_v1_mgi_allele_serialize(
|
|
1589
2114
|
self,
|
|
1590
2115
|
allele_name,
|
|
1591
2116
|
_request_auth,
|
|
@@ -1649,7 +2174,7 @@ class DefaultApi:
|
|
|
1649
2174
|
|
|
1650
2175
|
|
|
1651
2176
|
@validate_call
|
|
1652
|
-
async def
|
|
2177
|
+
async def get_v1_perfusions(
|
|
1653
2178
|
self,
|
|
1654
2179
|
subject_id: StrictStr,
|
|
1655
2180
|
_request_timeout: Union[
|
|
@@ -1665,9 +2190,9 @@ class DefaultApi:
|
|
|
1665
2190
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1666
2191
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1667
2192
|
) -> object:
|
|
1668
|
-
"""Get Perfusions
|
|
2193
|
+
"""Get V1 Perfusions
|
|
1669
2194
|
|
|
1670
|
-
## Perfusions Return Perfusions metadata.
|
|
2195
|
+
## Perfusions V1 Return Perfusions metadata.
|
|
1671
2196
|
|
|
1672
2197
|
:param subject_id: (required)
|
|
1673
2198
|
:type subject_id: str
|
|
@@ -1693,7 +2218,7 @@ class DefaultApi:
|
|
|
1693
2218
|
:return: Returns the result object.
|
|
1694
2219
|
""" # noqa: E501
|
|
1695
2220
|
|
|
1696
|
-
_param = self.
|
|
2221
|
+
_param = self._get_v1_perfusions_serialize(
|
|
1697
2222
|
subject_id=subject_id,
|
|
1698
2223
|
_request_auth=_request_auth,
|
|
1699
2224
|
_content_type=_content_type,
|
|
@@ -1717,7 +2242,7 @@ class DefaultApi:
|
|
|
1717
2242
|
|
|
1718
2243
|
|
|
1719
2244
|
@validate_call
|
|
1720
|
-
async def
|
|
2245
|
+
async def get_v1_perfusions_with_http_info(
|
|
1721
2246
|
self,
|
|
1722
2247
|
subject_id: StrictStr,
|
|
1723
2248
|
_request_timeout: Union[
|
|
@@ -1733,9 +2258,9 @@ class DefaultApi:
|
|
|
1733
2258
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1734
2259
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1735
2260
|
) -> ApiResponse[object]:
|
|
1736
|
-
"""Get Perfusions
|
|
2261
|
+
"""Get V1 Perfusions
|
|
1737
2262
|
|
|
1738
|
-
## Perfusions Return Perfusions metadata.
|
|
2263
|
+
## Perfusions V1 Return Perfusions metadata.
|
|
1739
2264
|
|
|
1740
2265
|
:param subject_id: (required)
|
|
1741
2266
|
:type subject_id: str
|
|
@@ -1761,7 +2286,7 @@ class DefaultApi:
|
|
|
1761
2286
|
:return: Returns the result object.
|
|
1762
2287
|
""" # noqa: E501
|
|
1763
2288
|
|
|
1764
|
-
_param = self.
|
|
2289
|
+
_param = self._get_v1_perfusions_serialize(
|
|
1765
2290
|
subject_id=subject_id,
|
|
1766
2291
|
_request_auth=_request_auth,
|
|
1767
2292
|
_content_type=_content_type,
|
|
@@ -1785,7 +2310,7 @@ class DefaultApi:
|
|
|
1785
2310
|
|
|
1786
2311
|
|
|
1787
2312
|
@validate_call
|
|
1788
|
-
async def
|
|
2313
|
+
async def get_v1_perfusions_without_preload_content(
|
|
1789
2314
|
self,
|
|
1790
2315
|
subject_id: StrictStr,
|
|
1791
2316
|
_request_timeout: Union[
|
|
@@ -1801,9 +2326,9 @@ class DefaultApi:
|
|
|
1801
2326
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1802
2327
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1803
2328
|
) -> RESTResponseType:
|
|
1804
|
-
"""Get Perfusions
|
|
2329
|
+
"""Get V1 Perfusions
|
|
1805
2330
|
|
|
1806
|
-
## Perfusions Return Perfusions metadata.
|
|
2331
|
+
## Perfusions V1 Return Perfusions metadata.
|
|
1807
2332
|
|
|
1808
2333
|
:param subject_id: (required)
|
|
1809
2334
|
:type subject_id: str
|
|
@@ -1829,7 +2354,7 @@ class DefaultApi:
|
|
|
1829
2354
|
:return: Returns the result object.
|
|
1830
2355
|
""" # noqa: E501
|
|
1831
2356
|
|
|
1832
|
-
_param = self.
|
|
2357
|
+
_param = self._get_v1_perfusions_serialize(
|
|
1833
2358
|
subject_id=subject_id,
|
|
1834
2359
|
_request_auth=_request_auth,
|
|
1835
2360
|
_content_type=_content_type,
|
|
@@ -1848,7 +2373,7 @@ class DefaultApi:
|
|
|
1848
2373
|
return response_data.response
|
|
1849
2374
|
|
|
1850
2375
|
|
|
1851
|
-
def
|
|
2376
|
+
def _get_v1_perfusions_serialize(
|
|
1852
2377
|
self,
|
|
1853
2378
|
subject_id,
|
|
1854
2379
|
_request_auth,
|
|
@@ -1912,7 +2437,7 @@ class DefaultApi:
|
|
|
1912
2437
|
|
|
1913
2438
|
|
|
1914
2439
|
@validate_call
|
|
1915
|
-
async def
|
|
2440
|
+
async def get_v1_procedures(
|
|
1916
2441
|
self,
|
|
1917
2442
|
subject_id: StrictStr,
|
|
1918
2443
|
_request_timeout: Union[
|
|
@@ -1928,9 +2453,9 @@ class DefaultApi:
|
|
|
1928
2453
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1929
2454
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1930
2455
|
) -> object:
|
|
1931
|
-
"""Get Procedures
|
|
2456
|
+
"""Get V1 Procedures
|
|
1932
2457
|
|
|
1933
|
-
## Procedures Return Procedure metadata.
|
|
2458
|
+
## Procedures V1 Return Procedure metadata.
|
|
1934
2459
|
|
|
1935
2460
|
:param subject_id: (required)
|
|
1936
2461
|
:type subject_id: str
|
|
@@ -1956,7 +2481,7 @@ class DefaultApi:
|
|
|
1956
2481
|
:return: Returns the result object.
|
|
1957
2482
|
""" # noqa: E501
|
|
1958
2483
|
|
|
1959
|
-
_param = self.
|
|
2484
|
+
_param = self._get_v1_procedures_serialize(
|
|
1960
2485
|
subject_id=subject_id,
|
|
1961
2486
|
_request_auth=_request_auth,
|
|
1962
2487
|
_content_type=_content_type,
|
|
@@ -1980,7 +2505,7 @@ class DefaultApi:
|
|
|
1980
2505
|
|
|
1981
2506
|
|
|
1982
2507
|
@validate_call
|
|
1983
|
-
async def
|
|
2508
|
+
async def get_v1_procedures_with_http_info(
|
|
1984
2509
|
self,
|
|
1985
2510
|
subject_id: StrictStr,
|
|
1986
2511
|
_request_timeout: Union[
|
|
@@ -1996,9 +2521,9 @@ class DefaultApi:
|
|
|
1996
2521
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1997
2522
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1998
2523
|
) -> ApiResponse[object]:
|
|
1999
|
-
"""Get Procedures
|
|
2524
|
+
"""Get V1 Procedures
|
|
2000
2525
|
|
|
2001
|
-
## Procedures Return Procedure metadata.
|
|
2526
|
+
## Procedures V1 Return Procedure metadata.
|
|
2002
2527
|
|
|
2003
2528
|
:param subject_id: (required)
|
|
2004
2529
|
:type subject_id: str
|
|
@@ -2024,7 +2549,7 @@ class DefaultApi:
|
|
|
2024
2549
|
:return: Returns the result object.
|
|
2025
2550
|
""" # noqa: E501
|
|
2026
2551
|
|
|
2027
|
-
_param = self.
|
|
2552
|
+
_param = self._get_v1_procedures_serialize(
|
|
2028
2553
|
subject_id=subject_id,
|
|
2029
2554
|
_request_auth=_request_auth,
|
|
2030
2555
|
_content_type=_content_type,
|
|
@@ -2048,7 +2573,7 @@ class DefaultApi:
|
|
|
2048
2573
|
|
|
2049
2574
|
|
|
2050
2575
|
@validate_call
|
|
2051
|
-
async def
|
|
2576
|
+
async def get_v1_procedures_without_preload_content(
|
|
2052
2577
|
self,
|
|
2053
2578
|
subject_id: StrictStr,
|
|
2054
2579
|
_request_timeout: Union[
|
|
@@ -2064,9 +2589,9 @@ class DefaultApi:
|
|
|
2064
2589
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2065
2590
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2066
2591
|
) -> RESTResponseType:
|
|
2067
|
-
"""Get Procedures
|
|
2592
|
+
"""Get V1 Procedures
|
|
2068
2593
|
|
|
2069
|
-
## Procedures Return Procedure metadata.
|
|
2594
|
+
## Procedures V1 Return Procedure metadata.
|
|
2070
2595
|
|
|
2071
2596
|
:param subject_id: (required)
|
|
2072
2597
|
:type subject_id: str
|
|
@@ -2092,7 +2617,7 @@ class DefaultApi:
|
|
|
2092
2617
|
:return: Returns the result object.
|
|
2093
2618
|
""" # noqa: E501
|
|
2094
2619
|
|
|
2095
|
-
_param = self.
|
|
2620
|
+
_param = self._get_v1_procedures_serialize(
|
|
2096
2621
|
subject_id=subject_id,
|
|
2097
2622
|
_request_auth=_request_auth,
|
|
2098
2623
|
_content_type=_content_type,
|
|
@@ -2111,7 +2636,7 @@ class DefaultApi:
|
|
|
2111
2636
|
return response_data.response
|
|
2112
2637
|
|
|
2113
2638
|
|
|
2114
|
-
def
|
|
2639
|
+
def _get_v1_procedures_serialize(
|
|
2115
2640
|
self,
|
|
2116
2641
|
subject_id,
|
|
2117
2642
|
_request_auth,
|
|
@@ -2175,7 +2700,7 @@ class DefaultApi:
|
|
|
2175
2700
|
|
|
2176
2701
|
|
|
2177
2702
|
@validate_call
|
|
2178
|
-
async def
|
|
2703
|
+
async def get_v1_project_names(
|
|
2179
2704
|
self,
|
|
2180
2705
|
_request_timeout: Union[
|
|
2181
2706
|
None,
|
|
@@ -2190,7 +2715,7 @@ class DefaultApi:
|
|
|
2190
2715
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2191
2716
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2192
2717
|
) -> object:
|
|
2193
|
-
"""Get Project Names
|
|
2718
|
+
"""Get V1 Project Names
|
|
2194
2719
|
|
|
2195
2720
|
Get a list of project names from the Smartsheet API.
|
|
2196
2721
|
|
|
@@ -2216,7 +2741,7 @@ class DefaultApi:
|
|
|
2216
2741
|
:return: Returns the result object.
|
|
2217
2742
|
""" # noqa: E501
|
|
2218
2743
|
|
|
2219
|
-
_param = self.
|
|
2744
|
+
_param = self._get_v1_project_names_serialize(
|
|
2220
2745
|
_request_auth=_request_auth,
|
|
2221
2746
|
_content_type=_content_type,
|
|
2222
2747
|
_headers=_headers,
|
|
@@ -2238,7 +2763,7 @@ class DefaultApi:
|
|
|
2238
2763
|
|
|
2239
2764
|
|
|
2240
2765
|
@validate_call
|
|
2241
|
-
async def
|
|
2766
|
+
async def get_v1_project_names_with_http_info(
|
|
2242
2767
|
self,
|
|
2243
2768
|
_request_timeout: Union[
|
|
2244
2769
|
None,
|
|
@@ -2253,7 +2778,7 @@ class DefaultApi:
|
|
|
2253
2778
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2254
2779
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2255
2780
|
) -> ApiResponse[object]:
|
|
2256
|
-
"""Get Project Names
|
|
2781
|
+
"""Get V1 Project Names
|
|
2257
2782
|
|
|
2258
2783
|
Get a list of project names from the Smartsheet API.
|
|
2259
2784
|
|
|
@@ -2279,7 +2804,7 @@ class DefaultApi:
|
|
|
2279
2804
|
:return: Returns the result object.
|
|
2280
2805
|
""" # noqa: E501
|
|
2281
2806
|
|
|
2282
|
-
_param = self.
|
|
2807
|
+
_param = self._get_v1_project_names_serialize(
|
|
2283
2808
|
_request_auth=_request_auth,
|
|
2284
2809
|
_content_type=_content_type,
|
|
2285
2810
|
_headers=_headers,
|
|
@@ -2301,7 +2826,7 @@ class DefaultApi:
|
|
|
2301
2826
|
|
|
2302
2827
|
|
|
2303
2828
|
@validate_call
|
|
2304
|
-
async def
|
|
2829
|
+
async def get_v1_project_names_without_preload_content(
|
|
2305
2830
|
self,
|
|
2306
2831
|
_request_timeout: Union[
|
|
2307
2832
|
None,
|
|
@@ -2316,7 +2841,7 @@ class DefaultApi:
|
|
|
2316
2841
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2317
2842
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2318
2843
|
) -> RESTResponseType:
|
|
2319
|
-
"""Get Project Names
|
|
2844
|
+
"""Get V1 Project Names
|
|
2320
2845
|
|
|
2321
2846
|
Get a list of project names from the Smartsheet API.
|
|
2322
2847
|
|
|
@@ -2342,7 +2867,7 @@ class DefaultApi:
|
|
|
2342
2867
|
:return: Returns the result object.
|
|
2343
2868
|
""" # noqa: E501
|
|
2344
2869
|
|
|
2345
|
-
_param = self.
|
|
2870
|
+
_param = self._get_v1_project_names_serialize(
|
|
2346
2871
|
_request_auth=_request_auth,
|
|
2347
2872
|
_content_type=_content_type,
|
|
2348
2873
|
_headers=_headers,
|
|
@@ -2359,7 +2884,7 @@ class DefaultApi:
|
|
|
2359
2884
|
return response_data.response
|
|
2360
2885
|
|
|
2361
2886
|
|
|
2362
|
-
def
|
|
2887
|
+
def _get_v1_project_names_serialize(
|
|
2363
2888
|
self,
|
|
2364
2889
|
_request_auth,
|
|
2365
2890
|
_content_type,
|
|
@@ -2420,7 +2945,7 @@ class DefaultApi:
|
|
|
2420
2945
|
|
|
2421
2946
|
|
|
2422
2947
|
@validate_call
|
|
2423
|
-
async def
|
|
2948
|
+
async def get_v1_protocols(
|
|
2424
2949
|
self,
|
|
2425
2950
|
protocol_name: StrictStr,
|
|
2426
2951
|
_request_timeout: Union[
|
|
@@ -2436,7 +2961,7 @@ class DefaultApi:
|
|
|
2436
2961
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2437
2962
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2438
2963
|
) -> object:
|
|
2439
|
-
"""Get Protocols
|
|
2964
|
+
"""Get V1 Protocols
|
|
2440
2965
|
|
|
2441
2966
|
## Protocols Return Protocols metadata.
|
|
2442
2967
|
|
|
@@ -2464,7 +2989,7 @@ class DefaultApi:
|
|
|
2464
2989
|
:return: Returns the result object.
|
|
2465
2990
|
""" # noqa: E501
|
|
2466
2991
|
|
|
2467
|
-
_param = self.
|
|
2992
|
+
_param = self._get_v1_protocols_serialize(
|
|
2468
2993
|
protocol_name=protocol_name,
|
|
2469
2994
|
_request_auth=_request_auth,
|
|
2470
2995
|
_content_type=_content_type,
|
|
@@ -2488,7 +3013,7 @@ class DefaultApi:
|
|
|
2488
3013
|
|
|
2489
3014
|
|
|
2490
3015
|
@validate_call
|
|
2491
|
-
async def
|
|
3016
|
+
async def get_v1_protocols_with_http_info(
|
|
2492
3017
|
self,
|
|
2493
3018
|
protocol_name: StrictStr,
|
|
2494
3019
|
_request_timeout: Union[
|
|
@@ -2504,7 +3029,7 @@ class DefaultApi:
|
|
|
2504
3029
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2505
3030
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2506
3031
|
) -> ApiResponse[object]:
|
|
2507
|
-
"""Get Protocols
|
|
3032
|
+
"""Get V1 Protocols
|
|
2508
3033
|
|
|
2509
3034
|
## Protocols Return Protocols metadata.
|
|
2510
3035
|
|
|
@@ -2532,7 +3057,7 @@ class DefaultApi:
|
|
|
2532
3057
|
:return: Returns the result object.
|
|
2533
3058
|
""" # noqa: E501
|
|
2534
3059
|
|
|
2535
|
-
_param = self.
|
|
3060
|
+
_param = self._get_v1_protocols_serialize(
|
|
2536
3061
|
protocol_name=protocol_name,
|
|
2537
3062
|
_request_auth=_request_auth,
|
|
2538
3063
|
_content_type=_content_type,
|
|
@@ -2556,7 +3081,7 @@ class DefaultApi:
|
|
|
2556
3081
|
|
|
2557
3082
|
|
|
2558
3083
|
@validate_call
|
|
2559
|
-
async def
|
|
3084
|
+
async def get_v1_protocols_without_preload_content(
|
|
2560
3085
|
self,
|
|
2561
3086
|
protocol_name: StrictStr,
|
|
2562
3087
|
_request_timeout: Union[
|
|
@@ -2572,7 +3097,7 @@ class DefaultApi:
|
|
|
2572
3097
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2573
3098
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2574
3099
|
) -> RESTResponseType:
|
|
2575
|
-
"""Get Protocols
|
|
3100
|
+
"""Get V1 Protocols
|
|
2576
3101
|
|
|
2577
3102
|
## Protocols Return Protocols metadata.
|
|
2578
3103
|
|
|
@@ -2600,7 +3125,7 @@ class DefaultApi:
|
|
|
2600
3125
|
:return: Returns the result object.
|
|
2601
3126
|
""" # noqa: E501
|
|
2602
3127
|
|
|
2603
|
-
_param = self.
|
|
3128
|
+
_param = self._get_v1_protocols_serialize(
|
|
2604
3129
|
protocol_name=protocol_name,
|
|
2605
3130
|
_request_auth=_request_auth,
|
|
2606
3131
|
_content_type=_content_type,
|
|
@@ -2619,7 +3144,7 @@ class DefaultApi:
|
|
|
2619
3144
|
return response_data.response
|
|
2620
3145
|
|
|
2621
3146
|
|
|
2622
|
-
def
|
|
3147
|
+
def _get_v1_protocols_serialize(
|
|
2623
3148
|
self,
|
|
2624
3149
|
protocol_name,
|
|
2625
3150
|
_request_auth,
|
|
@@ -2683,7 +3208,7 @@ class DefaultApi:
|
|
|
2683
3208
|
|
|
2684
3209
|
|
|
2685
3210
|
@validate_call
|
|
2686
|
-
async def
|
|
3211
|
+
async def get_v1_rig(
|
|
2687
3212
|
self,
|
|
2688
3213
|
rig_id: StrictStr,
|
|
2689
3214
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -2700,9 +3225,9 @@ class DefaultApi:
|
|
|
2700
3225
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2701
3226
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2702
3227
|
) -> object:
|
|
2703
|
-
"""Get Rig
|
|
3228
|
+
"""Get V1 Rig
|
|
2704
3229
|
|
|
2705
|
-
## Rig Return a Rig.
|
|
3230
|
+
## Rig V1 Return a Rig.
|
|
2706
3231
|
|
|
2707
3232
|
:param rig_id: (required)
|
|
2708
3233
|
:type rig_id: str
|
|
@@ -2730,7 +3255,7 @@ class DefaultApi:
|
|
|
2730
3255
|
:return: Returns the result object.
|
|
2731
3256
|
""" # noqa: E501
|
|
2732
3257
|
|
|
2733
|
-
_param = self.
|
|
3258
|
+
_param = self._get_v1_rig_serialize(
|
|
2734
3259
|
rig_id=rig_id,
|
|
2735
3260
|
partial_match=partial_match,
|
|
2736
3261
|
_request_auth=_request_auth,
|
|
@@ -2755,7 +3280,7 @@ class DefaultApi:
|
|
|
2755
3280
|
|
|
2756
3281
|
|
|
2757
3282
|
@validate_call
|
|
2758
|
-
async def
|
|
3283
|
+
async def get_v1_rig_with_http_info(
|
|
2759
3284
|
self,
|
|
2760
3285
|
rig_id: StrictStr,
|
|
2761
3286
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -2772,9 +3297,9 @@ class DefaultApi:
|
|
|
2772
3297
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2773
3298
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2774
3299
|
) -> ApiResponse[object]:
|
|
2775
|
-
"""Get Rig
|
|
3300
|
+
"""Get V1 Rig
|
|
2776
3301
|
|
|
2777
|
-
## Rig Return a Rig.
|
|
3302
|
+
## Rig V1 Return a Rig.
|
|
2778
3303
|
|
|
2779
3304
|
:param rig_id: (required)
|
|
2780
3305
|
:type rig_id: str
|
|
@@ -2802,7 +3327,7 @@ class DefaultApi:
|
|
|
2802
3327
|
:return: Returns the result object.
|
|
2803
3328
|
""" # noqa: E501
|
|
2804
3329
|
|
|
2805
|
-
_param = self.
|
|
3330
|
+
_param = self._get_v1_rig_serialize(
|
|
2806
3331
|
rig_id=rig_id,
|
|
2807
3332
|
partial_match=partial_match,
|
|
2808
3333
|
_request_auth=_request_auth,
|
|
@@ -2827,7 +3352,7 @@ class DefaultApi:
|
|
|
2827
3352
|
|
|
2828
3353
|
|
|
2829
3354
|
@validate_call
|
|
2830
|
-
async def
|
|
3355
|
+
async def get_v1_rig_without_preload_content(
|
|
2831
3356
|
self,
|
|
2832
3357
|
rig_id: StrictStr,
|
|
2833
3358
|
partial_match: Optional[StrictBool] = None,
|
|
@@ -2844,9 +3369,9 @@ class DefaultApi:
|
|
|
2844
3369
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2845
3370
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2846
3371
|
) -> RESTResponseType:
|
|
2847
|
-
"""Get Rig
|
|
3372
|
+
"""Get V1 Rig
|
|
2848
3373
|
|
|
2849
|
-
## Rig Return a Rig.
|
|
3374
|
+
## Rig V1 Return a Rig.
|
|
2850
3375
|
|
|
2851
3376
|
:param rig_id: (required)
|
|
2852
3377
|
:type rig_id: str
|
|
@@ -2874,7 +3399,7 @@ class DefaultApi:
|
|
|
2874
3399
|
:return: Returns the result object.
|
|
2875
3400
|
""" # noqa: E501
|
|
2876
3401
|
|
|
2877
|
-
_param = self.
|
|
3402
|
+
_param = self._get_v1_rig_serialize(
|
|
2878
3403
|
rig_id=rig_id,
|
|
2879
3404
|
partial_match=partial_match,
|
|
2880
3405
|
_request_auth=_request_auth,
|
|
@@ -2894,7 +3419,7 @@ class DefaultApi:
|
|
|
2894
3419
|
return response_data.response
|
|
2895
3420
|
|
|
2896
3421
|
|
|
2897
|
-
def
|
|
3422
|
+
def _get_v1_rig_serialize(
|
|
2898
3423
|
self,
|
|
2899
3424
|
rig_id,
|
|
2900
3425
|
partial_match,
|
|
@@ -2963,7 +3488,7 @@ class DefaultApi:
|
|
|
2963
3488
|
|
|
2964
3489
|
|
|
2965
3490
|
@validate_call
|
|
2966
|
-
async def
|
|
3491
|
+
async def get_v1_slims_workflow(
|
|
2967
3492
|
self,
|
|
2968
3493
|
workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
|
|
2969
3494
|
subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
|
|
@@ -2983,9 +3508,9 @@ class DefaultApi:
|
|
|
2983
3508
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2984
3509
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2985
3510
|
) -> object:
|
|
2986
|
-
"""Get Slims Workflow
|
|
3511
|
+
"""Get V1 Slims Workflow
|
|
2987
3512
|
|
|
2988
|
-
## SLIMS Return information from SLIMS.
|
|
3513
|
+
## SLIMS V1 Return information from SLIMS.
|
|
2989
3514
|
|
|
2990
3515
|
:param workflow: The SLIMS workflow to query. (required)
|
|
2991
3516
|
:type workflow: SlimsWorkflow
|
|
@@ -3019,7 +3544,7 @@ class DefaultApi:
|
|
|
3019
3544
|
:return: Returns the result object.
|
|
3020
3545
|
""" # noqa: E501
|
|
3021
3546
|
|
|
3022
|
-
_param = self.
|
|
3547
|
+
_param = self._get_v1_slims_workflow_serialize(
|
|
3023
3548
|
workflow=workflow,
|
|
3024
3549
|
subject_id=subject_id,
|
|
3025
3550
|
session_name=session_name,
|
|
@@ -3047,7 +3572,7 @@ class DefaultApi:
|
|
|
3047
3572
|
|
|
3048
3573
|
|
|
3049
3574
|
@validate_call
|
|
3050
|
-
async def
|
|
3575
|
+
async def get_v1_slims_workflow_with_http_info(
|
|
3051
3576
|
self,
|
|
3052
3577
|
workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
|
|
3053
3578
|
subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
|
|
@@ -3067,9 +3592,9 @@ class DefaultApi:
|
|
|
3067
3592
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3068
3593
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3069
3594
|
) -> ApiResponse[object]:
|
|
3070
|
-
"""Get Slims Workflow
|
|
3595
|
+
"""Get V1 Slims Workflow
|
|
3071
3596
|
|
|
3072
|
-
## SLIMS Return information from SLIMS.
|
|
3597
|
+
## SLIMS V1 Return information from SLIMS.
|
|
3073
3598
|
|
|
3074
3599
|
:param workflow: The SLIMS workflow to query. (required)
|
|
3075
3600
|
:type workflow: SlimsWorkflow
|
|
@@ -3103,7 +3628,7 @@ class DefaultApi:
|
|
|
3103
3628
|
:return: Returns the result object.
|
|
3104
3629
|
""" # noqa: E501
|
|
3105
3630
|
|
|
3106
|
-
_param = self.
|
|
3631
|
+
_param = self._get_v1_slims_workflow_serialize(
|
|
3107
3632
|
workflow=workflow,
|
|
3108
3633
|
subject_id=subject_id,
|
|
3109
3634
|
session_name=session_name,
|
|
@@ -3131,7 +3656,7 @@ class DefaultApi:
|
|
|
3131
3656
|
|
|
3132
3657
|
|
|
3133
3658
|
@validate_call
|
|
3134
|
-
async def
|
|
3659
|
+
async def get_v1_slims_workflow_without_preload_content(
|
|
3135
3660
|
self,
|
|
3136
3661
|
workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
|
|
3137
3662
|
subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
|
|
@@ -3151,9 +3676,9 @@ class DefaultApi:
|
|
|
3151
3676
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3152
3677
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3153
3678
|
) -> RESTResponseType:
|
|
3154
|
-
"""Get Slims Workflow
|
|
3679
|
+
"""Get V1 Slims Workflow
|
|
3155
3680
|
|
|
3156
|
-
## SLIMS Return information from SLIMS.
|
|
3681
|
+
## SLIMS V1 Return information from SLIMS.
|
|
3157
3682
|
|
|
3158
3683
|
:param workflow: The SLIMS workflow to query. (required)
|
|
3159
3684
|
:type workflow: SlimsWorkflow
|
|
@@ -3187,7 +3712,7 @@ class DefaultApi:
|
|
|
3187
3712
|
:return: Returns the result object.
|
|
3188
3713
|
""" # noqa: E501
|
|
3189
3714
|
|
|
3190
|
-
_param = self.
|
|
3715
|
+
_param = self._get_v1_slims_workflow_serialize(
|
|
3191
3716
|
workflow=workflow,
|
|
3192
3717
|
subject_id=subject_id,
|
|
3193
3718
|
session_name=session_name,
|
|
@@ -3210,7 +3735,7 @@ class DefaultApi:
|
|
|
3210
3735
|
return response_data.response
|
|
3211
3736
|
|
|
3212
3737
|
|
|
3213
|
-
def
|
|
3738
|
+
def _get_v1_slims_workflow_serialize(
|
|
3214
3739
|
self,
|
|
3215
3740
|
workflow,
|
|
3216
3741
|
subject_id,
|
|
@@ -3294,7 +3819,7 @@ class DefaultApi:
|
|
|
3294
3819
|
|
|
3295
3820
|
|
|
3296
3821
|
@validate_call
|
|
3297
|
-
async def
|
|
3822
|
+
async def get_v1_subject(
|
|
3298
3823
|
self,
|
|
3299
3824
|
subject_id: StrictStr,
|
|
3300
3825
|
_request_timeout: Union[
|
|
@@ -3310,9 +3835,9 @@ class DefaultApi:
|
|
|
3310
3835
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3311
3836
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3312
3837
|
) -> object:
|
|
3313
|
-
"""Get Subject
|
|
3838
|
+
"""Get V1 Subject
|
|
3314
3839
|
|
|
3315
|
-
## Subject Return Subject metadata.
|
|
3840
|
+
## Subject V1 Return Subject metadata.
|
|
3316
3841
|
|
|
3317
3842
|
:param subject_id: (required)
|
|
3318
3843
|
:type subject_id: str
|
|
@@ -3338,7 +3863,7 @@ class DefaultApi:
|
|
|
3338
3863
|
:return: Returns the result object.
|
|
3339
3864
|
""" # noqa: E501
|
|
3340
3865
|
|
|
3341
|
-
_param = self.
|
|
3866
|
+
_param = self._get_v1_subject_serialize(
|
|
3342
3867
|
subject_id=subject_id,
|
|
3343
3868
|
_request_auth=_request_auth,
|
|
3344
3869
|
_content_type=_content_type,
|
|
@@ -3362,7 +3887,7 @@ class DefaultApi:
|
|
|
3362
3887
|
|
|
3363
3888
|
|
|
3364
3889
|
@validate_call
|
|
3365
|
-
async def
|
|
3890
|
+
async def get_v1_subject_with_http_info(
|
|
3366
3891
|
self,
|
|
3367
3892
|
subject_id: StrictStr,
|
|
3368
3893
|
_request_timeout: Union[
|
|
@@ -3378,9 +3903,9 @@ class DefaultApi:
|
|
|
3378
3903
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3379
3904
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3380
3905
|
) -> ApiResponse[object]:
|
|
3381
|
-
"""Get Subject
|
|
3906
|
+
"""Get V1 Subject
|
|
3382
3907
|
|
|
3383
|
-
## Subject Return Subject metadata.
|
|
3908
|
+
## Subject V1 Return Subject metadata.
|
|
3384
3909
|
|
|
3385
3910
|
:param subject_id: (required)
|
|
3386
3911
|
:type subject_id: str
|
|
@@ -3406,7 +3931,7 @@ class DefaultApi:
|
|
|
3406
3931
|
:return: Returns the result object.
|
|
3407
3932
|
""" # noqa: E501
|
|
3408
3933
|
|
|
3409
|
-
_param = self.
|
|
3934
|
+
_param = self._get_v1_subject_serialize(
|
|
3410
3935
|
subject_id=subject_id,
|
|
3411
3936
|
_request_auth=_request_auth,
|
|
3412
3937
|
_content_type=_content_type,
|
|
@@ -3430,7 +3955,7 @@ class DefaultApi:
|
|
|
3430
3955
|
|
|
3431
3956
|
|
|
3432
3957
|
@validate_call
|
|
3433
|
-
async def
|
|
3958
|
+
async def get_v1_subject_without_preload_content(
|
|
3434
3959
|
self,
|
|
3435
3960
|
subject_id: StrictStr,
|
|
3436
3961
|
_request_timeout: Union[
|
|
@@ -3446,9 +3971,9 @@ class DefaultApi:
|
|
|
3446
3971
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3447
3972
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3448
3973
|
) -> RESTResponseType:
|
|
3449
|
-
"""Get Subject
|
|
3974
|
+
"""Get V1 Subject
|
|
3450
3975
|
|
|
3451
|
-
## Subject Return Subject metadata.
|
|
3976
|
+
## Subject V1 Return Subject metadata.
|
|
3452
3977
|
|
|
3453
3978
|
:param subject_id: (required)
|
|
3454
3979
|
:type subject_id: str
|
|
@@ -3474,7 +3999,7 @@ class DefaultApi:
|
|
|
3474
3999
|
:return: Returns the result object.
|
|
3475
4000
|
""" # noqa: E501
|
|
3476
4001
|
|
|
3477
|
-
_param = self.
|
|
4002
|
+
_param = self._get_v1_subject_serialize(
|
|
3478
4003
|
subject_id=subject_id,
|
|
3479
4004
|
_request_auth=_request_auth,
|
|
3480
4005
|
_content_type=_content_type,
|
|
@@ -3493,7 +4018,7 @@ class DefaultApi:
|
|
|
3493
4018
|
return response_data.response
|
|
3494
4019
|
|
|
3495
4020
|
|
|
3496
|
-
def
|
|
4021
|
+
def _get_v1_subject_serialize(
|
|
3497
4022
|
self,
|
|
3498
4023
|
subject_id,
|
|
3499
4024
|
_request_auth,
|