You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`virtualMachineId`: Virtual Machine ID (required)
1397
+
-`ipAddressId`: IP Address ID (required)
1392
1398
1393
1399
### VPS_setPanelPasswordV1
1394
1400
@@ -1469,8 +1475,9 @@ Use this endpoint to completely rebuild VPS instances with fresh OS installation
1469
1475
1470
1476
-`virtualMachineId`: Virtual Machine ID (required)
1471
1477
-`template_id`: Template ID (required)
1472
-
-`password`: Password for the virtual machine. If not provided, random password will be generated. Password will not be shown in the response.
1473
-
-`post_install_script_id`: Post-install script ID
1478
+
-`password`: Root password for the virtual machine. If not provided, random password will be generated. Password will not be shown in the response.
1479
+
-`panel_password`: Panel password for the panel-based OS template. If not provided, random password will be generated. If OS does not support panel_password this field will be ignored. Password will not be shown in the response.
1480
+
-`post_install_script_id`: Post-install script to execute after virtual machine was recreated
Copy file name to clipboardExpand all lines: server.js
+34-11Lines changed: 34 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1132,7 +1132,7 @@ const TOOLS = [
1132
1132
},
1133
1133
{
1134
1134
"name": "VPS_getProjectListV1",
1135
-
"description": "Retrieves a list of all Docker Compose projects currently deployed on the virtual machine. \n\nThis endpoint returns basic information about each project including name, status, and file path. \n\nUse this to get an overview of all Docker projects on your VPS instance.",
1135
+
"description": "Retrieves a list of all Docker Compose projects currently deployed on the virtual machine. \n\nThis endpoint returns basic information about each project including name, status, file path and list of containers with \ndetails about their names, image, status, health and ports. Container stats are omitted in this endpoint.\nIf you need to get detailed information about container with stats included, use the `Get project containers` endpoint. \n\nUse this to get an overview of all Docker projects on your VPS instance.",
"description": "Deploy new project from docker-compose.yaml contents or download contents from URL. \n\nURL can be Github repository url in format https://github.com/[user]/[repo] and it will be automatically resolved to \ndocker-compose.yaml file in master branch. Any other URL provided must return docker-compose.yaml file contents.\n\nIf project already exists, it will be replaced.",
1158
+
"description": "Deploy new project from docker-compose.yaml contents or download contents from URL. \n\nURL can be Github repository url in format https://github.com/[user]/[repo] and it will be automatically resolved to \ndocker-compose.yaml file in master branch. Any other URL provided must return docker-compose.yaml file contents.\n\nIf project with the same name already exists, existing project will be replaced.",
"description": "URL pointing to docker-compose.yaml file, Github repository or raw YAML content of the compose file"
1175
+
},
1176
+
"environment": {
1177
+
"type": "string",
1178
+
"description": "Project environment variables"
1175
1179
}
1176
1180
},
1177
1181
"required": [
@@ -2337,17 +2341,27 @@ const TOOLS = [
2337
2341
"name": "VPS_createPTRRecordV1",
2338
2342
"description": "Create or update a PTR (Pointer) record for a specified virtual machine.\n\nUse this endpoint to configure reverse DNS lookup for VPS IP addresses.",
"description": "Delete a PTR (Pointer) record for a specified virtual machine.\n\nOnce deleted, reverse DNS lookups to the virtual machine's IP address will no longer return the previously configured hostname.\n\nUse this endpoint to remove reverse DNS configuration from VPS instances.",
"description": "Password for the virtual machine. If not provided, random password will be generated. Password will not be shown in the response."
2498
+
"description": "Root password for the virtual machine. If not provided, random password will be generated. Password will not be shown in the response."
2499
+
},
2500
+
"panel_password": {
2501
+
"type": "string",
2502
+
"description": "Panel password for the panel-based OS template. If not provided, random password will be generated. If OS does not support panel_password this field will be ignored. Password will not be shown in the response."
2480
2503
},
2481
2504
"post_install_script_id": {
2482
2505
"type": "integer",
2483
-
"description": "Post-install script ID"
2506
+
"description": "Post-install script to execute after virtual machine was recreated"
0 commit comments