Scaleway · Schema

scaleway.k8s.v1.ListNodesResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

Name Type Description
total_count integer Total number of nodes.
nodes array Paginated returned nodes.
View JSON Schema on GitHub

JSON Schema

scaleway-scalewayk8sv1listnodesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/scaleway.k8s.v1.ListNodesResponse",
  "title": "scaleway.k8s.v1.ListNodesResponse",
  "type": "object",
  "properties": {
    "total_count": {
      "type": "integer",
      "description": "Total number of nodes.",
      "format": "uint64"
    },
    "nodes": {
      "type": "array",
      "description": "Paginated returned nodes.",
      "items": {
        "$ref": "#/components/schemas/scaleway.k8s.v1.Node"
      }
    }
  },
  "x-properties-order": [
    "total_count",
    "nodes"
  ]
}