Skip to main content
Remove the default job from a machine.

Signature

VastAI.remove_defjob(
    id: int
) -> dict

Parameters

id
int
required
id of machine to remove default instance from

Returns

dict

Example

from vastai import VastAI

client = VastAI(api_key="YOUR_API_KEY")
result = client.remove_defjob(id=12345)
print(result)