com.aerospike.vector.client.proto.AddUserRequestOrBuilder 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!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: user-admin.proto
// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;
public interface AddUserRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.AddUserRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .aerospike.vector.Credentials credentials = 1;
* @return Whether the credentials field is set.
*/
boolean hasCredentials();
/**
* .aerospike.vector.Credentials credentials = 1;
* @return The credentials.
*/
com.aerospike.vector.client.proto.Credentials getCredentials();
/**
* .aerospike.vector.Credentials credentials = 1;
*/
com.aerospike.vector.client.proto.CredentialsOrBuilder getCredentialsOrBuilder();
/**
*
* Granted roles
*
*
* repeated string roles = 2;
* @return A list containing the roles.
*/
java.util.List
getRolesList();
/**
*
* Granted roles
*
*
* repeated string roles = 2;
* @return The count of roles.
*/
int getRolesCount();
/**
*
* Granted roles
*
*
* repeated string roles = 2;
* @param index The index of the element to return.
* @return The roles at the given index.
*/
java.lang.String getRoles(int index);
/**
*
* Granted roles
*
*
* repeated string roles = 2;
* @param index The index of the value to return.
* @return The bytes of the roles at the given index.
*/
com.google.protobuf.ByteString
getRolesBytes(int index);
}