blob: f7e7b5c4af282ef85a335150fcb0ce41475c4f31 [file] [log] [blame]
Dan Kirkwoodceb84092016-03-01 13:58:34 -07001package quotas
2
3import (
4 "github.com/rackspace/gophercloud"
Dan Kirkwoodceb84092016-03-01 13:58:34 -07005)
6
Dan Kirkwoodceb84092016-03-01 13:58:34 -07007// Get returns public data about a previously created Quota.
Dan Kirkwoodb0688252016-03-07 13:28:50 -07008func Get(client *gophercloud.ServiceClient, tenantID string) GetResult {
Dan Kirkwoodceb84092016-03-01 13:58:34 -07009 var res GetResult
Dan Kirkwoodb0688252016-03-07 13:28:50 -070010 _, res.Err = client.Get(getURL(client, tenantID), &res.Body, nil)
Dan Kirkwoodceb84092016-03-01 13:58:34 -070011 return res
12}