Contour · Schema

HTTPProxyList

List of HTTPProxy resources.

EnvoyIngress ControllerKubernetesNetworkingProxy

Properties

Name Type Description
apiVersion string
kind string
metadata object
items array List of HTTPProxy resources.
View JSON Schema on GitHub

JSON Schema

contour-httpproxylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HTTPProxyList",
  "title": "HTTPProxyList",
  "type": "object",
  "description": "List of HTTPProxy resources.",
  "required": [
    "apiVersion",
    "kind",
    "items"
  ],
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "enum": [
        "HTTPProxyList"
      ]
    },
    "metadata": {
      "type": "object",
      "properties": {
        "resourceVersion": {
          "type": "string"
        },
        "continue": {
          "type": "string"
        }
      }
    },
    "items": {
      "type": "array",
      "description": "List of HTTPProxy resources.",
      "items": {
        "$ref": "#/components/schemas/HTTPProxy"
      }
    }
  }
}