Scaleway · Schema

scaleway.lb.v1.ListBackendsResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
backends array List of backend objects of a given Load Balancer.
total_count integer Total count of backend objects, without pagination.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewaylbv1listbackendsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.lb.v1.ListBackendsResponse",
  "title": "scaleway.lb.v1.ListBackendsResponse",
  "type": "object",
  "properties": {
    "backends": {
      "type": "array",
      "description": "List of backend objects of a given Load Balancer.",
      "items": {
        "$ref": "#/components/schemas/scaleway.lb.v1.Backend"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total count of backend objects, without pagination.",
      "format": "uint32"
    }
  },
  "x-properties-order": [
    "backends",
    "total_count"
  ]
}