RevokeV2()
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) RevokeV2(ctx context.Context, option RevokeV2Option, callOptions ...grpc.CallOption) error
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
RevokeV2Option
This is an interface type. The revokeV2Option
struct type implements this interface type.
You can use the NewRevokeV2Option()
function to get the concrete implementation.
NewRevokeV2Option
The signature of the NewRevokeV2Option()
is as follows:
func NewRevokeV2Option(roleName, privilegeName, dbName, collectionName string) *revokeV2Option
Parameter | Description | Type |
---|---|---|
| Name of the target role for this operation. |
|
| Name of the target privilege or privilege group for this operation. |
|
| Name of the target database. |
|
| Name of the target collection. |
|
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