UpdatePassword()
This method updates the password for an existing user.
func (c *Client) UpdatePassword(ctx context.Context, opt UpdatePasswordOption, 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. |
|
UpdatePasswordOption
This is an interface type. The updatePasswordOption
struct type implements this interface type.
You can use the NewUpdatePasswordOption()
function to get the concrete implementation.
NewUpdatePasswordOption
The signature of the NewUpdatePasswordOption()
is as follows:
func NewUpdatePasswordOption(userName, oldPassword, newPassword string) *updatePasswordOption
Parameter | Description | Type |
---|---|---|
| Name of the user whose password is to be updated. |
|
| The old password of the user. |
|
| The new Password of the user to create. |
|
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"
oldpass := "p@ssw0rd"
newpass := "p@ssw1rd"
opts := client.NewUpdatePasswordOption(userName, oldpass, newpass)
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.UpdatePassword(context.Background(), opts, callOpts)