CVM Identifiers
Most lifecycle methods accept a CVM identifier. You can pass any of these fields — the SDK resolves them automatically:provision_cvm
POST /cvms/provision
Creates a CVM provision request. This is step one of the two-step provisioning flow. The response includes a compose_hash that you use in commit_cvm_provision.
Parameters:
The request is a dictionary with the CVM configuration. The exact fields depend on your deployment, but typically include:
Returns: Provision response with
compose_hash and app_id.
Example:
commit_cvm_provision
POST /cvms
Commits a provisioned CVM, creating the actual instance. This is step two of the provisioning flow. Pass the compose_hash from the provision step along with on-chain transaction details.
This endpoint is idempotent: submitting the same app_id + compose_hash again returns the existing CVM. A different compose_hash for the same app_id raises a ResourceError with error code CVM_APP_ID_CONFLICT.
Parameters:
Returns: Committed CVM details.
Example:
start_cvm
POST /cvms/{cvmId}/start
Starts a stopped CVM.
Parameters:
Returns: CVM action response with updated status.
Example:
stop_cvm
POST /cvms/{cvmId}/stop
Force-stops a CVM immediately.
Parameters:
Returns: CVM action response with updated status.
shutdown_cvm
POST /cvms/{cvmId}/shutdown
Gracefully shuts down a CVM, allowing containers to stop cleanly. Prefer this over stop_cvm unless you need an immediate halt.
Parameters:
Returns: CVM action response with updated status.
restart_cvm
POST /cvms/{cvmId}/restart
Restarts a CVM. Supports an optional force flag to skip graceful shutdown.
Parameters:
Returns: CVM action response with updated status.
Example:
delete_cvm
DELETE /cvms/{cvmId}
Permanently deletes a CVM and all its data.
Parameters:
Returns:
None
Example:
replicate_cvm
POST /cvms/{cvmId}/replicas
Creates a copy of an existing CVM. The replica shares the same compose configuration but runs as an independent instance.
Parameters:
Returns: Replicated CVM details.
Example:
watch_cvm_state
GET /cvms/{cvmId}/state (SSE)
Polls the CVM state via Server-Sent Events until it reaches a target status. This is useful for waiting until a CVM finishes starting or stopping. Only available on the sync client.
Parameters:
Returns: CVM state object when the target state is reached.
Raises:
TimeoutError if max retries exceeded.
Example:
Related
- CVM Configuration — updating compose files and resources
- Error Handling — handling provisioning errors

