Ambassador · Schema

MappingStatus

Status information for a Mapping resource

API DevelopmentGatewaysIngressKubernetesMock ServersMocksPlatformTesting

Properties

Name Type Description
state string Current state of the Mapping
reason string Human-readable reason for the current state
View JSON Schema on GitHub

JSON Schema

ambassador-mappingstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MappingStatus",
  "title": "MappingStatus",
  "type": "object",
  "description": "Status information for a Mapping resource",
  "properties": {
    "state": {
      "type": "string",
      "description": "Current state of the Mapping",
      "enum": [
        "Inactive",
        "Running",
        "Error"
      ],
      "example": "Inactive"
    },
    "reason": {
      "type": "string",
      "description": "Human-readable reason for the current state",
      "example": "example_value"
    }
  }
}