Files
ziti/controller/embedded/api-schema/entities/transitRouter.put.json
T
Andrew Martinez 214c25a628 adds transit router enrollment and CRUD, resolves #27
- allows fabric routers to  be created in an unenrolled state
- allows fabric routers to be CRUD
- converts both edge and transit routers to use the same enrollment
facilities as identities (1st step to merge)
- migrations for enrollment changes
- adds ability to extend a base store
- add external cleanup logic to tx router to handle isbase=true
- use router handler for is connected status
2020-04-01 10:10:34 -04:00

18 lines
348 B
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/fabric-routers.put.json",
"type": "object",
"additionalProperties": true,
"required": [
"name",
"tags"
],
"properties": {
"name": {
"$ref": "definitions.all.json#/definitions/name"
},
"tags": {
"$ref": "definitions.all.json#/definitions/tags"
}
}
}