Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
199 changes: 199 additions & 0 deletions src/blaxel/core/client/api/applications/create_application.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
from http import HTTPStatus
from typing import Any, Union

import httpx

from ... import errors
from ...client import Client
from ...models.application import Application
from ...models.error import Error
from ...types import Response


def _get_kwargs(
*,
body: Application,
) -> dict[str, Any]:
headers: dict[str, Any] = {}

_kwargs: dict[str, Any] = {
"method": "post",
"url": "/applications",
}

if type(body) is dict:
_body = body
else:
_body = body.to_dict()

_kwargs["json"] = _body
headers["Content-Type"] = "application/json"

_kwargs["headers"] = headers
return _kwargs


def _parse_response(
*, client: Client, response: httpx.Response
) -> Union[Application, Error] | None:
if response.status_code == 200:
response_200 = Application.from_dict(response.json())

return response_200
if response.status_code == 400:
response_400 = Error.from_dict(response.json())

return response_400
if response.status_code == 401:
response_401 = Error.from_dict(response.json())

return response_401
if response.status_code == 403:
response_403 = Error.from_dict(response.json())

return response_403
if response.status_code == 409:
response_409 = Error.from_dict(response.json())

return response_409
if response.status_code == 500:
response_500 = Error.from_dict(response.json())

return response_500
if client.raise_on_unexpected_status:
raise errors.UnexpectedStatus(response.status_code, response.content)
else:
return None


def _build_response(
*, client: Client, response: httpx.Response
) -> Response[Union[Application, Error]]:
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: Client,
body: Application,
) -> Response[Union[Application, Error]]:
"""Create application

Creates a new application deployment. Applications are long-running workloads that default to public
access and mk3 generation.

Args:
body (Application): Long-running application deployment that runs your custom code as a
publicly accessible endpoint. Applications are always public and use mk3 generation.

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[Application, Error]]
"""

kwargs = _get_kwargs(
body=body,
)

response = client.get_httpx_client().request(
**kwargs,
)

return _build_response(client=client, response=response)


def sync(
*,
client: Client,
body: Application,
) -> Union[Application, Error] | None:
"""Create application

Creates a new application deployment. Applications are long-running workloads that default to public
access and mk3 generation.

Args:
body (Application): Long-running application deployment that runs your custom code as a
publicly accessible endpoint. Applications are always public and use mk3 generation.

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:
Union[Application, Error]
"""

return sync_detailed(
client=client,
body=body,
).parsed


async def asyncio_detailed(
*,
client: Client,
body: Application,
) -> Response[Union[Application, Error]]:
"""Create application

Creates a new application deployment. Applications are long-running workloads that default to public
access and mk3 generation.

Args:
body (Application): Long-running application deployment that runs your custom code as a
publicly accessible endpoint. Applications are always public and use mk3 generation.

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[Application, Error]]
"""

kwargs = _get_kwargs(
body=body,
)

response = await client.get_async_httpx_client().request(**kwargs)

return _build_response(client=client, response=response)


async def asyncio(
*,
client: Client,
body: Application,
) -> Union[Application, Error] | None:
"""Create application

Creates a new application deployment. Applications are long-running workloads that default to public
access and mk3 generation.

Args:
body (Application): Long-running application deployment that runs your custom code as a
publicly accessible endpoint. Applications are always public and use mk3 generation.

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:
Union[Application, Error]
"""

return (
await asyncio_detailed(
client=client,
body=body,
)
).parsed
179 changes: 179 additions & 0 deletions src/blaxel/core/client/api/applications/delete_application.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
from http import HTTPStatus
from typing import Any, Union

import httpx

from ... import errors
from ...client import Client
from ...models.application import Application
from ...models.error import Error
from ...types import Response


def _get_kwargs(
application_name: str,
) -> dict[str, Any]:
_kwargs: dict[str, Any] = {
"method": "delete",
"url": f"/applications/{application_name}",
}

return _kwargs


def _parse_response(
*, client: Client, response: httpx.Response
) -> Union[Application, Error] | None:
if response.status_code == 200:
response_200 = Application.from_dict(response.json())

return response_200
if response.status_code == 401:
response_401 = Error.from_dict(response.json())

return response_401
if response.status_code == 403:
response_403 = Error.from_dict(response.json())

return response_403
if response.status_code == 404:
response_404 = Error.from_dict(response.json())

return response_404
if response.status_code == 500:
response_500 = Error.from_dict(response.json())

return response_500
if client.raise_on_unexpected_status:
raise errors.UnexpectedStatus(response.status_code, response.content)
else:
return None


def _build_response(
*, client: Client, response: httpx.Response
) -> Response[Union[Application, Error]]:
return Response(
status_code=HTTPStatus(response.status_code),
content=response.content,
headers=response.headers,
parsed=_parse_response(client=client, response=response),
)


def sync_detailed(
application_name: str,
*,
client: Client,
) -> Response[Union[Application, Error]]:
"""Delete application

Permanently deletes an application and all its deployment history. The application endpoint will
immediately stop responding. This action cannot be undone.

Args:
application_name (str):

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[Application, Error]]
"""

kwargs = _get_kwargs(
application_name=application_name,
)

response = client.get_httpx_client().request(
**kwargs,
)

return _build_response(client=client, response=response)


def sync(
application_name: str,
*,
client: Client,
) -> Union[Application, Error] | None:
"""Delete application

Permanently deletes an application and all its deployment history. The application endpoint will
immediately stop responding. This action cannot be undone.

Args:
application_name (str):

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:
Union[Application, Error]
"""

return sync_detailed(
application_name=application_name,
client=client,
).parsed


async def asyncio_detailed(
application_name: str,
*,
client: Client,
) -> Response[Union[Application, Error]]:
"""Delete application

Permanently deletes an application and all its deployment history. The application endpoint will
immediately stop responding. This action cannot be undone.

Args:
application_name (str):

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[Application, Error]]
"""

kwargs = _get_kwargs(
application_name=application_name,
)

response = await client.get_async_httpx_client().request(**kwargs)

return _build_response(client=client, response=response)


async def asyncio(
application_name: str,
*,
client: Client,
) -> Union[Application, Error] | None:
"""Delete application

Permanently deletes an application and all its deployment history. The application endpoint will
immediately stop responding. This action cannot be undone.

Args:
application_name (str):

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:
Union[Application, Error]
"""

return (
await asyncio_detailed(
application_name=application_name,
client=client,
)
).parsed
Loading
Loading