View A list Of all runtime config overrides for the BOSH Director

View A list Of all runtime config overrides for the BOSH Director
View a list of all runtime config overrides for the BOSH Director

This endpoint will list the currently configured runtime config overrides for the BOSH Director. Overrides will be applied in order, so the last override will be applied last.

Request
URI
GET
https://{opsmanager-installation}/api/v0/staged/director/runtime_configs/overrides
COPY
Responses
200

0K

Returns DirectorRuntimeConfigOverrides of type(s) application/json
{
    "overrides": [
        {
            "runtime_config_name": "string",
            "addon_name": "string",
            "data": {}
        }
    ]
}
array of overrides
overrides
Optional

A list of overrides that will be applied to the BOSH Director runtime configs.

Overrides will be applied in order, so the last override will be applied last.


400

Setup is not completed

Returns RequireSetupCompleted of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

401

Unauthorized

Returns UnauthorizedResponse of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

403

Requires Advanced Mode

Returns RequiresAdvancedMode of type(s) application/json
{
    "errors": {
        "errors": [
            "string"
        ]
    }
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/v0/staged/director/runtime_configs/overrides