Skip to main content

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

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

OperatePrivilegeGroupOption

callOptions

Optional parameters for calling the methods.

grpc.CallOption

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

groupName

Name of the privilege group to operate on.

string

privileges

Names of the target privileges.

[]*milvuspb.PrivilegeEntity

operateType

Name of the operation type.

milvuspb.OperatePrivilegeGroupType

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)