Ambassador · Schema

ModuleList

List of Module resources

API DevelopmentGatewaysIngressKubernetesMock ServersMocksPlatformTesting

Properties

Name Type Description
apiVersion string
kind string
metadata object
items array
View JSON Schema on GitHub

JSON Schema

ambassador-modulelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModuleList",
  "title": "ModuleList",
  "type": "object",
  "description": "List of Module resources",
  "properties": {
    "apiVersion": {
      "type": "string",
      "const": "getambassador.io/v3alpha1",
      "example": "example_value"
    },
    "kind": {
      "type": "string",
      "const": "ModuleList",
      "example": "example_value"
    },
    "metadata": {
      "type": "object",
      "properties": {
        "continue": {
          "type": "string"
        },
        "resourceVersion": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Module"
      },
      "example": []
    }
  }
}