Scaleway · Schema

scaleway.k8s.v1.ListClusterACLRulesResponse

AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage

Properties

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

JSON Schema

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