root_resolve_data_element_ref¶
Resolve Data Element URL
Functions
- async pydelfini.delfini_core.api.general.root_resolve_data_element_ref.asyncio(*, client, url_query, collection_id=Unset, version_id=Unset)[source]¶
Resolve Data Element URL
Retrieve a data element from a data element URL
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[DataElement]
- Return type:
- async pydelfini.delfini_core.api.general.root_resolve_data_element_ref.asyncio_detailed(*, client, url_query, collection_id=Unset, version_id=Unset)[source]¶
Resolve Data Element URL
Retrieve a data element from a data element URL
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[DataElement, ServerError]]
- Return type:
- pydelfini.delfini_core.api.general.root_resolve_data_element_ref.sync(*, client, url_query, collection_id=Unset, version_id=Unset)[source]¶
Resolve Data Element URL
Retrieve a data element from a data element URL
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Union[DataElement]
- Return type:
- pydelfini.delfini_core.api.general.root_resolve_data_element_ref.sync_detailed(*, client, url_query, collection_id=Unset, version_id=Unset)[source]¶
Resolve Data Element URL
Retrieve a data element from a data element URL
- Parameters:
- Raises:
errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException – If the request takes longer than Client.timeout.
- Returns:
Response[Union[DataElement, ServerError]]
- Return type: