Files
windmill/python-client/windmill-api/windmill_api/api/oauth/create_account.py
Ruben Fiszel ac09681d49 lsp
2022-10-08 13:25:07 +02:00

98 lines
2.0 KiB
Python

from typing import Any, Dict
import httpx
from ...client import Client
from ...models.create_account_json_body import CreateAccountJsonBody
from ...types import Response
def _get_kwargs(
workspace: str,
*,
client: Client,
json_body: CreateAccountJsonBody,
) -> Dict[str, Any]:
url = "{}/w/{workspace}/oauth/create_account".format(client.base_url, workspace=workspace)
headers: Dict[str, str] = client.get_headers()
cookies: Dict[str, Any] = client.get_cookies()
json_json_body = json_body.to_dict()
return {
"method": "post",
"url": url,
"headers": headers,
"cookies": cookies,
"timeout": client.get_timeout(),
"json": json_json_body,
}
def _build_response(*, response: httpx.Response) -> Response[Any]:
return Response(
status_code=response.status_code,
content=response.content,
headers=response.headers,
parsed=None,
)
def sync_detailed(
workspace: str,
*,
client: Client,
json_body: CreateAccountJsonBody,
) -> Response[Any]:
"""create OAuth account
Args:
workspace (str):
json_body (CreateAccountJsonBody):
Returns:
Response[Any]
"""
kwargs = _get_kwargs(
workspace=workspace,
client=client,
json_body=json_body,
)
response = httpx.request(
verify=client.verify_ssl,
**kwargs,
)
return _build_response(response=response)
async def asyncio_detailed(
workspace: str,
*,
client: Client,
json_body: CreateAccountJsonBody,
) -> Response[Any]:
"""create OAuth account
Args:
workspace (str):
json_body (CreateAccountJsonBody):
Returns:
Response[Any]
"""
kwargs = _get_kwargs(
workspace=workspace,
client=client,
json_body=json_body,
)
async with httpx.AsyncClient(verify=client.verify_ssl) as _client:
response = await _client.request(**kwargs)
return _build_response(response=response)