com.aerospike.vector.client.proto.IndexUpdateRequestOrBuilder 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: index.proto
// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;
public interface IndexUpdateRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.IndexUpdateRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .aerospike.vector.IndexId indexId = 1;
* @return Whether the indexId field is set.
*/
boolean hasIndexId();
/**
* .aerospike.vector.IndexId indexId = 1;
* @return The indexId.
*/
com.aerospike.vector.client.proto.IndexId getIndexId();
/**
* .aerospike.vector.IndexId indexId = 1;
*/
com.aerospike.vector.client.proto.IndexIdOrBuilder getIndexIdOrBuilder();
/**
*
* Optional labels associated with the index.
*
*
* map<string, string> labels = 2;
*/
int getLabelsCount();
/**
*
* Optional labels associated with the index.
*
*
* map<string, string> labels = 2;
*/
boolean containsLabels(
java.lang.String key);
/**
* Use {@link #getLabelsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getLabels();
/**
*
* Optional labels associated with the index.
*
*
* map<string, string> labels = 2;
*/
java.util.Map
getLabelsMap();
/**
*
* Optional labels associated with the index.
*
*
* map<string, string> labels = 2;
*/
/* nullable */
java.lang.String getLabelsOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
*
* Optional labels associated with the index.
*
*
* map<string, string> labels = 2;
*/
java.lang.String getLabelsOrThrow(
java.lang.String key);
/**
* .aerospike.vector.HnswIndexUpdate hnswIndexUpdate = 3;
* @return Whether the hnswIndexUpdate field is set.
*/
boolean hasHnswIndexUpdate();
/**
* .aerospike.vector.HnswIndexUpdate hnswIndexUpdate = 3;
* @return The hnswIndexUpdate.
*/
com.aerospike.vector.client.proto.HnswIndexUpdate getHnswIndexUpdate();
/**
* .aerospike.vector.HnswIndexUpdate hnswIndexUpdate = 3;
*/
com.aerospike.vector.client.proto.HnswIndexUpdateOrBuilder getHnswIndexUpdateOrBuilder();
com.aerospike.vector.client.proto.IndexUpdateRequest.UpdateCase getUpdateCase();
}