OperatePrivilegeGroup()
This method operates a privilege group, such as adding or removing privileges.
func (c *Client) OperatePrivilegeGroup(ctx context.Context, option OperatePrivilegeGroupOption, 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. |
|
CreatePrivilegeGroupOption
This is an interface type. The operatePrivilegeGroupOption
struct type implements this interface type.
You can use the NewOperatePrivilegeGroupOption()
function to get the concrete implementation.
NewOperatePrivilegeGroupOption()
The signature of the NewCreatePrivilegeGroupOption()
is as follows:
func NewOperatePrivilegeGroupOption(groupName string, privileges []*milvuspb.PrivilegeEntity, operateType milvuspb.OperatePrivilegeGroupType) *operatePrivilegeGroupOption
Parameter | Description | Type |
---|---|---|
| Name of the privilege group to operate on. |
|
| Names of the target privileges. |
|
| Name of the operation type. |
|
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.NewCreatePrivilegeGroupOption(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.CreatePrivilegeGroup(context.Background(), opts, callOpts)