Update user config for a VM.
(self, vm_id: str, user_config: str)
| 964 | print(f"Environment variables updated for VM {vm_id}") |
| 965 | |
| 966 | def update_vm_user_config(self, vm_id: str, user_config: str) -> None: |
| 967 | """Update user config for a VM.""" |
| 968 | self.rpc_call("UpgradeApp", {"id": vm_id, "user_config": user_config}) |
| 969 | print(f"User config updated for VM {vm_id}") |
| 970 | |
| 971 | def update_vm_app_compose(self, vm_id: str, app_compose: str) -> None: |
| 972 | """Update app compose for a VM.""" |