com.ibm.etcd.api.AuthUserGrantRoleRequestOrBuilder 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 AuthUserGrantRoleRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.AuthUserGrantRoleRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* user is the name of the user which should be granted a given role.
*
*
* string user = 1;
* @return The user.
*/
java.lang.String getUser();
/**
*
* user is the name of the user which should be granted a given role.
*
*
* string user = 1;
* @return The bytes for user.
*/
com.google.protobuf.ByteString
getUserBytes();
/**
*
* role is the name of the role to grant to the user.
*
*
* string role = 2;
* @return The role.
*/
java.lang.String getRole();
/**
*
* role is the name of the role to grant to the user.
*
*
* string role = 2;
* @return The bytes for role.
*/
com.google.protobuf.ByteString
getRoleBytes();
}