Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 1 | // TODO(sfalvo): Remove Rackspace-specific Server structure fields and refactor them into a provider-specific access method. |
| 2 | // Be sure to update godocs accordingly. |
| 3 | |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 4 | package gophercloud |
| 5 | |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 6 | import ( |
| 7 | "github.com/racker/perigee" |
Samuel A. Falvo II | 5c305e1 | 2013-07-25 19:19:43 -0700 | [diff] [blame] | 8 | "fmt" |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 9 | ) |
| 10 | |
Samuel A. Falvo II | 1dd740a | 2013-07-08 15:48:40 -0700 | [diff] [blame] | 11 | // genericServersProvider structures provide the implementation for generic OpenStack-compatible |
| 12 | // CloudServersProvider interfaces. |
| 13 | type genericServersProvider struct { |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 14 | // endpoint refers to the provider's API endpoint base URL. This will be used to construct |
| 15 | // and issue queries. |
| 16 | endpoint string |
| 17 | |
| 18 | // Test context (if any) in which to issue requests. |
| 19 | context *Context |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 20 | |
| 21 | // access associates this API provider with a set of credentials, |
| 22 | // which may be automatically renewed if they near expiration. |
| 23 | access AccessProvider |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 24 | } |
| 25 | |
Samuel A. Falvo II | 1dd740a | 2013-07-08 15:48:40 -0700 | [diff] [blame] | 26 | // See the CloudServersProvider interface for details. |
Samuel A. Falvo II | a0a5584 | 2013-07-24 13:14:17 -0700 | [diff] [blame] | 27 | func (gcp *genericServersProvider) ListServersLinksOnly() ([]Server, error) { |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 28 | var ss []Server |
| 29 | |
Samuel A. Falvo II | 7bd1fba | 2013-07-16 17:30:43 -0700 | [diff] [blame] | 30 | err := gcp.context.WithReauth(gcp.access, func() error { |
| 31 | url := gcp.endpoint + "/servers" |
| 32 | return perigee.Get(url, perigee.Options{ |
| 33 | CustomClient: gcp.context.httpClient, |
| 34 | Results: &struct{ Servers *[]Server }{&ss}, |
| 35 | MoreHeaders: map[string]string{ |
| 36 | "X-Auth-Token": gcp.access.AuthToken(), |
| 37 | }, |
| 38 | }) |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 39 | }) |
| 40 | return ss, err |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Samuel A. Falvo II | 02f5e83 | 2013-07-10 13:52:27 -0700 | [diff] [blame] | 43 | // See the CloudServersProvider interface for details. |
Samuel A. Falvo II | a0a5584 | 2013-07-24 13:14:17 -0700 | [diff] [blame] | 44 | func (gcp *genericServersProvider) ListServers() ([]Server, error) { |
| 45 | var ss []Server |
| 46 | |
| 47 | err := gcp.context.WithReauth(gcp.access, func() error { |
| 48 | url := gcp.endpoint + "/servers/detail" |
| 49 | return perigee.Get(url, perigee.Options{ |
| 50 | CustomClient: gcp.context.httpClient, |
| 51 | Results: &struct{ Servers *[]Server }{&ss}, |
| 52 | MoreHeaders: map[string]string{ |
| 53 | "X-Auth-Token": gcp.access.AuthToken(), |
| 54 | }, |
| 55 | }) |
| 56 | }) |
| 57 | return ss, err |
| 58 | } |
| 59 | |
| 60 | // See the CloudServersProvider interface for details. |
Samuel A. Falvo II | 02f5e83 | 2013-07-10 13:52:27 -0700 | [diff] [blame] | 61 | func (gsp *genericServersProvider) ServerById(id string) (*Server, error) { |
| 62 | var s *Server |
| 63 | |
Samuel A. Falvo II | 7bd1fba | 2013-07-16 17:30:43 -0700 | [diff] [blame] | 64 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 65 | url := gsp.endpoint + "/servers/" + id |
| 66 | return perigee.Get(url, perigee.Options{ |
| 67 | Results: &struct{ Server **Server }{&s}, |
| 68 | MoreHeaders: map[string]string{ |
| 69 | "X-Auth-Token": gsp.access.AuthToken(), |
| 70 | }, |
| 71 | }) |
Samuel A. Falvo II | 02f5e83 | 2013-07-10 13:52:27 -0700 | [diff] [blame] | 72 | }) |
| 73 | return s, err |
| 74 | } |
| 75 | |
Samuel A. Falvo II | e91ff6d | 2013-07-11 15:46:10 -0700 | [diff] [blame] | 76 | // See the CloudServersProvider interface for details. |
| 77 | func (gsp *genericServersProvider) CreateServer(ns NewServer) (*NewServer, error) { |
| 78 | var s *NewServer |
| 79 | |
Samuel A. Falvo II | 7bd1fba | 2013-07-16 17:30:43 -0700 | [diff] [blame] | 80 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 81 | ep := gsp.endpoint + "/servers" |
| 82 | return perigee.Post(ep, perigee.Options{ |
| 83 | ReqBody: &struct { |
| 84 | Server *NewServer `json:"server"` |
| 85 | }{&ns}, |
| 86 | Results: &struct{ Server **NewServer }{&s}, |
| 87 | MoreHeaders: map[string]string{ |
| 88 | "X-Auth-Token": gsp.access.AuthToken(), |
| 89 | }, |
| 90 | OkCodes: []int{202}, |
| 91 | }) |
Samuel A. Falvo II | e91ff6d | 2013-07-11 15:46:10 -0700 | [diff] [blame] | 92 | }) |
Samuel A. Falvo II | 7bd1fba | 2013-07-16 17:30:43 -0700 | [diff] [blame] | 93 | |
Samuel A. Falvo II | e91ff6d | 2013-07-11 15:46:10 -0700 | [diff] [blame] | 94 | return s, err |
| 95 | } |
| 96 | |
Samuel A. Falvo II | 286e4de | 2013-07-12 11:33:31 -0700 | [diff] [blame] | 97 | // See the CloudServersProvider interface for details. |
| 98 | func (gsp *genericServersProvider) DeleteServerById(id string) error { |
Samuel A. Falvo II | 7bd1fba | 2013-07-16 17:30:43 -0700 | [diff] [blame] | 99 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 100 | url := gsp.endpoint + "/servers/" + id |
| 101 | return perigee.Delete(url, perigee.Options{ |
| 102 | MoreHeaders: map[string]string{ |
| 103 | "X-Auth-Token": gsp.access.AuthToken(), |
| 104 | }, |
| 105 | OkCodes: []int{204}, |
| 106 | }) |
Samuel A. Falvo II | 286e4de | 2013-07-12 11:33:31 -0700 | [diff] [blame] | 107 | }) |
| 108 | return err |
| 109 | } |
| 110 | |
Samuel A. Falvo II | 5c305e1 | 2013-07-25 19:19:43 -0700 | [diff] [blame] | 111 | // See the CloudServersProvider interface for details. |
| 112 | func (gsp *genericServersProvider) SetAdminPassword(id, pw string) error { |
| 113 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 114 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 115 | return perigee.Post(url, perigee.Options{ |
| 116 | ReqBody: &struct { |
| 117 | ChangePassword struct { |
| 118 | AdminPass string `json:"adminPass"` |
| 119 | } `json:"changePassword"` |
| 120 | }{ |
| 121 | struct { |
| 122 | AdminPass string `json:"adminPass"` |
| 123 | }{pw}, |
| 124 | }, |
| 125 | OkCodes: []int{202}, |
| 126 | MoreHeaders: map[string]string{ |
| 127 | "X-Auth-Token": gsp.access.AuthToken(), |
| 128 | }, |
| 129 | }) |
| 130 | }) |
| 131 | return err |
| 132 | } |
| 133 | |
Samuel A. Falvo II | 8512e9a | 2013-07-26 22:53:29 -0700 | [diff] [blame] | 134 | // See the CloudServersProvider interface for details. |
| 135 | func (gsp *genericServersProvider) ResizeServer(id, newName, newFlavor, newDiskConfig string) error { |
| 136 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 137 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 138 | rr := ResizeRequest{ |
| 139 | Name: newName, |
| 140 | FlavorRef: newFlavor, |
| 141 | DiskConfig: newDiskConfig, |
| 142 | } |
| 143 | return perigee.Post(url, perigee.Options{ |
| 144 | ReqBody: &struct { |
| 145 | Resize ResizeRequest `json:"resize"` |
| 146 | }{rr}, |
| 147 | OkCodes: []int{202}, |
| 148 | MoreHeaders: map[string]string{ |
| 149 | "X-Auth-Token": gsp.access.AuthToken(), |
| 150 | }, |
| 151 | }) |
| 152 | }) |
| 153 | return err |
| 154 | } |
| 155 | |
| 156 | // See the CloudServersProvider interface for details. |
| 157 | func (gsp *genericServersProvider) RevertResize(id string) error { |
| 158 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 159 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 160 | return perigee.Post(url, perigee.Options{ |
| 161 | ReqBody: &struct { |
| 162 | RevertResize *int `json:"revertResize"` |
| 163 | }{nil}, |
| 164 | OkCodes: []int{202}, |
| 165 | MoreHeaders: map[string]string{ |
| 166 | "X-Auth-Token": gsp.access.AuthToken(), |
| 167 | }, |
| 168 | }) |
| 169 | }) |
| 170 | return err |
| 171 | } |
| 172 | |
| 173 | // See the CloudServersProvider interface for details. |
| 174 | func (gsp *genericServersProvider) ConfirmResize(id string) error { |
| 175 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 176 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 177 | return perigee.Post(url, perigee.Options{ |
| 178 | ReqBody: &struct { |
| 179 | ConfirmResize *int `json:"confirmResize"` |
| 180 | }{nil}, |
| 181 | OkCodes: []int{204}, |
| 182 | MoreHeaders: map[string]string{ |
| 183 | "X-Auth-Token": gsp.access.AuthToken(), |
| 184 | }, |
| 185 | }) |
| 186 | }) |
| 187 | return err |
| 188 | } |
| 189 | |
Samuel A. Falvo II | adbecf9 | 2013-07-30 13:13:59 -0700 | [diff] [blame] | 190 | // See the CloudServersProvider interface for details |
| 191 | func (gsp *genericServersProvider) RebootServer(id string, hard bool) error { |
| 192 | return gsp.context.WithReauth(gsp.access, func() error { |
| 193 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 194 | types := map[bool]string{false: "SOFT", true: "HARD"} |
| 195 | return perigee.Post(url, perigee.Options{ |
| 196 | ReqBody: &struct{ |
| 197 | Reboot struct { |
| 198 | Type string `json:"type"` |
| 199 | } `json:"reboot"` |
| 200 | }{ |
| 201 | struct { |
| 202 | Type string `json:"type"` |
| 203 | }{types[hard]}, |
| 204 | }, |
| 205 | OkCodes: []int{202}, |
| 206 | MoreHeaders: map[string]string{ |
| 207 | "X-Auth-Token": gsp.access.AuthToken(), |
| 208 | }, |
| 209 | }) |
| 210 | }) |
| 211 | } |
| 212 | |
Samuel A. Falvo II | 15da6ab | 2013-07-30 14:02:11 -0700 | [diff] [blame^] | 213 | // See the CloudServersProvider interface for details |
| 214 | func (gsp *genericServersProvider) RescueServer(id string) (string, error) { |
| 215 | var pw *string |
| 216 | |
| 217 | err := gsp.context.WithReauth(gsp.access, func() error { |
| 218 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 219 | return perigee.Post(url, perigee.Options{ |
| 220 | ReqBody: &struct{ |
| 221 | Rescue string `json:"rescue"` |
| 222 | }{"none"}, |
| 223 | MoreHeaders: map[string]string{ |
| 224 | "X-Auth-Token": gsp.access.AuthToken(), |
| 225 | }, |
| 226 | Results: &struct{ |
| 227 | AdminPass **string `json:"adminPass"` |
| 228 | }{&pw}, |
| 229 | }) |
| 230 | }) |
| 231 | return *pw, err |
| 232 | } |
| 233 | |
| 234 | // See the CloudServersProvider interface for details |
| 235 | func (gsp *genericServersProvider) UnrescueServer(id string) error { |
| 236 | return gsp.context.WithReauth(gsp.access, func() error { |
| 237 | url := fmt.Sprintf("%s/servers/%s/action", gsp.endpoint, id) |
| 238 | return perigee.Post(url, perigee.Options{ |
| 239 | ReqBody: &struct{ |
| 240 | Unrescue *int `json:"unrescue"` |
| 241 | }{nil}, |
| 242 | MoreHeaders: map[string]string{ |
| 243 | "X-Auth-Token": gsp.access.AuthToken(), |
| 244 | }, |
| 245 | OkCodes: []int{202}, |
| 246 | }) |
| 247 | }) |
| 248 | } |
| 249 | |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 250 | // RaxBandwidth provides measurement of server bandwidth consumed over a given audit interval. |
| 251 | type RaxBandwidth struct { |
| 252 | AuditPeriodEnd string `json:"audit_period_end"` |
| 253 | AuditPeriodStart string `json:"audit_period_start"` |
| 254 | BandwidthInbound int64 `json:"bandwidth_inbound"` |
| 255 | BandwidthOutbound int64 `json:"bandwidth_outbound"` |
| 256 | Interface string `json:"interface"` |
| 257 | } |
| 258 | |
| 259 | // A VersionedAddress denotes either an IPv4 or IPv6 (depending on version indicated) |
| 260 | // address. |
| 261 | type VersionedAddress struct { |
| 262 | Addr string `json:"addr"` |
| 263 | Version int `json:"version"` |
| 264 | } |
| 265 | |
| 266 | // An AddressSet provides a set of public and private IP addresses for a resource. |
| 267 | // Each address has a version to identify if IPv4 or IPv6. |
| 268 | type AddressSet struct { |
| 269 | Public []VersionedAddress `json:"public"` |
| 270 | Private []VersionedAddress `json:"private"` |
| 271 | } |
| 272 | |
| 273 | // Server records represent (virtual) hardware instances (not configurations) accessible by the user. |
| 274 | // |
| 275 | // The AccessIPv4 / AccessIPv6 fields provides IP addresses for the server in the IPv4 or IPv6 format, respectively. |
| 276 | // |
| 277 | // Addresses provides addresses for any attached isolated networks. |
| 278 | // The version field indicates whether the IP address is version 4 or 6. |
| 279 | // |
| 280 | // Created tells when the server entity was created. |
| 281 | // |
| 282 | // The Flavor field includes the flavor ID and flavor links. |
| 283 | // |
| 284 | // The compute provisioning algorithm has an anti-affinity property that |
| 285 | // attempts to spread customer VMs across hosts. |
| 286 | // Under certain situations, |
| 287 | // VMs from the same customer might be placed on the same host. |
| 288 | // The HostId field represents the host your server runs on and |
| 289 | // can be used to determine this scenario if it is relevant to your application. |
| 290 | // Note that HostId is unique only per account; it is not globally unique. |
| 291 | // |
| 292 | // Id provides the server's unique identifier. |
| 293 | // This field must be treated opaquely. |
| 294 | // |
| 295 | // Image indicates which image is installed on the server. |
| 296 | // |
| 297 | // Links provides one or more means of accessing the server. |
| 298 | // |
| 299 | // Metadata provides a small key-value store for application-specific information. |
| 300 | // |
| 301 | // Name provides a human-readable name for the server. |
| 302 | // |
| 303 | // Progress indicates how far along it is towards being provisioned. |
| 304 | // 100 represents complete, while 0 represents just beginning. |
| 305 | // |
| 306 | // Status provides an indication of what the server's doing at the moment. |
| 307 | // A server will be in ACTIVE state if it's ready for use. |
| 308 | // |
| 309 | // OsDcfDiskConfig indicates the server's boot volume configuration. |
| 310 | // Valid values are: |
| 311 | // AUTO |
| 312 | // ---- |
| 313 | // The server is built with a single partition the size of the target flavor disk. |
| 314 | // The file system is automatically adjusted to fit the entire partition. |
| 315 | // This keeps things simple and automated. |
| 316 | // AUTO is valid only for images and servers with a single partition that use the EXT3 file system. |
| 317 | // This is the default setting for applicable Rackspace base images. |
| 318 | // |
| 319 | // MANUAL |
| 320 | // ------ |
| 321 | // The server is built using whatever partition scheme and file system is in the source image. |
| 322 | // If the target flavor disk is larger, |
| 323 | // the remaining disk space is left unpartitioned. |
| 324 | // This enables images to have non-EXT3 file systems, multiple partitions, and so on, |
| 325 | // and enables you to manage the disk configuration. |
| 326 | // |
| 327 | // RaxBandwidth provides measures of the server's inbound and outbound bandwidth per interface. |
| 328 | // |
| 329 | // OsExtStsPowerState provides an indication of the server's power. |
| 330 | // This field appears to be a set of flag bits: |
| 331 | // |
| 332 | // ... 4 3 2 1 0 |
| 333 | // +--//--+---+---+---+---+ |
| 334 | // | .... | 0 | S | 0 | I | |
| 335 | // +--//--+---+---+---+---+ |
| 336 | // | | |
| 337 | // | +--- 0=Instance is down. |
| 338 | // | 1=Instance is up. |
| 339 | // | |
| 340 | // +----------- 0=Server is switched ON. |
| 341 | // 1=Server is switched OFF. |
| 342 | // (note reverse logic.) |
| 343 | // |
| 344 | // Unused bits should be ignored when read, and written as 0 for future compatibility. |
| 345 | // |
| 346 | // OsExtStsTaskState and OsExtStsVmState work together |
| 347 | // to provide visibility in the provisioning process for the instance. |
| 348 | // Consult Rackspace documentation at |
| 349 | // http://docs.rackspace.com/servers/api/v2/cs-devguide/content/ch_extensions.html#ext_status |
| 350 | // for more details. It's too lengthy to include here. |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 351 | type Server struct { |
Samuel A. Falvo II | bc0d54a | 2013-07-08 14:45:21 -0700 | [diff] [blame] | 352 | AccessIPv4 string `json:"accessIPv4"` |
| 353 | AccessIPv6 string `json:"accessIPv6"` |
| 354 | Addresses AddressSet `json:"addresses"` |
| 355 | Created string `json:"created"` |
| 356 | Flavor FlavorLink `json:"flavor"` |
| 357 | HostId string `json:"hostId"` |
| 358 | Id string `json:"id"` |
| 359 | Image ImageLink `json:"image"` |
| 360 | Links []Link `json:"links"` |
| 361 | Metadata interface{} `json:"metadata"` |
| 362 | Name string `json:"name"` |
| 363 | Progress int `json:"progress"` |
| 364 | Status string `json:"status"` |
| 365 | TenantId string `json:"tenant_id"` |
| 366 | Updated string `json:"updated"` |
| 367 | UserId string `json:"user_id"` |
| 368 | OsDcfDiskConfig string `json:"OS-DCF:diskConfig"` |
| 369 | RaxBandwidth []RaxBandwidth `json:"rax-bandwidth:bandwidth"` |
| 370 | OsExtStsPowerState int `json:"OS-EXT-STS:power_state"` |
| 371 | OsExtStsTaskState string `json:"OS-EXT-STS:task_state"` |
| 372 | OsExtStsVmState string `json:"OS-EXT-STS:vm_state"` |
Samuel A. Falvo II | 2e2b877 | 2013-07-04 15:40:15 -0700 | [diff] [blame] | 373 | } |
Samuel A. Falvo II | e91ff6d | 2013-07-11 15:46:10 -0700 | [diff] [blame] | 374 | |
| 375 | // NewServer structures are used for both requests and responses. |
| 376 | // The fields discussed below are relevent for server-creation purposes. |
| 377 | // |
| 378 | // The Name field contains the desired name of the server. |
| 379 | // Note that (at present) Rackspace permits more than one server with the same name; |
| 380 | // however, software should not depend on this. |
| 381 | // Not only will Rackspace support thank you, so will your own devops engineers. |
| 382 | // A name is required. |
| 383 | // |
| 384 | // The ImageRef field contains the ID of the desired software image to place on the server. |
| 385 | // This ID must be found in the image slice returned by the Images() function. |
| 386 | // This field is required. |
| 387 | // |
| 388 | // The FlavorRef field contains the ID of the server configuration desired for deployment. |
| 389 | // This ID must be found in the flavor slice returned by the Flavors() function. |
| 390 | // This field is required. |
| 391 | // |
| 392 | // For OsDcfDiskConfig, refer to the Image or Server structure documentation. |
| 393 | // This field defaults to "AUTO" if not explicitly provided. |
| 394 | // |
| 395 | // Metadata contains a small key/value association of arbitrary data. |
| 396 | // Neither Rackspace nor OpenStack places significance on this field in any way. |
| 397 | // This field defaults to an empty map if not provided. |
| 398 | // |
| 399 | // Personality specifies the contents of certain files in the server's filesystem. |
| 400 | // The files and their contents are mapped through a slice of FileConfig structures. |
| 401 | // If not provided, all filesystem entities retain their image-specific configuration. |
| 402 | // |
| 403 | // Networks specifies an affinity for the server's various networks and interfaces. |
| 404 | // Networks are identified through UUIDs; see NetworkConfig structure documentation for more details. |
| 405 | // If not provided, network affinity is determined automatically. |
| 406 | // |
| 407 | // The AdminPass field may be used to provide a root- or administrator-password |
| 408 | // during the server provisioning process. |
| 409 | // If not provided, a random password will be automatically generated and returned in this field. |
| 410 | // |
| 411 | // The following fields are intended to be used to communicate certain results about the server being provisioned. |
| 412 | // When attempting to create a new server, these fields MUST not be provided. |
| 413 | // They'll be filled in by the response received from the Rackspace APIs. |
| 414 | // |
| 415 | // The Id field contains the server's unique identifier. |
| 416 | // The identifier's scope is best assumed to be bound by the user's account, unless other arrangements have been made with Rackspace. |
| 417 | // |
| 418 | // Any Links provided are used to refer to the server specifically by URL. |
| 419 | // These links are useful for making additional REST calls not explicitly supported by Gorax. |
| 420 | type NewServer struct { |
| 421 | Name string `json:"name",omitempty` |
| 422 | ImageRef string `json:"imageRef,omitempty"` |
| 423 | FlavorRef string `json:"flavorRef,omitempty"` |
| 424 | Metadata interface{} `json:"metadata,omitempty"` |
| 425 | Personality []FileConfig `json:"personality,omitempty"` |
| 426 | Networks []NetworkConfig `json:"networks,omitempty"` |
| 427 | AdminPass string `json:"adminPass,omitempty"` |
| 428 | Id string `json:"id,omitempty"` |
| 429 | Links []Link `json:"links,omitempty"` |
| 430 | OsDcfDiskConfig string `json:"OS-DCF:diskConfig,omitempty"` |
| 431 | } |
Samuel A. Falvo II | 8512e9a | 2013-07-26 22:53:29 -0700 | [diff] [blame] | 432 | |
| 433 | // ResizeRequest structures are used internally to encode to JSON the parameters required to resize a server instance. |
| 434 | // Client applications will not use this structure (no API accepts an instance of this structure). |
| 435 | // See the Region method ResizeServer() for more details on how to resize a server. |
| 436 | type ResizeRequest struct { |
| 437 | Name string `json:"name,omitempty"` |
| 438 | FlavorRef string `json:"flavorRef"` |
| 439 | DiskConfig string `json:"OS-DCF:diskConfig,omitempty"` |
| 440 | } |