cyphermed.api.projects.create_project

def sync_detailed( *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.create_project_body.CreateProjectBody) -> cyphermed.types.Response[cyphermed.models.new_project_info.NewProjectInfo]:

Create Project

Create a new project

Args: body (CreateProjectBody): Create 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[NewProjectInfo]

def sync( *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.create_project_body.CreateProjectBody) -> Optional[cyphermed.models.new_project_info.NewProjectInfo]:

Create Project

Create a new project

Args: body (CreateProjectBody): Create 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: NewProjectInfo

async def asyncio_detailed( *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.create_project_body.CreateProjectBody) -> cyphermed.types.Response[cyphermed.models.new_project_info.NewProjectInfo]:

Create Project

Create a new project

Args: body (CreateProjectBody): Create 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[NewProjectInfo]

async def asyncio( *, client: cyphermed.client.AuthenticatedClient, body: cyphermed.models.create_project_body.CreateProjectBody) -> Optional[cyphermed.models.new_project_info.NewProjectInfo]:

Create Project

Create a new project

Args: body (CreateProjectBody): Create 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: NewProjectInfo