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

io.milvus.grpc.LoadPartitionsRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.4.8
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: milvus.proto

package io.milvus.grpc;

public interface LoadPartitionsRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.milvus.LoadPartitionsRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * Not useful for now
   * 
* * .milvus.proto.common.MsgBase base = 1; * @return Whether the base field is set. */ boolean hasBase(); /** *
   * Not useful for now
   * 
* * .milvus.proto.common.MsgBase base = 1; * @return The base. */ io.milvus.grpc.MsgBase getBase(); /** *
   * Not useful for now
   * 
* * .milvus.proto.common.MsgBase base = 1; */ io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder(); /** * string db_name = 2; * @return The dbName. */ java.lang.String getDbName(); /** * string db_name = 2; * @return The bytes for dbName. */ com.google.protobuf.ByteString getDbNameBytes(); /** *
   * The collection name in milvus
   * 
* * string collection_name = 3; * @return The collectionName. */ java.lang.String getCollectionName(); /** *
   * The collection name in milvus
   * 
* * string collection_name = 3; * @return The bytes for collectionName. */ com.google.protobuf.ByteString getCollectionNameBytes(); /** *
   * The partition names you want to load
   * 
* * repeated string partition_names = 4; * @return A list containing the partitionNames. */ java.util.List getPartitionNamesList(); /** *
   * The partition names you want to load
   * 
* * repeated string partition_names = 4; * @return The count of partitionNames. */ int getPartitionNamesCount(); /** *
   * The partition names you want to load
   * 
* * repeated string partition_names = 4; * @param index The index of the element to return. * @return The partitionNames at the given index. */ java.lang.String getPartitionNames(int index); /** *
   * The partition names you want to load
   * 
* * repeated string partition_names = 4; * @param index The index of the value to return. * @return The bytes of the partitionNames at the given index. */ com.google.protobuf.ByteString getPartitionNamesBytes(int index); /** *
   * The replicas number you would load, 1 by default
   * 
* * int32 replica_number = 5; * @return The replicaNumber. */ int getReplicaNumber(); /** *
   * create replica used resource group
   * 
* * repeated string resource_groups = 6; * @return A list containing the resourceGroups. */ java.util.List getResourceGroupsList(); /** *
   * create replica used resource group
   * 
* * repeated string resource_groups = 6; * @return The count of resourceGroups. */ int getResourceGroupsCount(); /** *
   * create replica used resource group
   * 
* * repeated string resource_groups = 6; * @param index The index of the element to return. * @return The resourceGroups at the given index. */ java.lang.String getResourceGroups(int index); /** *
   * create replica used resource group
   * 
* * repeated string resource_groups = 6; * @param index The index of the value to return. * @return The bytes of the resourceGroups at the given index. */ com.google.protobuf.ByteString getResourceGroupsBytes(int index); /** *
   * Whether to enable refresh mode.
   * 
* * bool refresh = 7; * @return The refresh. */ boolean getRefresh(); /** *
   * Field Partial Load fields list
   * 
* * repeated string load_fields = 8; * @return A list containing the loadFields. */ java.util.List getLoadFieldsList(); /** *
   * Field Partial Load fields list
   * 
* * repeated string load_fields = 8; * @return The count of loadFields. */ int getLoadFieldsCount(); /** *
   * Field Partial Load fields list
   * 
* * repeated string load_fields = 8; * @param index The index of the element to return. * @return The loadFields at the given index. */ java.lang.String getLoadFields(int index); /** *
   * Field Partial Load fields list
   * 
* * repeated string load_fields = 8; * @param index The index of the value to return. * @return The bytes of the loadFields at the given index. */ com.google.protobuf.ByteString getLoadFieldsBytes(int index); /** *
   * Field Partial load skip load dynamic fields 
   * 
* * bool skip_load_dynamic_field = 9; * @return The skipLoadDynamicField. */ boolean getSkipLoadDynamicField(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy