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.error import Error from ...models.http_validation_error import HTTPValidationError from ...models.meta_campaign import MetaCampaign from ...models.meta_campaign_schedule_and_budget_input import ( MetaCampaignScheduleAndBudgetInput, ) from ...types import UNSET, Response def _get_kwargs( campaign_id: str, *, client: AuthenticatedClient, json_body: MetaCampaignScheduleAndBudgetInput, ) -> Dict[str, Any]: url = "{}/meta/campaigns/{campaignId}/schedule-and-budget".format( client.base_url, campaignId=campaign_id ) headers: Dict[str, str] = client.get_headers() cookies: Dict[str, Any] = client.get_cookies() json_json_body = json_body.to_dict() return { "method": "put", "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[Error, HTTPValidationError, MetaCampaign]]: if response.status_code == HTTPStatus.OK: response_200 = MetaCampaign.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[Error, HTTPValidationError, MetaCampaign]]: return Response( status_code=HTTPStatus(response.status_code), content=response.content, headers=response.headers, parsed=_parse_response(client=client, response=response), ) def sync_detailed( campaign_id: str, *, client: AuthenticatedClient, json_body: MetaCampaignScheduleAndBudgetInput, ) -> Response[Union[Error, HTTPValidationError, MetaCampaign]]: """Update Campaign Schedule And Budget Args: campaign_id (str): json_body (MetaCampaignScheduleAndBudgetInput): 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[Error, HTTPValidationError, MetaCampaign]] """ kwargs = _get_kwargs( campaign_id=campaign_id, client=client, json_body=json_body, ) response = httpx.request( verify=client.verify_ssl, **kwargs, ) return _build_response(client=client, response=response) def sync( campaign_id: str, *, client: AuthenticatedClient, json_body: MetaCampaignScheduleAndBudgetInput, ) -> Optional[Union[Error, HTTPValidationError, MetaCampaign]]: """Update Campaign Schedule And Budget Args: campaign_id (str): json_body (MetaCampaignScheduleAndBudgetInput): 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[Error, HTTPValidationError, MetaCampaign] """ return sync_detailed( campaign_id=campaign_id, client=client, json_body=json_body, ).parsed async def asyncio_detailed( campaign_id: str, *, client: AuthenticatedClient, json_body: MetaCampaignScheduleAndBudgetInput, ) -> Response[Union[Error, HTTPValidationError, MetaCampaign]]: """Update Campaign Schedule And Budget Args: campaign_id (str): json_body (MetaCampaignScheduleAndBudgetInput): 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[Error, HTTPValidationError, MetaCampaign]] """ kwargs = _get_kwargs( campaign_id=campaign_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( campaign_id: str, *, client: AuthenticatedClient, json_body: MetaCampaignScheduleAndBudgetInput, ) -> Optional[Union[Error, HTTPValidationError, MetaCampaign]]: """Update Campaign Schedule And Budget Args: campaign_id (str): json_body (MetaCampaignScheduleAndBudgetInput): 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[Error, HTTPValidationError, MetaCampaign] """ return ( await asyncio_detailed( campaign_id=campaign_id, client=client, json_body=json_body, ) ).parsed