Skip to main content

ghac

4 configuration options · available in Rust, Python, Node.js, Java

Quick start
use opendal::Operator;

let op = Operator::via_iter("ghac", [
])?;
All configuration options (copy & trim)
Full reference
use opendal::Operator;

let op = Operator::via_iter("ghac", [
// The root path for ghac.
// ("root".to_string(), "...".to_string()),

// The version that used by cache.
// ("version".to_string(), "...".to_string()),

// The endpoint for ghac service.
// ("endpoint".to_string(), "...".to_string()),

// The runtime token for ghac service.
// ("runtime_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.

Configuration reference

General4
KeyTypeRequiredDescription
rootstringnoThe root path for ghac.
versionstringnoThe version that used by cache.
endpointstringnoThe endpoint for ghac service.
runtime_tokenstringnoThe runtime token for ghac service.