Getting BOSH cloud configs from historical installations

Getting BOSH cloud configs from historical installations

Returns a product's cloud configs for a given Apply Change

Use /api/v0/installations/{installation_id}/products/director/cloud_config to get the director cloud config.

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

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

The installation id

string
product_guid
Required

The guid of the product


Responses
200

OK

Returns BoshCloudConfig of type(s) application/json
{
    "cloud_config": {
        "azs": [
            {
                "name": "string",
                "cpi": "string",
                "cloud_properties": {
                    "zone": "string"
                }
            }
        ],
        "networks": [
            {
                "name": "string",
                "type": "string",
                "subnets": [
                    {
                        "azs": [
                            "string"
                        ],
                        "cloud_properties": {
                            "subnetwork_name": "string",
                            "network_name": "string"
                        }
                    }
                ]
            }
        ],
        "vm_types": [
            {
                "name": "string",
                "cloud_properties": {
                    "cpu": "number",
                    "ram": "number"
                }
            }
        ]
    }
}
cloud_config
Optional

cloud_config