ServerActionResize
(Difference between revisions)
Line 10: | Line 10: | ||
<big><source lang="javascript"> | <big><source lang="javascript"> | ||
− | { | + | { |
− | + | "resize" : | |
− | + | { | |
− | + | "flavor": | |
− | + | { | |
− | + | "id":"{flavor_id}" | |
− | } | + | } |
+ | } | ||
+ | } | ||
</source></big> | </source></big> | ||
Line 22: | Line 24: | ||
; id - ''string'' | ; id - ''string'' | ||
: The id is of the flavor to be used. | : The id is of the flavor to be used. | ||
+ | == Response Codes == | ||
+ | ; Success: | ||
+ | :''HTTP/1.1 202 Accepted'' | ||
+ | :The request is accepted for processing. | ||
+ | ; Failure: | ||
+ | :''HTTP/1.1 200 OK Unauthorized'' - This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required. | ||
− | == | + | == Examples == |
+ | '''Successfully resize a server''' | ||
+ | :'''POST''' http(s)://{api_server}/167/action | ||
+ | |||
+ | ''Request Headers:'' | ||
+ | Content-Type:application/json | ||
+ | Charset=UTF-8 | ||
+ | Authorization:Base64-encoded username & password string | ||
+ | |||
+ | ''Request Body:'' | ||
+ | { | ||
+ | "resize" : | ||
+ | { | ||
+ | "flavor": | ||
+ | { | ||
+ | "id":"3" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | ''Response Code:'' | ||
+ | <pre>HTTP/1.1 202 Accepted</pre> | ||
+ | |||
+ | '''Unauthorized access''' | ||
+ | :'''POST''' http(s)://{api_server}/{server_id}/action | ||
+ | |||
+ | ''Request Headers:'' | ||
+ | Content-Type:application/json | ||
+ | Charset=UTF-8 | ||
+ | Authorization:Base64-encoded fake_authentication_string | ||
+ | |||
+ | ''Response Code:'' | ||
+ | <pre>HTTP/1.1 401 Unauthorized</pre> | ||
+ | |||
+ | ''Response Body:'' | ||
+ | 401 Unauthorized | ||
+ | This server could not verify that you are authorized to | ||
+ | access the document you requested. Either you supplied the | ||
+ | wrong credentials (e.g., bad password), or your browser | ||
+ | does not understand how to supply the credentials required. | ||
<!-- THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING--> | <!-- THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING--> |
Revision as of 20:03, 23 April 2012
The resize function changes the Flavor of a server.
POST /servers/id/action
Contents |
Parameters
- id
- The unique identifier of the image to be retrieved. Note see warnings in Hypermedia.
JSON
{ "resize" : { "flavor": { "id":"{flavor_id}" } } }
- id - string
- The id is of the flavor to be used.
Response Codes
- Success
- HTTP/1.1 202 Accepted
- The request is accepted for processing.
- Failure
- HTTP/1.1 200 OK Unauthorized - This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
Examples
Successfully resize a server
- POST http(s)://{api_server}/167/action
Request Headers:
Content-Type:application/json Charset=UTF-8 Authorization:Base64-encoded username & password string
Request Body:
{ "resize" : { "flavor": { "id":"3" } } }
Response Code:
HTTP/1.1 202 Accepted
Unauthorized access
- POST http(s)://{api_server}/{server_id}/action
Request Headers:
Content-Type:application/json Charset=UTF-8 Authorization:Base64-encoded fake_authentication_string
Response Code:
HTTP/1.1 401 Unauthorized
Response Body:
401 Unauthorized This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.