mirror of
https://github.com/openziti/ziti.git
synced 2026-09-24 03:16:23 +00:00
37 lines
802 B
JSON
37 lines
802 B
JSON
{
|
|
"$id": "http://ziti-edge.netfoundry.io/schemas/cas.put.json",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"required": [
|
|
"name",
|
|
"tags",
|
|
"isAutoCaEnrollmentEnabled",
|
|
"isOttCaEnrollmentEnabled",
|
|
"isAuthEnabled"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"$ref": "definitions.all.json#/definitions/name"
|
|
},
|
|
"isAutoCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isOttCaEnrollmentEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"isAuthEnabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"identityRoles": {
|
|
"default": null,
|
|
"$ref": "definitions.all.json#/definitions/arrayOfString-null"
|
|
},
|
|
"tags": {
|
|
"$ref": "definitions.all.json#/definitions/tags"
|
|
}
|
|
}
|
|
}
|