Files
headscale/proto/headscale/v1/preauthkey.proto
Kristoffer Dalby 1398d01bd8 proto: change preauthkey API to ID-based operations
Remove user parameter from ListPreAuthKeys.
Change ExpirePreAuthKey and DeletePreAuthKey to use key ID.
2026-01-20 12:53:20 +01:00

50 lines
977 B
Protocol Buffer

syntax = "proto3";
package headscale.v1;
import "google/protobuf/timestamp.proto";
import "headscale/v1/user.proto";
option go_package = "github.com/juanfont/headscale/gen/go/v1";
message PreAuthKey {
User user = 1;
uint64 id = 2;
string key = 3;
bool reusable = 4;
bool ephemeral = 5;
bool used = 6;
google.protobuf.Timestamp expiration = 7;
google.protobuf.Timestamp created_at = 8;
repeated string acl_tags = 9;
}
message CreatePreAuthKeyRequest {
uint64 user = 1;
bool reusable = 2;
bool ephemeral = 3;
google.protobuf.Timestamp expiration = 4;
repeated string acl_tags = 5;
}
message CreatePreAuthKeyResponse {
PreAuthKey pre_auth_key = 1;
}
message ExpirePreAuthKeyRequest {
uint64 id = 1;
}
message ExpirePreAuthKeyResponse {}
message DeletePreAuthKeyRequest {
uint64 id = 1;
}
message DeletePreAuthKeyResponse {}
message ListPreAuthKeysRequest {}
message ListPreAuthKeysResponse {
repeated PreAuthKey pre_auth_keys = 1;
}