Files
ziti/controller/embedded/api-schema/entities/service.patch.json
T
Andrew Martinez c8e2729f05 GH-18 removes ziti-edge/edge folder and moves all contents up 1 row
- Updates .gitignore files
- Fixes imports
2019-12-18 10:02:25 -05:00

59 lines
1.1 KiB
JSON

{
"$id": "http://ziti-edge.netfoundry.io/schemas/services.patch.json",
"type": "object",
"additionalProperties": false,
"required": [
],
"properties": {
"name": {
"$ref": "definitions.all.json#/definitions/name-null"
},
"dns": {
"type": [
"object",
"null"
],
"additionalProperties": false,
"required": [
],
"properties": {
"hostname": {
"type": [
"string",
"null"
]
},
"port": {
"type": [
"string",
"null"
]
}
}
},
"egressRouter": {
"type": [
"string",
"null"
]
},
"endpointAddress": {
"type": [
"string",
"null"
]
},
"edgeRouterRoles" : {
"default" : null,
"$ref" : "definitions.all.json#/definitions/arrayOfString-null"
},
"roleAttributes" : {
"default" : null,
"$ref" : "definitions.all.json#/definitions/arrayOfString-null"
},
"tags": {
"default": {},
"$ref": "definitions.all.json#/definitions/tags-null"
}
}
}