.avs-client-java.0.3.0.com.aerospike.avs-client-java.0.3.0.source-code.auth.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
This project includes the Java client for Aerospike Vector Search for high-performance data interactions.
The newest version!
syntax = "proto3";
package aerospike.vector;
option go_package = "aerospike.com/vector/protos/";
option java_package = "com.aerospike.vector.client.proto";
option java_multiple_files = true;
import "types.proto";
// An auth request to get an access token to perform operations on Aerospike
// database.
message AuthRequest {
Credentials credentials = 1;
}
// An auth token to perform operations on Aerospike database.
message AuthResponse {
string token = 1;
}
// Auth service
service AuthService {
// Request authentication.
rpc Authenticate(AuthRequest) returns (AuthResponse) {}
}