mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	We currently do not have a way to clean up api keys. There may be cases where users of headscale may generate a lot of api keys and these may end up accumulating in the database. This commit adds the command to delete an api key given a prefix.
		
			
				
	
	
		
			43 lines
		
	
	
		
			814 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			814 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
syntax = "proto3";
 | 
						|
package headscale.v1;
 | 
						|
option  go_package = "github.com/juanfont/headscale/gen/go/v1";
 | 
						|
 | 
						|
import "google/protobuf/timestamp.proto";
 | 
						|
 | 
						|
message ApiKey {
 | 
						|
    uint64                    id         = 1;
 | 
						|
    string                    prefix     = 2;
 | 
						|
    google.protobuf.Timestamp expiration = 3;
 | 
						|
    google.protobuf.Timestamp created_at = 4;
 | 
						|
    google.protobuf.Timestamp last_seen  = 5;
 | 
						|
}
 | 
						|
 | 
						|
message CreateApiKeyRequest {
 | 
						|
    google.protobuf.Timestamp expiration = 1;
 | 
						|
}
 | 
						|
 | 
						|
message CreateApiKeyResponse {
 | 
						|
    string api_key = 1;
 | 
						|
}
 | 
						|
 | 
						|
message ExpireApiKeyRequest {
 | 
						|
    string prefix = 1;
 | 
						|
}
 | 
						|
 | 
						|
message ExpireApiKeyResponse {
 | 
						|
}
 | 
						|
 | 
						|
message ListApiKeysRequest {
 | 
						|
}
 | 
						|
 | 
						|
message ListApiKeysResponse {
 | 
						|
    repeated ApiKey api_keys = 1;
 | 
						|
}
 | 
						|
 | 
						|
message DeleteApiKeyRequest {
 | 
						|
    string prefix = 1;
 | 
						|
}
 | 
						|
 | 
						|
message DeleteApiKeyResponse {
 | 
						|
}
 |