diff --git a/internal/namespaces/rdb/v1/rdb_cli.go b/internal/namespaces/rdb/v1/rdb_cli.go index e9d423d788..75b6a47830 100644 --- a/internal/namespaces/rdb/v1/rdb_cli.go +++ b/internal/namespaces/rdb/v1/rdb_cli.go @@ -594,6 +594,38 @@ func rdbInstanceList() *core.Command { return resp.Instances, nil }, + View: &core.View{Fields: []*core.ViewField{ + { + FieldName: "ID", + }, + { + FieldName: "Name", + }, + { + FieldName: "NodeType", + }, + { + FieldName: "Status", + }, + { + FieldName: "Engine", + }, + { + FieldName: "Region", + }, + { + FieldName: "Tags", + }, + { + FieldName: "IsHaCluster", + }, + { + FieldName: "BackupSchedule", + }, + { + FieldName: "CreatedAt", + }, + }}, } }