Skip to content

incident_io_client.api.actions_v2.actions_v2_show

asyncio async

asyncio(
    id: str, *, client: Union[AuthenticatedClient, Client]
) -> Optional[ActionsV2ShowResponseBody]

Show Actions V2

Get a single incident action.

Parameters:

Name Type Description Default
id str
required

Raises:

Type Description
UnexpectedStatus

If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

TimeoutException

If the request takes longer than Client.timeout.

Returns:

Type Description
Optional[ActionsV2ShowResponseBody]

ActionsV2ShowResponseBody

Source code in incident_io_client/api/actions_v2/actions_v2_show.py
async def asyncio(
    id: str,
    *,
    client: Union[AuthenticatedClient, Client],
) -> Optional[ActionsV2ShowResponseBody]:
    """Show Actions V2

     Get a single incident action.

    Args:
        id (str):

    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:
        ActionsV2ShowResponseBody
    """

    return (
        await asyncio_detailed(
            id=id,
            client=client,
        )
    ).parsed

asyncio_detailed async

asyncio_detailed(
    id: str, *, client: Union[AuthenticatedClient, Client]
) -> Response[ActionsV2ShowResponseBody]

Show Actions V2

Get a single incident action.

Parameters:

Name Type Description Default
id str
required

Raises:

Type Description
UnexpectedStatus

If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

TimeoutException

If the request takes longer than Client.timeout.

Returns:

Type Description
Response[ActionsV2ShowResponseBody]

Response[ActionsV2ShowResponseBody]

Source code in incident_io_client/api/actions_v2/actions_v2_show.py
async def asyncio_detailed(
    id: str,
    *,
    client: Union[AuthenticatedClient, Client],
) -> Response[ActionsV2ShowResponseBody]:
    """Show Actions V2

     Get a single incident action.

    Args:
        id (str):

    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[ActionsV2ShowResponseBody]
    """

    kwargs = _get_kwargs(
        id=id,
    )

    response = await client.get_async_httpx_client().request(**kwargs)

    return _build_response(client=client, response=response)

sync

sync(
    id: str, *, client: Union[AuthenticatedClient, Client]
) -> Optional[ActionsV2ShowResponseBody]

Show Actions V2

Get a single incident action.

Parameters:

Name Type Description Default
id str
required

Raises:

Type Description
UnexpectedStatus

If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

TimeoutException

If the request takes longer than Client.timeout.

Returns:

Type Description
Optional[ActionsV2ShowResponseBody]

ActionsV2ShowResponseBody

Source code in incident_io_client/api/actions_v2/actions_v2_show.py
def sync(
    id: str,
    *,
    client: Union[AuthenticatedClient, Client],
) -> Optional[ActionsV2ShowResponseBody]:
    """Show Actions V2

     Get a single incident action.

    Args:
        id (str):

    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:
        ActionsV2ShowResponseBody
    """

    return sync_detailed(
        id=id,
        client=client,
    ).parsed

sync_detailed

sync_detailed(
    id: str, *, client: Union[AuthenticatedClient, Client]
) -> Response[ActionsV2ShowResponseBody]

Show Actions V2

Get a single incident action.

Parameters:

Name Type Description Default
id str
required

Raises:

Type Description
UnexpectedStatus

If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

TimeoutException

If the request takes longer than Client.timeout.

Returns:

Type Description
Response[ActionsV2ShowResponseBody]

Response[ActionsV2ShowResponseBody]

Source code in incident_io_client/api/actions_v2/actions_v2_show.py
def sync_detailed(
    id: str,
    *,
    client: Union[AuthenticatedClient, Client],
) -> Response[ActionsV2ShowResponseBody]:
    """Show Actions V2

     Get a single incident action.

    Args:
        id (str):

    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[ActionsV2ShowResponseBody]
    """

    kwargs = _get_kwargs(
        id=id,
    )

    response = client.get_httpx_client().request(
        **kwargs,
    )

    return _build_response(client=client, response=response)