Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"dbPath": {
"type": "string",
"format": "unixpath",
"pattern": "^\\/([^\\/\\0<>|*?\"\\\\;&$]+\\/)*([^\\/\\0<>|*?\"\\\\;&$]+)?\\/?$",
"pattern": "^(?:\\/$|\\/(?:[^\\/\\x00-\\x1F\\x7F<>|*?\\\\;&$`% ]+(?:\\/|$))+$)$",
"prettyName": "DB Data Path",
"description": ""
},
Expand Down Expand Up @@ -138,7 +138,7 @@
"type": "string",
"prettyName": "Mount Path",
"format": "unixpath",
"pattern": "^\\/([^\\/\\0<>|*?\"\\\\;&$]+\\/)*([^\\/\\0<>|*?\"\\\\;&$]+)?\\/?$",
"pattern": "^(?:\\/$|\\/(?:[^\\/\\x00-\\x1F\\x7F<>|*?\\\\;&$`% ]+(?:\\/|$))+$)$",
"description": "",
"dxFormProperties": {
"validationMessages": {
Expand All @@ -148,7 +148,7 @@
},
"tgtClusterName": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"prettyName": "Target Cluster Name",
"description": "",
"dxFormProperties": {
Expand Down Expand Up @@ -196,7 +196,7 @@
},
"couchbaseAdmin": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"prettyName": "Target Couchbase Admin User",
"description": "",
"default": "Administrator",
Expand Down Expand Up @@ -363,7 +363,7 @@
"couchbaseBakLoc": {
"type": "string",
"format": "unixpath",
"pattern": "^$|^\\/([^\\/\\0<>|*?\"\\\\;&$]+\\/)*([^\\/\\0<>|*?\"\\\\;&$]+)?\\/?$",
"pattern": "^(?:$|(?:\\/$|\\/(?:[^\\/\\x00-\\x1F\\x7F<>|*?\\\\;&$`% ]+(?:\\/|$))+$))$",
"prettyName": "Backup Location",
"description": "Backups taken via cbbackupmgr",
"default": "",
Expand Down Expand Up @@ -402,7 +402,7 @@
"mountPath": {
"type": "string",
"format": "unixpath",
"pattern": "^\\/([^\\/\\0<>|*?\"\\\\;&$]+\\/)*([^\\/\\0<>|*?\"\\\\;&$]+)?\\/?$",
"pattern": "^(?:\\/$|\\/(?:[^\\/\\x00-\\x1F\\x7F<>|*?\\\\;&$`% ]+(?:\\/|$))+$)$",
"prettyName": "Mount Path",
"description": "",
"dxFormProperties": {
Expand All @@ -413,7 +413,7 @@
},
"stgClusterName": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"prettyName": "Staging Cluster Name",
"description": "",
"dxFormProperties": {
Expand Down Expand Up @@ -476,7 +476,7 @@
"properties": {
"bname": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"maxLength": 100,
"prettyName": "Bucket Name",
"dxFormProperties": {
Expand All @@ -497,7 +497,7 @@
},
"couchbaseAdmin": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"prettyName": "Staging Couchbase Admin User",
"description": "",
"default": "Administrator",
Expand All @@ -516,7 +516,7 @@
},
"xdcrAdmin": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"prettyName": "Source Couchbase XDCR Admin User",
"description": "",
"default": "Administrator",
Expand Down Expand Up @@ -566,7 +566,7 @@
"properties": {
"bucketName": {
"type": "string",
"pattern": "^[^;\\&<>\\(\\)\\s]+$",
"pattern": "^[^;\\&<>\\(\\)\\s\\`]+$",
"maxLength": 100,
"prettyName": "Bucket Name",
"dxFormProperties": {
Expand Down
Loading