Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions cloud-controlplane/cloud-controlplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3086,6 +3086,67 @@ components:
username:
type: string
type: object
Quota:
description: Platform-enforced upper bounds applied to the Serverless cluster.
properties:
acls:
format: int64
readOnly: true
type: string
ai_agents:
format: int64
readOnly: true
type: string
bytes_from_client:
$ref: '#/components/schemas/Rate'
bytes_to_client:
$ref: '#/components/schemas/Rate'
client_connections:
format: int64
readOnly: true
type: string
connect_pipelines:
format: int64
readOnly: true
type: string
consumer_groups:
format: int64
readOnly: true
type: string
mcp_servers:
format: int64
readOnly: true
type: string
partitions:
format: int64
readOnly: true
type: string
passwords_per_user:
format: int64
readOnly: true
type: string
producer_ids:
format: int64
readOnly: true
type: string
sr_schemas:
format: int64
readOnly: true
type: string
sr_subjects:
format: int64
readOnly: true
type: string
topics:
format: int64
readOnly: true
type: string
users:
format: int64
readOnly: true
type: string
readOnly: true
type: object
QuotaFailure:
description: |-
Describes how a quota check failed.
Expand Down Expand Up @@ -3205,6 +3266,21 @@ components:
developer project id>".
type: string
type: object
Rate:
description: Rate is a maximum number of units per period, along with a burst of units.
properties:
burst:
format: int32
readOnly: true
type: integer
period:
readOnly: true
type: string
rate:
format: int32
readOnly: true
type: integer
type: object
RedpandaConnect:
description: Cluster's Redpanda Connect properties.
properties:
Expand Down Expand Up @@ -3541,6 +3617,8 @@ components:
type: string
prometheus:
$ref: '#/components/schemas/ServerlessCluster.Prometheus'
quota:
$ref: '#/components/schemas/Quota'
resource_group_id:
description: Resource group ID of the cluster.
example: a0b40af9-0250-48ca-9417-783ed127ce42
Expand Down Expand Up @@ -7635,6 +7713,7 @@ paths:
prometheus:
private_url: ""
url: https://d1d9risv0c3i7qbbeoc0.metrics.us-east-1.mpx.prd.cloud.redpanda.com/public_metrics
quota: null
resource_group_id: 6c09e47b-f426-4ec7-a7b4-8048caf8ae47
schema_registry:
private_url: ""
Expand Down Expand Up @@ -7791,6 +7870,7 @@ paths:
prometheus:
private_url: ""
url: https://d1d9risv0c3i7qbbeoc0.metrics.us-east-1.mpx.prd.cloud.redpanda.com/public_metrics
quota: null
resource_group_id: 6c09e47b-f426-4ec7-a7b4-8048caf8ae47
schema_registry:
private_url: ""
Expand Down
2 changes: 1 addition & 1 deletion cloud-dataplane/cloud-dataplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7856,7 +7856,7 @@ paths:
schema:
$ref: '#/components/schemas/TransformMetadata'
description: Created
summary: Deploy transform
summary: Deploy Transform
tags:
- Wasm Transforms
/v1/transforms/{name}:
Expand Down
Loading