Delegates for instance actions
diff --git a/rackspace/db/v1/instances/delegate.go b/rackspace/db/v1/instances/delegate.go
index 47f7fb2..aac9128 100644
--- a/rackspace/db/v1/instances/delegate.go
+++ b/rackspace/db/v1/instances/delegate.go
@@ -112,3 +112,19 @@
 func EnableRootUser(client *gophercloud.ServiceClient, id string) os.UserRootResult {
 	return os.EnableRootUser(client, id)
 }
+
+func IsRootEnabled(client *gophercloud.ServiceClient, id string) (bool, error) {
+	return os.IsRootEnabled(client, id)
+}
+
+func RestartService(client *gophercloud.ServiceClient, id string) os.ActionResult {
+	return os.RestartService(client, id)
+}
+
+func ResizeInstance(client *gophercloud.ServiceClient, id, flavorRef string) os.ActionResult {
+	return os.ResizeInstance(client, id, flavorRef)
+}
+
+func ResizeVolume(client *gophercloud.ServiceClient, id string, size int) os.ActionResult {
+	return os.ResizeVolume(client, id, size)
+}