mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
Remove protobuf share/unshare
This commit is contained in:
parent
6da2a19d10
commit
9d1752acbc
2 changed files with 0 additions and 30 deletions
|
@ -104,18 +104,6 @@ service HeadscaleService {
|
||||||
get: "/api/v1/machine"
|
get: "/api/v1/machine"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
rpc ShareMachine(ShareMachineRequest) returns (ShareMachineResponse) {
|
|
||||||
option (google.api.http) = {
|
|
||||||
post: "/api/v1/machine/{machine_id}/share/{namespace}"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
rpc UnshareMachine(UnshareMachineRequest) returns (UnshareMachineResponse) {
|
|
||||||
option (google.api.http) = {
|
|
||||||
post: "/api/v1/machine/{machine_id}/unshare/{namespace}"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// --- Machine end ---
|
// --- Machine end ---
|
||||||
|
|
||||||
// --- Route start ---
|
// --- Route start ---
|
||||||
|
|
|
@ -80,24 +80,6 @@ message ListMachinesResponse {
|
||||||
repeated Machine machines = 1;
|
repeated Machine machines = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ShareMachineRequest {
|
|
||||||
uint64 machine_id = 1;
|
|
||||||
string namespace = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
message ShareMachineResponse {
|
|
||||||
Machine machine = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
message UnshareMachineRequest {
|
|
||||||
uint64 machine_id = 1;
|
|
||||||
string namespace = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
message UnshareMachineResponse {
|
|
||||||
Machine machine = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
message DebugCreateMachineRequest {
|
message DebugCreateMachineRequest {
|
||||||
string namespace = 1;
|
string namespace = 1;
|
||||||
string key = 2;
|
string key = 2;
|
||||||
|
|
Loading…
Reference in a new issue