Ok so this is still pretty rough, and notably there's no reporting for streaming. But for non-streaming requests I've verified that this does in fact report requests locally.
156 lines
3.7 KiB
Python
156 lines
3.7 KiB
Python
from http import HTTPStatus
|
|
from typing import Any, Dict, Optional, Union
|
|
|
|
import httpx
|
|
|
|
from ... import errors
|
|
from ...client import AuthenticatedClient, Client
|
|
from ...models.report_json_body import ReportJsonBody
|
|
from ...models.report_response_200 import ReportResponse200
|
|
from ...types import Response
|
|
|
|
|
|
def _get_kwargs(
|
|
*,
|
|
json_body: ReportJsonBody,
|
|
) -> Dict[str, Any]:
|
|
pass
|
|
|
|
json_json_body = json_body.to_dict()
|
|
|
|
return {
|
|
"method": "post",
|
|
"url": "/report",
|
|
"json": json_json_body,
|
|
}
|
|
|
|
|
|
def _parse_response(
|
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
) -> Optional[ReportResponse200]:
|
|
if response.status_code == HTTPStatus.OK:
|
|
response_200 = ReportResponse200.from_dict(response.json())
|
|
|
|
return response_200
|
|
if client.raise_on_unexpected_status:
|
|
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
else:
|
|
return None
|
|
|
|
|
|
def _build_response(
|
|
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
) -> Response[ReportResponse200]:
|
|
return Response(
|
|
status_code=HTTPStatus(response.status_code),
|
|
content=response.content,
|
|
headers=response.headers,
|
|
parsed=_parse_response(client=client, response=response),
|
|
)
|
|
|
|
|
|
def sync_detailed(
|
|
*,
|
|
client: AuthenticatedClient,
|
|
json_body: ReportJsonBody,
|
|
) -> Response[ReportResponse200]:
|
|
"""Report an API call
|
|
|
|
Args:
|
|
json_body (ReportJsonBody):
|
|
|
|
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[ReportResponse200]
|
|
"""
|
|
|
|
kwargs = _get_kwargs(
|
|
json_body=json_body,
|
|
)
|
|
|
|
response = client.get_httpx_client().request(
|
|
**kwargs,
|
|
)
|
|
|
|
return _build_response(client=client, response=response)
|
|
|
|
|
|
def sync(
|
|
*,
|
|
client: AuthenticatedClient,
|
|
json_body: ReportJsonBody,
|
|
) -> Optional[ReportResponse200]:
|
|
"""Report an API call
|
|
|
|
Args:
|
|
json_body (ReportJsonBody):
|
|
|
|
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:
|
|
ReportResponse200
|
|
"""
|
|
|
|
return sync_detailed(
|
|
client=client,
|
|
json_body=json_body,
|
|
).parsed
|
|
|
|
|
|
async def asyncio_detailed(
|
|
*,
|
|
client: AuthenticatedClient,
|
|
json_body: ReportJsonBody,
|
|
) -> Response[ReportResponse200]:
|
|
"""Report an API call
|
|
|
|
Args:
|
|
json_body (ReportJsonBody):
|
|
|
|
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[ReportResponse200]
|
|
"""
|
|
|
|
kwargs = _get_kwargs(
|
|
json_body=json_body,
|
|
)
|
|
|
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
|
|
return _build_response(client=client, response=response)
|
|
|
|
|
|
async def asyncio(
|
|
*,
|
|
client: AuthenticatedClient,
|
|
json_body: ReportJsonBody,
|
|
) -> Optional[ReportResponse200]:
|
|
"""Report an API call
|
|
|
|
Args:
|
|
json_body (ReportJsonBody):
|
|
|
|
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:
|
|
ReportResponse200
|
|
"""
|
|
|
|
return (
|
|
await asyncio_detailed(
|
|
client=client,
|
|
json_body=json_body,
|
|
)
|
|
).parsed
|