Scaleway · Schema

scaleway.k8s.v1.ListPoolsResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
total_count integer Total number of pools that exists for the cluster.
pools array Paginated returned pools.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayk8sv1listpoolsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.k8s.v1.ListPoolsResponse",
  "title": "scaleway.k8s.v1.ListPoolsResponse",
  "type": "object",
  "properties": {
    "total_count": {
      "type": "integer",
      "description": "Total number of pools that exists for the cluster.",
      "format": "uint64"
    },
    "pools": {
      "type": "array",
      "description": "Paginated returned pools.",
      "items": {
        "$ref": "#/components/schemas/scaleway.k8s.v1.Pool"
      }
    }
  },
  "x-properties-order": [
    "total_count",
    "pools"
  ]
}