io.milvus.grpc.GrantEntityOrBuilder 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 GrantEntityOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.GrantEntity)
com.google.protobuf.MessageOrBuilder {
/**
*
* principal
*
*
* .milvus.proto.milvus.PrincipalEntity principal = 1;
* @return Whether the principal field is set.
*/
boolean hasPrincipal();
/**
*
* principal
*
*
* .milvus.proto.milvus.PrincipalEntity principal = 1;
* @return The principal.
*/
io.milvus.grpc.PrincipalEntity getPrincipal();
/**
*
* principal
*
*
* .milvus.proto.milvus.PrincipalEntity principal = 1;
*/
io.milvus.grpc.PrincipalEntityOrBuilder getPrincipalOrBuilder();
/**
*
* resource
*
*
* .milvus.proto.milvus.ResourceEntity resource = 2;
* @return Whether the resource field is set.
*/
boolean hasResource();
/**
*
* resource
*
*
* .milvus.proto.milvus.ResourceEntity resource = 2;
* @return The resource.
*/
io.milvus.grpc.ResourceEntity getResource();
/**
*
* resource
*
*
* .milvus.proto.milvus.ResourceEntity resource = 2;
*/
io.milvus.grpc.ResourceEntityOrBuilder getResourceOrBuilder();
/**
*
* resource name
*
*
* string resource_name = 3;
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* resource name
*
*
* string resource_name = 3;
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* privilege
*
*
* .milvus.proto.milvus.GrantorEntity grantor = 4;
* @return Whether the grantor field is set.
*/
boolean hasGrantor();
/**
*
* privilege
*
*
* .milvus.proto.milvus.GrantorEntity grantor = 4;
* @return The grantor.
*/
io.milvus.grpc.GrantorEntity getGrantor();
/**
*
* privilege
*
*
* .milvus.proto.milvus.GrantorEntity grantor = 4;
*/
io.milvus.grpc.GrantorEntityOrBuilder getGrantorOrBuilder();
}