com.ibm.etcd.api.AuthRoleGrantPermissionRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etcd-java Show documentation
Show all versions of etcd-java Show documentation
etcd3 java client and utilities
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
package com.ibm.etcd.api;
public interface AuthRoleGrantPermissionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.AuthRoleGrantPermissionRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* name is the name of the role which will be granted the permission.
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
* name is the name of the role which will be granted the permission.
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* perm is the permission to grant to the role.
*
*
* .authpb.Permission perm = 2;
* @return Whether the perm field is set.
*/
boolean hasPerm();
/**
*
* perm is the permission to grant to the role.
*
*
* .authpb.Permission perm = 2;
* @return The perm.
*/
com.ibm.etcd.api.Permission getPerm();
/**
*
* perm is the permission to grant to the role.
*
*
* .authpb.Permission perm = 2;
*/
com.ibm.etcd.api.PermissionOrBuilder getPermOrBuilder();
}