io.milvus.grpc.CreateCredentialRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface CreateCredentialRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.CreateCredentialRequest)
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();
/**
*
* username
*
*
* string username = 2;
* @return The username.
*/
java.lang.String getUsername();
/**
*
* username
*
*
* string username = 2;
* @return The bytes for username.
*/
com.google.protobuf.ByteString
getUsernameBytes();
/**
*
* ciphertext password
*
*
* string password = 3;
* @return The password.
*/
java.lang.String getPassword();
/**
*
* ciphertext password
*
*
* string password = 3;
* @return The bytes for password.
*/
com.google.protobuf.ByteString
getPasswordBytes();
/**
*
* create time
*
*
* uint64 created_utc_timestamps = 4;
* @return The createdUtcTimestamps.
*/
long getCreatedUtcTimestamps();
/**
*
* modify time
*
*
* uint64 modified_utc_timestamps = 5;
* @return The modifiedUtcTimestamps.
*/
long getModifiedUtcTimestamps();
}