GrantPrivilege()
This method grants a privilege
func (c *Client) GrantPrivilege(ctx context.Context, option GrantPrivilegeOption, 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. |
|
GrantPrivilegeOption
This is an interface type. The grantPrivilegeOption
struct type implements this interface type.
You can use the NewGrantPrivilegeOption()
function to get the concrete implementation.
NewGrantPrivilegeOption
The signature of the NewGrantPrivilegeOption()
is as follows:
func NewGrantPrivilegeOption(roleName, objectType, privilegeName, objectName string) *grantPrivilegeOption
Parameter | Description | Type |
---|---|---|
| Name of the target role of this operation. |
|
| Type of the object on which the specified role can perform operations. Possible values are as follows:
|
|
| Name of the privilege to assign. For details, refer to the Privilege name column in the table on page Users and Roles. |
|
| Name of the target object. For example,
|
|
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
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
cli, err := milvusclient.New(ctx, &milvusclient.ClientConfig{
Address: milvusAddr,
})
if err != nil {
// handle error
}
defer cli.Close(ctx)
readOnlyPrivileges := []*entity.RoleGrants{
{Object: "Global", ObjectName: "*", PrivilegeName: "DescribeCollection"},
{Object: "Global", ObjectName: "*", PrivilegeName: "ShowCollections"},
{Object: "Collection", ObjectName: "quick_setup", PrivilegeName: "Search"},
}
for _, grantItem := range readOnlyPrivileges {
err := cli.GrantPrivilege(ctx, milvusclient.NewGrantPrivilegeOption("my_role", grantItem.Object, grantItem.PrivilegeName, grantItem.ObjectName))
if err != nil {
// handle error
}
}