Skip to main content

RevokePrivilege()

This method revokes a privilege or a privilege group of a role. In Milvus, you can allocate multiple privileges or privilege groups to a role and grant the role to a user so that the user gains the privileges allocated to the role.

func (c *Client) RevokePrivilege(ctx context.Context, option RevokePrivilegeOption, callOptions ...grpc.CallOption) error

Request Parameters

Parameter

Description

Type

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

RevokePrivilegeOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

RevokePrivilegeOption

This is an interface type. The revokePrivilegeOption struct type implements this interface type.

You can use the NewRevokePrivilegeOption() function to get the concrete implementation.

NewRevokePrivilegeOption

The signature of the NewRevokePrivilegeOption() is as follows:

func NewRevokePrivilegeOption(roleName, objectType, privilegeName, objectName string) *revokePrivilegeOption

Parameter

Description

Type

roleName

Name of the target role for this operation.

string

objectType

Type of the target object for this operation.

string

privilegeName

Name of the target privilege or privilege group for this operation.

string

objectName

Name of the target object for this operation.

string

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.

Return

Null

Example

// go