:py:mod:`rhino_health.lib.endpoints.workgroup.workgroup_endpoints` ================================================================== .. py:module:: rhino_health.lib.endpoints.workgroup.workgroup_endpoints Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: rhino_health.lib.endpoints.workgroup.workgroup_endpoints.WorkgroupEndpoints .. py:class:: WorkgroupEndpoints(session) Bases: :py:obj:`rhino_health.lib.endpoints.endpoint.Endpoint` Endpoints available to interact with Workgroups on the Rhino Platform .. rubric:: Notes You should access these endpoints from the RhinoSession object .. !! processed by numpydoc !! .. py:method:: get_workgroups(workgroup_uids: List[str] = None) -> List[rhino_health.lib.endpoints.workgroup.workgroup_dataclass.LTSWorkgroup] Returns the specified workgroup_uids :param workgroup_uids: List of strings of workgroup uids to get .. !! processed by numpydoc !! .. py:method:: list_external_storage_file_paths(workgroup_uid: str) Get all the storage bucket file paths for a workgroup :Parameters: **workgroup_uid: str** UID for the Workgroup :Returns: Files: List[str] The storage bucket file paths for a workgroup .. rubric:: Examples >>> session.workgroup.list_external_storage_file_paths("workgroup_uid") ["/path/to/file1", "/path/to/file2", "/path/to/file3"] .. !! processed by numpydoc !!