1

有人知道删除附加到 Softlayer CDN 的 CNAME 条目的方法吗?

我们创建了一个对象存储,其中发布了文件。我们已将 CDN 与此对象存储相关联,并添加了一个 CNAME 条目以匹配我们的域。

这工作得很好。CNAME 的 Softlayer 控制台中没有任何痕迹。使用 API,我们可以列出那些使用:

GET "https://$USER:$KEY@api.softlayer.com/rest/v3/SoftLayer_Network_ContentDelivery_Account/$ID/getOriginPullMappingInformation.xml"

但我看不到如何删除 CNAME。

4

1 回答 1

0

使用此方法:

http://sldn.softlayer.com/reference/services/SoftLayer_Network_ContentDelivery_Account/deleteOriginPullRule

例子:

https://api.softlayer.com/rest/v3/SoftLayer_Network_ContentDelivery_Account/$CDNID/deleteOriginPullRule

Method: Post

Payload:
{
  "parameters": ["op840414"]
}

Note: change "op840414" with the id of the CNAME you wish to send to a better life. 

问候

于 2015-11-19T16:02:31.943 回答