Update managed_identity_credential doc to avoid copy/paste error from client secret credential. (#4809)

* Update managed_identity_credential doc to avoid copy/paste error from client secret credential.

* Fix clang formatting.
This commit is contained in:
Ahson Khan 2023-07-20 11:11:55 -07:00 committed by GitHub
parent 803c7e22e4
commit 107a30e558
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,8 +20,11 @@ namespace Azure { namespace Identity {
}
/**
* @brief Client Secret Credential authenticates with the Azure services using a Tenant ID, Client
* ID and a client secret.
* @brief Attempts authentication using a managed identity that has been assigned to the
* deployment environment. This authentication type works in Azure VMs, App Service and Azure
* Functions applications, as well as the Azure Cloud Shell. More information about configuring
* managed identities can be found here:
* https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview
*/
class ManagedIdentityCredential final : public Core::Credentials::TokenCredential {
private: