GPU服务API文档
团队管理
删除团队

DeleteCompShareTeam — 删除团队

接口说明

删除指定团队。仅团队管理员可删除,需先移除所有成员。

使用限制

  • 仅团队管理员可操作。
  • 需先移除团队中的所有成员后才可删除。

请求参数

名称类型必填描述示例值
ActionString接口名称DeleteCompShareTeam
RegionString地域cn-wlcb
TeamIdUint32团队 ID1001

响应参数

名称类型描述示例值
ActionString响应名称DeleteCompShareTeamResponse
RetCodeInteger返回码,0 为成功0

请求示例

Python(使用 UCloud SDK)

安装 SDK:

pip install --upgrade ucloud-sdk-python3

示例代码:

from ucloud.core import exc
from ucloud.client import Client
 
 
def main():
    client = Client({
        "region": "cn-wlcb",
        "public_key": "my_public_key",    # 替换为你的公钥,从 https://console.compshare.cn/uaccount/api_manage 获取
        "private_key": "my_private_key",   # 替换为你的私钥
        "base_url": "https://api.compshare.cn",
    })
 
    try:
        resp = client.ucompshare().delete_comp_share_team({
            "TeamId": 1001,
        })
        print("删除成功")
    except exc.UCloudException as e:
        print(e)
 
 
if __name__ == "__main__":
    main()

Go(使用 UCloud SDK)

安装依赖:

go get github.com/ucloud/ucloud-sdk-go

示例代码:

package main
 
import (
	"fmt"
 
	"github.com/ucloud/ucloud-sdk-go/services/ucompshare"
	"github.com/ucloud/ucloud-sdk-go/ucloud"
	"github.com/ucloud/ucloud-sdk-go/ucloud/auth"
)
 
func main() {
	cfg := ucloud.NewConfig()
	cfg.Region = "cn-wlcb"
	cfg.BaseUrl = "https://api.compshare.cn"
 
	credential := auth.NewCredential()
	credential.PublicKey = "my_public_key"   // 替换为你的公钥,从 https://console.compshare.cn/uaccount/api_manage 获取
	credential.PrivateKey = "my_private_key" // 替换为你的私钥
	client := ucompshare.NewClient(&cfg, &credential)
 
	req := client.NewDeleteCompShareTeamRequest()
	req.TeamId = ucloud.Uint(1001)
 
	_, err := client.DeleteCompShareTeam(req)
	if err != nil {
		fmt.Printf("删除失败: %s\n", err)
		return
	}
	fmt.Println("删除成功")
}

响应示例

{
  "Action": "DeleteCompShareTeamResponse",
  "RetCode": 0
}
Copyright © 2026 沪ICP备12020087号-61