-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add opensearch engine details (#868)
Co-authored-by: Rahul Bhardwaj <[email protected]>
- Loading branch information
1 parent
2927086
commit 0b09b67
Showing
4 changed files
with
115 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
specification/resources/databases/models/opensearch_connection.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
type: object | ||
|
||
properties: | ||
uri: | ||
type: string | ||
description: >- | ||
This is provided as a convenience and should be able to be constructed by the other attributes. | ||
example: opensearch://doadmin:wv78n3zpz42xezdk@backend-do-user-19081923-0.db.ondigitalocean.com:25060/defaultdb?sslmode=require | ||
readOnly: true | ||
host: | ||
type: string | ||
description: The FQDN pointing to the opensearch cluster's current primary node. | ||
example: backend-do-user-19081923-0.db.ondigitalocean.com | ||
readOnly: true | ||
port: | ||
type: integer | ||
description: The port on which the opensearch dashboard is listening. | ||
example: 25060 | ||
readOnly: true | ||
user: | ||
type: string | ||
description: The default user for the opensearch dashboard. | ||
example: doadmin | ||
readOnly: true | ||
password: | ||
type: string | ||
description: The randomly generated password for the default user. | ||
example: wv78n3zpz42xezdk | ||
readOnly: true | ||
ssl: | ||
type: boolean | ||
description: A boolean value indicating if the connection should be made over SSL. | ||
example: true | ||
readOnly: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters