incident_io_client.api.incident_statuses_v1.incident_statuses_v1_update
asyncio
async
asyncio(
id: str,
*,
client: Union[AuthenticatedClient, Client],
body: IncidentStatusesV1UpdateRequestBody
) -> Optional[IncidentStatusesV1UpdateResponseBody]
Update Incident Statuses V1
Update an existing incident status
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
str
|
|
required |
body |
IncidentStatusesV1UpdateRequestBody
|
Example: {'description': "Impact has been fully mitigated, and we're ready to learn from this incident.", 'name': 'Closed'}. |
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[IncidentStatusesV1UpdateResponseBody]
|
IncidentStatusesV1UpdateResponseBody |
Source code in incident_io_client/api/incident_statuses_v1/incident_statuses_v1_update.py
asyncio_detailed
async
asyncio_detailed(
id: str,
*,
client: Union[AuthenticatedClient, Client],
body: IncidentStatusesV1UpdateRequestBody
) -> Response[IncidentStatusesV1UpdateResponseBody]
Update Incident Statuses V1
Update an existing incident status
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
str
|
|
required |
body |
IncidentStatusesV1UpdateRequestBody
|
Example: {'description': "Impact has been fully mitigated, and we're ready to learn from this incident.", 'name': 'Closed'}. |
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[IncidentStatusesV1UpdateResponseBody]
|
Response[IncidentStatusesV1UpdateResponseBody] |
Source code in incident_io_client/api/incident_statuses_v1/incident_statuses_v1_update.py
sync
sync(
id: str,
*,
client: Union[AuthenticatedClient, Client],
body: IncidentStatusesV1UpdateRequestBody
) -> Optional[IncidentStatusesV1UpdateResponseBody]
Update Incident Statuses V1
Update an existing incident status
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
str
|
|
required |
body |
IncidentStatusesV1UpdateRequestBody
|
Example: {'description': "Impact has been fully mitigated, and we're ready to learn from this incident.", 'name': 'Closed'}. |
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[IncidentStatusesV1UpdateResponseBody]
|
IncidentStatusesV1UpdateResponseBody |
Source code in incident_io_client/api/incident_statuses_v1/incident_statuses_v1_update.py
sync_detailed
sync_detailed(
id: str,
*,
client: Union[AuthenticatedClient, Client],
body: IncidentStatusesV1UpdateRequestBody
) -> Response[IncidentStatusesV1UpdateResponseBody]
Update Incident Statuses V1
Update an existing incident status
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
str
|
|
required |
body |
IncidentStatusesV1UpdateRequestBody
|
Example: {'description': "Impact has been fully mitigated, and we're ready to learn from this incident.", 'name': 'Closed'}. |
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[IncidentStatusesV1UpdateResponseBody]
|
Response[IncidentStatusesV1UpdateResponseBody] |