DescribeRole()
This method returns the detailed information about the specified role.
func (c *Client) DescribeRole(ctx context.Context, option DescribeRoleOption, callOptions ...grpc.CallOption) (*entity.Role, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
DescribeRoleOption
This is an interface type. The describeRoleOption
struct type implements this interface type.
You can use the NewDescribeRoleOption()
function to get the concrete implementation.
NewDescribeRoleOption
The signature of NewDescribeRoleOption()
is as follows:
func NewDescribeRoleOption(roleName string) *describeRoleOption
Parameter | Description | Type |
---|---|---|
| Name of the role to describe. |
|
grpc.CallOption
This interface provided by the gRPC Go library allows you to specify additional options or configurations when making requests. For possible implementations of this interface, refer to this file.
entity.Role
The entity.Role
struct type is as follows:
type Role struct {
RoleName string
Privileges []entity.GrantItem
}
Return
*entity.Role
Example
import (
"context"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/v2/milvusclient"
)
roleName := "my_role"
opts := client.NewDescribeRoleOption(roleName)
err := mclient.DescribeRole(context.Background(), opts)