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
|`CreateMachine`| Boot a microVM from an image; returns its `vm_id`. |`INVALID_ARGUMENT` (bad/missing image or enum), `RESOURCE_EXHAUSTED` (no capacity), `UNAVAILABLE` (host lost mid-create) |
19
-
|`StopMachine`| Tear down a running microVM. |`NOT_FOUND` (unknown id), `UNAVAILABLE` (host down) |
20
-
|`GetMachine`| Which node a microVM runs on. |`NOT_FOUND`|
21
-
|`ListMachines`| Every microVM known to the cluster. | — |
18
+
|`CreateVm`| Boot a microVM from an image; returns its `vm_id`. |`INVALID_ARGUMENT` (bad/missing image or enum), `RESOURCE_EXHAUSTED` (no capacity), `UNAVAILABLE` (host lost mid-create) |
19
+
|`StopVm`| Tear down a running microVM. |`NOT_FOUND` (unknown id), `UNAVAILABLE` (host down) |
20
+
|`GetVm`| Which node a microVM runs on. |`NOT_FOUND`|
21
+
|`ListVms`| Every microVM known to the cluster. | — |
22
22
23
23
A machine is addressed by its **`vm_id`** — a URL-safe base64 string the server
24
24
mints at creation. The server is stateless and identical on every node;
@@ -78,7 +78,7 @@ in config.
78
78
### From any language
79
79
80
80
Generate a client stub from `proto/hyper/grpc/v0/hyper.proto` with your
81
-
language's gRPC tooling (`protoc`, `buf`, etc.) and call the `Machines` service.
81
+
language's gRPC tooling (`protoc`, `buf`, etc.) and call the `Hyper` service.
82
82
The `.proto` ships in the published package as well as the repo.
0 commit comments