* @throws ch.iterate.openstack.swift.exception.NotFoundException
* The Container has never been CDN enabled
*/
public CDNContainer getCDNContainerInfo(Region region, String container) throws IOException {
HttpHead method = new HttpHead(region.getCDNManagementUrl(container));
return this.execute(method, new CdnContainerInfoHandler(region, container));
}