qcrboxapiclient.api.calculations.list_calculations¶
- async qcrboxapiclient.api.calculations.list_calculations.asyncio(*, client)¶
List all calculations
Retrieve a list of all calculations, past and present.
- 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.
- Return type:
Union
[QCrBoxErrorResponse
,QCrBoxResponseCalculationsResponse
,None
]- Returns:
Union[QCrBoxErrorResponse, QCrBoxResponseCalculationsResponse]
- Parameters:
client (AuthenticatedClient | Client)
- async qcrboxapiclient.api.calculations.list_calculations.asyncio_detailed(*, client)¶
List all calculations
Retrieve a list of all calculations, past and present.
- 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.
- Return type:
Response
[Union
[QCrBoxErrorResponse
,QCrBoxResponseCalculationsResponse
]]- Returns:
Response[Union[QCrBoxErrorResponse, QCrBoxResponseCalculationsResponse]]
- Parameters:
client (AuthenticatedClient | Client)
- qcrboxapiclient.api.calculations.list_calculations.sync(*, client)¶
List all calculations
Retrieve a list of all calculations, past and present.
- 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.
- Return type:
Union
[QCrBoxErrorResponse
,QCrBoxResponseCalculationsResponse
,None
]- Returns:
Union[QCrBoxErrorResponse, QCrBoxResponseCalculationsResponse]
- Parameters:
client (AuthenticatedClient | Client)
- qcrboxapiclient.api.calculations.list_calculations.sync_detailed(*, client)¶
List all calculations
Retrieve a list of all calculations, past and present.
- 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.
- Return type:
Response
[Union
[QCrBoxErrorResponse
,QCrBoxResponseCalculationsResponse
]]- Returns:
Response[Union[QCrBoxErrorResponse, QCrBoxResponseCalculationsResponse]]
- Parameters:
client (AuthenticatedClient | Client)