open-nomad/vendor/github.com/nicolai86/scaleway-sdk/quota.go
Seth Hoenig 435c0d9fc8 deps: Switch to Go modules for dependency management
This PR switches the Nomad repository from using govendor to Go modules
for managing dependencies. Aspects of the Nomad workflow remain pretty
much the same. The usual Makefile targets should continue to work as
they always did. The API submodule simply defers to the parent Nomad
version on the repository, keeping the semantics of API versioning that
currently exists.
2020-06-02 14:30:36 -05:00

37 lines
767 B
Go

package api
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
)
// Quota represents a map of quota (name, value)
type Quotas map[string]int
// GetQuotas represents the response of GET /organizations/{orga_id}/quotas
type GetQuotas struct {
Quotas Quotas `json:"quotas"`
}
// GetQuotas returns a GetQuotas
func (s *API) GetQuotas() (Quotas, error) {
resp, err := s.GetResponsePaginate(AccountAPI, fmt.Sprintf("organizations/%s/quotas", s.Organization), url.Values{})
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := s.handleHTTPError([]int{http.StatusOK}, resp)
if err != nil {
return nil, err
}
var quotas GetQuotas
if err = json.Unmarshal(body, &quotas); err != nil {
return nil, err
}
return quotas.Quotas, nil
}