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
|
package allocations
import (
"time"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
type Allocation struct {
// The UUID for the resource.
UUID string `json:"uuid"`
// A list of UUIDs of the nodes that are candidates for this allocation.
CandidateNodes []string `json:"candidate_nodes"`
// The error message for the allocation if it is in the error state, null otherwise.
LastError string `json:"last_error"`
// The unique name of the allocation.
Name string `json:"name"`
// The UUID of the node assigned to the allocation. Will be null if a node is not yet assigned.
NodeUUID string `json:"node_uuid"`
// The current state of the allocation. One of: allocation, active, error
State string `json:"state"`
// The resource class requested for the allocation.
ResourceClass string `json:"resource_class"`
// The list of the traits requested for the allocation.
Traits []string `json:"traits"`
// A set of one or more arbitrary metadata key and value pairs.
Extra map[string]string `json:"extra"`
// The UTC date and time when the resource was created, ISO 8601 format.
CreatedAt time.Time `json:"created_at"`
// The UTC date and time when the resource was updated, ISO 8601 format. May be “null”.
UpdatedAt time.Time `json:"updated_at"`
// A list of relative links. Includes the self and bookmark links.
Links []interface{} `json:"links"`
}
type allocationResult struct {
gophercloud.Result
}
func (r allocationResult) Extract() (*Allocation, error) {
var s Allocation
err := r.ExtractInto(&s)
return &s, err
}
func (r allocationResult) ExtractInto(v interface{}) error {
return r.Result.ExtractIntoStructPtr(v, "")
}
func ExtractAllocationsInto(r pagination.Page, v interface{}) error {
return r.(AllocationPage).Result.ExtractIntoSlicePtr(v, "allocations")
}
// AllocationPage abstracts the raw results of making a List() request against
// the API.
type AllocationPage struct {
pagination.LinkedPageBase
}
// IsEmpty returns true if a page contains no Allocation results.
func (r AllocationPage) IsEmpty() (bool, error) {
if r.StatusCode == 204 {
return true, nil
}
s, err := ExtractAllocations(r)
return len(s) == 0, err
}
// NextPageURL uses the response's embedded link reference to navigate to the
// next page of results.
func (r AllocationPage) NextPageURL() (string, error) {
var s struct {
Links []gophercloud.Link `json:"allocations_links"`
}
err := r.ExtractInto(&s)
if err != nil {
return "", err
}
return gophercloud.ExtractNextURL(s.Links)
}
// ExtractAllocations interprets the results of a single page from a List() call,
// producing a slice of Allocation entities.
func ExtractAllocations(r pagination.Page) ([]Allocation, error) {
var s []Allocation
err := ExtractAllocationsInto(r, &s)
return s, err
}
// GetResult is the response from a Get operation. Call its Extract
// method to interpret it as a Allocation.
type GetResult struct {
allocationResult
}
// CreateResult is the response from a Create operation.
type CreateResult struct {
allocationResult
}
// DeleteResult is the response from a Delete operation. Call its ExtractErr
// method to determine if the call succeeded or failed.
type DeleteResult struct {
gophercloud.ErrResult
}
|