from intuned_runtime import extend_payload
def extend_payload(
*payload: Payload
) -> None: ...
In the context of a job, extends the job execution with the provided payload(s) after the current payload execution succeeds.
Will implicitly call extend_timeout
.
Parameters
The payload(s) to extend the job with.
Payload
class Payload(TypedDict):
api: str
parameters: dict[str, Any]
Properties
The name of the API to extend.
The parameters to pass to the API.