1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
package limits
import (
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
// A model describing the configured enforcement model used by the deployment.
type EnforcementModel struct {
// The name of the enforcement model.
Name string `json:"name"`
// A short description of the enforcement model used.
Description string `json:"description"`
}
// EnforcementModelResult is the response from a GetEnforcementModel operation. Call its Extract method
// to interpret it as a EnforcementModel.
type EnforcementModelResult struct {
gophercloud.Result
}
// Extract interprets EnforcementModelResult as a EnforcementModel.
func (r EnforcementModelResult) Extract() (*EnforcementModel, error) {
var out struct {
Model *EnforcementModel `json:"model"`
}
err := r.ExtractInto(&out)
return out.Model, err
}
// A limit is the limit that override the registered limit for each project.
type Limit struct {
// ID is the unique ID of the limit.
ID string `json:"id"`
// RegionID is the ID of the region where the limit is applied.
RegionID string `json:"region_id"`
// ProjectID is the ID of the project where the limit is applied.
ProjectID string `json:"project_id"`
// DomainID is the ID of the domain where the limit is applied.
DomainID string `json:"domain_id"`
// ServiceID is the ID of the service where the limit is applied.
ServiceID string `json:"service_id"`
// Description of the limit.
Description string `json:"description"`
// ResourceName is the name of the resource that the limit is applied to.
ResourceName string `json:"resource_name"`
// ResourceLimit is the override limit.
ResourceLimit int `json:"resource_limit"`
// Links contains referencing links to the limit.
Links map[string]interface{} `json:"links"`
}
// A LimitsOutput is an array of limits returned by List and BatchCreate operations
type LimitsOutput struct {
Limits []Limit `json:"limits"`
}
// A LimitOutput is an encapsulated Limit returned by Get and Update operations
type LimitOutput struct {
Limit *Limit `json:"limit"`
}
// LimitPage is a single page of Limit results.
type LimitPage struct {
pagination.LinkedPageBase
}
// CreateResult is the response from a Create operation. Call its Extract method
// to interpret it as a Limits.
type CreateResult struct {
gophercloud.Result
}
type commonResult struct {
gophercloud.Result
}
// GetResult is the response from a Get operation. Call its Extract method
// to interpret it as a Limit.
type GetResult struct {
commonResult
}
// UpdateResult is the result of an Update request. Call its Extract method to
// interpret it as a Limit.
type UpdateResult struct {
commonResult
}
// DeleteResult is the response from a Delete operation. Call its ExtractErr to
// determine if the request succeeded or failed.
type DeleteResult struct {
gophercloud.ErrResult
}
// IsEmpty determines whether or not a page of Limits contains any results.
func (r LimitPage) IsEmpty() (bool, error) {
if r.StatusCode == 204 {
return true, nil
}
limits, err := ExtractLimits(r)
return len(limits) == 0, err
}
// NextPageURL extracts the "next" link from the links section of the result.
func (r LimitPage) NextPageURL() (string, error) {
var s struct {
Links struct {
Next string `json:"next"`
Previous string `json:"previous"`
} `json:"links"`
}
err := r.ExtractInto(&s)
if err != nil {
return "", err
}
return s.Links.Next, err
}
// ExtractLimits returns a slice of Limits contained in a single page of
// results.
func ExtractLimits(r pagination.Page) ([]Limit, error) {
var out LimitsOutput
err := (r.(LimitPage)).ExtractInto(&out)
return out.Limits, err
}
// Extract interprets CreateResult as slice of Limits.
func (r CreateResult) Extract() ([]Limit, error) {
var out LimitsOutput
err := r.ExtractInto(&out)
return out.Limits, err
}
// Extract interprets any commonResult as a Limit.
func (r commonResult) Extract() (*Limit, error) {
var out LimitOutput
err := r.ExtractInto(&out)
return out.Limit, err
}
|