Get all templates cross region.

GET /platform/configuration/templates/deployments/global

Global deployment template endpoint which fetches the deployment templates across all region services.

Responses

  • The deployment templates were returned successfully.

    Hide response attributes Show response attributes object
    • Provider agnostic template identifier.

    • name string Required

      Long name of the Template

    • description string Required

      An optional description for the template.

    • order integer(int32) Required

      The order in which the templates should be displayed in the front-end.

    • metadata array[object]

      Optional arbitrary metadata to associate with this template.

      Hide metadata attributes Show metadata attributes object
      • key string Required

        The metadata field name

      • value string Required

        The metadata value

    • regions array[object] Required

      List of regions this template is used in.

      Hide regions attributes Show regions attributes object
      • region_id string Required

        The region identifier.

      • deployment_template_id string Required

        The (region-specific) ID of the deployment template.

      • versions array[string] Required

        Versions supported in this region.

GET /platform/configuration/templates/deployments/global
curl \
 -X GET https://{{hostname}}/api/v1/platform/configuration/templates/deployments/global
Response examples (200)
[
  {
    "template_category_id": "string",
    "name": "string",
    "description": "string",
    "order": 42,
    "metadata": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "regions": [
      {
        "region_id": "string",
        "deployment_template_id": "string",
        "versions": [
          "string"
        ],
        "kibana_deeplink": [
          {
            "semver": "string",
            "uri": "string"
          }
        ]
      }
    ]
  }
]