Mp1.json 92.5 KB
Newer Older
        "MB_ROUTING",
        "MB_PUBSUB",
        "RPC",
        "RPC_STREAMING",
        "WEBSOCKET"
      ],
      "example": "JSON"
    },
    "TunnelInfo.TunnelDstAddress": {
      "description": "Destination address of the tunnel",
      "type": "string",
      "example": "?"
    },
    "TunnelInfo.TunnelSrcAddress": {
      "description": "Source address of the tunnel",
      "type": "string",
      "example": "?"
    },
    "TunnelInfo.TunnelType": {
      "description": "This type represents the tunnel information.",
      "type": "string",
      "enum": [
        "GTP_U",
        "GRE"
      ],
      "example": "GTP_U"
    },
    "TunnelInfo": {
      "description": "This type represents the tunnel information.",
      "type": "object",
      "required": [
        "tunnelType"
      ],
      "properties": {
        "tunnelType": {
          "$ref": "#/definitions/TunnelInfo.TunnelType"
        },
        "tunnelDstAddress": {
          "$ref": "#/definitions/TunnelInfo.TunnelDstAddress"
        },
        "tunnelSrcAddress": {
          "$ref": "#/definitions/TunnelInfo.TunnelSrcAddress"
        }
      }
    }
  }
}