cyphermed.api.projects.patch_project

def sync_detailed( project_id: str, *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.patch_project_body.PatchProjectBody) -> cyphermed.types.Response[cyphermed.models.success.Success]:

Patch Project

Patch a project

Args: project_id (str): body (PatchProjectBody): Patch project body

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[Success]

def sync( project_id: str, *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.patch_project_body.PatchProjectBody) -> Optional[cyphermed.models.success.Success]:

Patch Project

Patch a project

Args: project_id (str): body (PatchProjectBody): Patch project body

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: Success

async def asyncio_detailed( project_id: str, *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.patch_project_body.PatchProjectBody) -> cyphermed.types.Response[cyphermed.models.success.Success]:

Patch Project

Patch a project

Args: project_id (str): body (PatchProjectBody): Patch project body

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[Success]

async def asyncio( project_id: str, *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.patch_project_body.PatchProjectBody) -> Optional[cyphermed.models.success.Success]:

Patch Project

Patch a project

Args: project_id (str): body (PatchProjectBody): Patch project body

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: Success