3 configuration options · available in Rust, Python
use opendal::Operator;
let op = Operator::via_iter("dbfs", [
])?;
use opendal::Operator;
let op = Operator::via_iter("dbfs", [
// The root for dbfs.
// ("root".to_string(), "...".to_string()),
// The endpoint for dbfs.
// ("endpoint".to_string(), "...".to_string()),
// The token for dbfs.
// ("token".to_string(), "...".to_string()),
])?;
Every option is passed as a string key; OpenDAL parses it into the right type. Some services may require building the binding with the matching services-* feature enabled.
| Key | Type | Required | Description |
|---|---|---|---|
root | string | no | The root for dbfs. |
endpoint | string | no | The endpoint for dbfs. |
token | string | no | The token for dbfs. |