collections_tables_list_tables¶
List all tables in the collection
Functions
- async pydelfini.delfini_core.api.tables.collections_tables_list_tables.asyncio(collection_id, version_id, *, client)[source]¶
List all tables in the collection
Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md
- Parameters:
collection_id (str)
version_id (str)
client (AuthenticatedClient)
- 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[CollectionsTablesListTablesResponse200]
- Return type:
- async pydelfini.delfini_core.api.tables.collections_tables_list_tables.asyncio_detailed(collection_id, version_id, *, client)[source]¶
List all tables in the collection
Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md
- Parameters:
collection_id (str)
version_id (str)
client (AuthenticatedClient)
- 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[CollectionsTablesListTablesResponse200, ServerError]]
- Return type:
Response[CollectionsTablesListTablesResponse200 | ServerError]
- pydelfini.delfini_core.api.tables.collections_tables_list_tables.sync(collection_id, version_id, *, client)[source]¶
List all tables in the collection
Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md
- Parameters:
collection_id (str)
version_id (str)
client (AuthenticatedClient)
- 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[CollectionsTablesListTablesResponse200]
- Return type:
- pydelfini.delfini_core.api.tables.collections_tables_list_tables.sync_detailed(collection_id, version_id, *, client)[source]¶
List all tables in the collection
Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md
- Parameters:
collection_id (str)
version_id (str)
client (AuthenticatedClient)
- 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[CollectionsTablesListTablesResponse200, ServerError]]
- Return type:
Response[CollectionsTablesListTablesResponse200 | ServerError]