ListAliases()
This method lists all existing aliases associated with the specified collection.
func (c *Client) ListAliases(ctx context.Context, option ListAliasesOption, callOptions ...grpc.CallOption) ([]string, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
ListAliasesOption
This is an interface type. The listAliasesOption
struct type implements this interface type.
You can use the NewListAliasesOption()
function to get the concrete implementation.
NewListAliasesOption
The signature of this method is as follows:
func NewListAliasesOption(collectionName string) *listAliasesOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
Return
[]string
Example
aliases, err := cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_2"))
if err != nil {
// handle error
}
fmt.Println(aliases)