Return version history for a deployment.
Signature
VastAI.show_deployment_versions(
id: int
) -> list
Parameters
id of deployment to show versions for
Returns
list
Example
from vastai import VastAI
client = VastAI(api_key="YOUR_API_KEY")
result = client.show_deployment_versions(id=12345)
print(result)