ImageListDetails

From Hostway API Documentation
(Difference between revisions)
Jump to: navigation, search
m (1 revision: Release 86)
 
(13 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
= GET /accounts/''{accountId}''/flexcloud/images/detail?name=''{imageName}''&status=''{imageStatus}''&type=''{imageType}''&zone=''{zoneId}'' =
 
This operation will list all images including their details.
 
This operation will list all images including their details.
 +
__TOC__
 +
== Request ==
 +
<code>GET /accounts/''{accountId}''/flexcloud/images/detail?name=''{imageName}''&status=''{imageStatus}''&type=''{imageType}''&zone=''{zoneId}''</code>
  
'''GET''' /images/detail
+
=== URI Parameters ===
 +
; accountId - ''string''
 +
: The ID of the selected account.
  
== Parameters ==
+
; name - ''string''
 +
: ''Optional'' image name to search for.
  
== Result ==
+
; status - ''string''
=== JSON ===
+
: ''Optional'' Image status to search for. Values: '''ACTIVE''', '''SAVING''', '''DELETED'''.
  
 +
; type - ''string''
 +
: ''Optional'' type of the image to search for. Values: '''BASE''', '''SERVER'''.
  
<big><source lang="javascript">
+
; zone - ''string''
{
+
: ''Optional'' the Zone where the image is available.
  "images":[
+
      {
+
        "status":"ACTIVE",
+
        "updated":null,
+
        "name":"debian",
+
        "links":[
+
            {
+
              "href":"http://127.0.0.1:6543/images/debian_lenny_template/",
+
              "rel":"self"
+
            },
+
            {
+
              "href":"http://127.0.0.1:6543/images/debian_lenny_template/",
+
              "rel":"bookmark"
+
            }
+
        ],
+
        "created":"2011-09-30T02:38:57",
+
        "id":"debian_lenny_template"
+
      },
+
      {
+
        "status":"SAVING",
+
        "updated":null,
+
        "name":"test by shimde",
+
        "links":[
+
            {
+
              "href":"http://127.0.0.1:6543/images/vmi2011Dec26_2C7D8Dbur/",
+
              "rel":"self"
+
            },
+
            {
+
              "href":"http://127.0.0.1:6543/images/vmi2011Dec26_2C7D8Dbur/",
+
              "rel":"bookmark"
+
            }
+
        ],
+
        "created":"2011-12-27T02:59:27",
+
        "id":"vmi2011Dec26_2C7D8Dbur"
+
      }
+
  ]
+
}
+
</source></big>
+
  
 +
== Response ==
  
 +
=== Status Code ===
 +
; 200 OK
 +
: Success
 +
 +
; 401 Unauthorized
 +
: Failure - 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.
 +
 +
; 404 Not Found
 +
: Failure - The Resource was not found
 +
 +
=== Response Body ===
 +
<nowiki>
 +
{
 +
  "images":[
 +
    {
 +
      "status":"{status}",
 +
      "updated":null,
 +
      "name":"{display_image_name}",
 +
      "links":[
 +
        {"href":"</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"self"},
 +
        {"href":"</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"bookmark"}
 +
      ],
 +
      "created":"yyyy-mm-ddThh:mm:ss",
 +
      "id":"{image_id}",
 +
      "zones": ["{zone_id}"]
 +
    },
 +
    {
 +
      "status":"{status}",
 +
      "updated":null,
 +
      "name":"{display_image_name}",
 +
      "links":[
 +
        {"href":"</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"self"},
 +
        {"href":"</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"bookmark"}
 +
      ],
 +
      "created":"yyyy-mm-ddThh:mm:ss",
 +
      "id":"{image_id}",
 +
      "zones": ["{zone_id_1}", "{zone_id_2}"]
 +
    }
 +
  ]
 +
}</nowiki>
 +
 +
==== Parameters ====
 
; id - ''string''
 
; id - ''string''
 
: Unique identifier for this image.
 
: Unique identifier for this image.
Line 58: Line 72:
  
 
; name - ''string''
 
; name - ''string''
: Descriptive name for this image.
+
: Display name for this image.
  
 
; status - ''string''
 
; status - ''string''
 
: Current state of this image. Valid values are ACTIVE, SAVING, DELETED.
 
: Current state of this image. Valid values are ACTIVE, SAVING, DELETED.
: '''ACTIVE''' - Image is ready to be used.
+
:: '''ACTIVE''' - Image is ready to be used.
: '''SAVING''' - Image is being uploaded or saved from a running [[Server]] instance.
+
:: '''SAVING''' - Image is being uploaded or saved from a running [[Server]] instance.
: '''DELETED''' - Image was recently deleted or is in the process of being deleted.
+
:: '''DELETED''' - Image was recently deleted or is in the process of being deleted.
  
 
; created - ''string''
 
; created - ''string''
Line 72: Line 86:
 
: Unused always null.
 
: Unused always null.
  
<!--  THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING-->
+
; zones
 +
: Zones where the image is available.
 +
 
 +
== Examples ==
 +
 
 +
=== Successfully list image details ===
 +
'''Request'''
 +
<nowiki>
 +
GET /accounts/{accountId}/flexcloud/images/detail
 +
Authorization: Basic {Base64-encoded username:password string} </nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
200 OK
 +
 
 +
{
 +
  "images": [
 +
    {
 +
      "status": "ACTIVE",
 +
      "updated": null,
 +
      "name": "test_public_image",
 +
      "links": [
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/123/", "rel": "self"},
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/123/", "rel": "bookmark"}
 +
      ],
 +
      "created": "2011-11-09T03:19:48",
 +
      "id": "123",
 +
      "zones": ["AUS001"]
 +
    },
 +
    {
 +
      "status": "SAVING",
 +
      "updated": null,
 +
      "name": "test_debian_image",
 +
      "links": [
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/233/", "rel": "self"},
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/233/", "rel": "bookmark"}
 +
      ],
 +
      "created": "2011-09-30T02:38:57",
 +
      "id": "233",
 +
      "zones": ["AUS001"]
 +
    },
 +
    {
 +
      "status": "ACTIVE",
 +
      "updated": null,
 +
      "name": "test_private_image",
 +
      "links": [
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/145/", "rel": "self"},
 +
        {"href": "</nowiki>{{APIBaseURL}}<nowiki>/accounts/{accountId}/flexcloud/images/145/", "rel": "bookmark"}
 +
      ],
 +
      "created": "2011-11-09T03:19:01",
 +
      "id": "145",
 +
      "zones": ["AUS001"]
 +
    }
 +
  ]
 +
}</nowiki>
 +
 
 +
=== Failure while trying to make an unauthorized request ===
 +
'''Request'''
 +
  <nowiki>
 +
GET /accounts/{accountId}/flexcloud/images/detail
 +
Authorization: Basic {invalid authorization} </nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
401 Unauthorized </nowiki>
 +
 
 +
=== Account Number not found ===
 +
'''Request'''
 +
<nowiki>
 +
GET /accounts/fake/flexcloud/images
 +
Authorization: Basic {Base64-encoded username:password string}</nowiki>
 +
 
 +
'''Response'''
 +
<nowiki>
 +
{
 +
    "itemNotFound": {
 +
        "guid": "23684df5-0532-4794-802d-fdc82e4e7e7c",
 +
        "message": "Resource not found",
 +
        "code": 404,
 +
        "details": ""
 +
    }
 +
}</nowiki>
 +
 
 +
== Alternative URI /images/detail?name=''{imageName}''&status=''{imageStatus}''&type=''{imageType}''&zone=''{zoneId}'' ==
 +
An alternative way to execute this call is to omit the ''accountId'' portion of the URI. In this case the system assumes the request is executed for the account identified in the [[Authentication|authorization header]].
 +
 
 +
<code>GET /images/detail</code>
  
{{#widget:DISQUS
+
== See also ==
|id=hostway
+
* [[FlexCloud Server|FlexCloud Server API]]
|uniqid={{PAGENAME}}
+
* [[Common Features]]
|url={{fullurl:{{PAGENAME}}}}
+
}}
+
  
<!--  ########################################################################### -->
+
{{disqus}}
 +
[[Category:Hostway API]]
 +
[[Category:FlexCloud Server API]]

Latest revision as of 12:00, 11 October 2013

[edit] GET /accounts/{accountId}/flexcloud/images/detail?name={imageName}&status={imageStatus}&type={imageType}&zone={zoneId}

This operation will list all images including their details.

Contents

[edit] Request

GET /accounts/{accountId}/flexcloud/images/detail?name={imageName}&status={imageStatus}&type={imageType}&zone={zoneId}

[edit] URI Parameters

accountId - string
The ID of the selected account.
name - string
Optional image name to search for.
status - string
Optional Image status to search for. Values: ACTIVE, SAVING, DELETED.
type - string
Optional type of the image to search for. Values: BASE, SERVER.
zone - string
Optional the Zone where the image is available.

[edit] Response

[edit] Status Code

200 OK
Success
401 Unauthorized
Failure - 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.
404 Not Found
Failure - The Resource was not found

[edit] Response Body

{
  "images":[
    {
      "status":"{status}",
      "updated":null,
      "name":"{display_image_name}",
      "links":[
        {"href":"https://api.hostway.com/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"self"},
        {"href":"https://api.hostway.com/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"bookmark"}
      ],
      "created":"yyyy-mm-ddThh:mm:ss",
      "id":"{image_id}",
      "zones": ["{zone_id}"]
    },
    {
      "status":"{status}",
      "updated":null,
      "name":"{display_image_name}",
      "links":[
        {"href":"https://api.hostway.com/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"self"},
        {"href":"https://api.hostway.com/accounts/{accountId}/flexcloud/images/{image_id}/", "rel":"bookmark"}
      ],
      "created":"yyyy-mm-ddThh:mm:ss",
      "id":"{image_id}",
      "zones": ["{zone_id_1}", "{zone_id_2}"]
    }
  ]
}

[edit] Parameters

id - string
Unique identifier for this image.
links - array
Hypermedia for this resource.
name - string
Display name for this image.
status - string
Current state of this image. Valid values are ACTIVE, SAVING, DELETED.
ACTIVE - Image is ready to be used.
SAVING - Image is being uploaded or saved from a running Server instance.
DELETED - Image was recently deleted or is in the process of being deleted.
created - string
The date and time the image was created. ISO 8601 format, YYYY-MM-DDTHH:MM:SS.
updated
Unused always null.
zones
Zones where the image is available.

[edit] Examples

[edit] Successfully list image details

Request

GET /accounts/{accountId}/flexcloud/images/detail
Authorization: Basic {Base64-encoded username:password string} 

Response

200 OK

{
  "images": [
    {
      "status": "ACTIVE", 
      "updated": null, 
      "name": "test_public_image", 
      "links": [
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/123/", "rel": "self"},
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/123/", "rel": "bookmark"}
      ],
      "created": "2011-11-09T03:19:48", 
      "id": "123",
      "zones": ["AUS001"]
    },
    {
      "status": "SAVING", 
      "updated": null, 
      "name": "test_debian_image", 
      "links": [
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/233/", "rel": "self"},
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/233/", "rel": "bookmark"}
      ],
      "created": "2011-09-30T02:38:57", 
      "id": "233",
      "zones": ["AUS001"]
    }, 
    {
      "status": "ACTIVE", 
      "updated": null, 
      "name": "test_private_image", 
      "links": [
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/145/", "rel": "self"},
        {"href": "https://api.hostway.com/accounts/{accountId}/flexcloud/images/145/", "rel": "bookmark"}
      ],
      "created": "2011-11-09T03:19:01", 
      "id": "145",
      "zones": ["AUS001"]
    }
  ]
}

[edit] Failure while trying to make an unauthorized request

Request

GET /accounts/{accountId}/flexcloud/images/detail
Authorization: Basic {invalid authorization} 

Response

401 Unauthorized 

[edit] Account Number not found

Request

GET /accounts/fake/flexcloud/images
Authorization: Basic {Base64-encoded username:password string}

Response

{
    "itemNotFound": {
        "guid": "23684df5-0532-4794-802d-fdc82e4e7e7c",
        "message": "Resource not found",
        "code": 404,
        "details": ""
    }
}

[edit] Alternative URI /images/detail?name={imageName}&status={imageStatus}&type={imageType}&zone={zoneId}

An alternative way to execute this call is to omit the accountId portion of the URI. In this case the system assumes the request is executed for the account identified in the authorization header.

GET /images/detail

[edit] See also


blog comments powered by Disqus

Personal tools
Namespaces
Variants
Actions
APIs
Navigation
Toolbox