com.aerospike.vector.client.proto.IndexIdOrBuilder 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: types.proto
// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;
public interface IndexIdOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.IndexId)
com.google.protobuf.MessageOrBuilder {
/**
*
* The index namespace.
*
*
* string namespace = 1;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
*
* The index namespace.
*
*
* string namespace = 1;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
/**
*
* The name of the index. This should be unique within the namespace.
*
*
* string name = 2;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the index. This should be unique within the namespace.
*
*
* string name = 2;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
}