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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
package clusters
import (
"encoding/json"
"time"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
// Cluster represents an OpenStack Clustering cluster.
type Cluster struct {
Config map[string]interface{} `json:"config"`
CreatedAt time.Time `json:"-"`
Data map[string]interface{} `json:"data"`
Dependents map[string]interface{} `json:"dependents"`
DesiredCapacity int `json:"desired_capacity"`
Domain string `json:"domain"`
ID string `json:"id"`
InitAt time.Time `json:"-"`
MaxSize int `json:"max_size"`
Metadata map[string]interface{} `json:"metadata"`
MinSize int `json:"min_size"`
Name string `json:"name"`
Nodes []string `json:"nodes"`
Policies []string `json:"policies"`
ProfileID string `json:"profile_id"`
ProfileName string `json:"profile_name"`
Project string `json:"project"`
Status string `json:"status"`
StatusReason string `json:"status_reason"`
Timeout int `json:"timeout"`
UpdatedAt time.Time `json:"-"`
User string `json:"user"`
}
func (r *Cluster) UnmarshalJSON(b []byte) error {
type tmp Cluster
var s struct {
tmp
CreatedAt string `json:"created_at"`
InitAt string `json:"init_at"`
UpdatedAt string `json:"updated_at"`
}
err := json.Unmarshal(b, &s)
if err != nil {
return err
}
*r = Cluster(s.tmp)
if s.CreatedAt != "" {
r.CreatedAt, err = time.Parse(gophercloud.RFC3339Milli, s.CreatedAt)
if err != nil {
return err
}
}
if s.InitAt != "" {
r.InitAt, err = time.Parse(gophercloud.RFC3339Milli, s.InitAt)
if err != nil {
return err
}
}
if s.UpdatedAt != "" {
r.UpdatedAt, err = time.Parse(gophercloud.RFC3339Milli, s.UpdatedAt)
if err != nil {
return err
}
}
return nil
}
// ClusterPolicy represents and OpenStack Clustering cluster policy.
type ClusterPolicy struct {
ClusterID string `json:"cluster_id"`
ClusterName string `json:"cluster_name"`
Enabled bool `json:"enabled"`
ID string `json:"id"`
PolicyID string `json:"policy_id"`
PolicyName string `json:"policy_name"`
PolicyType string `json:"policy_type"`
}
type ClusterAttributes struct {
ID string `json:"id"`
Value interface{} `json:"value"`
}
// Action represents an OpenStack Clustering action.
type Action struct {
Action string `json:"action"`
}
// commonResult is the response of a base result.
type commonResult struct {
gophercloud.Result
}
// Extract interprets any commonResult-based result as a Cluster.
func (r commonResult) Extract() (*Cluster, error) {
var s struct {
Cluster *Cluster `json:"cluster"`
}
err := r.ExtractInto(&s)
return s.Cluster, err
}
// CreateResult is the response of a Create operations. Call its Extract method
// to interpret it as a Cluster.
type CreateResult struct {
commonResult
}
// GetResult is the response of a Get operations. Call its Extract method to
// interpret it as a Cluster.
type GetResult struct {
commonResult
}
// UpdateResult is the response of a Update operations. Call its Extract method
// to interpret it as a Cluster.
type UpdateResult struct {
commonResult
}
// GetPolicyResult is the response of a Get operations. Call its Extract method
// to interpret it as a ClusterPolicy.
type GetPolicyResult struct {
gophercloud.Result
}
// Extract interprets a GetPolicyResult as a ClusterPolicy.
func (r GetPolicyResult) Extract() (*ClusterPolicy, error) {
var s struct {
ClusterPolicy *ClusterPolicy `json:"cluster_policy"`
}
err := r.ExtractInto(&s)
return s.ClusterPolicy, err
}
// DeleteResult is the result from a Delete operation. Call its ExtractErr
// method to determine if the call succeeded or failed.
type DeleteResult struct {
gophercloud.ErrResult
}
// ClusterPage contains a single page of all clusters from a List call.
type ClusterPage struct {
pagination.LinkedPageBase
}
// IsEmpty determines whether or not a page of Clusters contains any results.
func (page ClusterPage) IsEmpty() (bool, error) {
if page.StatusCode == 204 {
return true, nil
}
clusters, err := ExtractClusters(page)
return len(clusters) == 0, err
}
// ClusterPolicyPage contains a single page of all policies from a List call
type ClusterPolicyPage struct {
pagination.SinglePageBase
}
// IsEmpty determines whether or not a page of ClusterPolicies contains any
// results.
func (page ClusterPolicyPage) IsEmpty() (bool, error) {
if page.StatusCode == 204 {
return true, nil
}
clusterPolicies, err := ExtractClusterPolicies(page)
return len(clusterPolicies) == 0, err
}
// ActionResult is the response of Senlin actions. Call its Extract method to
// obtain the Action ID of the action.
type ActionResult struct {
gophercloud.Result
}
// Extract interprets any Action result as an Action.
func (r ActionResult) Extract() (string, error) {
var s struct {
Action string `json:"action"`
}
err := r.ExtractInto(&s)
return s.Action, err
}
type CollectResult struct {
gophercloud.Result
}
// ExtractClusters returns a slice of Clusters from the List operation.
func ExtractClusters(r pagination.Page) ([]Cluster, error) {
var s struct {
Clusters []Cluster `json:"clusters"`
}
err := (r.(ClusterPage)).ExtractInto(&s)
return s.Clusters, err
}
// ExtractClusterPolicies returns a slice of ClusterPolicies from the
// ListClusterPolicies operation.
func ExtractClusterPolicies(r pagination.Page) ([]ClusterPolicy, error) {
var s struct {
ClusterPolicies []ClusterPolicy `json:"cluster_policies"`
}
err := (r.(ClusterPolicyPage)).ExtractInto(&s)
return s.ClusterPolicies, err
}
// Extract returns collected attributes across a cluster
func (r CollectResult) Extract() ([]ClusterAttributes, error) {
var s struct {
Attributes []ClusterAttributes `json:"cluster_attributes"`
}
err := r.ExtractInto(&s)
return s.Attributes, err
}
|