Skip to content

Commit

Permalink
Merge pull request #334 from datayoga-io/fix-redis-jsonschema
Browse files Browse the repository at this point in the history
Redis - jsonschema - title --> description
  • Loading branch information
spicy-sauce authored Oct 31, 2023
2 parents 9b36266 + 54b407b commit 4be2fc4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
"type": "string"
},
"key": {
"title": "Private key file to authenticate with",
"description": "Private key file to authenticate with",
"type": "string"
},
"key_password": {
"title": "Password for unlocking an encrypted private key",
"description": "Password for unlocking an encrypted private key",
"type": "string"
},
"cert": {
"title": "Client certificate file to authenticate with",
"description": "Client certificate file to authenticate with",
"type": "string"
},
"cacert": {
"title": "CA certificate file to verify with",
"description": "CA certificate file to verify with",
"type": "string"
}
},
Expand Down
8 changes: 4 additions & 4 deletions docs/reference/connection_types/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Schema for configuring Redis database connection parameters
|**port**|`integer`|Redis DB port<br/>Minimum: `1`<br/>Maximum: `65535`<br/>|yes|
|**user**|`string`|Redis DB user<br/>|no|
|**password**|`string`|Redis DB password<br/>|no|
|**key**<br/>(Private key file to authenticate with)|`string`||no|
|**key\_password**<br/>(Password for unlocking an encrypted private key)|`string`||no|
|**cert**<br/>(Client certificate file to authenticate with)|`string`||no|
|**cacert**<br/>(CA certificate file to verify with)|`string`||no|
|**key**|`string`|Private key file to authenticate with<br/>|no|
|**key\_password**|`string`|Password for unlocking an encrypted private key<br/>|no|
|**cert**|`string`|Client certificate file to authenticate with<br/>|no|
|**cacert**|`string`|CA certificate file to verify with<br/>|no|

**Additional Properties:** not allowed
**If property *key* is defined**, property/ies *cert* is/are required.
Expand Down

0 comments on commit 4be2fc4

Please sign in to comment.