Axway · Schema

apicentral.agent.start

Published when a Central agent changes its state in the status resource.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
agent_type string
agent_version string
dataplane_type string Gateway the agent links to.
envId object
group string
View JSON Schema on GitHub

JSON Schema

axway-apicentralagentstart-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/apicentral.agent.start",
  "title": "apicentral.agent.start",
  "type": "object",
  "description": "Published when a Central agent changes its state in the status resource.",
  "x-context": "api_central",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventDataCentral"
    }
  ],
  "properties": {
    "agent_type": {
      "type": "string",
      "enum": [
        "DiscoveryAgent",
        "TraceabilityAgent"
      ],
      "example": "DiscoveryAgent"
    },
    "agent_version": {
      "type": "string",
      "example": "example_value"
    },
    "dataplane_type": {
      "type": "string",
      "description": "Gateway the agent links to.",
      "example": "example_value"
    },
    "envId": {
      "$ref": "#/components/schemas/Environment/properties/guid"
    },
    "group": {
      "type": "string",
      "enum": [
        "management"
      ],
      "example": "management"
    }
  }
}