Neon · Schema

EndpointUpdateRequest

Request body for updating a compute endpoint

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
endpoint object
View JSON Schema on GitHub

JSON Schema

neon-endpointupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointUpdateRequest",
  "title": "EndpointUpdateRequest",
  "type": "object",
  "description": "Request body for updating a compute endpoint",
  "properties": {
    "endpoint": {
      "type": "object",
      "properties": {
        "autoscaling_limit_min_cu": {
          "type": "number",
          "description": "Minimum compute units for autoscaling"
        },
        "autoscaling_limit_max_cu": {
          "type": "number",
          "description": "Maximum compute units for autoscaling"
        },
        "suspend_timeout_seconds": {
          "type": "integer",
          "description": "Inactivity timeout in seconds"
        }
      }
    }
  }
}