aind-metadata-service-async-client 1.1.4__py3-none-any.whl → 2.0.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.

Potentially problematic release.


This version of aind-metadata-service-async-client might be problematic. Click here for more details.

Files changed (31) hide show
  1. aind_metadata_service_async_client/__init__.py +2 -15
  2. aind_metadata_service_async_client/api/default_api.py +437 -175
  3. aind_metadata_service_async_client/api/healthcheck_api.py +2 -2
  4. aind_metadata_service_async_client/api_client.py +2 -2
  5. aind_metadata_service_async_client/configuration.py +3 -3
  6. aind_metadata_service_async_client/exceptions.py +1 -1
  7. aind_metadata_service_async_client/models/__init__.py +1 -14
  8. aind_metadata_service_async_client/models/health_check.py +3 -3
  9. aind_metadata_service_async_client/models/http_validation_error.py +1 -1
  10. aind_metadata_service_async_client/models/slims_workflow.py +1 -1
  11. aind_metadata_service_async_client/models/validation_error.py +1 -1
  12. aind_metadata_service_async_client/models/validation_error_loc_inner.py +1 -1
  13. aind_metadata_service_async_client/rest.py +1 -1
  14. {aind_metadata_service_async_client-1.1.4.dist-info → aind_metadata_service_async_client-2.0.0.dist-info}/METADATA +1 -1
  15. aind_metadata_service_async_client-2.0.0.dist-info/RECORD +20 -0
  16. aind_metadata_service_async_client/models/anyof_schema1_validator.py +0 -144
  17. aind_metadata_service_async_client/models/average_hit_rate.py +0 -144
  18. aind_metadata_service_async_client/models/fov_coordinate_ap.py +0 -144
  19. aind_metadata_service_async_client/models/fov_coordinate_ml.py +0 -112
  20. aind_metadata_service_async_client/models/hit_rate_trials010.py +0 -144
  21. aind_metadata_service_async_client/models/hit_rate_trials2040.py +0 -144
  22. aind_metadata_service_async_client/models/input_source.py +0 -122
  23. aind_metadata_service_async_client/models/job_settings.py +0 -369
  24. aind_metadata_service_async_client/models/job_settings_starting_lickport_position_inner.py +0 -138
  25. aind_metadata_service_async_client/models/output_directory.py +0 -108
  26. aind_metadata_service_async_client/models/total_hits.py +0 -144
  27. aind_metadata_service_async_client/models/trial_num.py +0 -144
  28. aind_metadata_service_async_client/models/user_settings_config_file.py +0 -108
  29. aind_metadata_service_async_client-1.1.4.dist-info/RECORD +0 -33
  30. {aind_metadata_service_async_client-1.1.4.dist-info → aind_metadata_service_async_client-2.0.0.dist-info}/WHEEL +0 -0
  31. {aind_metadata_service_async_client-1.1.4.dist-info → aind_metadata_service_async_client-2.0.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: 1.1.4
8
+ The version of the OpenAPI document: 2.0.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,9 @@ class DefaultApi:
41
40
 
42
41
 
43
42
  @validate_call
44
- async def get_bergamo_session(
43
+ async def get_subject(
45
44
  self,
46
- job_settings: JobSettings,
45
+ subject_id: StrictStr,
47
46
  _request_timeout: Union[
48
47
  None,
49
48
  Annotated[StrictFloat, Field(gt=0)],
@@ -57,12 +56,275 @@ class DefaultApi:
57
56
  _headers: Optional[Dict[StrictStr, Any]] = None,
58
57
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
59
58
  ) -> object:
60
- """Get Bergamo Session
59
+ """Get Subject
60
+
61
+ ## Subject Return Subject 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_subject_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_subject_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 Subject
128
+
129
+ ## Subject Return Subject 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_subject_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_subject_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 Subject
196
+
197
+ ## Subject Return Subject 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_subject_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_subject_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/subject/{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_v1_bergamo_session(
307
+ self,
308
+ request_body: Dict[str, Any],
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 V1 Bergamo Session
61
323
 
62
324
  ## Session Return session metadata computed from aind-metadata-mapper.
63
325
 
64
- :param job_settings: (required)
65
- :type job_settings: JobSettings
326
+ :param request_body: (required)
327
+ :type request_body: Dict[str, object]
66
328
  :param _request_timeout: timeout setting for this request. If one
67
329
  number provided, it will be total request
68
330
  timeout. It can also be a pair (tuple) of
@@ -85,8 +347,8 @@ class DefaultApi:
85
347
  :return: Returns the result object.
86
348
  """ # noqa: E501
87
349
 
88
- _param = self._get_bergamo_session_serialize(
89
- job_settings=job_settings,
350
+ _param = self._get_v1_bergamo_session_serialize(
351
+ request_body=request_body,
90
352
  _request_auth=_request_auth,
91
353
  _content_type=_content_type,
92
354
  _headers=_headers,
@@ -109,9 +371,9 @@ class DefaultApi:
109
371
 
110
372
 
111
373
  @validate_call
112
- async def get_bergamo_session_with_http_info(
374
+ async def get_v1_bergamo_session_with_http_info(
113
375
  self,
114
- job_settings: JobSettings,
376
+ request_body: Dict[str, Any],
115
377
  _request_timeout: Union[
116
378
  None,
117
379
  Annotated[StrictFloat, Field(gt=0)],
@@ -125,12 +387,12 @@ class DefaultApi:
125
387
  _headers: Optional[Dict[StrictStr, Any]] = None,
126
388
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
127
389
  ) -> ApiResponse[object]:
128
- """Get Bergamo Session
390
+ """Get V1 Bergamo Session
129
391
 
130
392
  ## Session Return session metadata computed from aind-metadata-mapper.
131
393
 
132
- :param job_settings: (required)
133
- :type job_settings: JobSettings
394
+ :param request_body: (required)
395
+ :type request_body: Dict[str, object]
134
396
  :param _request_timeout: timeout setting for this request. If one
135
397
  number provided, it will be total request
136
398
  timeout. It can also be a pair (tuple) of
@@ -153,8 +415,8 @@ class DefaultApi:
153
415
  :return: Returns the result object.
154
416
  """ # noqa: E501
155
417
 
156
- _param = self._get_bergamo_session_serialize(
157
- job_settings=job_settings,
418
+ _param = self._get_v1_bergamo_session_serialize(
419
+ request_body=request_body,
158
420
  _request_auth=_request_auth,
159
421
  _content_type=_content_type,
160
422
  _headers=_headers,
@@ -177,9 +439,9 @@ class DefaultApi:
177
439
 
178
440
 
179
441
  @validate_call
180
- async def get_bergamo_session_without_preload_content(
442
+ async def get_v1_bergamo_session_without_preload_content(
181
443
  self,
182
- job_settings: JobSettings,
444
+ request_body: Dict[str, Any],
183
445
  _request_timeout: Union[
184
446
  None,
185
447
  Annotated[StrictFloat, Field(gt=0)],
@@ -193,12 +455,12 @@ class DefaultApi:
193
455
  _headers: Optional[Dict[StrictStr, Any]] = None,
194
456
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
195
457
  ) -> RESTResponseType:
196
- """Get Bergamo Session
458
+ """Get V1 Bergamo Session
197
459
 
198
460
  ## Session Return session metadata computed from aind-metadata-mapper.
199
461
 
200
- :param job_settings: (required)
201
- :type job_settings: JobSettings
462
+ :param request_body: (required)
463
+ :type request_body: Dict[str, object]
202
464
  :param _request_timeout: timeout setting for this request. If one
203
465
  number provided, it will be total request
204
466
  timeout. It can also be a pair (tuple) of
@@ -221,8 +483,8 @@ class DefaultApi:
221
483
  :return: Returns the result object.
222
484
  """ # noqa: E501
223
485
 
224
- _param = self._get_bergamo_session_serialize(
225
- job_settings=job_settings,
486
+ _param = self._get_v1_bergamo_session_serialize(
487
+ request_body=request_body,
226
488
  _request_auth=_request_auth,
227
489
  _content_type=_content_type,
228
490
  _headers=_headers,
@@ -240,9 +502,9 @@ class DefaultApi:
240
502
  return response_data.response
241
503
 
242
504
 
243
- def _get_bergamo_session_serialize(
505
+ def _get_v1_bergamo_session_serialize(
244
506
  self,
245
- job_settings,
507
+ request_body,
246
508
  _request_auth,
247
509
  _content_type,
248
510
  _headers,
@@ -268,8 +530,8 @@ class DefaultApi:
268
530
  # process the header parameters
269
531
  # process the form parameters
270
532
  # process the body parameter
271
- if job_settings is not None:
272
- _body_params = job_settings
533
+ if request_body is not None:
534
+ _body_params = request_body
273
535
 
274
536
 
275
537
  # set the HTTP header `Accept`
@@ -317,7 +579,7 @@ class DefaultApi:
317
579
 
318
580
 
319
581
  @validate_call
320
- async def get_funding(
582
+ async def get_v1_funding(
321
583
  self,
322
584
  project_name: StrictStr,
323
585
  _request_timeout: Union[
@@ -333,9 +595,9 @@ class DefaultApi:
333
595
  _headers: Optional[Dict[StrictStr, Any]] = None,
334
596
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
335
597
  ) -> object:
336
- """Get Funding
598
+ """Get V1 Funding
337
599
 
338
- ## Funding Return Funding metadata.
600
+ ## Procedures V1 Return Procedure metadata.
339
601
 
340
602
  :param project_name: (required)
341
603
  :type project_name: str
@@ -361,7 +623,7 @@ class DefaultApi:
361
623
  :return: Returns the result object.
362
624
  """ # noqa: E501
363
625
 
364
- _param = self._get_funding_serialize(
626
+ _param = self._get_v1_funding_serialize(
365
627
  project_name=project_name,
366
628
  _request_auth=_request_auth,
367
629
  _content_type=_content_type,
@@ -385,7 +647,7 @@ class DefaultApi:
385
647
 
386
648
 
387
649
  @validate_call
388
- async def get_funding_with_http_info(
650
+ async def get_v1_funding_with_http_info(
389
651
  self,
390
652
  project_name: StrictStr,
391
653
  _request_timeout: Union[
@@ -401,9 +663,9 @@ class DefaultApi:
401
663
  _headers: Optional[Dict[StrictStr, Any]] = None,
402
664
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
403
665
  ) -> ApiResponse[object]:
404
- """Get Funding
666
+ """Get V1 Funding
405
667
 
406
- ## Funding Return Funding metadata.
668
+ ## Procedures V1 Return Procedure metadata.
407
669
 
408
670
  :param project_name: (required)
409
671
  :type project_name: str
@@ -429,7 +691,7 @@ class DefaultApi:
429
691
  :return: Returns the result object.
430
692
  """ # noqa: E501
431
693
 
432
- _param = self._get_funding_serialize(
694
+ _param = self._get_v1_funding_serialize(
433
695
  project_name=project_name,
434
696
  _request_auth=_request_auth,
435
697
  _content_type=_content_type,
@@ -453,7 +715,7 @@ class DefaultApi:
453
715
 
454
716
 
455
717
  @validate_call
456
- async def get_funding_without_preload_content(
718
+ async def get_v1_funding_without_preload_content(
457
719
  self,
458
720
  project_name: StrictStr,
459
721
  _request_timeout: Union[
@@ -469,9 +731,9 @@ class DefaultApi:
469
731
  _headers: Optional[Dict[StrictStr, Any]] = None,
470
732
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
471
733
  ) -> RESTResponseType:
472
- """Get Funding
734
+ """Get V1 Funding
473
735
 
474
- ## Funding Return Funding metadata.
736
+ ## Procedures V1 Return Procedure metadata.
475
737
 
476
738
  :param project_name: (required)
477
739
  :type project_name: str
@@ -497,7 +759,7 @@ class DefaultApi:
497
759
  :return: Returns the result object.
498
760
  """ # noqa: E501
499
761
 
500
- _param = self._get_funding_serialize(
762
+ _param = self._get_v1_funding_serialize(
501
763
  project_name=project_name,
502
764
  _request_auth=_request_auth,
503
765
  _content_type=_content_type,
@@ -516,7 +778,7 @@ class DefaultApi:
516
778
  return response_data.response
517
779
 
518
780
 
519
- def _get_funding_serialize(
781
+ def _get_v1_funding_serialize(
520
782
  self,
521
783
  project_name,
522
784
  _request_auth,
@@ -580,7 +842,7 @@ class DefaultApi:
580
842
 
581
843
 
582
844
  @validate_call
583
- async def get_injection_materials(
845
+ async def get_v1_injection_materials(
584
846
  self,
585
847
  prep_lot_number: StrictStr,
586
848
  _request_timeout: Union[
@@ -596,9 +858,9 @@ class DefaultApi:
596
858
  _headers: Optional[Dict[StrictStr, Any]] = None,
597
859
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
598
860
  ) -> object:
599
- """Get Injection Materials
861
+ """Get V1 Injection Materials
600
862
 
601
- ## Injection Materials Return Injection Materials metadata.
863
+ ## Injection Materials V1 Return Injection Materials metadata.
602
864
 
603
865
  :param prep_lot_number: (required)
604
866
  :type prep_lot_number: str
@@ -624,7 +886,7 @@ class DefaultApi:
624
886
  :return: Returns the result object.
625
887
  """ # noqa: E501
626
888
 
627
- _param = self._get_injection_materials_serialize(
889
+ _param = self._get_v1_injection_materials_serialize(
628
890
  prep_lot_number=prep_lot_number,
629
891
  _request_auth=_request_auth,
630
892
  _content_type=_content_type,
@@ -648,7 +910,7 @@ class DefaultApi:
648
910
 
649
911
 
650
912
  @validate_call
651
- async def get_injection_materials_with_http_info(
913
+ async def get_v1_injection_materials_with_http_info(
652
914
  self,
653
915
  prep_lot_number: StrictStr,
654
916
  _request_timeout: Union[
@@ -664,9 +926,9 @@ class DefaultApi:
664
926
  _headers: Optional[Dict[StrictStr, Any]] = None,
665
927
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
666
928
  ) -> ApiResponse[object]:
667
- """Get Injection Materials
929
+ """Get V1 Injection Materials
668
930
 
669
- ## Injection Materials Return Injection Materials metadata.
931
+ ## Injection Materials V1 Return Injection Materials metadata.
670
932
 
671
933
  :param prep_lot_number: (required)
672
934
  :type prep_lot_number: str
@@ -692,7 +954,7 @@ class DefaultApi:
692
954
  :return: Returns the result object.
693
955
  """ # noqa: E501
694
956
 
695
- _param = self._get_injection_materials_serialize(
957
+ _param = self._get_v1_injection_materials_serialize(
696
958
  prep_lot_number=prep_lot_number,
697
959
  _request_auth=_request_auth,
698
960
  _content_type=_content_type,
@@ -716,7 +978,7 @@ class DefaultApi:
716
978
 
717
979
 
718
980
  @validate_call
719
- async def get_injection_materials_without_preload_content(
981
+ async def get_v1_injection_materials_without_preload_content(
720
982
  self,
721
983
  prep_lot_number: StrictStr,
722
984
  _request_timeout: Union[
@@ -732,9 +994,9 @@ class DefaultApi:
732
994
  _headers: Optional[Dict[StrictStr, Any]] = None,
733
995
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
734
996
  ) -> RESTResponseType:
735
- """Get Injection Materials
997
+ """Get V1 Injection Materials
736
998
 
737
- ## Injection Materials Return Injection Materials metadata.
999
+ ## Injection Materials V1 Return Injection Materials metadata.
738
1000
 
739
1001
  :param prep_lot_number: (required)
740
1002
  :type prep_lot_number: str
@@ -760,7 +1022,7 @@ class DefaultApi:
760
1022
  :return: Returns the result object.
761
1023
  """ # noqa: E501
762
1024
 
763
- _param = self._get_injection_materials_serialize(
1025
+ _param = self._get_v1_injection_materials_serialize(
764
1026
  prep_lot_number=prep_lot_number,
765
1027
  _request_auth=_request_auth,
766
1028
  _content_type=_content_type,
@@ -779,7 +1041,7 @@ class DefaultApi:
779
1041
  return response_data.response
780
1042
 
781
1043
 
782
- def _get_injection_materials_serialize(
1044
+ def _get_v1_injection_materials_serialize(
783
1045
  self,
784
1046
  prep_lot_number,
785
1047
  _request_auth,
@@ -843,7 +1105,7 @@ class DefaultApi:
843
1105
 
844
1106
 
845
1107
  @validate_call
846
- async def get_instrument(
1108
+ async def get_v1_instrument(
847
1109
  self,
848
1110
  instrument_id: StrictStr,
849
1111
  partial_match: Optional[StrictBool] = None,
@@ -860,9 +1122,9 @@ class DefaultApi:
860
1122
  _headers: Optional[Dict[StrictStr, Any]] = None,
861
1123
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
862
1124
  ) -> object:
863
- """Get Instrument
1125
+ """Get V1 Instrument
864
1126
 
865
- ## Instrument Return an Instrument.
1127
+ ## Instrument v1 Return an Instrument.
866
1128
 
867
1129
  :param instrument_id: (required)
868
1130
  :type instrument_id: str
@@ -890,7 +1152,7 @@ class DefaultApi:
890
1152
  :return: Returns the result object.
891
1153
  """ # noqa: E501
892
1154
 
893
- _param = self._get_instrument_serialize(
1155
+ _param = self._get_v1_instrument_serialize(
894
1156
  instrument_id=instrument_id,
895
1157
  partial_match=partial_match,
896
1158
  _request_auth=_request_auth,
@@ -915,7 +1177,7 @@ class DefaultApi:
915
1177
 
916
1178
 
917
1179
  @validate_call
918
- async def get_instrument_with_http_info(
1180
+ async def get_v1_instrument_with_http_info(
919
1181
  self,
920
1182
  instrument_id: StrictStr,
921
1183
  partial_match: Optional[StrictBool] = None,
@@ -932,9 +1194,9 @@ class DefaultApi:
932
1194
  _headers: Optional[Dict[StrictStr, Any]] = None,
933
1195
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
934
1196
  ) -> ApiResponse[object]:
935
- """Get Instrument
1197
+ """Get V1 Instrument
936
1198
 
937
- ## Instrument Return an Instrument.
1199
+ ## Instrument v1 Return an Instrument.
938
1200
 
939
1201
  :param instrument_id: (required)
940
1202
  :type instrument_id: str
@@ -962,7 +1224,7 @@ class DefaultApi:
962
1224
  :return: Returns the result object.
963
1225
  """ # noqa: E501
964
1226
 
965
- _param = self._get_instrument_serialize(
1227
+ _param = self._get_v1_instrument_serialize(
966
1228
  instrument_id=instrument_id,
967
1229
  partial_match=partial_match,
968
1230
  _request_auth=_request_auth,
@@ -987,7 +1249,7 @@ class DefaultApi:
987
1249
 
988
1250
 
989
1251
  @validate_call
990
- async def get_instrument_without_preload_content(
1252
+ async def get_v1_instrument_without_preload_content(
991
1253
  self,
992
1254
  instrument_id: StrictStr,
993
1255
  partial_match: Optional[StrictBool] = None,
@@ -1004,9 +1266,9 @@ class DefaultApi:
1004
1266
  _headers: Optional[Dict[StrictStr, Any]] = None,
1005
1267
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1006
1268
  ) -> RESTResponseType:
1007
- """Get Instrument
1269
+ """Get V1 Instrument
1008
1270
 
1009
- ## Instrument Return an Instrument.
1271
+ ## Instrument v1 Return an Instrument.
1010
1272
 
1011
1273
  :param instrument_id: (required)
1012
1274
  :type instrument_id: str
@@ -1034,7 +1296,7 @@ class DefaultApi:
1034
1296
  :return: Returns the result object.
1035
1297
  """ # noqa: E501
1036
1298
 
1037
- _param = self._get_instrument_serialize(
1299
+ _param = self._get_v1_instrument_serialize(
1038
1300
  instrument_id=instrument_id,
1039
1301
  partial_match=partial_match,
1040
1302
  _request_auth=_request_auth,
@@ -1054,7 +1316,7 @@ class DefaultApi:
1054
1316
  return response_data.response
1055
1317
 
1056
1318
 
1057
- def _get_instrument_serialize(
1319
+ def _get_v1_instrument_serialize(
1058
1320
  self,
1059
1321
  instrument_id,
1060
1322
  partial_match,
@@ -1123,7 +1385,7 @@ class DefaultApi:
1123
1385
 
1124
1386
 
1125
1387
  @validate_call
1126
- async def get_intended_measurements(
1388
+ async def get_v1_intended_measurements(
1127
1389
  self,
1128
1390
  subject_id: StrictStr,
1129
1391
  _request_timeout: Union[
@@ -1139,9 +1401,9 @@ class DefaultApi:
1139
1401
  _headers: Optional[Dict[StrictStr, Any]] = None,
1140
1402
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1141
1403
  ) -> object:
1142
- """Get Intended Measurements
1404
+ """Get V1 Intended Measurements
1143
1405
 
1144
- ## Intended Measurements Return Intended Measurements metadata.
1406
+ ## Intended Measurements V1 Return Intended Measurements metadata.
1145
1407
 
1146
1408
  :param subject_id: (required)
1147
1409
  :type subject_id: str
@@ -1167,7 +1429,7 @@ class DefaultApi:
1167
1429
  :return: Returns the result object.
1168
1430
  """ # noqa: E501
1169
1431
 
1170
- _param = self._get_intended_measurements_serialize(
1432
+ _param = self._get_v1_intended_measurements_serialize(
1171
1433
  subject_id=subject_id,
1172
1434
  _request_auth=_request_auth,
1173
1435
  _content_type=_content_type,
@@ -1191,7 +1453,7 @@ class DefaultApi:
1191
1453
 
1192
1454
 
1193
1455
  @validate_call
1194
- async def get_intended_measurements_with_http_info(
1456
+ async def get_v1_intended_measurements_with_http_info(
1195
1457
  self,
1196
1458
  subject_id: StrictStr,
1197
1459
  _request_timeout: Union[
@@ -1207,9 +1469,9 @@ class DefaultApi:
1207
1469
  _headers: Optional[Dict[StrictStr, Any]] = None,
1208
1470
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1209
1471
  ) -> ApiResponse[object]:
1210
- """Get Intended Measurements
1472
+ """Get V1 Intended Measurements
1211
1473
 
1212
- ## Intended Measurements Return Intended Measurements metadata.
1474
+ ## Intended Measurements V1 Return Intended Measurements metadata.
1213
1475
 
1214
1476
  :param subject_id: (required)
1215
1477
  :type subject_id: str
@@ -1235,7 +1497,7 @@ class DefaultApi:
1235
1497
  :return: Returns the result object.
1236
1498
  """ # noqa: E501
1237
1499
 
1238
- _param = self._get_intended_measurements_serialize(
1500
+ _param = self._get_v1_intended_measurements_serialize(
1239
1501
  subject_id=subject_id,
1240
1502
  _request_auth=_request_auth,
1241
1503
  _content_type=_content_type,
@@ -1259,7 +1521,7 @@ class DefaultApi:
1259
1521
 
1260
1522
 
1261
1523
  @validate_call
1262
- async def get_intended_measurements_without_preload_content(
1524
+ async def get_v1_intended_measurements_without_preload_content(
1263
1525
  self,
1264
1526
  subject_id: StrictStr,
1265
1527
  _request_timeout: Union[
@@ -1275,9 +1537,9 @@ class DefaultApi:
1275
1537
  _headers: Optional[Dict[StrictStr, Any]] = None,
1276
1538
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1277
1539
  ) -> RESTResponseType:
1278
- """Get Intended Measurements
1540
+ """Get V1 Intended Measurements
1279
1541
 
1280
- ## Intended Measurements Return Intended Measurements metadata.
1542
+ ## Intended Measurements V1 Return Intended Measurements metadata.
1281
1543
 
1282
1544
  :param subject_id: (required)
1283
1545
  :type subject_id: str
@@ -1303,7 +1565,7 @@ class DefaultApi:
1303
1565
  :return: Returns the result object.
1304
1566
  """ # noqa: E501
1305
1567
 
1306
- _param = self._get_intended_measurements_serialize(
1568
+ _param = self._get_v1_intended_measurements_serialize(
1307
1569
  subject_id=subject_id,
1308
1570
  _request_auth=_request_auth,
1309
1571
  _content_type=_content_type,
@@ -1322,7 +1584,7 @@ class DefaultApi:
1322
1584
  return response_data.response
1323
1585
 
1324
1586
 
1325
- def _get_intended_measurements_serialize(
1587
+ def _get_v1_intended_measurements_serialize(
1326
1588
  self,
1327
1589
  subject_id,
1328
1590
  _request_auth,
@@ -1386,7 +1648,7 @@ class DefaultApi:
1386
1648
 
1387
1649
 
1388
1650
  @validate_call
1389
- async def get_mgi_allele(
1651
+ async def get_v1_mgi_allele(
1390
1652
  self,
1391
1653
  allele_name: StrictStr,
1392
1654
  _request_timeout: Union[
@@ -1402,7 +1664,7 @@ class DefaultApi:
1402
1664
  _headers: Optional[Dict[StrictStr, Any]] = None,
1403
1665
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1404
1666
  ) -> object:
1405
- """Get Mgi Allele
1667
+ """Get V1 Mgi Allele
1406
1668
 
1407
1669
  ## MGI Allele Return MGI Allele metadata.
1408
1670
 
@@ -1430,7 +1692,7 @@ class DefaultApi:
1430
1692
  :return: Returns the result object.
1431
1693
  """ # noqa: E501
1432
1694
 
1433
- _param = self._get_mgi_allele_serialize(
1695
+ _param = self._get_v1_mgi_allele_serialize(
1434
1696
  allele_name=allele_name,
1435
1697
  _request_auth=_request_auth,
1436
1698
  _content_type=_content_type,
@@ -1454,7 +1716,7 @@ class DefaultApi:
1454
1716
 
1455
1717
 
1456
1718
  @validate_call
1457
- async def get_mgi_allele_with_http_info(
1719
+ async def get_v1_mgi_allele_with_http_info(
1458
1720
  self,
1459
1721
  allele_name: StrictStr,
1460
1722
  _request_timeout: Union[
@@ -1470,7 +1732,7 @@ class DefaultApi:
1470
1732
  _headers: Optional[Dict[StrictStr, Any]] = None,
1471
1733
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1472
1734
  ) -> ApiResponse[object]:
1473
- """Get Mgi Allele
1735
+ """Get V1 Mgi Allele
1474
1736
 
1475
1737
  ## MGI Allele Return MGI Allele metadata.
1476
1738
 
@@ -1498,7 +1760,7 @@ class DefaultApi:
1498
1760
  :return: Returns the result object.
1499
1761
  """ # noqa: E501
1500
1762
 
1501
- _param = self._get_mgi_allele_serialize(
1763
+ _param = self._get_v1_mgi_allele_serialize(
1502
1764
  allele_name=allele_name,
1503
1765
  _request_auth=_request_auth,
1504
1766
  _content_type=_content_type,
@@ -1522,7 +1784,7 @@ class DefaultApi:
1522
1784
 
1523
1785
 
1524
1786
  @validate_call
1525
- async def get_mgi_allele_without_preload_content(
1787
+ async def get_v1_mgi_allele_without_preload_content(
1526
1788
  self,
1527
1789
  allele_name: StrictStr,
1528
1790
  _request_timeout: Union[
@@ -1538,7 +1800,7 @@ class DefaultApi:
1538
1800
  _headers: Optional[Dict[StrictStr, Any]] = None,
1539
1801
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1540
1802
  ) -> RESTResponseType:
1541
- """Get Mgi Allele
1803
+ """Get V1 Mgi Allele
1542
1804
 
1543
1805
  ## MGI Allele Return MGI Allele metadata.
1544
1806
 
@@ -1566,7 +1828,7 @@ class DefaultApi:
1566
1828
  :return: Returns the result object.
1567
1829
  """ # noqa: E501
1568
1830
 
1569
- _param = self._get_mgi_allele_serialize(
1831
+ _param = self._get_v1_mgi_allele_serialize(
1570
1832
  allele_name=allele_name,
1571
1833
  _request_auth=_request_auth,
1572
1834
  _content_type=_content_type,
@@ -1585,7 +1847,7 @@ class DefaultApi:
1585
1847
  return response_data.response
1586
1848
 
1587
1849
 
1588
- def _get_mgi_allele_serialize(
1850
+ def _get_v1_mgi_allele_serialize(
1589
1851
  self,
1590
1852
  allele_name,
1591
1853
  _request_auth,
@@ -1649,7 +1911,7 @@ class DefaultApi:
1649
1911
 
1650
1912
 
1651
1913
  @validate_call
1652
- async def get_perfusions(
1914
+ async def get_v1_perfusions(
1653
1915
  self,
1654
1916
  subject_id: StrictStr,
1655
1917
  _request_timeout: Union[
@@ -1665,9 +1927,9 @@ class DefaultApi:
1665
1927
  _headers: Optional[Dict[StrictStr, Any]] = None,
1666
1928
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1667
1929
  ) -> object:
1668
- """Get Perfusions
1930
+ """Get V1 Perfusions
1669
1931
 
1670
- ## Perfusions Return Perfusions metadata.
1932
+ ## Perfusions V1 Return Perfusions metadata.
1671
1933
 
1672
1934
  :param subject_id: (required)
1673
1935
  :type subject_id: str
@@ -1693,7 +1955,7 @@ class DefaultApi:
1693
1955
  :return: Returns the result object.
1694
1956
  """ # noqa: E501
1695
1957
 
1696
- _param = self._get_perfusions_serialize(
1958
+ _param = self._get_v1_perfusions_serialize(
1697
1959
  subject_id=subject_id,
1698
1960
  _request_auth=_request_auth,
1699
1961
  _content_type=_content_type,
@@ -1717,7 +1979,7 @@ class DefaultApi:
1717
1979
 
1718
1980
 
1719
1981
  @validate_call
1720
- async def get_perfusions_with_http_info(
1982
+ async def get_v1_perfusions_with_http_info(
1721
1983
  self,
1722
1984
  subject_id: StrictStr,
1723
1985
  _request_timeout: Union[
@@ -1733,9 +1995,9 @@ class DefaultApi:
1733
1995
  _headers: Optional[Dict[StrictStr, Any]] = None,
1734
1996
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1735
1997
  ) -> ApiResponse[object]:
1736
- """Get Perfusions
1998
+ """Get V1 Perfusions
1737
1999
 
1738
- ## Perfusions Return Perfusions metadata.
2000
+ ## Perfusions V1 Return Perfusions metadata.
1739
2001
 
1740
2002
  :param subject_id: (required)
1741
2003
  :type subject_id: str
@@ -1761,7 +2023,7 @@ class DefaultApi:
1761
2023
  :return: Returns the result object.
1762
2024
  """ # noqa: E501
1763
2025
 
1764
- _param = self._get_perfusions_serialize(
2026
+ _param = self._get_v1_perfusions_serialize(
1765
2027
  subject_id=subject_id,
1766
2028
  _request_auth=_request_auth,
1767
2029
  _content_type=_content_type,
@@ -1785,7 +2047,7 @@ class DefaultApi:
1785
2047
 
1786
2048
 
1787
2049
  @validate_call
1788
- async def get_perfusions_without_preload_content(
2050
+ async def get_v1_perfusions_without_preload_content(
1789
2051
  self,
1790
2052
  subject_id: StrictStr,
1791
2053
  _request_timeout: Union[
@@ -1801,9 +2063,9 @@ class DefaultApi:
1801
2063
  _headers: Optional[Dict[StrictStr, Any]] = None,
1802
2064
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1803
2065
  ) -> RESTResponseType:
1804
- """Get Perfusions
2066
+ """Get V1 Perfusions
1805
2067
 
1806
- ## Perfusions Return Perfusions metadata.
2068
+ ## Perfusions V1 Return Perfusions metadata.
1807
2069
 
1808
2070
  :param subject_id: (required)
1809
2071
  :type subject_id: str
@@ -1829,7 +2091,7 @@ class DefaultApi:
1829
2091
  :return: Returns the result object.
1830
2092
  """ # noqa: E501
1831
2093
 
1832
- _param = self._get_perfusions_serialize(
2094
+ _param = self._get_v1_perfusions_serialize(
1833
2095
  subject_id=subject_id,
1834
2096
  _request_auth=_request_auth,
1835
2097
  _content_type=_content_type,
@@ -1848,7 +2110,7 @@ class DefaultApi:
1848
2110
  return response_data.response
1849
2111
 
1850
2112
 
1851
- def _get_perfusions_serialize(
2113
+ def _get_v1_perfusions_serialize(
1852
2114
  self,
1853
2115
  subject_id,
1854
2116
  _request_auth,
@@ -1912,7 +2174,7 @@ class DefaultApi:
1912
2174
 
1913
2175
 
1914
2176
  @validate_call
1915
- async def get_procedures(
2177
+ async def get_v1_procedures(
1916
2178
  self,
1917
2179
  subject_id: StrictStr,
1918
2180
  _request_timeout: Union[
@@ -1928,9 +2190,9 @@ class DefaultApi:
1928
2190
  _headers: Optional[Dict[StrictStr, Any]] = None,
1929
2191
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1930
2192
  ) -> object:
1931
- """Get Procedures
2193
+ """Get V1 Procedures
1932
2194
 
1933
- ## Procedures Return Procedure metadata.
2195
+ ## Procedures V1 Return Procedure metadata.
1934
2196
 
1935
2197
  :param subject_id: (required)
1936
2198
  :type subject_id: str
@@ -1956,7 +2218,7 @@ class DefaultApi:
1956
2218
  :return: Returns the result object.
1957
2219
  """ # noqa: E501
1958
2220
 
1959
- _param = self._get_procedures_serialize(
2221
+ _param = self._get_v1_procedures_serialize(
1960
2222
  subject_id=subject_id,
1961
2223
  _request_auth=_request_auth,
1962
2224
  _content_type=_content_type,
@@ -1980,7 +2242,7 @@ class DefaultApi:
1980
2242
 
1981
2243
 
1982
2244
  @validate_call
1983
- async def get_procedures_with_http_info(
2245
+ async def get_v1_procedures_with_http_info(
1984
2246
  self,
1985
2247
  subject_id: StrictStr,
1986
2248
  _request_timeout: Union[
@@ -1996,9 +2258,9 @@ class DefaultApi:
1996
2258
  _headers: Optional[Dict[StrictStr, Any]] = None,
1997
2259
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1998
2260
  ) -> ApiResponse[object]:
1999
- """Get Procedures
2261
+ """Get V1 Procedures
2000
2262
 
2001
- ## Procedures Return Procedure metadata.
2263
+ ## Procedures V1 Return Procedure metadata.
2002
2264
 
2003
2265
  :param subject_id: (required)
2004
2266
  :type subject_id: str
@@ -2024,7 +2286,7 @@ class DefaultApi:
2024
2286
  :return: Returns the result object.
2025
2287
  """ # noqa: E501
2026
2288
 
2027
- _param = self._get_procedures_serialize(
2289
+ _param = self._get_v1_procedures_serialize(
2028
2290
  subject_id=subject_id,
2029
2291
  _request_auth=_request_auth,
2030
2292
  _content_type=_content_type,
@@ -2048,7 +2310,7 @@ class DefaultApi:
2048
2310
 
2049
2311
 
2050
2312
  @validate_call
2051
- async def get_procedures_without_preload_content(
2313
+ async def get_v1_procedures_without_preload_content(
2052
2314
  self,
2053
2315
  subject_id: StrictStr,
2054
2316
  _request_timeout: Union[
@@ -2064,9 +2326,9 @@ class DefaultApi:
2064
2326
  _headers: Optional[Dict[StrictStr, Any]] = None,
2065
2327
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2066
2328
  ) -> RESTResponseType:
2067
- """Get Procedures
2329
+ """Get V1 Procedures
2068
2330
 
2069
- ## Procedures Return Procedure metadata.
2331
+ ## Procedures V1 Return Procedure metadata.
2070
2332
 
2071
2333
  :param subject_id: (required)
2072
2334
  :type subject_id: str
@@ -2092,7 +2354,7 @@ class DefaultApi:
2092
2354
  :return: Returns the result object.
2093
2355
  """ # noqa: E501
2094
2356
 
2095
- _param = self._get_procedures_serialize(
2357
+ _param = self._get_v1_procedures_serialize(
2096
2358
  subject_id=subject_id,
2097
2359
  _request_auth=_request_auth,
2098
2360
  _content_type=_content_type,
@@ -2111,7 +2373,7 @@ class DefaultApi:
2111
2373
  return response_data.response
2112
2374
 
2113
2375
 
2114
- def _get_procedures_serialize(
2376
+ def _get_v1_procedures_serialize(
2115
2377
  self,
2116
2378
  subject_id,
2117
2379
  _request_auth,
@@ -2175,7 +2437,7 @@ class DefaultApi:
2175
2437
 
2176
2438
 
2177
2439
  @validate_call
2178
- async def get_project_names(
2440
+ async def get_v1_project_names(
2179
2441
  self,
2180
2442
  _request_timeout: Union[
2181
2443
  None,
@@ -2190,7 +2452,7 @@ class DefaultApi:
2190
2452
  _headers: Optional[Dict[StrictStr, Any]] = None,
2191
2453
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2192
2454
  ) -> object:
2193
- """Get Project Names
2455
+ """Get V1 Project Names
2194
2456
 
2195
2457
  Get a list of project names from the Smartsheet API.
2196
2458
 
@@ -2216,7 +2478,7 @@ class DefaultApi:
2216
2478
  :return: Returns the result object.
2217
2479
  """ # noqa: E501
2218
2480
 
2219
- _param = self._get_project_names_serialize(
2481
+ _param = self._get_v1_project_names_serialize(
2220
2482
  _request_auth=_request_auth,
2221
2483
  _content_type=_content_type,
2222
2484
  _headers=_headers,
@@ -2238,7 +2500,7 @@ class DefaultApi:
2238
2500
 
2239
2501
 
2240
2502
  @validate_call
2241
- async def get_project_names_with_http_info(
2503
+ async def get_v1_project_names_with_http_info(
2242
2504
  self,
2243
2505
  _request_timeout: Union[
2244
2506
  None,
@@ -2253,7 +2515,7 @@ class DefaultApi:
2253
2515
  _headers: Optional[Dict[StrictStr, Any]] = None,
2254
2516
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2255
2517
  ) -> ApiResponse[object]:
2256
- """Get Project Names
2518
+ """Get V1 Project Names
2257
2519
 
2258
2520
  Get a list of project names from the Smartsheet API.
2259
2521
 
@@ -2279,7 +2541,7 @@ class DefaultApi:
2279
2541
  :return: Returns the result object.
2280
2542
  """ # noqa: E501
2281
2543
 
2282
- _param = self._get_project_names_serialize(
2544
+ _param = self._get_v1_project_names_serialize(
2283
2545
  _request_auth=_request_auth,
2284
2546
  _content_type=_content_type,
2285
2547
  _headers=_headers,
@@ -2301,7 +2563,7 @@ class DefaultApi:
2301
2563
 
2302
2564
 
2303
2565
  @validate_call
2304
- async def get_project_names_without_preload_content(
2566
+ async def get_v1_project_names_without_preload_content(
2305
2567
  self,
2306
2568
  _request_timeout: Union[
2307
2569
  None,
@@ -2316,7 +2578,7 @@ class DefaultApi:
2316
2578
  _headers: Optional[Dict[StrictStr, Any]] = None,
2317
2579
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2318
2580
  ) -> RESTResponseType:
2319
- """Get Project Names
2581
+ """Get V1 Project Names
2320
2582
 
2321
2583
  Get a list of project names from the Smartsheet API.
2322
2584
 
@@ -2342,7 +2604,7 @@ class DefaultApi:
2342
2604
  :return: Returns the result object.
2343
2605
  """ # noqa: E501
2344
2606
 
2345
- _param = self._get_project_names_serialize(
2607
+ _param = self._get_v1_project_names_serialize(
2346
2608
  _request_auth=_request_auth,
2347
2609
  _content_type=_content_type,
2348
2610
  _headers=_headers,
@@ -2359,7 +2621,7 @@ class DefaultApi:
2359
2621
  return response_data.response
2360
2622
 
2361
2623
 
2362
- def _get_project_names_serialize(
2624
+ def _get_v1_project_names_serialize(
2363
2625
  self,
2364
2626
  _request_auth,
2365
2627
  _content_type,
@@ -2420,7 +2682,7 @@ class DefaultApi:
2420
2682
 
2421
2683
 
2422
2684
  @validate_call
2423
- async def get_protocols(
2685
+ async def get_v1_protocols(
2424
2686
  self,
2425
2687
  protocol_name: StrictStr,
2426
2688
  _request_timeout: Union[
@@ -2436,7 +2698,7 @@ class DefaultApi:
2436
2698
  _headers: Optional[Dict[StrictStr, Any]] = None,
2437
2699
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2438
2700
  ) -> object:
2439
- """Get Protocols
2701
+ """Get V1 Protocols
2440
2702
 
2441
2703
  ## Protocols Return Protocols metadata.
2442
2704
 
@@ -2464,7 +2726,7 @@ class DefaultApi:
2464
2726
  :return: Returns the result object.
2465
2727
  """ # noqa: E501
2466
2728
 
2467
- _param = self._get_protocols_serialize(
2729
+ _param = self._get_v1_protocols_serialize(
2468
2730
  protocol_name=protocol_name,
2469
2731
  _request_auth=_request_auth,
2470
2732
  _content_type=_content_type,
@@ -2488,7 +2750,7 @@ class DefaultApi:
2488
2750
 
2489
2751
 
2490
2752
  @validate_call
2491
- async def get_protocols_with_http_info(
2753
+ async def get_v1_protocols_with_http_info(
2492
2754
  self,
2493
2755
  protocol_name: StrictStr,
2494
2756
  _request_timeout: Union[
@@ -2504,7 +2766,7 @@ class DefaultApi:
2504
2766
  _headers: Optional[Dict[StrictStr, Any]] = None,
2505
2767
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2506
2768
  ) -> ApiResponse[object]:
2507
- """Get Protocols
2769
+ """Get V1 Protocols
2508
2770
 
2509
2771
  ## Protocols Return Protocols metadata.
2510
2772
 
@@ -2532,7 +2794,7 @@ class DefaultApi:
2532
2794
  :return: Returns the result object.
2533
2795
  """ # noqa: E501
2534
2796
 
2535
- _param = self._get_protocols_serialize(
2797
+ _param = self._get_v1_protocols_serialize(
2536
2798
  protocol_name=protocol_name,
2537
2799
  _request_auth=_request_auth,
2538
2800
  _content_type=_content_type,
@@ -2556,7 +2818,7 @@ class DefaultApi:
2556
2818
 
2557
2819
 
2558
2820
  @validate_call
2559
- async def get_protocols_without_preload_content(
2821
+ async def get_v1_protocols_without_preload_content(
2560
2822
  self,
2561
2823
  protocol_name: StrictStr,
2562
2824
  _request_timeout: Union[
@@ -2572,7 +2834,7 @@ class DefaultApi:
2572
2834
  _headers: Optional[Dict[StrictStr, Any]] = None,
2573
2835
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2574
2836
  ) -> RESTResponseType:
2575
- """Get Protocols
2837
+ """Get V1 Protocols
2576
2838
 
2577
2839
  ## Protocols Return Protocols metadata.
2578
2840
 
@@ -2600,7 +2862,7 @@ class DefaultApi:
2600
2862
  :return: Returns the result object.
2601
2863
  """ # noqa: E501
2602
2864
 
2603
- _param = self._get_protocols_serialize(
2865
+ _param = self._get_v1_protocols_serialize(
2604
2866
  protocol_name=protocol_name,
2605
2867
  _request_auth=_request_auth,
2606
2868
  _content_type=_content_type,
@@ -2619,7 +2881,7 @@ class DefaultApi:
2619
2881
  return response_data.response
2620
2882
 
2621
2883
 
2622
- def _get_protocols_serialize(
2884
+ def _get_v1_protocols_serialize(
2623
2885
  self,
2624
2886
  protocol_name,
2625
2887
  _request_auth,
@@ -2683,7 +2945,7 @@ class DefaultApi:
2683
2945
 
2684
2946
 
2685
2947
  @validate_call
2686
- async def get_rig(
2948
+ async def get_v1_rig(
2687
2949
  self,
2688
2950
  rig_id: StrictStr,
2689
2951
  partial_match: Optional[StrictBool] = None,
@@ -2700,9 +2962,9 @@ class DefaultApi:
2700
2962
  _headers: Optional[Dict[StrictStr, Any]] = None,
2701
2963
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2702
2964
  ) -> object:
2703
- """Get Rig
2965
+ """Get V1 Rig
2704
2966
 
2705
- ## Rig Return a Rig.
2967
+ ## Rig V1 Return a Rig.
2706
2968
 
2707
2969
  :param rig_id: (required)
2708
2970
  :type rig_id: str
@@ -2730,7 +2992,7 @@ class DefaultApi:
2730
2992
  :return: Returns the result object.
2731
2993
  """ # noqa: E501
2732
2994
 
2733
- _param = self._get_rig_serialize(
2995
+ _param = self._get_v1_rig_serialize(
2734
2996
  rig_id=rig_id,
2735
2997
  partial_match=partial_match,
2736
2998
  _request_auth=_request_auth,
@@ -2755,7 +3017,7 @@ class DefaultApi:
2755
3017
 
2756
3018
 
2757
3019
  @validate_call
2758
- async def get_rig_with_http_info(
3020
+ async def get_v1_rig_with_http_info(
2759
3021
  self,
2760
3022
  rig_id: StrictStr,
2761
3023
  partial_match: Optional[StrictBool] = None,
@@ -2772,9 +3034,9 @@ class DefaultApi:
2772
3034
  _headers: Optional[Dict[StrictStr, Any]] = None,
2773
3035
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2774
3036
  ) -> ApiResponse[object]:
2775
- """Get Rig
3037
+ """Get V1 Rig
2776
3038
 
2777
- ## Rig Return a Rig.
3039
+ ## Rig V1 Return a Rig.
2778
3040
 
2779
3041
  :param rig_id: (required)
2780
3042
  :type rig_id: str
@@ -2802,7 +3064,7 @@ class DefaultApi:
2802
3064
  :return: Returns the result object.
2803
3065
  """ # noqa: E501
2804
3066
 
2805
- _param = self._get_rig_serialize(
3067
+ _param = self._get_v1_rig_serialize(
2806
3068
  rig_id=rig_id,
2807
3069
  partial_match=partial_match,
2808
3070
  _request_auth=_request_auth,
@@ -2827,7 +3089,7 @@ class DefaultApi:
2827
3089
 
2828
3090
 
2829
3091
  @validate_call
2830
- async def get_rig_without_preload_content(
3092
+ async def get_v1_rig_without_preload_content(
2831
3093
  self,
2832
3094
  rig_id: StrictStr,
2833
3095
  partial_match: Optional[StrictBool] = None,
@@ -2844,9 +3106,9 @@ class DefaultApi:
2844
3106
  _headers: Optional[Dict[StrictStr, Any]] = None,
2845
3107
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2846
3108
  ) -> RESTResponseType:
2847
- """Get Rig
3109
+ """Get V1 Rig
2848
3110
 
2849
- ## Rig Return a Rig.
3111
+ ## Rig V1 Return a Rig.
2850
3112
 
2851
3113
  :param rig_id: (required)
2852
3114
  :type rig_id: str
@@ -2874,7 +3136,7 @@ class DefaultApi:
2874
3136
  :return: Returns the result object.
2875
3137
  """ # noqa: E501
2876
3138
 
2877
- _param = self._get_rig_serialize(
3139
+ _param = self._get_v1_rig_serialize(
2878
3140
  rig_id=rig_id,
2879
3141
  partial_match=partial_match,
2880
3142
  _request_auth=_request_auth,
@@ -2894,7 +3156,7 @@ class DefaultApi:
2894
3156
  return response_data.response
2895
3157
 
2896
3158
 
2897
- def _get_rig_serialize(
3159
+ def _get_v1_rig_serialize(
2898
3160
  self,
2899
3161
  rig_id,
2900
3162
  partial_match,
@@ -2963,7 +3225,7 @@ class DefaultApi:
2963
3225
 
2964
3226
 
2965
3227
  @validate_call
2966
- async def get_slims_workflow(
3228
+ async def get_v1_slims_workflow(
2967
3229
  self,
2968
3230
  workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
2969
3231
  subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
@@ -2983,9 +3245,9 @@ class DefaultApi:
2983
3245
  _headers: Optional[Dict[StrictStr, Any]] = None,
2984
3246
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
2985
3247
  ) -> object:
2986
- """Get Slims Workflow
3248
+ """Get V1 Slims Workflow
2987
3249
 
2988
- ## SLIMS Return information from SLIMS.
3250
+ ## SLIMS V1 Return information from SLIMS.
2989
3251
 
2990
3252
  :param workflow: The SLIMS workflow to query. (required)
2991
3253
  :type workflow: SlimsWorkflow
@@ -3019,7 +3281,7 @@ class DefaultApi:
3019
3281
  :return: Returns the result object.
3020
3282
  """ # noqa: E501
3021
3283
 
3022
- _param = self._get_slims_workflow_serialize(
3284
+ _param = self._get_v1_slims_workflow_serialize(
3023
3285
  workflow=workflow,
3024
3286
  subject_id=subject_id,
3025
3287
  session_name=session_name,
@@ -3047,7 +3309,7 @@ class DefaultApi:
3047
3309
 
3048
3310
 
3049
3311
  @validate_call
3050
- async def get_slims_workflow_with_http_info(
3312
+ async def get_v1_slims_workflow_with_http_info(
3051
3313
  self,
3052
3314
  workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
3053
3315
  subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
@@ -3067,9 +3329,9 @@ class DefaultApi:
3067
3329
  _headers: Optional[Dict[StrictStr, Any]] = None,
3068
3330
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3069
3331
  ) -> ApiResponse[object]:
3070
- """Get Slims Workflow
3332
+ """Get V1 Slims Workflow
3071
3333
 
3072
- ## SLIMS Return information from SLIMS.
3334
+ ## SLIMS V1 Return information from SLIMS.
3073
3335
 
3074
3336
  :param workflow: The SLIMS workflow to query. (required)
3075
3337
  :type workflow: SlimsWorkflow
@@ -3103,7 +3365,7 @@ class DefaultApi:
3103
3365
  :return: Returns the result object.
3104
3366
  """ # noqa: E501
3105
3367
 
3106
- _param = self._get_slims_workflow_serialize(
3368
+ _param = self._get_v1_slims_workflow_serialize(
3107
3369
  workflow=workflow,
3108
3370
  subject_id=subject_id,
3109
3371
  session_name=session_name,
@@ -3131,7 +3393,7 @@ class DefaultApi:
3131
3393
 
3132
3394
 
3133
3395
  @validate_call
3134
- async def get_slims_workflow_without_preload_content(
3396
+ async def get_v1_slims_workflow_without_preload_content(
3135
3397
  self,
3136
3398
  workflow: Annotated[SlimsWorkflow, Field(description="The SLIMS workflow to query.")],
3137
3399
  subject_id: Annotated[Optional[StrictStr], Field(description="Subject ID to filter the data.")] = None,
@@ -3151,9 +3413,9 @@ class DefaultApi:
3151
3413
  _headers: Optional[Dict[StrictStr, Any]] = None,
3152
3414
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3153
3415
  ) -> RESTResponseType:
3154
- """Get Slims Workflow
3416
+ """Get V1 Slims Workflow
3155
3417
 
3156
- ## SLIMS Return information from SLIMS.
3418
+ ## SLIMS V1 Return information from SLIMS.
3157
3419
 
3158
3420
  :param workflow: The SLIMS workflow to query. (required)
3159
3421
  :type workflow: SlimsWorkflow
@@ -3187,7 +3449,7 @@ class DefaultApi:
3187
3449
  :return: Returns the result object.
3188
3450
  """ # noqa: E501
3189
3451
 
3190
- _param = self._get_slims_workflow_serialize(
3452
+ _param = self._get_v1_slims_workflow_serialize(
3191
3453
  workflow=workflow,
3192
3454
  subject_id=subject_id,
3193
3455
  session_name=session_name,
@@ -3210,7 +3472,7 @@ class DefaultApi:
3210
3472
  return response_data.response
3211
3473
 
3212
3474
 
3213
- def _get_slims_workflow_serialize(
3475
+ def _get_v1_slims_workflow_serialize(
3214
3476
  self,
3215
3477
  workflow,
3216
3478
  subject_id,
@@ -3294,7 +3556,7 @@ class DefaultApi:
3294
3556
 
3295
3557
 
3296
3558
  @validate_call
3297
- async def get_subject(
3559
+ async def get_v1_subject(
3298
3560
  self,
3299
3561
  subject_id: StrictStr,
3300
3562
  _request_timeout: Union[
@@ -3310,9 +3572,9 @@ class DefaultApi:
3310
3572
  _headers: Optional[Dict[StrictStr, Any]] = None,
3311
3573
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3312
3574
  ) -> object:
3313
- """Get Subject
3575
+ """Get V1 Subject
3314
3576
 
3315
- ## Subject Return Subject metadata.
3577
+ ## Subject V1 Return Subject metadata.
3316
3578
 
3317
3579
  :param subject_id: (required)
3318
3580
  :type subject_id: str
@@ -3338,7 +3600,7 @@ class DefaultApi:
3338
3600
  :return: Returns the result object.
3339
3601
  """ # noqa: E501
3340
3602
 
3341
- _param = self._get_subject_serialize(
3603
+ _param = self._get_v1_subject_serialize(
3342
3604
  subject_id=subject_id,
3343
3605
  _request_auth=_request_auth,
3344
3606
  _content_type=_content_type,
@@ -3362,7 +3624,7 @@ class DefaultApi:
3362
3624
 
3363
3625
 
3364
3626
  @validate_call
3365
- async def get_subject_with_http_info(
3627
+ async def get_v1_subject_with_http_info(
3366
3628
  self,
3367
3629
  subject_id: StrictStr,
3368
3630
  _request_timeout: Union[
@@ -3378,9 +3640,9 @@ class DefaultApi:
3378
3640
  _headers: Optional[Dict[StrictStr, Any]] = None,
3379
3641
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3380
3642
  ) -> ApiResponse[object]:
3381
- """Get Subject
3643
+ """Get V1 Subject
3382
3644
 
3383
- ## Subject Return Subject metadata.
3645
+ ## Subject V1 Return Subject metadata.
3384
3646
 
3385
3647
  :param subject_id: (required)
3386
3648
  :type subject_id: str
@@ -3406,7 +3668,7 @@ class DefaultApi:
3406
3668
  :return: Returns the result object.
3407
3669
  """ # noqa: E501
3408
3670
 
3409
- _param = self._get_subject_serialize(
3671
+ _param = self._get_v1_subject_serialize(
3410
3672
  subject_id=subject_id,
3411
3673
  _request_auth=_request_auth,
3412
3674
  _content_type=_content_type,
@@ -3430,7 +3692,7 @@ class DefaultApi:
3430
3692
 
3431
3693
 
3432
3694
  @validate_call
3433
- async def get_subject_without_preload_content(
3695
+ async def get_v1_subject_without_preload_content(
3434
3696
  self,
3435
3697
  subject_id: StrictStr,
3436
3698
  _request_timeout: Union[
@@ -3446,9 +3708,9 @@ class DefaultApi:
3446
3708
  _headers: Optional[Dict[StrictStr, Any]] = None,
3447
3709
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
3448
3710
  ) -> RESTResponseType:
3449
- """Get Subject
3711
+ """Get V1 Subject
3450
3712
 
3451
- ## Subject Return Subject metadata.
3713
+ ## Subject V1 Return Subject metadata.
3452
3714
 
3453
3715
  :param subject_id: (required)
3454
3716
  :type subject_id: str
@@ -3474,7 +3736,7 @@ class DefaultApi:
3474
3736
  :return: Returns the result object.
3475
3737
  """ # noqa: E501
3476
3738
 
3477
- _param = self._get_subject_serialize(
3739
+ _param = self._get_v1_subject_serialize(
3478
3740
  subject_id=subject_id,
3479
3741
  _request_auth=_request_auth,
3480
3742
  _content_type=_content_type,
@@ -3493,7 +3755,7 @@ class DefaultApi:
3493
3755
  return response_data.response
3494
3756
 
3495
3757
 
3496
- def _get_subject_serialize(
3758
+ def _get_v1_subject_serialize(
3497
3759
  self,
3498
3760
  subject_id,
3499
3761
  _request_auth,