mirror of
https://github.com/paralus/paralus.git
synced 2026-05-19 14:56:57 +00:00
154 lines
3.7 KiB
Protocol Buffer
154 lines
3.7 KiB
Protocol Buffer
syntax = "proto3";
|
|
package rafay.dev.rpc.v3;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "google/api/annotations.proto";
|
|
import "protoc-gen-openapiv2/options/annotations.proto";
|
|
import "proto/types/userpb/v3/user.proto";
|
|
import "proto/types/commonpb/v3/common.proto";
|
|
|
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
|
|
info : {
|
|
title : "User management Service"
|
|
version : "2.0"
|
|
contact : {name : "Rafay Dev"}
|
|
}
|
|
schemes : HTTPS
|
|
consumes : "application/json"
|
|
consumes : "application/yaml"
|
|
produces : "application/json"
|
|
produces : "application/yaml"
|
|
security_definitions : {
|
|
security : {
|
|
key : "BasicAuth"
|
|
value : {type : TYPE_BASIC}
|
|
}
|
|
security : {
|
|
key : "ApiKeyAuth"
|
|
value : {type : TYPE_API_KEY in : IN_HEADER name : "X-RAFAY-API-KEYID"}
|
|
}
|
|
}
|
|
security : {
|
|
security_requirement : {
|
|
key : "BasicAuth"
|
|
value : {}
|
|
}
|
|
security_requirement : {
|
|
key : "ApiKeyAuth"
|
|
value : {}
|
|
}
|
|
}
|
|
responses : {
|
|
key : "403"
|
|
value : {
|
|
description : "Returned when the user does not have permission to access "
|
|
"the resource."
|
|
}
|
|
}
|
|
responses : {
|
|
key : "404"
|
|
value : {
|
|
description : "Returned when the resource does not exist."
|
|
schema : {json_schema : {type : STRING}}
|
|
}
|
|
}
|
|
};
|
|
|
|
message ApiKeyRequest {
|
|
string username = 1;
|
|
string id = 2;
|
|
}
|
|
|
|
message ApiKeyResponse {
|
|
google.protobuf.Timestamp modifiedAt = 1;
|
|
google.protobuf.Timestamp createdAt = 2;
|
|
string id = 3;
|
|
string key = 4;
|
|
string name = 5;
|
|
}
|
|
|
|
message ApiKeyResponseList {
|
|
repeated ApiKeyResponse items = 1;
|
|
}
|
|
|
|
message DeleteUserResponse {}
|
|
message CliConfigRequest {}
|
|
|
|
service User {
|
|
rpc CreateUser(rafay.dev.types.user.v3.User)
|
|
returns (rafay.dev.types.user.v3.User) {
|
|
option (google.api.http) = {
|
|
post : "/auth/v3/users"
|
|
body : "*"
|
|
};
|
|
|
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
|
responses : {
|
|
key : "201"
|
|
value : {description : "Returned when user is created successfully."}
|
|
}
|
|
};
|
|
};
|
|
|
|
rpc GetUsers(rafay.dev.types.common.v3.QueryOptions) returns (rafay.dev.types.user.v3.UserList) {
|
|
option (google.api.http) = {
|
|
get : "/auth/v3/users"
|
|
};
|
|
};
|
|
|
|
rpc GetUser(rafay.dev.types.user.v3.User) returns (rafay.dev.types.user.v3.User) {
|
|
option (google.api.http) = {
|
|
get : "/auth/v3/user/{metadata.name}"
|
|
};
|
|
};
|
|
|
|
rpc GetUserInfo(rafay.dev.types.user.v3.User) returns (rafay.dev.types.user.v3.UserInfo) {
|
|
option (google.api.http) = {
|
|
get : "/auth/v3/userinfo" // user name if picked from session
|
|
};
|
|
};
|
|
|
|
rpc UpdateUser(rafay.dev.types.user.v3.User) returns (rafay.dev.types.user.v3.User) {
|
|
option (google.api.http) = {
|
|
put : "/auth/v3/user/{metadata.name}"
|
|
body : "*"
|
|
};
|
|
};
|
|
|
|
rpc DeleteUser(rafay.dev.types.user.v3.User) returns (DeleteUserResponse) {
|
|
option (google.api.http) = {
|
|
delete : "/auth/v3/user/{metadata.name}"
|
|
};
|
|
|
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
|
responses : {
|
|
key : "204"
|
|
value : {
|
|
description : "Returned when user is deleted successfully."
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
rpc DownloadCliConfig(CliConfigRequest)
|
|
returns (rafay.dev.types.common.v3.HttpBody) {
|
|
option (google.api.http) = {
|
|
get : "/auth/v3/cli/config"
|
|
};
|
|
};
|
|
|
|
rpc UserListApiKeys(ApiKeyRequest)
|
|
returns (ApiKeyResponseList) {
|
|
option (google.api.http) = {
|
|
get : "/auth/v3/user/{username}/apikeys"
|
|
};
|
|
};
|
|
|
|
rpc UserDeleteApiKeys(ApiKeyRequest)
|
|
returns (DeleteUserResponse) {
|
|
option (google.api.http) = {
|
|
delete : "/auth/v3/user/{username}/apikeys/{id}"
|
|
};
|
|
};
|
|
}
|