Adding remaining cert operations
diff --git a/rackspace/lb/v1/ssl/urls.go b/rackspace/lb/v1/ssl/urls.go
index f78a8ac..aa814b3 100644
--- a/rackspace/lb/v1/ssl/urls.go
+++ b/rackspace/lb/v1/ssl/urls.go
@@ -19,3 +19,7 @@
 func certURL(c *gophercloud.ServiceClient, id int) string {
 	return c.ServiceURL(path, strconv.Itoa(id), sslPath, certPath)
 }
+
+func certResourceURL(c *gophercloud.ServiceClient, id, certID int) string {
+	return c.ServiceURL(path, strconv.Itoa(id), sslPath, certPath, strconv.Itoa(certID))
+}