Skip to main content
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
*payload
required
The payload(s) to extend the job with.

Payload

class Payload(TypedDict):
    api: str
    parameters: dict[str, Any]
Properties
api
string
required
The name of the API to extend.
parameters
dict[str, Any]
required
The parameters to pass to the API.
I