added proxy id to cluster api response

This commit is contained in:
crn4
2026-03-31 00:28:19 +02:00
parent 4fdc39c8f8
commit de3cb06067
5 changed files with 11 additions and 1 deletions

View File

@@ -3343,6 +3343,10 @@ components:
type: object
description: A proxy cluster represents a group of proxy nodes serving the same address
properties:
id:
type: string
description: Unique identifier of a proxy in this cluster
example: "chlfq4q5r8kc73b0qjpg"
address:
type: string
description: Cluster address used for CNAME targets
@@ -3356,6 +3360,7 @@ components:
description: Whether this cluster is a self-hosted (BYOP) proxy managed by the account owner
example: false
required:
- id
- address
- connected_proxies
- self_hosted

View File

@@ -3381,6 +3381,9 @@ type ProxyAccessLogsResponse struct {
// ProxyCluster A proxy cluster represents a group of proxy nodes serving the same address
type ProxyCluster struct {
// Id Unique identifier of a proxy in this cluster
Id string `json:"id"`
// Address Cluster address used for CNAME targets
Address string `json:"address"`