v61

OpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Resource Configurations

List Default Resource Configurations

Returns the platform-default resource configurations for Cloud Gateways, along with any organization-level overrides. Resource configurations are behavioral settings applied to Cloud Gateway resources — for example, the idle timeout for data plane groups. Use this to view the effective settings for your organization.

get/v2/cloud-gateways/default-resource-configurations

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[number]integer
Example:1

Determines which page of the entities to retrieve.

Response

A paginated list for a collection of default resource configurations.

Example response

{
  "meta": {
    "page": {
      "number": 1,
      "size": 10,
      "total": 100
    }
  },
  "data": [
    {
      "id": "cc504063-f3bb-4e09-8e32-bbcdbc5cd618",
      "name": "Data Plane Group Idle Timeout Minutes",
      "description": "The number of minutes that a data plane group can be idle before it is automatically scaled down to zero instances.",
      "value": 45,
      "overrides": [
        {
          "id": "9678f205-49a1-47bb-82d9-d01cafa42a0d",
          "value": 45
        }
      ],
      "created_at": "2022-11-04T20:10:06.927Z",
      "updated_at": "2022-11-04T20:10:06.927Z"
    }
  ]
}