Set Configuration
This endpoint allows you to set various configuration settings for a specified KVM VPS.
Use the api_host
parameter obtained from the ‘Create AUTH-session’ response to authenticate the request.
Required Parameters:
- signature: The session signature obtained from the ‘Create AUTH-session’ call.
- kvm_id: The unique identifier of the KVM VPS.
- valid_until: The expiration timestamp for the session.
- config: A JSON object containing the configuration settings.
Example Configuration:
{"boot_timeout":"5000","vnc_keymap":"en-us","cpu_model":"passthrough","disk_driver":"virtio","nw_driver":"virtio","video_driver":"cirrus","description":"[a-zA-Z\-0-9\.\_]","assigned_vlan":"your vlan id","cpu_set_cores":"core or socket","auto_hydration":100}
Body
The session signature obtained from the 'Create AUTH-session' call.
"session_signature_12345"
The unique identifier of the KVM VPS.
"kvm_xxxxx_yyyyy"
The expiration timestamp for the session, obtained from the 'Create AUTH-session' call.
"2025-01-12T15:30:00Z"
JSON object containing configuration settings.
Example: {"boot_timeout":"5000","vnc_keymap":"en-us","cpu_model":"passthrough","disk_driver":"virtio","nw_driver":"virtio","video_driver":"cirrus","description":"[a-zA-Z\-0-9\.\_]","assigned_vlan":"your vlan id","cpu_set_cores":"core or socket","auto_hydration":100}
Your Settings
"{\"boot_timeout\":\"5000\",\"vnc_keymap\":\"en-us\",\"cpu_model\":\"passthrough\",\"disk_driver\":\"virtio\",\"nw_driver\":\"virtio\",\"video_driver\":\"cirrus\",\"description\":\"[a-zA-Z\\-0-9\\.\\_]\",\"assigned_vlan\":\"your vlan id\",\"cpu_set_cores\":\"core or socket\",\"auto_hydration\":100}"
Response
"success"
Was this page helpful?