Runtime configs from historical Apply Changes

Runtime configs from historical Apply Changes

Returns a product's runtime configs for a given installation id

Use /api/v0/installations/{installation_id}/products/director/runtime_config to get the director runtime configs.

You can use GET /api/v0/installations to list the IDs and products guids of each historical installation.

The example OpsManager DNS runtime config returned has been intentionally truncated and is not valid.

Request
URI
GET
https://{opsmanager-installation}//api/v0/installations/{installation_id}/products/{product_guid}/runtime_configs
COPY
Path Parameters
number
installation_id
Required

The installation id

string
product_guid
Required

The guid of the product


Responses
200

OK

Returns BoshRuntimeConfigs of type(s) application/json
{
    "runtime_configs": [
        {
            "name": "string",
            "manifest": {
                "releases": {
                    "name": "string",
                    "version": "string"
                },
                "addons": {
                    "name": "string",
                    "jobs": {
                        "name": "string",
                        "release": "string"
                    },
                    "include": {
                        "deployments": [
                            "string"
                        ]
                    }
                }
            }
        }
    ]
}
runtime_configs
Optional

runtime_configs