-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fixes #27443: add OCI Autonomous Database support for Oracle connector #27508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
08980a0
e170023
623f99e
2c6c311
4f23116
9deb3fd
d426b5d
998d4fd
9c0a3f0
ba98a45
43e1b80
e991b85
6453951
d76b997
e06b07d
f0c823e
12b4169
e4e67c5
7cac5f3
6e3c514
a1ad81f
3e97044
d292bca
ecbfcc8
ff74d1a
a3a4bea
62594a4
cd93ec2
ba9d067
73d5ea6
dfa1f97
a50af0a
d2a58c4
ee91fb9
6ecf6c3
cc88740
4ecc9a4
90f9879
1d1f94e
473c89d
4aa5095
5993897
cc9b365
8eedea1
2249cd7
8067108
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,6 +63,49 @@ | |
| "required": [ | ||
| "oracleTNSConnection" | ||
| ] | ||
| }, | ||
| "OracleAutonomousConnection": { | ||
| "title": "Oracle Autonomous Connection", | ||
| "type": "object", | ||
| "properties": { | ||
| "tnsAlias": { | ||
| "title": "TNS Alias", | ||
| "description": "Service alias defined in the wallet tnsnames.ora file, such as myadb_high.", | ||
| "type": "string" | ||
| }, | ||
| "walletPath": { | ||
| "title": "Wallet Path", | ||
| "description": "Path to the extracted Oracle wallet directory on the ingestion host.", | ||
| "type": "string" | ||
| }, | ||
| "walletContent": { | ||
| "title": "Wallet Content", | ||
| "description": "Base64-encoded Oracle wallet zip content. If provided, OpenMetadata extracts it at runtime.", | ||
| "type": "string", | ||
| "format": "password" | ||
| }, | ||
|
hassaansaleem28 marked this conversation as resolved.
|
||
| "walletPassword": { | ||
| "title": "Wallet Password", | ||
| "description": "Wallet password for Oracle Autonomous mTLS connections, if required.", | ||
| "type": "string", | ||
| "format": "password" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "tnsAlias" | ||
|
hassaansaleem28 marked this conversation as resolved.
|
||
| ], | ||
| "anyOf": [ | ||
|
||
| { | ||
| "required": [ | ||
| "walletPath" | ||
| ] | ||
| }, | ||
| { | ||
| "required": [ | ||
| "walletContent" | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
|
hassaansaleem28 marked this conversation as resolved.
|
||
| }, | ||
| "properties": { | ||
|
|
@@ -97,7 +140,7 @@ | |
| "oracleConnectionType": { | ||
| "title": "Oracle Connection Type", | ||
| "type": "object", | ||
| "description": "Connect with oracle by either passing service name or database schema name.", | ||
| "description": "Connect with Oracle by using schema, service name, TNS connection string, or Oracle Autonomous wallet configuration.", | ||
| "oneOf": [ | ||
| { | ||
| "$ref": "#/definitions/OracleDatabaseSchema" | ||
|
|
@@ -107,6 +150,9 @@ | |
| }, | ||
| { | ||
| "$ref": "#/definitions/OracleTNSConnection" | ||
| }, | ||
| { | ||
| "$ref": "#/definitions/OracleAutonomousConnection" | ||
| } | ||
| ] | ||
|
hassaansaleem28 marked this conversation as resolved.
hassaansaleem28 marked this conversation as resolved.
|
||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.