SberCloud
Manage cloud VMs, IAM roles, and view cloud resources on SberCloud
SberCloud is a Russian cloud platform by Sber. Get IAM user info, list virtual machines (VMs), and manage VM lifecycle (start, stop, reboot) through the API.
| Parameter | Type | Required | Description |
|---|
| Parameter | Type | Description |
|---|
success | boolean | API success status |
iamInfo | json | IAM user information |
vms | array | List of virtual machines |
vmStatus | string | VM action result status |
error | string | Error message if any |
List virtual machine instances in SberCloud. Returns instance details including status, flavor, vCPUs, RAM, disk, IP address, and region.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | No description |
region | string | No | No description |
projectId | string | No | No description |
| Parameter | Type | Description |
|---|
instances | array | List of virtual machine instances |
↳ id | string | Instance ID |
↳ name | string | Instance name |
↳ status | string | Instance status (ACTIVE, SHUTOFF, etc.) |
↳ flavor | string | Flavor name |
↳ vcpus | number | Number of vCPUs |
↳ ramMb | number | RAM in megabytes |
↳ diskGb | number | Disk size in gigabytes |
↳ ipAddress | string | IP address of the instance |
↳ createdAt | string | Instance creation date |
↳ region | string | Region the instance is in |
Start, stop, or reboot a virtual machine instance in SberCloud. Requires the instance ID and the desired action.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | No description |
instanceId | string | Yes | No description |
action | string | Yes | No description |
region | string | No | No description |
projectId | string | No | No description |
| Parameter | Type | Description |
|---|
instanceId | string | The ID of the instance |
action | string | The action performed (start, stop, reboot) |
status | string | Result status (processing, completed, failed) |
message | string | Status message from the API |