POST
/
v1
/
reallocate
Python
from salad_cloud_imds_sdk import SaladCloudImdsSdk
from salad_cloud_imds_sdk.models import ReallocatePrototype

sdk = SaladCloudImdsSdk(
    timeout=10000
)

request_body = ReallocatePrototype(
    reason="Insufficient VRAM"
)

result = sdk.metadata.reallocate(request_body=request_body)

print(result)
This response does not have an example.
Last Updated: May 10, 2025

Headers

Metadata
enum<string>
required

Required header to indicate metadata request

Available options:
true

Body

application/json

Represents a request to reallocate the current container instance to another SaladCloud node.

reason
string
required

The reason for reallocating the current container instance. This value is reported to SaladCloud support for quality assurance purposes of SaladCloud nodes.

Required string length: 1 - 1000
Examples:

"Insufficient VRAM"

Response

No Content