OracleSrcConn
class OracleSrcConn(
uri: UriSpec,
credentials: CredentialsSpec,
entity_whitelist: EntityWhitelistSpec | None = None,
conn_cfg: CfgSpec | None = None,
)
Bases: Conn
Categories: source
Oracle connection used by OracleSrc.
Registered on a collection; the runtime resolves it and hands it to the plugin at run time.
Parameters
parameter
SQLAlchemy-style Oracle URI
(oracle+oracledb://host:port/service). Accepts a plain
string or a Secret.
parameter
credentialsCredentialsSpec (UserPassword)UserPassword -- user + password spliced into
the URI by the engine factory.
parameter
entity_whitelistEntityWhitelistSpec | None (list[str] | None)Optional list of regex patterns narrowing
which tables this connection contributes to discovery.
None (the default) means no filtering.