| 405 | } |
| 406 | |
| 407 | Status AzureOptions::ConfigureEnvironmentCredential() { |
| 408 | ClearCredentials(); |
| 409 | credential_kind_ = CredentialKind::kEnvironment; |
| 410 | token_credential_ = std::make_shared<Azure::Identity::EnvironmentCredential>(); |
| 411 | return Status::OK(); |
| 412 | } |
| 413 | |
| 414 | Result<std::unique_ptr<Blobs::BlobServiceClient>> AzureOptions::MakeBlobServiceClient() |
| 415 | const { |