List the images for a cloud type

This command lists the images on the appropriate cloud for a specified configuration file.

Request

GET http://{hostname}:{port}
  /landscaper/rest/cloud/resources/images/blueprint/{blueprint}/configuration/{configuration}?{parameters}
Accept: application/json
Table 1. Request parameters
Parameter Type Required Description
visibility string false
Table 2. URL parameters
Parameter Type Required Description
blueprint string true The blueprint ID
configuration string true The configuration file ID
Table 3. Header parameters
Parameter Type Required Description
Accept application/json true

Example

curl -u jsmith:passwd 
  http://myserver.example.com:8080/landscaper/rest/cloud/resources/
  images/blueprint/MyBlueprint/configuration/MyConfigOpenStack

Example response

[
    {
        "category": "compute",
        "icon": "images/editor/Instance_Generic.gif",
        "id": "56781f5-f675-468f-894d-2e700cd81f79",
        "name": "Linux image 1"
    },
    {
        "category": "compute",
        "icon": "images/editor/Instance_Generic.gif",
        "id": "6f60f6e1-3bc9-331d-9b6e-2dd8a28a3253",
        "name": "Linux image 2"
    },
    {
        "category": "compute",
        "icon": "images/editor/Instance_Generic.gif",
        "id": "bdf5549c-892f-4c67-a3c9-9f494f1c7ead",
        "name": "Linux image 3"
    }
]