Axway · Schema

apicentral.agent.create

Published when a Central agent is created.

API ManagementEnterpriseIntegrationSecurity

Properties

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

JSON Schema

amplify-platform-apicentral.agent.create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/axway/amplify-platform-apicentral.agent.create-schema.json",
  "title": "apicentral.agent.create",
  "description": "Published when a Central agent is created.",
  "type": "object",
  "properties": {
    "agent_type": {
      "type": "string",
      "enum": [
        "DiscoveryAgent",
        "TraceabilityAgent"
      ],
      "example": "DiscoveryAgent"
    },
    "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"
    }
  }
}