List configuration files for a blueprint and the specified cloud

Request

GET http://{hostname}:{port}
  /landscaper/rest/blueprint/{blueprintId}/cloudproject/{cloudprojectId}/configuration
Accept: application/json
Table 1. URL parameters
Parameter Type Required Description
blueprintId string true Name or ID of the blueprint
cloudprojectId string true ID of the cloud project
Table 2. Header parameters
Parameter Type Required Description
Accept application/json true  
Location string false The full location of the blueprint, such as /landscaper/orion/file/jsmith_00000000_0000_0000_0000_000000000002-OrionContent/default/my_blueprint/my_blueprint.yml.

Example

curl -u jsmith:passwd 
  http://myserver.example.com:8080/landscaper/rest/blueprint/My_Blueprint_1/
  cloudproject/00000000-0000-0000-9999-000000000003/configuration
  -H "Accept: application/json"

Example response

[
  {
    "id": "OS_config_1",
    "name": "OS_config_1",
    "category": "configuration",
    "location": "/landscaper/orion/file/
      jsmith_00000000_0000_0000_0000_000000000002-OrionContent
      /default/configurations/OS_config_1.yml",
    "version": "1.0"
  },
  {
    "id": "OS_config_2",
    "name": "OS_config_2",
    "category": "configuration",
    "location": "/landscaper/orion/file/
      jsmith_00000000_0000_0000_0000_000000000002-OrionContent
      /default/configurations/OS_config_2.yml",
    "version": "1.0"
  }
]

Feedback