parsers_get_parsers¶
List Parsers
Functions
- async pydelfini.delfini_core.api.general.parsers_get_parsers.asyncio(*, client)[source]¶
List Parsers
List the parsers available for items, their applicable item types, and configuration options.
- 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[ParsersGetParsersResponse200]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- async pydelfini.delfini_core.api.general.parsers_get_parsers.asyncio_detailed(*, client)[source]¶
List Parsers
List the parsers available for items, their applicable item types, and configuration options.
- 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[ParsersGetParsersResponse200, ServerError]]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- pydelfini.delfini_core.api.general.parsers_get_parsers.sync(*, client)[source]¶
List Parsers
List the parsers available for items, their applicable item types, and configuration options.
- 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[ParsersGetParsersResponse200]
- Parameters:
client (AuthenticatedClient | Client)
- Return type:
- pydelfini.delfini_core.api.general.parsers_get_parsers.sync_detailed(*, client)[source]¶
List Parsers
List the parsers available for items, their applicable item types, and configuration options.
- 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[ParsersGetParsersResponse200, ServerError]]
- Parameters:
client (AuthenticatedClient | Client)
- Return type: