Skip to content

Commit

Permalink
Update zowe-yaml-schema.json
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored May 2, 2024
1 parent 3f14763 commit e74dbf4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,19 @@
"nativeTlsSettings": {
"$anchor": "nativeTlsSettings",
"type": "object",
"additionalProperties": false,
"properties": {
"attls": {
"anyOf": [
{
"type": "string",
"enum": [ "", "false" ]
},
{
"const": false
}
]
},
"ciphers": {
"type": "array",
"description": "Acceptable TLS cipher suites for network connections, in IANA format.",
Expand Down Expand Up @@ -949,7 +961,7 @@
"description": "Whether or not to ensure that the port a server is about to use is available. Usually, servers will know this when they attempt to bind to a port, so this option allows you to disable the additional verification step."
},
"tls": {
"oneOf": [
"anyOf": [
{ "$ref": "#/$defs/attlsSetting" },
{ "$ref": "#/$defs/nativeTlsSettings" }
]
Expand All @@ -963,7 +975,7 @@
"description": "Optional, advanced network configuration parameters for Zowe servers when sending requests as clients.",
"properties": {
"tls": {
"oneOf": [
"anyOf": [
{ "$ref": "#/$defs/attlsSetting" },
{ "$ref": "#/$defs/nativeTlsSettings" }
]
Expand Down

0 comments on commit e74dbf4

Please sign in to comment.