from http import HTTPStatus from typing import Any, Dict, List, Optional, Union, cast import httpx from ... import errors from ...client import AuthenticatedClient, Client from ...models.asset import Asset from ...models.error import Error from ...models.http_validation_error import HTTPValidationError from ...models.update_asset_input import UpdateAssetInput from ...types import UNSET, Response def _get_kwargs( asset_id: str, *, client: Client, json_body: UpdateAssetInput, ) -> Dict[str, Any]: url = "{}/assets/{assetId}".format(client.base_url, assetId=asset_id) headers: Dict[str, str] = client.get_headers() cookies: Dict[str, Any] = client.get_cookies() json_json_body = json_body.to_dict() return { "method": "patch", "url": url, "headers": headers, "cookies": cookies, "timeout": client.get_timeout(), "follow_redirects": client.follow_redirects, "json": json_json_body, } def _parse_response( *, client: Client, response: httpx.Response ) -> Optional[Union[Asset, Error, HTTPValidationError]]: if response.status_code == HTTPStatus.OK: response_200 = Asset.from_dict(response.json()) return response_200 if response.status_code == HTTPStatus.NOT_FOUND: response_404 = Error.from_dict(response.json()) return response_404 if response.status_code == HTTPStatus.UNPROCESSABLE_ENTITY: response_422 = HTTPValidationError.from_dict(response.json()) return response_422 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[Asset, Error, HTTPValidationError]]: return Response( status_code=HTTPStatus(response.status_code), content=response.content, headers=response.headers, parsed=_parse_response(client=client, response=response), ) def sync_detailed( asset_id: str, *, client: Client, json_body: UpdateAssetInput, ) -> Response[Union[Asset, Error, HTTPValidationError]]: """Update Asset Asset partial update Args: asset_id (str): Asset id or key json_body (UpdateAssetInput): 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[Asset, Error, HTTPValidationError]] """ kwargs = _get_kwargs( asset_id=asset_id, client=client, json_body=json_body, ) response = httpx.request( verify=client.verify_ssl, **kwargs, ) return _build_response(client=client, response=response) def sync( asset_id: str, *, client: Client, json_body: UpdateAssetInput, ) -> Optional[Union[Asset, Error, HTTPValidationError]]: """Update Asset Asset partial update Args: asset_id (str): Asset id or key json_body (UpdateAssetInput): 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[Asset, Error, HTTPValidationError] """ return sync_detailed( asset_id=asset_id, client=client, json_body=json_body, ).parsed async def asyncio_detailed( asset_id: str, *, client: Client, json_body: UpdateAssetInput, ) -> Response[Union[Asset, Error, HTTPValidationError]]: """Update Asset Asset partial update Args: asset_id (str): Asset id or key json_body (UpdateAssetInput): 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[Asset, Error, HTTPValidationError]] """ kwargs = _get_kwargs( asset_id=asset_id, client=client, json_body=json_body, ) async with httpx.AsyncClient(verify=client.verify_ssl) as _client: response = await _client.request(**kwargs) return _build_response(client=client, response=response) async def asyncio( asset_id: str, *, client: Client, json_body: UpdateAssetInput, ) -> Optional[Union[Asset, Error, HTTPValidationError]]: """Update Asset Asset partial update Args: asset_id (str): Asset id or key json_body (UpdateAssetInput): 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[Asset, Error, HTTPValidationError] """ return ( await asyncio_detailed( asset_id=asset_id, client=client, json_body=json_body, ) ).parsed