DropPrivilegeGroup()
This method drops a privilege group.
func (c *Client) DropPrivilegeGroup(ctx context.Context, option DropPrivilegeGroupOption, 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. |
|
DropPrivilegeGroupOption
This is an interface type. The dropPrivilegeGroupOption
struct type implements this interface type.
You can use the NewDropPrivilegeGroupOption()
function to get the concrete implementation.
NewDropPrivilegeGroupOption()
The signature of the NewDropPrivilegeGroupOption()
is as follows:
func NewDropPrivilegeGroupOption(groupName) *dropPrivilegeGroupOption
Parameter | Description | Type |
---|---|---|
| Name of the privilege group 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"
)
privilegeGroupName := "my_privilege_group"
opts := client.NewDropPrivilegeGroupOption(privilegeGroupName)
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")
}
}
callOption := grpc.OnFinish(onFinish)
err := mclient.DropPrivilegeGroup(context.Background(), opts, callOpts)