Table 5.23. List metadata objects of a given service
| Method | URI | Description | 
|---|---|---|
| GET | /admin/services/<full_service_name> | Returns a json-dictionary containing the filenames of the metadata objects referenced by a given service. Filenames include all parent directories, all objects belonging to a certain %metadata_type% are grouped into an array value for of a %metadata_type% key. | 
Table 5.24. Parameters
| Parameter | Description | Required | 
|---|---|---|
| full_service_name | Identifies the type service (corresponds to full_service_name in manifest) | true | 
Table 5.25. Error Response Codes
| Code | Description | 
|---|---|
| 401 | User is not authorized to access this tenant resources | 
| 404 | The full_service_name is unknown | 
Payload
None
Returns
This call returns a json:
{
    "agent": [
        "Demo.template"
    ],
    "heat": [
        "Demo.template",
        "RouterInterface.template",
        "Network.template",
        "NNSecurity.template",
        "Param.template",
        "Subnet.template",
        "InstancePortWSubnet.template",
        "InstancePort.template"
    ],
    "scripts": [],
    "ui": [
        "Demo.yaml"
    ],
    "workflows": [
        "Networking.xml",
        "Common.xml",
        "Demo.xml"
    ]
}
                    


