wandelbots-api-client 25.11.0.dev12__py3-none-any.whl → 26.1.0.dev62__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.
- wandelbots_api_client/__init__.py +1 -1
- wandelbots_api_client/api/motion_api.py +3 -3
- wandelbots_api_client/api_client.py +1 -1
- wandelbots_api_client/configuration.py +1 -1
- wandelbots_api_client/models/__init__.py +3 -1
- wandelbots_api_client/models/virtual_controller_types.py +4 -4
- wandelbots_api_client/v2/__init__.py +1 -1
- wandelbots_api_client/v2/api/__init__.py +2 -0
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +579 -0
- wandelbots_api_client/v2/api/jogging_api.py +1 -1
- wandelbots_api_client/v2/api/motion_group_models_api.py +795 -2
- wandelbots_api_client/v2/api/program_api.py +12 -12
- wandelbots_api_client/v2/api/robot_configurations_api.py +291 -0
- wandelbots_api_client/v2/api/trajectory_execution_api.py +1 -1
- wandelbots_api_client/v2/api_client.py +1 -1
- wandelbots_api_client/v2/configuration.py +1 -1
- wandelbots_api_client/v2/models/__init__.py +7 -3
- wandelbots_api_client/v2/models/blending_auto.py +1 -1
- wandelbots_api_client/v2/models/blending_position.py +15 -1
- wandelbots_api_client/v2/models/blending_space.py +37 -0
- wandelbots_api_client/v2/models/initialize_jogging_request.py +2 -4
- wandelbots_api_client/v2/models/inverse_kinematics_request.py +6 -4
- wandelbots_api_client/v2/models/kinematic_model.py +110 -0
- wandelbots_api_client/v2/models/motion_group_description.py +4 -2
- wandelbots_api_client/v2/models/virtual_controller.py +1 -2
- wandelbots_api_client/v2/models/virtual_controller_types.py +1 -1
- wandelbots_api_client/v2_pydantic/__init__.py +1 -1
- wandelbots_api_client/v2_pydantic/api/__init__.py +2 -0
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +585 -0
- wandelbots_api_client/v2_pydantic/api/jogging_api.py +1 -1
- wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py +804 -2
- wandelbots_api_client/v2_pydantic/api/program_api.py +12 -12
- wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py +294 -0
- wandelbots_api_client/v2_pydantic/api/trajectory_execution_api.py +1 -1
- wandelbots_api_client/v2_pydantic/api_client.py +1 -1
- wandelbots_api_client/v2_pydantic/configuration.py +1 -1
- wandelbots_api_client/v2_pydantic/models.py +471 -527
- wandelbots_api_client/v2_pydantic/virtual_controller_types.py +126 -0
- {wandelbots_api_client-25.11.0.dev12.dist-info → wandelbots_api_client-26.1.0.dev62.dist-info}/METADATA +2 -2
- {wandelbots_api_client-25.11.0.dev12.dist-info → wandelbots_api_client-26.1.0.dev62.dist-info}/RECORD +43 -38
- {wandelbots_api_client-25.11.0.dev12.dist-info → wandelbots_api_client-26.1.0.dev62.dist-info}/WHEEL +0 -0
- {wandelbots_api_client-25.11.0.dev12.dist-info → wandelbots_api_client-26.1.0.dev62.dist-info}/licenses/LICENSE +0 -0
- {wandelbots_api_client-25.11.0.dev12.dist-info → wandelbots_api_client-26.1.0.dev62.dist-info}/top_level.txt +0 -0
|
@@ -22,10 +22,11 @@ from typing import Any, AsyncGenerator, Callable, Dict, List, Optional, Tuple, U
|
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from urllib.parse import quote
|
|
24
24
|
|
|
25
|
-
from pydantic import Field, StrictStr
|
|
26
|
-
from typing import Dict, List
|
|
25
|
+
from pydantic import Field, StrictBytes, StrictStr
|
|
26
|
+
from typing import Dict, List, Tuple, Union
|
|
27
27
|
from typing_extensions import Annotated
|
|
28
28
|
from wandelbots_api_client.v2.models.collider import Collider
|
|
29
|
+
from wandelbots_api_client.v2.models.kinematic_model import KinematicModel
|
|
29
30
|
|
|
30
31
|
from wandelbots_api_client.v2.api_client import ApiClient, RequestSerialized
|
|
31
32
|
from wandelbots_api_client.v2.api_response import ApiResponse
|
|
@@ -307,6 +308,534 @@ class MotionGroupModelsApi:
|
|
|
307
308
|
|
|
308
309
|
|
|
309
310
|
|
|
311
|
+
@validate_call
|
|
312
|
+
async def get_motion_group_glb_model(
|
|
313
|
+
self,
|
|
314
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
315
|
+
_request_timeout: Union[
|
|
316
|
+
None,
|
|
317
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
318
|
+
Tuple[
|
|
319
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
320
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
321
|
+
]
|
|
322
|
+
] = None,
|
|
323
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
324
|
+
_content_type: Optional[StrictStr] = None,
|
|
325
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
326
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
327
|
+
) -> bytearray:
|
|
328
|
+
"""Download GLB Model
|
|
329
|
+
|
|
330
|
+
Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
331
|
+
|
|
332
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
333
|
+
:type motion_group_model: str
|
|
334
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
335
|
+
number provided, it will be total request
|
|
336
|
+
timeout. It can also be a pair (tuple) of
|
|
337
|
+
(connection, read) timeouts.
|
|
338
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
339
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
340
|
+
request; this effectively ignores the
|
|
341
|
+
authentication in the spec for a single request.
|
|
342
|
+
:type _request_auth: dict, optional
|
|
343
|
+
:param _content_type: force content-type for the request.
|
|
344
|
+
:type _content_type: str, Optional
|
|
345
|
+
:param _headers: set to override the headers for a single
|
|
346
|
+
request; this effectively ignores the headers
|
|
347
|
+
in the spec for a single request.
|
|
348
|
+
:type _headers: dict, optional
|
|
349
|
+
:param _host_index: set to override the host_index for a single
|
|
350
|
+
request; this effectively ignores the host_index
|
|
351
|
+
in the spec for a single request.
|
|
352
|
+
:type _host_index: int, optional
|
|
353
|
+
:return: Returns the result object.
|
|
354
|
+
""" # noqa: E501
|
|
355
|
+
|
|
356
|
+
_param = self._get_motion_group_glb_model_serialize(
|
|
357
|
+
motion_group_model=motion_group_model,
|
|
358
|
+
_request_auth=_request_auth,
|
|
359
|
+
_content_type=_content_type,
|
|
360
|
+
_headers=_headers,
|
|
361
|
+
_host_index=_host_index
|
|
362
|
+
)
|
|
363
|
+
|
|
364
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
365
|
+
'200': "bytearray",
|
|
366
|
+
'404': None,
|
|
367
|
+
'500': None,
|
|
368
|
+
}
|
|
369
|
+
response_data = await self.api_client.call_api(
|
|
370
|
+
*_param,
|
|
371
|
+
_request_timeout=_request_timeout
|
|
372
|
+
)
|
|
373
|
+
await response_data.read()
|
|
374
|
+
return self.api_client.response_deserialize(
|
|
375
|
+
response_data=response_data,
|
|
376
|
+
response_types_map=_response_types_map,
|
|
377
|
+
).data
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
@validate_call
|
|
381
|
+
async def get_motion_group_glb_model_with_http_info(
|
|
382
|
+
self,
|
|
383
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
384
|
+
_request_timeout: Union[
|
|
385
|
+
None,
|
|
386
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
387
|
+
Tuple[
|
|
388
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
389
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
390
|
+
]
|
|
391
|
+
] = None,
|
|
392
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
393
|
+
_content_type: Optional[StrictStr] = None,
|
|
394
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
395
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
396
|
+
) -> ApiResponse[bytearray]:
|
|
397
|
+
"""Download GLB Model
|
|
398
|
+
|
|
399
|
+
Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
400
|
+
|
|
401
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
402
|
+
:type motion_group_model: str
|
|
403
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
404
|
+
number provided, it will be total request
|
|
405
|
+
timeout. It can also be a pair (tuple) of
|
|
406
|
+
(connection, read) timeouts.
|
|
407
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
408
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
409
|
+
request; this effectively ignores the
|
|
410
|
+
authentication in the spec for a single request.
|
|
411
|
+
:type _request_auth: dict, optional
|
|
412
|
+
:param _content_type: force content-type for the request.
|
|
413
|
+
:type _content_type: str, Optional
|
|
414
|
+
:param _headers: set to override the headers for a single
|
|
415
|
+
request; this effectively ignores the headers
|
|
416
|
+
in the spec for a single request.
|
|
417
|
+
:type _headers: dict, optional
|
|
418
|
+
:param _host_index: set to override the host_index for a single
|
|
419
|
+
request; this effectively ignores the host_index
|
|
420
|
+
in the spec for a single request.
|
|
421
|
+
:type _host_index: int, optional
|
|
422
|
+
:return: Returns the result object.
|
|
423
|
+
""" # noqa: E501
|
|
424
|
+
|
|
425
|
+
_param = self._get_motion_group_glb_model_serialize(
|
|
426
|
+
motion_group_model=motion_group_model,
|
|
427
|
+
_request_auth=_request_auth,
|
|
428
|
+
_content_type=_content_type,
|
|
429
|
+
_headers=_headers,
|
|
430
|
+
_host_index=_host_index
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
434
|
+
'200': "bytearray",
|
|
435
|
+
'404': None,
|
|
436
|
+
'500': None,
|
|
437
|
+
}
|
|
438
|
+
response_data = await self.api_client.call_api(
|
|
439
|
+
*_param,
|
|
440
|
+
_request_timeout=_request_timeout
|
|
441
|
+
)
|
|
442
|
+
await response_data.read()
|
|
443
|
+
return self.api_client.response_deserialize(
|
|
444
|
+
response_data=response_data,
|
|
445
|
+
response_types_map=_response_types_map,
|
|
446
|
+
)
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
@validate_call
|
|
450
|
+
async def get_motion_group_glb_model_without_preload_content(
|
|
451
|
+
self,
|
|
452
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
453
|
+
_request_timeout: Union[
|
|
454
|
+
None,
|
|
455
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
456
|
+
Tuple[
|
|
457
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
458
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
459
|
+
]
|
|
460
|
+
] = None,
|
|
461
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
462
|
+
_content_type: Optional[StrictStr] = None,
|
|
463
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
464
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
465
|
+
) -> RESTResponseType:
|
|
466
|
+
"""Download GLB Model
|
|
467
|
+
|
|
468
|
+
Returns the GLB asset for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
469
|
+
|
|
470
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
471
|
+
:type motion_group_model: str
|
|
472
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
473
|
+
number provided, it will be total request
|
|
474
|
+
timeout. It can also be a pair (tuple) of
|
|
475
|
+
(connection, read) timeouts.
|
|
476
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
477
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
478
|
+
request; this effectively ignores the
|
|
479
|
+
authentication in the spec for a single request.
|
|
480
|
+
:type _request_auth: dict, optional
|
|
481
|
+
:param _content_type: force content-type for the request.
|
|
482
|
+
:type _content_type: str, Optional
|
|
483
|
+
:param _headers: set to override the headers for a single
|
|
484
|
+
request; this effectively ignores the headers
|
|
485
|
+
in the spec for a single request.
|
|
486
|
+
:type _headers: dict, optional
|
|
487
|
+
:param _host_index: set to override the host_index for a single
|
|
488
|
+
request; this effectively ignores the host_index
|
|
489
|
+
in the spec for a single request.
|
|
490
|
+
:type _host_index: int, optional
|
|
491
|
+
:return: Returns the result object.
|
|
492
|
+
""" # noqa: E501
|
|
493
|
+
|
|
494
|
+
_param = self._get_motion_group_glb_model_serialize(
|
|
495
|
+
motion_group_model=motion_group_model,
|
|
496
|
+
_request_auth=_request_auth,
|
|
497
|
+
_content_type=_content_type,
|
|
498
|
+
_headers=_headers,
|
|
499
|
+
_host_index=_host_index
|
|
500
|
+
)
|
|
501
|
+
|
|
502
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
503
|
+
'200': "bytearray",
|
|
504
|
+
'404': None,
|
|
505
|
+
'500': None,
|
|
506
|
+
}
|
|
507
|
+
response_data = await self.api_client.call_api(
|
|
508
|
+
*_param,
|
|
509
|
+
_request_timeout=_request_timeout
|
|
510
|
+
)
|
|
511
|
+
return response_data.response
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
def _get_motion_group_glb_model_serialize(
|
|
515
|
+
self,
|
|
516
|
+
motion_group_model,
|
|
517
|
+
_request_auth,
|
|
518
|
+
_content_type,
|
|
519
|
+
_headers,
|
|
520
|
+
_host_index,
|
|
521
|
+
) -> RequestSerialized:
|
|
522
|
+
|
|
523
|
+
_host = None
|
|
524
|
+
|
|
525
|
+
_collection_formats: Dict[str, str] = {
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
_path_params: Dict[str, str] = {}
|
|
529
|
+
_query_params: List[Tuple[str, str]] = []
|
|
530
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
531
|
+
_form_params: List[Tuple[str, str]] = []
|
|
532
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
533
|
+
_body_params: Optional[bytes] = None
|
|
534
|
+
|
|
535
|
+
# process the path parameters
|
|
536
|
+
if motion_group_model is not None:
|
|
537
|
+
_path_params['motion-group-model'] = motion_group_model
|
|
538
|
+
# process the query parameters
|
|
539
|
+
# process the header parameters
|
|
540
|
+
# process the form parameters
|
|
541
|
+
# process the body parameter
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
# set the HTTP header `Accept`
|
|
545
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
546
|
+
[
|
|
547
|
+
'application/octet-stream'
|
|
548
|
+
]
|
|
549
|
+
)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
# authentication setting
|
|
553
|
+
_auth_settings: List[str] = [
|
|
554
|
+
'BasicAuth',
|
|
555
|
+
'BearerAuth'
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
return self.api_client.param_serialize(
|
|
559
|
+
method='GET',
|
|
560
|
+
resource_path='/motion-group-models/{motion-group-model}/glb',
|
|
561
|
+
path_params=_path_params,
|
|
562
|
+
query_params=_query_params,
|
|
563
|
+
header_params=_header_params,
|
|
564
|
+
body=_body_params,
|
|
565
|
+
post_params=_form_params,
|
|
566
|
+
files=_files,
|
|
567
|
+
auth_settings=_auth_settings,
|
|
568
|
+
collection_formats=_collection_formats,
|
|
569
|
+
_host=_host,
|
|
570
|
+
_request_auth=_request_auth
|
|
571
|
+
)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
@validate_call
|
|
576
|
+
async def get_motion_group_kinematic_model(
|
|
577
|
+
self,
|
|
578
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
579
|
+
_request_timeout: Union[
|
|
580
|
+
None,
|
|
581
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
582
|
+
Tuple[
|
|
583
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
584
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
585
|
+
]
|
|
586
|
+
] = None,
|
|
587
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
588
|
+
_content_type: Optional[StrictStr] = None,
|
|
589
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
590
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
591
|
+
) -> KinematicModel:
|
|
592
|
+
"""Get Kinematics
|
|
593
|
+
|
|
594
|
+
Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
595
|
+
|
|
596
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
597
|
+
:type motion_group_model: str
|
|
598
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
599
|
+
number provided, it will be total request
|
|
600
|
+
timeout. It can also be a pair (tuple) of
|
|
601
|
+
(connection, read) timeouts.
|
|
602
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
603
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
604
|
+
request; this effectively ignores the
|
|
605
|
+
authentication in the spec for a single request.
|
|
606
|
+
:type _request_auth: dict, optional
|
|
607
|
+
:param _content_type: force content-type for the request.
|
|
608
|
+
:type _content_type: str, Optional
|
|
609
|
+
:param _headers: set to override the headers for a single
|
|
610
|
+
request; this effectively ignores the headers
|
|
611
|
+
in the spec for a single request.
|
|
612
|
+
:type _headers: dict, optional
|
|
613
|
+
:param _host_index: set to override the host_index for a single
|
|
614
|
+
request; this effectively ignores the host_index
|
|
615
|
+
in the spec for a single request.
|
|
616
|
+
:type _host_index: int, optional
|
|
617
|
+
:return: Returns the result object.
|
|
618
|
+
""" # noqa: E501
|
|
619
|
+
|
|
620
|
+
_param = self._get_motion_group_kinematic_model_serialize(
|
|
621
|
+
motion_group_model=motion_group_model,
|
|
622
|
+
_request_auth=_request_auth,
|
|
623
|
+
_content_type=_content_type,
|
|
624
|
+
_headers=_headers,
|
|
625
|
+
_host_index=_host_index
|
|
626
|
+
)
|
|
627
|
+
|
|
628
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
629
|
+
'200': "KinematicModel",
|
|
630
|
+
'404': None,
|
|
631
|
+
'500': None,
|
|
632
|
+
}
|
|
633
|
+
response_data = await self.api_client.call_api(
|
|
634
|
+
*_param,
|
|
635
|
+
_request_timeout=_request_timeout
|
|
636
|
+
)
|
|
637
|
+
await response_data.read()
|
|
638
|
+
return self.api_client.response_deserialize(
|
|
639
|
+
response_data=response_data,
|
|
640
|
+
response_types_map=_response_types_map,
|
|
641
|
+
).data
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
@validate_call
|
|
645
|
+
async def get_motion_group_kinematic_model_with_http_info(
|
|
646
|
+
self,
|
|
647
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
648
|
+
_request_timeout: Union[
|
|
649
|
+
None,
|
|
650
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
651
|
+
Tuple[
|
|
652
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
653
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
654
|
+
]
|
|
655
|
+
] = None,
|
|
656
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
657
|
+
_content_type: Optional[StrictStr] = None,
|
|
658
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
659
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
660
|
+
) -> ApiResponse[KinematicModel]:
|
|
661
|
+
"""Get Kinematics
|
|
662
|
+
|
|
663
|
+
Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
664
|
+
|
|
665
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
666
|
+
:type motion_group_model: str
|
|
667
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
668
|
+
number provided, it will be total request
|
|
669
|
+
timeout. It can also be a pair (tuple) of
|
|
670
|
+
(connection, read) timeouts.
|
|
671
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
672
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
673
|
+
request; this effectively ignores the
|
|
674
|
+
authentication in the spec for a single request.
|
|
675
|
+
:type _request_auth: dict, optional
|
|
676
|
+
:param _content_type: force content-type for the request.
|
|
677
|
+
:type _content_type: str, Optional
|
|
678
|
+
:param _headers: set to override the headers for a single
|
|
679
|
+
request; this effectively ignores the headers
|
|
680
|
+
in the spec for a single request.
|
|
681
|
+
:type _headers: dict, optional
|
|
682
|
+
:param _host_index: set to override the host_index for a single
|
|
683
|
+
request; this effectively ignores the host_index
|
|
684
|
+
in the spec for a single request.
|
|
685
|
+
:type _host_index: int, optional
|
|
686
|
+
:return: Returns the result object.
|
|
687
|
+
""" # noqa: E501
|
|
688
|
+
|
|
689
|
+
_param = self._get_motion_group_kinematic_model_serialize(
|
|
690
|
+
motion_group_model=motion_group_model,
|
|
691
|
+
_request_auth=_request_auth,
|
|
692
|
+
_content_type=_content_type,
|
|
693
|
+
_headers=_headers,
|
|
694
|
+
_host_index=_host_index
|
|
695
|
+
)
|
|
696
|
+
|
|
697
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
698
|
+
'200': "KinematicModel",
|
|
699
|
+
'404': None,
|
|
700
|
+
'500': None,
|
|
701
|
+
}
|
|
702
|
+
response_data = await self.api_client.call_api(
|
|
703
|
+
*_param,
|
|
704
|
+
_request_timeout=_request_timeout
|
|
705
|
+
)
|
|
706
|
+
await response_data.read()
|
|
707
|
+
return self.api_client.response_deserialize(
|
|
708
|
+
response_data=response_data,
|
|
709
|
+
response_types_map=_response_types_map,
|
|
710
|
+
)
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
@validate_call
|
|
714
|
+
async def get_motion_group_kinematic_model_without_preload_content(
|
|
715
|
+
self,
|
|
716
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
717
|
+
_request_timeout: Union[
|
|
718
|
+
None,
|
|
719
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
720
|
+
Tuple[
|
|
721
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
722
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
723
|
+
]
|
|
724
|
+
] = None,
|
|
725
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
726
|
+
_content_type: Optional[StrictStr] = None,
|
|
727
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
728
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
729
|
+
) -> RESTResponseType:
|
|
730
|
+
"""Get Kinematics
|
|
731
|
+
|
|
732
|
+
Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported motion group models.
|
|
733
|
+
|
|
734
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
735
|
+
:type motion_group_model: str
|
|
736
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
737
|
+
number provided, it will be total request
|
|
738
|
+
timeout. It can also be a pair (tuple) of
|
|
739
|
+
(connection, read) timeouts.
|
|
740
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
741
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
742
|
+
request; this effectively ignores the
|
|
743
|
+
authentication in the spec for a single request.
|
|
744
|
+
:type _request_auth: dict, optional
|
|
745
|
+
:param _content_type: force content-type for the request.
|
|
746
|
+
:type _content_type: str, Optional
|
|
747
|
+
:param _headers: set to override the headers for a single
|
|
748
|
+
request; this effectively ignores the headers
|
|
749
|
+
in the spec for a single request.
|
|
750
|
+
:type _headers: dict, optional
|
|
751
|
+
:param _host_index: set to override the host_index for a single
|
|
752
|
+
request; this effectively ignores the host_index
|
|
753
|
+
in the spec for a single request.
|
|
754
|
+
:type _host_index: int, optional
|
|
755
|
+
:return: Returns the result object.
|
|
756
|
+
""" # noqa: E501
|
|
757
|
+
|
|
758
|
+
_param = self._get_motion_group_kinematic_model_serialize(
|
|
759
|
+
motion_group_model=motion_group_model,
|
|
760
|
+
_request_auth=_request_auth,
|
|
761
|
+
_content_type=_content_type,
|
|
762
|
+
_headers=_headers,
|
|
763
|
+
_host_index=_host_index
|
|
764
|
+
)
|
|
765
|
+
|
|
766
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
767
|
+
'200': "KinematicModel",
|
|
768
|
+
'404': None,
|
|
769
|
+
'500': None,
|
|
770
|
+
}
|
|
771
|
+
response_data = await self.api_client.call_api(
|
|
772
|
+
*_param,
|
|
773
|
+
_request_timeout=_request_timeout
|
|
774
|
+
)
|
|
775
|
+
return response_data.response
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
def _get_motion_group_kinematic_model_serialize(
|
|
779
|
+
self,
|
|
780
|
+
motion_group_model,
|
|
781
|
+
_request_auth,
|
|
782
|
+
_content_type,
|
|
783
|
+
_headers,
|
|
784
|
+
_host_index,
|
|
785
|
+
) -> RequestSerialized:
|
|
786
|
+
|
|
787
|
+
_host = None
|
|
788
|
+
|
|
789
|
+
_collection_formats: Dict[str, str] = {
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
_path_params: Dict[str, str] = {}
|
|
793
|
+
_query_params: List[Tuple[str, str]] = []
|
|
794
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
795
|
+
_form_params: List[Tuple[str, str]] = []
|
|
796
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
797
|
+
_body_params: Optional[bytes] = None
|
|
798
|
+
|
|
799
|
+
# process the path parameters
|
|
800
|
+
if motion_group_model is not None:
|
|
801
|
+
_path_params['motion-group-model'] = motion_group_model
|
|
802
|
+
# process the query parameters
|
|
803
|
+
# process the header parameters
|
|
804
|
+
# process the form parameters
|
|
805
|
+
# process the body parameter
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
# set the HTTP header `Accept`
|
|
809
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
810
|
+
[
|
|
811
|
+
'application/json'
|
|
812
|
+
]
|
|
813
|
+
)
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
# authentication setting
|
|
817
|
+
_auth_settings: List[str] = [
|
|
818
|
+
'BasicAuth',
|
|
819
|
+
'BearerAuth'
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
return self.api_client.param_serialize(
|
|
823
|
+
method='GET',
|
|
824
|
+
resource_path='/motion-group-models/{motion-group-model}/kinematic',
|
|
825
|
+
path_params=_path_params,
|
|
826
|
+
query_params=_query_params,
|
|
827
|
+
header_params=_header_params,
|
|
828
|
+
body=_body_params,
|
|
829
|
+
post_params=_form_params,
|
|
830
|
+
files=_files,
|
|
831
|
+
auth_settings=_auth_settings,
|
|
832
|
+
collection_formats=_collection_formats,
|
|
833
|
+
_host=_host,
|
|
834
|
+
_request_auth=_request_auth
|
|
835
|
+
)
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
310
839
|
@validate_call
|
|
311
840
|
async def get_motion_group_models(
|
|
312
841
|
self,
|
|
@@ -555,3 +1084,267 @@ class MotionGroupModelsApi:
|
|
|
555
1084
|
)
|
|
556
1085
|
|
|
557
1086
|
|
|
1087
|
+
|
|
1088
|
+
@validate_call
|
|
1089
|
+
async def get_motion_group_usd_model(
|
|
1090
|
+
self,
|
|
1091
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
1092
|
+
_request_timeout: Union[
|
|
1093
|
+
None,
|
|
1094
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1095
|
+
Tuple[
|
|
1096
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1097
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1098
|
+
]
|
|
1099
|
+
] = None,
|
|
1100
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1101
|
+
_content_type: Optional[StrictStr] = None,
|
|
1102
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1103
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1104
|
+
) -> bytearray:
|
|
1105
|
+
"""Download USD Model
|
|
1106
|
+
|
|
1107
|
+
Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
1108
|
+
|
|
1109
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
1110
|
+
:type motion_group_model: str
|
|
1111
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1112
|
+
number provided, it will be total request
|
|
1113
|
+
timeout. It can also be a pair (tuple) of
|
|
1114
|
+
(connection, read) timeouts.
|
|
1115
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1116
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1117
|
+
request; this effectively ignores the
|
|
1118
|
+
authentication in the spec for a single request.
|
|
1119
|
+
:type _request_auth: dict, optional
|
|
1120
|
+
:param _content_type: force content-type for the request.
|
|
1121
|
+
:type _content_type: str, Optional
|
|
1122
|
+
:param _headers: set to override the headers for a single
|
|
1123
|
+
request; this effectively ignores the headers
|
|
1124
|
+
in the spec for a single request.
|
|
1125
|
+
:type _headers: dict, optional
|
|
1126
|
+
:param _host_index: set to override the host_index for a single
|
|
1127
|
+
request; this effectively ignores the host_index
|
|
1128
|
+
in the spec for a single request.
|
|
1129
|
+
:type _host_index: int, optional
|
|
1130
|
+
:return: Returns the result object.
|
|
1131
|
+
""" # noqa: E501
|
|
1132
|
+
|
|
1133
|
+
_param = self._get_motion_group_usd_model_serialize(
|
|
1134
|
+
motion_group_model=motion_group_model,
|
|
1135
|
+
_request_auth=_request_auth,
|
|
1136
|
+
_content_type=_content_type,
|
|
1137
|
+
_headers=_headers,
|
|
1138
|
+
_host_index=_host_index
|
|
1139
|
+
)
|
|
1140
|
+
|
|
1141
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1142
|
+
'200': "bytearray",
|
|
1143
|
+
'404': None,
|
|
1144
|
+
'500': None,
|
|
1145
|
+
}
|
|
1146
|
+
response_data = await self.api_client.call_api(
|
|
1147
|
+
*_param,
|
|
1148
|
+
_request_timeout=_request_timeout
|
|
1149
|
+
)
|
|
1150
|
+
await response_data.read()
|
|
1151
|
+
return self.api_client.response_deserialize(
|
|
1152
|
+
response_data=response_data,
|
|
1153
|
+
response_types_map=_response_types_map,
|
|
1154
|
+
).data
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
@validate_call
|
|
1158
|
+
async def get_motion_group_usd_model_with_http_info(
|
|
1159
|
+
self,
|
|
1160
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
1161
|
+
_request_timeout: Union[
|
|
1162
|
+
None,
|
|
1163
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1164
|
+
Tuple[
|
|
1165
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1166
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1167
|
+
]
|
|
1168
|
+
] = None,
|
|
1169
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1170
|
+
_content_type: Optional[StrictStr] = None,
|
|
1171
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1172
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1173
|
+
) -> ApiResponse[bytearray]:
|
|
1174
|
+
"""Download USD Model
|
|
1175
|
+
|
|
1176
|
+
Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
1177
|
+
|
|
1178
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
1179
|
+
:type motion_group_model: str
|
|
1180
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1181
|
+
number provided, it will be total request
|
|
1182
|
+
timeout. It can also be a pair (tuple) of
|
|
1183
|
+
(connection, read) timeouts.
|
|
1184
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1185
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1186
|
+
request; this effectively ignores the
|
|
1187
|
+
authentication in the spec for a single request.
|
|
1188
|
+
:type _request_auth: dict, optional
|
|
1189
|
+
:param _content_type: force content-type for the request.
|
|
1190
|
+
:type _content_type: str, Optional
|
|
1191
|
+
:param _headers: set to override the headers for a single
|
|
1192
|
+
request; this effectively ignores the headers
|
|
1193
|
+
in the spec for a single request.
|
|
1194
|
+
:type _headers: dict, optional
|
|
1195
|
+
:param _host_index: set to override the host_index for a single
|
|
1196
|
+
request; this effectively ignores the host_index
|
|
1197
|
+
in the spec for a single request.
|
|
1198
|
+
:type _host_index: int, optional
|
|
1199
|
+
:return: Returns the result object.
|
|
1200
|
+
""" # noqa: E501
|
|
1201
|
+
|
|
1202
|
+
_param = self._get_motion_group_usd_model_serialize(
|
|
1203
|
+
motion_group_model=motion_group_model,
|
|
1204
|
+
_request_auth=_request_auth,
|
|
1205
|
+
_content_type=_content_type,
|
|
1206
|
+
_headers=_headers,
|
|
1207
|
+
_host_index=_host_index
|
|
1208
|
+
)
|
|
1209
|
+
|
|
1210
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1211
|
+
'200': "bytearray",
|
|
1212
|
+
'404': None,
|
|
1213
|
+
'500': None,
|
|
1214
|
+
}
|
|
1215
|
+
response_data = await self.api_client.call_api(
|
|
1216
|
+
*_param,
|
|
1217
|
+
_request_timeout=_request_timeout
|
|
1218
|
+
)
|
|
1219
|
+
await response_data.read()
|
|
1220
|
+
return self.api_client.response_deserialize(
|
|
1221
|
+
response_data=response_data,
|
|
1222
|
+
response_types_map=_response_types_map,
|
|
1223
|
+
)
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
@validate_call
|
|
1227
|
+
async def get_motion_group_usd_model_without_preload_content(
|
|
1228
|
+
self,
|
|
1229
|
+
motion_group_model: Annotated[StrictStr, Field(description="Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). ")],
|
|
1230
|
+
_request_timeout: Union[
|
|
1231
|
+
None,
|
|
1232
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1233
|
+
Tuple[
|
|
1234
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1235
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1236
|
+
]
|
|
1237
|
+
] = None,
|
|
1238
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1239
|
+
_content_type: Optional[StrictStr] = None,
|
|
1240
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1241
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1242
|
+
) -> RESTResponseType:
|
|
1243
|
+
"""Download USD Model
|
|
1244
|
+
|
|
1245
|
+
Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](getMotionGroupModels) for supported identifiers.
|
|
1246
|
+
|
|
1247
|
+
:param motion_group_model: Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration). (required)
|
|
1248
|
+
:type motion_group_model: str
|
|
1249
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1250
|
+
number provided, it will be total request
|
|
1251
|
+
timeout. It can also be a pair (tuple) of
|
|
1252
|
+
(connection, read) timeouts.
|
|
1253
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1254
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1255
|
+
request; this effectively ignores the
|
|
1256
|
+
authentication in the spec for a single request.
|
|
1257
|
+
:type _request_auth: dict, optional
|
|
1258
|
+
:param _content_type: force content-type for the request.
|
|
1259
|
+
:type _content_type: str, Optional
|
|
1260
|
+
:param _headers: set to override the headers for a single
|
|
1261
|
+
request; this effectively ignores the headers
|
|
1262
|
+
in the spec for a single request.
|
|
1263
|
+
:type _headers: dict, optional
|
|
1264
|
+
:param _host_index: set to override the host_index for a single
|
|
1265
|
+
request; this effectively ignores the host_index
|
|
1266
|
+
in the spec for a single request.
|
|
1267
|
+
:type _host_index: int, optional
|
|
1268
|
+
:return: Returns the result object.
|
|
1269
|
+
""" # noqa: E501
|
|
1270
|
+
|
|
1271
|
+
_param = self._get_motion_group_usd_model_serialize(
|
|
1272
|
+
motion_group_model=motion_group_model,
|
|
1273
|
+
_request_auth=_request_auth,
|
|
1274
|
+
_content_type=_content_type,
|
|
1275
|
+
_headers=_headers,
|
|
1276
|
+
_host_index=_host_index
|
|
1277
|
+
)
|
|
1278
|
+
|
|
1279
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1280
|
+
'200': "bytearray",
|
|
1281
|
+
'404': None,
|
|
1282
|
+
'500': None,
|
|
1283
|
+
}
|
|
1284
|
+
response_data = await self.api_client.call_api(
|
|
1285
|
+
*_param,
|
|
1286
|
+
_request_timeout=_request_timeout
|
|
1287
|
+
)
|
|
1288
|
+
return response_data.response
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
def _get_motion_group_usd_model_serialize(
|
|
1292
|
+
self,
|
|
1293
|
+
motion_group_model,
|
|
1294
|
+
_request_auth,
|
|
1295
|
+
_content_type,
|
|
1296
|
+
_headers,
|
|
1297
|
+
_host_index,
|
|
1298
|
+
) -> RequestSerialized:
|
|
1299
|
+
|
|
1300
|
+
_host = None
|
|
1301
|
+
|
|
1302
|
+
_collection_formats: Dict[str, str] = {
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
_path_params: Dict[str, str] = {}
|
|
1306
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1307
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1308
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1309
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1310
|
+
_body_params: Optional[bytes] = None
|
|
1311
|
+
|
|
1312
|
+
# process the path parameters
|
|
1313
|
+
if motion_group_model is not None:
|
|
1314
|
+
_path_params['motion-group-model'] = motion_group_model
|
|
1315
|
+
# process the query parameters
|
|
1316
|
+
# process the header parameters
|
|
1317
|
+
# process the form parameters
|
|
1318
|
+
# process the body parameter
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
# set the HTTP header `Accept`
|
|
1322
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1323
|
+
[
|
|
1324
|
+
'application/octet-stream'
|
|
1325
|
+
]
|
|
1326
|
+
)
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
# authentication setting
|
|
1330
|
+
_auth_settings: List[str] = [
|
|
1331
|
+
'BasicAuth',
|
|
1332
|
+
'BearerAuth'
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
return self.api_client.param_serialize(
|
|
1336
|
+
method='GET',
|
|
1337
|
+
resource_path='/motion-group-models/{motion-group-model}/usd',
|
|
1338
|
+
path_params=_path_params,
|
|
1339
|
+
query_params=_query_params,
|
|
1340
|
+
header_params=_header_params,
|
|
1341
|
+
body=_body_params,
|
|
1342
|
+
post_params=_form_params,
|
|
1343
|
+
files=_files,
|
|
1344
|
+
auth_settings=_auth_settings,
|
|
1345
|
+
collection_formats=_collection_formats,
|
|
1346
|
+
_host=_host,
|
|
1347
|
+
_request_auth=_request_auth
|
|
1348
|
+
)
|
|
1349
|
+
|
|
1350
|
+
|