grpc.control_client._CreateIndexRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: controlclient.proto
package grpc.control_client;
public interface _CreateIndexRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:control_client._CreateIndexRequest)
com.google.protobuf.MessageOrBuilder {
/**
* string index_name = 1;
* @return The indexName.
*/
java.lang.String getIndexName();
/**
* string index_name = 1;
* @return The bytes for indexName.
*/
com.google.protobuf.ByteString
getIndexNameBytes();
/**
* uint64 num_dimensions = 2;
* @return The numDimensions.
*/
long getNumDimensions();
/**
* .control_client._SimilarityMetric similarity_metric = 3;
* @return Whether the similarityMetric field is set.
*/
boolean hasSimilarityMetric();
/**
* .control_client._SimilarityMetric similarity_metric = 3;
* @return The similarityMetric.
*/
grpc.control_client._SimilarityMetric getSimilarityMetric();
/**
* .control_client._SimilarityMetric similarity_metric = 3;
*/
grpc.control_client._SimilarityMetricOrBuilder getSimilarityMetricOrBuilder();
}