remove all but Get action
diff --git a/openstack/compute/v2/extensions/quota/requests.go b/openstack/compute/v2/extensions/quota/requests.go
index 7c3de24..f7e7b5c 100644
--- a/openstack/compute/v2/extensions/quota/requests.go
+++ b/openstack/compute/v2/extensions/quota/requests.go
@@ -2,18 +2,11 @@
import (
"github.com/rackspace/gophercloud"
- "github.com/rackspace/gophercloud/pagination"
)
-func List(client *gophercloud.ServiceClient) pagination.Pager {
- return pagination.NewPager(client, listURL(client), func(r pagination.PageResult) pagination.Page {
- return QuotaPage{pagination.SinglePageBase(r)}
- })
-}
-
// Get returns public data about a previously created Quota.
-func Get(client *gophercloud.ServiceClient, name string) GetResult {
+func Get(client *gophercloud.ServiceClient, tenantID string) GetResult {
var res GetResult
- _, res.Err = client.Get(getURL(client, name), &res.Body, nil)
+ _, res.Err = client.Get(getURL(client, tenantID), &res.Body, nil)
return res
}