Server

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 +
<pre style="color:red">Needs description of the PUT and DELETE methods</pre>
 +
 
This operation will return details of a single server.
 
This operation will return details of a single server.
  
Line 9: Line 11:
 
== Result ==
 
== Result ==
 
=== JSON ===
 
=== JSON ===
 
 
<big><source lang="javascript">
 
<big><source lang="javascript">
 
{
 
{
Line 15: Line 16:
 
       "status":"ACTIVE",
 
       "status":"ACTIVE",
 
       "updated":null,
 
       "updated":null,
       "hostId":"host012-aus01.hyperv.hostway",
+
       "hostId":"{host_id}",
 
       "addresses":{
 
       "addresses":{
 
         "public":[
 
         "public":[
 
             {
 
             {
 
               "version":4,
 
               "version":4,
               "addr":"216.185.158.89"
+
               "addr":"{ip_address}"
 
             }
 
             }
 
         ],
 
         ],
Line 26: Line 27:
 
             {
 
             {
 
               "version":4,
 
               "version":4,
               "addr":"172.16.2.143"
+
               "addr":"{ip_address}"
 
             }
 
             }
 
         ]
 
         ]
Line 32: Line 33:
 
       "links":[
 
       "links":[
 
         {
 
         {
             "href":"http://127.0.0.1:6543/servers/michalski275226-AUS001-0005/",
+
             "href":"http://{server_name}/servers/{server_id}/",
 
             "rel":"self"
 
             "rel":"self"
 
         }
 
         }
Line 40: Line 41:
 
         "links":[
 
         "links":[
 
             {
 
             {
               "href":"http://127.0.0.1:6543/images/20GB_Ubuntu%2010.10%20x64%20R1soft/",
+
               "href":"http://{server_name}/images/20GB_Ubuntu%2010.10%20x64%20R1soft/",
 
               "rel":"self"
 
               "rel":"self"
 
             }
 
             }
Line 46: Line 47:
 
         "id":"20GB_Ubuntu 10.10 x64 R1soft"
 
         "id":"20GB_Ubuntu 10.10 x64 R1soft"
 
       },
 
       },
       "userId":"michalski275226",
+
       "userId":"{user_account_id}",
 
       "flavor":{
 
       "flavor":{
 
         "name":"1024MB Server3",
 
         "name":"1024MB Server3",
 
         "links":[
 
         "links":[
 
             {
 
             {
               "href":"http://127.0.0.1:6543/flavors/3/",
+
               "href":"http://{server_name}/flavors/3/",
 
               "rel":"self"
 
               "rel":"self"
 
             }
 
             }
Line 57: Line 58:
 
         "id":3
 
         "id":3
 
       },
 
       },
       "id":"michalski275226-AUS001-0005",
+
       "id":"{server_id}",
       "name":"michalski275226-AUS001-0005",
+
       "name":"{display_server_name}",
 
       "created":"2011-12-05T12:51:28",
 
       "created":"2011-12-05T12:51:28",
 
       "tenantId":null,
 
       "tenantId":null,
       "accessIPv4":"216.185.158.89",
+
       "accessIPv4":"{ip_address}",
 
       "accessIPv6":null,
 
       "accessIPv6":null,
 
       "progress":100,
 
       "progress":100,
Line 89: Line 90:
  
 
; name - ''string''
 
; name - ''string''
: Name for this server.
+
: Descriptive name for this server.
  
 
; created - ''string''
 
; created - ''string''
Line 144: Line 145:
 
; flavor.id - ''string''
 
; flavor.id - ''string''
 
: Unique identifier for flavor this server is based on.
 
: Unique identifier for flavor this server is based on.
 +
 +
== Response Codes ==
 +
; Success:OK (200)
 +
 +
; Failure:
 +
-Unauthorized (401) : 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.
 +
-ItemNotFound (404) : The resource requested is not found.
 +
 +
 +
== Examples ==
 +
'''GET {server_name}/servers/{server_id}'''
 +
 +
''- Request Headers:''
 +
    Content-Type:application/json
 +
    Charset=UTF-8
 +
    Authorization:Base64-encoded username & password string
 +
 +
''- Response:''
 +
''OK (200)'':
 +
{
 +
    "server": {
 +
      "status": "ACTIVE",
 +
      "updated": null,
 +
      "hostId": "hyperv05.vplex.net",
 +
      "addresses": {
 +
          "public": [{
 +
            "version": 4,
 +
            "addr": "{ip_address}"}],
 +
          "private": [{
 +
              "version": 4,
 +
              "addr":  "{ip_address}"}]},
 +
      "links": [{
 +
          "href": "<nowiki>http://{server_name}/servers/{server_id}/</nowiki>",
 +
          "rel": "self"}],
 +
      "image": {
 +
          "name": "CentOS 5 Plesk",
 +
          "links": [{"href": "<nowiki>http://{server_name}/images/Centos%205%20x86%20Plesk/</nowiki>", "rel": "self"}],
 +
          "id": "Centos 5 x86 Plesk" },
 +
      "userId": "{user_account_id}",
 +
      "flavor":  {"name": "", "links": [], "id": ""},
 +
      "id": "{server_id}",
 +
      "name": "{display_server_name}",
 +
      "created": "2011-11-25T12:16:47",
 +
      "tenantId": null,
 +
      "accessIPv4": "{ip_address}",
 +
      "accessIPv6": null,
 +
      "progress": 100,
 +
      "metadata": {}
 +
  }
 +
}
 +
 +
* When a server is still pending (has not completed the provisioning process), the creation timestamp and hostId that are returned will be empty string.
 +
 +
 +
''- Response:''
 +
''Unauthorized (401)'':
 +
    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.
 +
 +
''- Response:''
 +
''ItemNotFound (404)'':
 +
    {"itemNotFound": {"message": "Resource not found", "code": 404, "details": ""}}
 +
  
 
<!--  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 19:46, 12 April 2012

Needs description of the PUT and DELETE methods

This operation will return details of a single server.

GET /servers/id

Contents

Parameters

id - string
Id of the server to get.

Result

JSON

{
   "server":{
      "status":"ACTIVE",
      "updated":null,
      "hostId":"{host_id}",
      "addresses":{
         "public":[
            {
               "version":4,
               "addr":"{ip_address}"
            }
         ],
         "private":[
            {
               "version":4,
               "addr":"{ip_address}"
            }
         ]
      },
      "links":[
         {
            "href":"http://{server_name}/servers/{server_id}/",
            "rel":"self"
         }
      ],
      "image":{
         "name":"Ubuntu 10.10 x64",
         "links":[
            {
               "href":"http://{server_name}/images/20GB_Ubuntu%2010.10%20x64%20R1soft/",
               "rel":"self"
            }
         ],
         "id":"20GB_Ubuntu 10.10 x64 R1soft"
      },
      "userId":"{user_account_id}",
      "flavor":{
         "name":"1024MB Server3",
         "links":[
            {
               "href":"http://{server_name}/flavors/3/",
               "rel":"self"
            }
         ],
         "id":3
      },
      "id":"{server_id}",
      "name":"{display_server_name}",
      "created":"2011-12-05T12:51:28",
      "tenantId":null,
      "accessIPv4":"{ip_address}",
      "accessIPv6":null,
      "progress":100,
      "metadata":{
 
      }
   }
}


server

id - string
Unique identifier for this server.
links - list
Hypermedia for this resource.
status - string
Current state of the server. Values: BUILD, ACTIVE, SUSPENDED, DELETED, UNKNOWN
hostId - string
Id of the physical host this virtual machine is running on.
userId - string
Unique identifier for the owner of this server.
name - string
Descriptive name for this server.
created - string
The date and time this server was created. ISO 8601 format, YYYY-MM-DDTHH:MM:SS.
accessIPv4 - string
The default included public IPv4 address.
progress - number
The progress of the current this server while in the BUILD status. The value is in the range of 0 - 100, but currently will only even be 0, 50, 100.
metadata - object
Unused always an empty object.
tenantId
Unused always always null.
accessIPv6
Unused always null.
updated
Unused always null.

addresses

addresses.public.version - number
IP version of this address. Values: 4
addresses.public.addr = string
Public IP address of this server
addresses.private.version - number
IP version of this address. Values: 4
addresses.private.addr - string
Private IP address of this server

image

image.name - string
The display name of the image this server is based on.
image.links - list
Hypermedia for the image.
image.id - string
Unique identifier for image this server is based on.

flavor

flavor.name - string
The display name of the flavor this server is based on.
flavor.links - list
Hypermedia for the flavor.
flavor.id - string
Unique identifier for flavor this server is based on.

Response Codes

Success
OK (200)
Failure

-Unauthorized (401) : 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. -ItemNotFound (404) : The resource requested is not found.


Examples

GET {server_name}/servers/{server_id}

- Request Headers:

   Content-Type:application/json
   Charset=UTF-8
   Authorization:Base64-encoded username & password string

- Response: OK (200):

{
   "server": {
      "status": "ACTIVE", 
      "updated": null, 
      "hostId": "hyperv05.vplex.net", 
      "addresses": {
         "public": [{
            "version": 4, 
            "addr": "{ip_address}"}], 
         "private": [{
             "version": 4, 
             "addr":  "{ip_address}"}]}, 
      "links": [{
          "href": "http://{server_name}/servers/{server_id}/", 
          "rel": "self"}], 
      "image": {
          "name": "CentOS 5 Plesk", 
          "links": [{"href": "http://{server_name}/images/Centos%205%20x86%20Plesk/", "rel": "self"}], 
          "id": "Centos 5 x86 Plesk" }, 
      "userId": "{user_account_id}", 
      "flavor":  {"name": "", "links": [], "id": ""}, 
      "id": "{server_id}", 
      "name": "{display_server_name}", 
      "created": "2011-11-25T12:16:47", 
      "tenantId": null, 
      "accessIPv4": "{ip_address}", 
      "accessIPv6": null, 
      "progress": 100, 
      "metadata": {}
  }
}
  • When a server is still pending (has not completed the provisioning process), the creation timestamp and hostId that are returned will be empty string.


- Response: Unauthorized (401):

    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.

- Response: ItemNotFound (404):

    {"itemNotFound": {"message": "Resource not found", "code": 404, "details": ""}}


blog comments powered by Disqus


Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox