DropUser()
This method drops a user.
func (c *Client) DropUser(ctx context.Context, opt DropUserOption, callOpts ...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. |
|
DropUserOption
This is an interface type. The dropUserOption
struct type implements this interface type.
You can use the NewDropUserOption()
function to get the concrete implementation.
NewDropUserOption
The signature of the NewDropUserOption()
is as follows:
func NewDropUserOption(userName string) *dropRoleOption
Parameter | Description | Type |
---|---|---|
| Name of the user to drop. |
|
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
import (
"context"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/v2/milvusclient"
)
userName := "my_user"
opts := client.NewDropUserOption(userName)
onFinish := func(ctx context.Context, err error) {
if err != nil {
fmt.Printf("gRPC call finished with error: %v\n", err)
} else {
fmt.Printf("gRPC call finished successfully")
}
}
callOpts := grpc.OnFinish(onFinish)
err := mclient.DropUser(context.Background(), opts, callOpts)