All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.avs-client-java.0.3.0.com.aerospike.avs-client-java.0.3.0.source-code.auth.proto Maven / Gradle / Ivy

Go to download

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) {}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy