blob: 84aa8a1bf2fd02871957d39dd12295d1819b2ed1 [file] [view]
## Capabilities
This service can be used to:
- [ ] create_dir
- [x] stat
- [x] read
- [x] write
- [x] delete
- [ ] list
- [ ] copy
- [ ] rename
- [ ] ~~presign~~
## Configuration
- `root`: Set the working directory of `OpenDAL`
- `token`: Set the token of cloudflare api
- `account_id`: Set the account id of cloudflare api
- `database_id`: Set the database id of cloudflare api
- `table`: Set the table of D1 Database
- `key_field`: Set the key field of D1 Database
- `value_field`: Set the value field of D1 Database
## Example
### Via Builder
```rust,no_run
use opendal_core::Operator;
use opendal_service_d1::D1;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut builder = D1::default()
.token("token")
.account_id("account_id")
.database_id("database_id")
.table("table")
.key_field("key_field")
.value_field("value_field");
let op = Operator::new(builder)?.finish();
Ok(())
}
```