get_mount_point_props#

Layer.get_mount_point_props(request)#

Return the properties for each mount point given a comma-separated list of mount point IDs.

Available Since: 2026R1

Parameters:
request: GetmountPointsPropertiesRequest

Contains all the information needed to return the properties for one or more mount points.

Returns:
:
SherlockCommonService_pb2.GetMountPointsPropertiesResponse

Properties for each mount point that correspond to the reference designators.

Return type:

GetMountPointsPropertiesResponse

Examples

>>> from ansys.sherlock.core.launcher import launch_sherlock
>>> from ansys.sherlock.core.types.layer_types import GetMountPointsPropertiesRequest
>>> sherlock = launch_sherlock()
>>> request = layer_types.GetMountPointsPropertiesRequest(
>>>    project = "Tutorial Project"
>>>    cca_name = "Main Board"
>>>    mount_point_ids = "MP1,MP2"
>>> )
>>> response = layer.get_mount_point_props(request)