Source code for pydelfini.delfini_core.api.group.group_update_group

"""Update group information"""
from http import HTTPStatus
from typing import Any
from typing import cast
from typing import Dict
from typing import Union

import httpx

from ... import errors
from ...client import AuthenticatedClient
from ...client import Client
from ...models.group_update_group_body import GroupUpdateGroupBody
from ...models.server_error import ServerError
from ...types import Response


def _get_kwargs(
    group_id: str,
    *,
    body: GroupUpdateGroupBody,
) -> Dict[str, Any]:
    headers: Dict[str, Any] = {}

    _kwargs: Dict[str, Any] = {
        "method": "put",
        "url": "/group/{group_id}".format(
            group_id=group_id,
        ),
    }

    _body = body.to_dict()

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

    _kwargs["headers"] = headers
    return _kwargs


def _parse_response(
    *, client: Union[AuthenticatedClient, Client], response: httpx.Response
) -> Union[Any, ServerError]:
    if response.status_code == HTTPStatus.NO_CONTENT:
        response_204 = cast(Any, {"attribute": "None", "return_type": "None"})
        return response_204
    if response.status_code == HTTPStatus.BAD_REQUEST:
        response_400 = ServerError.from_dict(response.json())

        return response_400
    if response.status_code == HTTPStatus.UNAUTHORIZED:
        response_401 = ServerError.from_dict(response.json())

        return response_401
    if response.status_code == HTTPStatus.FORBIDDEN:
        response_403 = ServerError.from_dict(response.json())

        return response_403
    if response.status_code == HTTPStatus.NOT_FOUND:
        response_404 = ServerError.from_dict(response.json())

        return response_404
    if response.status_code == HTTPStatus.INTERNAL_SERVER_ERROR:
        response_500 = ServerError.from_dict(response.json())

        return response_500

    raise errors.UnexpectedStatus(response.status_code, response.content)


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


[docs] def sync_detailed( group_id: str, *, client: AuthenticatedClient, body: GroupUpdateGroupBody, ) -> Response[Union[Any, ServerError]]: """Update group information Args: group_id (str): body (GroupUpdateGroupBody): 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[Any, ServerError]] """ kwargs = _get_kwargs( group_id=group_id, body=body, ) response = client.get_httpx_client().request( **kwargs, ) return _build_response(client=client, response=response)
[docs] def sync( group_id: str, *, client: AuthenticatedClient, body: GroupUpdateGroupBody, ) -> Union[Any]: """Update group information Args: group_id (str): body (GroupUpdateGroupBody): Raises: errors.UnexpectedStatus: If the server returns a status code greater than or equal to 300. httpx.TimeoutException: If the request takes longer than Client.timeout. Returns: Union[Any] """ response = sync_detailed( group_id=group_id, client=client, body=body, ) if isinstance(response.parsed, ServerError): raise errors.UnexpectedStatus(response.status_code, response.content) return response.parsed
[docs] async def asyncio_detailed( group_id: str, *, client: AuthenticatedClient, body: GroupUpdateGroupBody, ) -> Response[Union[Any, ServerError]]: """Update group information Args: group_id (str): body (GroupUpdateGroupBody): 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[Any, ServerError]] """ kwargs = _get_kwargs( group_id=group_id, body=body, ) response = await client.get_async_httpx_client().request(**kwargs) return _build_response(client=client, response=response)
[docs] async def asyncio( group_id: str, *, client: AuthenticatedClient, body: GroupUpdateGroupBody, ) -> Union[Any]: """Update group information Args: group_id (str): body (GroupUpdateGroupBody): Raises: errors.UnexpectedStatus: If the server returns a status code greater than or equal to 300. httpx.TimeoutException: If the request takes longer than Client.timeout. Returns: Union[Any] """ response = await asyncio_detailed( group_id=group_id, client=client, body=body, ) if isinstance(response.parsed, ServerError): raise errors.UnexpectedStatus(response.status_code, response.content) return response.parsed