v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Cloud Gateways Resource Quotas

Get Resource Quota

Retrieves a single organization-level resource quota override by ID.

get/v2/cloud-gateways/resource-quotas/{resourceQuotaId}

Path parameters

resourceQuotaIdstring uuid required
Example:9678f205-49a1-47bb-82d9-d01cafa42a0d

The ID of the resource quota to operate on.

Response

Response format for retrieving a resource quota for an organization.

idstring uuid required
resource'count/provider-accounts.per-provider' | 'count/networks.not-offline' | 'count/data-planes-estimate' | 'count/serverless-data-planes-estimate' | 'count/data-plane-groups-estimate' | 'count/managed-cache-instances' | 'max/managed-cache-size' required

Enumeration of resources available for quota enforcement.

namestring required

The human-readable name of this resource quota.

descriptionstring required

A more verbose description of what this resource quota enforces.

valueinteger required

The aggregate non-negative integer count of this resource that's allowed for the organization.

created_atstring date-time required

An RFC-3339 timestamp representation of resource quota creation date.

updated_atstring date-time required

An RFC-3339 timestamp representation of resource quota update date.

Example response

{
  "id": "9678f205-49a1-47bb-82d9-d01cafa42a0d",
  "name": "Active Networks",
  "description": "Across the organization, the aggregate number of active networks cannot exceed this value.",
  "value": 2,
  "created_at": "2022-11-04T20:10:06.927Z",
  "updated_at": "2022-11-04T20:10:06.927Z"
}