You need to enable JavaScript to run this app.
导航
DropIndex
最近更新时间:2024.06.14 11:34:51首次发布时间:2024.06.14 11:34:51

概述

DropIndex 用于删除指定数据集 Collection 的指定索引 Index。

请求参数

字段名

类型

是否必传

说明

CollectionName

string

数据集名称

IndexName

string

索引名称

响应参数
declare class VikingdbResponse {
  readonly OriginalRequest: string;
  readonly LogId: string;
  constructor(
    OriginalRequest: string,
    LogId: string
  );
}

参考示例
import { vikingdb } from '@volcengine/openapi'

declare const service: vikingdb.VikingdbService // 替换为你初始化好的实例

await service.index.DropIndex({
  CollectionName: 'test_collection_1',
  IndexName: 'test_index_1',
})