collections_tables_get_table_info

Get information on a specific table

Functions

async pydelfini.delfini_core.api.tables.collections_tables_get_table_info.asyncio(collection_id, version_id, table_name, *, client)[source]

Get information on a specific table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

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[Table]

Return type:

Table

async pydelfini.delfini_core.api.tables.collections_tables_get_table_info.asyncio_detailed(collection_id, version_id, table_name, *, client)[source]

Get information on a specific table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

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[ServerError, Table]]

Return type:

Response[ServerError | Table]

pydelfini.delfini_core.api.tables.collections_tables_get_table_info.sync(collection_id, version_id, table_name, *, client)[source]

Get information on a specific table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

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[Table]

Return type:

Table

pydelfini.delfini_core.api.tables.collections_tables_get_table_info.sync_detailed(collection_id, version_id, table_name, *, client)[source]

Get information on a specific table

Conformant to GA4GH Data Connect spec as defined in https://github.com/ga4gh-discovery/data- connect/blob/5956ed13db08a395691808dd30fd17d2c6c5cf35/SPEC.md

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[ServerError, Table]]

Return type:

Response[ServerError | Table]