阅读本文,您可以获取 Go SDK 批处理的接口调用示例,实现快速开发。
调用接口前,请先完成 Go SDK 的安装及初始化操作。
本节为您介绍批处理相关接口的功能和调用示例。
您可以调用 GetBatchProcessResult 接口执行批量处理同步操作,一次同步请求支持批量处理最多 1000 个资源。详细的参数说明可参见 GetBatchProcessResult 接口文档。
接口调用示例如下所示。
package imagex_test import ( "context" "encoding/json" "fmt" "testing" "github.com/volcengine/volc-sdk-golang/base" imagex "github.com/volcengine/volc-sdk-golang/service/imagex/v2" ) func Test_GetBatchProcessResult(t *testing.T) { instance := imagex.NewInstance() instance.SetCredential(base.Credentials{ AccessKeyID: "ak", SecretAccessKey: "sk", }) param := &imagex.GetBatchProcessResultReq{ GetBatchProcessResultQuery: &imagex.GetBatchProcessResultQuery{}, GetBatchProcessResultBody: &imagex.GetBatchProcessResultBody{}, } resp, err := instance.GetBatchProcessResult(context.Background(), param) if err != nil { fmt.Printf("error %v", err) } else { t, _ := json.Marshal(resp) fmt.Printf("success %v", string(t)) } }
您可以调用 CreateBatchProcessTask 接口创建批量处理异步任务,单次支持批量处理最多 5000 个资源。详细的参数说明可参见 CreateBatchProcessTask 接口文档。
接口调用示例如下所示。
package imagex_test import ( "context" "encoding/json" "fmt" "testing" "github.com/volcengine/volc-sdk-golang/base" imagex "github.com/volcengine/volc-sdk-golang/service/imagex/v2" ) func Test_CreateBatchProcessTask(t *testing.T) { instance := imagex.NewInstance() instance.SetCredential(base.Credentials{ AccessKeyID: "ak", SecretAccessKey: "sk", }) param := &imagex.CreateBatchProcessTaskReq{ CreateBatchProcessTaskQuery: &imagex.CreateBatchProcessTaskQuery{}, CreateBatchProcessTaskBody: &imagex.CreateBatchProcessTaskBody{}, } resp, err := instance.CreateBatchProcessTask(context.Background(), param) if err != nil { fmt.Printf("error %v", err) } else { t, _ := json.Marshal(resp) fmt.Printf("success %v", string(t)) } }
您可以调用 GetBatchTaskInfo 接口获取异步批处理查询详情。详细的参数说明可参见 GetBatchTaskInfo 接口文档。
接口调用示例如下所示。
package imagex_test import ( "context" "encoding/json" "fmt" "testing" "github.com/volcengine/volc-sdk-golang/base" imagex "github.com/volcengine/volc-sdk-golang/service/imagex/v2" ) func Test_GetBatchTaskInfo(t *testing.T) { instance := imagex.NewInstance() instance.SetCredential(base.Credentials{ AccessKeyID: "ak", SecretAccessKey: "sk", }) param := &imagex.GetBatchTaskInfoQuery{} resp, err := instance.GetBatchTaskInfo(context.Background(), param) if err != nil { fmt.Printf("error %v", err) } else { t, _ := json.Marshal(resp) fmt.Printf("success %v", string(t)) } }