Runtime Configuration

List runtime configurations

List runtime configuration.

⚠️ Deprecation notice

This operation might be removed in the future. We recommend using Providers instead.

get/runtime_configuration

Query parameters

offsetinteger

The starting point for pagination. Defaults to 0 if not provided.

limitinteger

The maximum number of results to return per page.

nrnstring

Filters runtime configurations that match or are more specific than the provided NRN.

Response

Parameters

Example response

{
  "paging": {
    "total": 30,
    "limit": 200
  },
  "results": [
    {
      "id": 1234,
      "nrn": "organization=1:account=2:namespace=3",
      "profile": "environment_dev_country_arg",
      "status": "active",
      "dimensions": {
        "environment": "dev",
        "country": "arg"
      },
      "values": {
        "workflow": "null_dev",
        "aws": {
          "log_reader": "..."
        }
      }
    }
  ]
}

Changes