DescribeDatabase()
This method returns information about a specific database in detail.
func (c *Client) DescribeDatabase(ctx context.Context, option DescribeDatabaseOption, callOptions ...grpc.CallOption) (*entity.Database, error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
DescribeDatabaseOption
This is an interface type. The describeDatabaseOption
struct type implements this interface type.
You can use the NewDescribeDatabaseOption()
function to get the concrete implementation.
NewDescribeDatabaseOption
The signature of this method is as follows:
func NewDescribeDatabaseOption(dbName string) *describeDatabaseOption
Parameter | Description | Type |
---|---|---|
| Name of the database to describe. |
|
entity.Database
The entity.Database
struct type is as follows:
type Database struct {
Name string
Properties map[string]string
}
Return
*entity.Database
Example
db, err := cli.DescribeDatabase(ctx, milvusclient.NewDescribeDatabaseOption(dbName))
if err != nil {
// handle err
}
log.Println(db)