add openapi-python-client generator + client
This commit is contained in:
@@ -0,0 +1 @@
|
||||
"""Contains endpoint functions for accessing the API"""
|
||||
@@ -0,0 +1,195 @@
|
||||
from http import HTTPStatus
|
||||
from typing import Any, Optional, Union
|
||||
|
||||
import httpx
|
||||
|
||||
from ... import errors
|
||||
from ...client import AuthenticatedClient, Client
|
||||
from ...models.schema_retrieve_format import SchemaRetrieveFormat
|
||||
from ...models.schema_retrieve_lang import SchemaRetrieveLang
|
||||
from ...models.schema_retrieve_response_200 import SchemaRetrieveResponse200
|
||||
from ...types import UNSET, Response, Unset
|
||||
|
||||
|
||||
def _get_kwargs(
|
||||
*,
|
||||
format_: Union[Unset, SchemaRetrieveFormat] = UNSET,
|
||||
lang: Union[Unset, SchemaRetrieveLang] = UNSET,
|
||||
) -> dict[str, Any]:
|
||||
params: dict[str, Any] = {}
|
||||
|
||||
json_format_: Union[Unset, str] = UNSET
|
||||
if not isinstance(format_, Unset):
|
||||
json_format_ = format_.value
|
||||
|
||||
params["format"] = json_format_
|
||||
|
||||
json_lang: Union[Unset, str] = UNSET
|
||||
if not isinstance(lang, Unset):
|
||||
json_lang = lang.value
|
||||
|
||||
params["lang"] = json_lang
|
||||
|
||||
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
||||
|
||||
_kwargs: dict[str, Any] = {
|
||||
"method": "get",
|
||||
"url": "/api/v2/schema/",
|
||||
"params": params,
|
||||
}
|
||||
|
||||
return _kwargs
|
||||
|
||||
|
||||
def _parse_response(
|
||||
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
||||
) -> Optional[SchemaRetrieveResponse200]:
|
||||
if response.status_code == 200:
|
||||
response_200 = SchemaRetrieveResponse200.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[SchemaRetrieveResponse200]:
|
||||
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,
|
||||
format_: Union[Unset, SchemaRetrieveFormat] = UNSET,
|
||||
lang: Union[Unset, SchemaRetrieveLang] = UNSET,
|
||||
) -> Response[SchemaRetrieveResponse200]:
|
||||
"""OpenApi3 schema for this API. Format can be selected via content negotiation.
|
||||
|
||||
- YAML: application/vnd.oai.openapi
|
||||
- JSON: application/vnd.oai.openapi+json
|
||||
|
||||
Args:
|
||||
format_ (Union[Unset, SchemaRetrieveFormat]):
|
||||
lang (Union[Unset, SchemaRetrieveLang]):
|
||||
|
||||
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[SchemaRetrieveResponse200]
|
||||
"""
|
||||
|
||||
kwargs = _get_kwargs(
|
||||
format_=format_,
|
||||
lang=lang,
|
||||
)
|
||||
|
||||
response = client.get_httpx_client().request(
|
||||
**kwargs,
|
||||
)
|
||||
|
||||
return _build_response(client=client, response=response)
|
||||
|
||||
|
||||
def sync(
|
||||
*,
|
||||
client: AuthenticatedClient,
|
||||
format_: Union[Unset, SchemaRetrieveFormat] = UNSET,
|
||||
lang: Union[Unset, SchemaRetrieveLang] = UNSET,
|
||||
) -> Optional[SchemaRetrieveResponse200]:
|
||||
"""OpenApi3 schema for this API. Format can be selected via content negotiation.
|
||||
|
||||
- YAML: application/vnd.oai.openapi
|
||||
- JSON: application/vnd.oai.openapi+json
|
||||
|
||||
Args:
|
||||
format_ (Union[Unset, SchemaRetrieveFormat]):
|
||||
lang (Union[Unset, SchemaRetrieveLang]):
|
||||
|
||||
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:
|
||||
SchemaRetrieveResponse200
|
||||
"""
|
||||
|
||||
return sync_detailed(
|
||||
client=client,
|
||||
format_=format_,
|
||||
lang=lang,
|
||||
).parsed
|
||||
|
||||
|
||||
async def asyncio_detailed(
|
||||
*,
|
||||
client: AuthenticatedClient,
|
||||
format_: Union[Unset, SchemaRetrieveFormat] = UNSET,
|
||||
lang: Union[Unset, SchemaRetrieveLang] = UNSET,
|
||||
) -> Response[SchemaRetrieveResponse200]:
|
||||
"""OpenApi3 schema for this API. Format can be selected via content negotiation.
|
||||
|
||||
- YAML: application/vnd.oai.openapi
|
||||
- JSON: application/vnd.oai.openapi+json
|
||||
|
||||
Args:
|
||||
format_ (Union[Unset, SchemaRetrieveFormat]):
|
||||
lang (Union[Unset, SchemaRetrieveLang]):
|
||||
|
||||
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[SchemaRetrieveResponse200]
|
||||
"""
|
||||
|
||||
kwargs = _get_kwargs(
|
||||
format_=format_,
|
||||
lang=lang,
|
||||
)
|
||||
|
||||
response = await client.get_async_httpx_client().request(**kwargs)
|
||||
|
||||
return _build_response(client=client, response=response)
|
||||
|
||||
|
||||
async def asyncio(
|
||||
*,
|
||||
client: AuthenticatedClient,
|
||||
format_: Union[Unset, SchemaRetrieveFormat] = UNSET,
|
||||
lang: Union[Unset, SchemaRetrieveLang] = UNSET,
|
||||
) -> Optional[SchemaRetrieveResponse200]:
|
||||
"""OpenApi3 schema for this API. Format can be selected via content negotiation.
|
||||
|
||||
- YAML: application/vnd.oai.openapi
|
||||
- JSON: application/vnd.oai.openapi+json
|
||||
|
||||
Args:
|
||||
format_ (Union[Unset, SchemaRetrieveFormat]):
|
||||
lang (Union[Unset, SchemaRetrieveLang]):
|
||||
|
||||
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:
|
||||
SchemaRetrieveResponse200
|
||||
"""
|
||||
|
||||
return (
|
||||
await asyncio_detailed(
|
||||
client=client,
|
||||
format_=format_,
|
||||
lang=lang,
|
||||
)
|
||||
).parsed
|
||||
Reference in New Issue
Block a user