Skip to content

Commit

Permalink
Idea on how to improve the related docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sadasant authored Jun 2, 2021
1 parent 84cc669 commit 3867749
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/identity/identity/samples/AzureIdentityExamples.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ If your application is hosted in Azure, you can make use of [Managed Identity](h

| Credential with example | Usage |
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [ManagedIdentityCredential](#authenticating-in-azure-with-managed-identity) | Authenticate in a virtual machine, app service, function app, cloud shell, or AKS environment on Azure, with system assigned, or user assigned managed identity enabled. |
| [ManagedIdentityCredential](#authenticating-in-azure-with-managed-identity) | Authenticate in a virtual machine, app service, function app, cloud shell, or AKS environment on Azure, with system assigned managed identity, user assigned managed identity, or app registration. . |
| [DefaultAzureCredential](#authenticating-with-defaultazurecredential) | Tries `EnvironmentCredential`, `ManagedIdentityCredential`, `AzureCliCredential`, `AzurePowerShellCredential`, and other credentials sequentially until one of them succeeds. Use this to have your application authenticate using developer tools, service principals or managed identity based on what is available in the current environment without changing your code. |

### Examples
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export class ManagedIdentityCredential implements TokenCredential {

/**
* Creates an instance of ManagedIdentityCredential with the client ID of a
* user-assigned identity.
* user-assigned identity or app registration.
*
* @param clientId - The client ID of the user-assigned identity.
* @param clientId - The client ID of the user-assigned identity or app registration.
* @param options - Options for configuring the client which makes the access token request.
*/
constructor(clientId: string, options?: TokenCredentialOptions);
Expand Down

0 comments on commit 3867749

Please sign in to comment.