更新元数据索引

最近更新时间:2024-07-09 15:31:32

我的收藏

简介

本文档提供关于更新元数据索引的相关 API 概览以及 SDK 示例代码。
API
操作描述
更新元数据索引

更新元数据索引

功能说明

更新数据集内已索引的一个文件的部分元数据。
并非所有的元数据都允许您自定义更新,在您发起更新请求时需要填写数据集,默认会根据该数据集的算子进行元数据重新提取并更新已存在的索引,此外您也可以更新部分自定义的元数据索引,如CustomTags、CustomId等字段,具体请参考请求参数一节。

参数说明

请求参数,具体可查看 更新元数据索引 文档。

方法原型

func (s *MetaInsightService) UpdateFileMetaIndex(ctx context.Context, opt *UpdateFileMetaIndex) (*UpdateFileMetaIndexResult, *Response, error)

请求示例

// 存储桶名称,由 bucketname-appid 组成,appid 必须填入,可以在 COS 控制台查看存储桶名称。 https://console.cloud.tencent.com/cos5/bucket
// 替换为用户的 region,存储桶 region 可以在 COS 控制台“存储桶概览”查看 https://console.cloud.tencent.com/ ,关于地域的详情见 https://cloud.tencent.com/document/product/436/6224 。
u, _ := url.Parse("https://test1-1250000000.cos.ap-beijing.myqcloud.com")
metaInsight, _ := url.Parse("https://1250000000.ci.ap-beijing.myqcloud.com")
b := &cos.BaseURL{BucketURL: u, MetaInsightURL: metaInsight}
c := cos.NewClient(b, &http.Client{
Transport: &cos.AuthorizationTransport{
// 通过环境变量获取密钥
// 环境变量 SECRETID 表示用户的 SecretId,登录访问管理控制台查看密钥,https://console.cloud.tencent.com/cam/capi
SecretID: os.Getenv("SECRETID"),
SecretKey: os.Getenv("SECRETKEY"),
},
})

opt := &cos.UpdateFileMetaIndexOptions{
DatasetName: "notdelete",
File: &cos.File {
URI: "cos://0-c-1250000000/2022/123",
CustomLabels: &map[string]string{
"age": "18",
"level": "18",
},
MediaType: "video",
ContentType: "video/gif",
},
}


res, _, err := c.MetaInsight.UpdateFileMetaIndex(context.Background(), opt)
if err != nil {
fmt.Println(err)
}
fmt.Println(res)

结果说明

调用 UpdateFileMetaIndex 函数,会解析 api 返回的 json 内容到 UpdateFileMetaIndexResult 结构,具体返回参数可查看 更新元数据索引 文档。