Skip to main content

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

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

ListAliasesOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

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

collectionName

Name of the target collection.

string

Return

[]string

Example

aliases, err := cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_2"))
if err != nil {
// handle error
}
fmt.Println(aliases)