| 234 | } |
| 235 | |
| 236 | Result<AzureOptions> AzureOptions::FromUri(const Uri& uri, std::string* out_path) { |
| 237 | AzureOptions options; |
| 238 | options.ExtractFromUriSchemeAndHierPart(uri, out_path); |
| 239 | RETURN_NOT_OK(options.ExtractFromUriQuery(uri)); |
| 240 | return options; |
| 241 | } |
| 242 | |
| 243 | Result<AzureOptions> AzureOptions::FromUri(const std::string& uri_string, |
| 244 | std::string* out_path) { |
nothing calls this directly
no test coverage detected