【新增】【部署】新增火山引擎DCDN

This commit is contained in:
wantoper
2025-05-30 11:28:33 +08:00
parent c3a38aa008
commit 414321e3cf
7 changed files with 157 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
package deploy
import (
"fmt"
"testing"
)
func TestVolcEngineDcdnClient_IDCDNCreateCertBindInput(t *testing.T) {
id := "cert-"
domain := "hsdcdn.xxxx.com"
client, _ := ClientVolcEngineDcdn("", "==", "cn-north-1")
err := client.IDCDNCreateCertBindInput(id, domain)
if err != nil {
fmt.Printf("err:%+v", err)
return
}
}