删除指定镜像站资源下的指定镜像
接口描述
GET
/devtools/ccr/data/v1/subscriptions/{subscriptionName}/resourceGroups/{resourceGroupName}/zones/{zone}/namespaces/{namespaceName}/repositories/{repositoryName}
删除指定镜像站资源下的指定镜像
请求头(Request Header)
请求参数(Request Parameters)
名称 | 类型 | 必须 | 位置 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|---|
subscriptionName | string | 是 | path | - | - | 订阅 |
resourceGroupName | string | 是 | path | - | - | 资源组 |
zone | string | 是 | path | - | - | 可用区 |
namespaceName | string | 是 | path | - | - | 镜像站名称 |
repositoryName | string | 是 | path | - | - | 镜像名称 |
请求体(Request Body)
无
请求示例(Request Example)
curl --request DELETE 'https://ccr.cn-sh-01.sensecoreapi.tech/devtools/ccr/data/v1/subscriptions/9a7ed02e-87ba-44d7-9299-b6ff39d5e018/resourceGroups/default/zones/cn-sh-01z/namespaces/test-0307-2/repositories/helloworld' \
-H 'authority: ccr.cn-sh-01.sensecoreapi.tech' \
-H 'accept: application/json, text/plain, */*' \
响应参数(Response Parameters)
名称 | 类型 | 描述 |
---|---|---|
200 | string | 成功删除镜像 |
default | string | 删除镜像失败 |
其中,default
的参数如下:
名称 | 类型 | 描述 |
---|---|---|
code | integer($int32) | 响应码 |
message | string | 错误信息 |
details | array | 错误详细信息 |
其中,details
的参数如下:
名称 | 类型 | 描述 |
---|---|---|
@type | string | 错误信息的类型 |
其他错误信息 | string | 其他错误信息 |
响应示例(Response Example)
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string",
"additionalProp1": {}
}
]
}