tustvold commented on issue #4853: URL: https://github.com/apache/arrow-rs/issues/4853#issuecomment-1732361076
My mistake, I thought we already exposed this. Could you try out https://github.com/apache/arrow-rs/pull/4854 and report back. Should be something like ``` let store = MicrosoftAzureBuilder::new() .with_account("") // removed for security .with_access_key("") // removed for security .with_container_name("") // removed for security .with_endpoint("https://blob.core.usgovcloudapi.net") .build() .unwrap(); ``` Although it might be ``` let store = MicrosoftAzureBuilder::new() .with_account("") // removed for security .with_access_key("") // removed for security .with_container_name("") // removed for security .with_endpoint("https://<ACCOUNT>.blob.core.usgovcloudapi.net") .build() .unwrap(); ``` I couldn't find docs for the government cloud functionality so not sure which it will be :sweat_smile: -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
