Skip to content

Commit 18de220

Browse files
authored
[Identity] Remove locale from doc links (Azure#22215)
1 parent 87336b8 commit 18de220

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

sdk/core/Azure.Core/src/Shared/AzureResourceProviderNamespaceAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Azure.Core
77
{
88
/// <summary>
99
/// This attribute should be set on all client assemblies with value of one of the resource providers
10-
/// from the https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/azure-services-resource-providers list.
10+
/// from the https://docs.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers list.
1111
/// </summary>
1212
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
1313
internal class AzureResourceProviderNamespaceAttribute : Attribute
@@ -19,4 +19,4 @@ public AzureResourceProviderNamespaceAttribute(string resourceProviderNamespace)
1919
ResourceProviderNamespace = resourceProviderNamespace;
2020
}
2121
}
22-
}
22+
}

sdk/identity/Azure.Identity/src/AppServiceV2017ManagedIdentitySource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Azure.Identity
1212
{
1313
internal class AppServiceV2017ManagedIdentitySource : ManagedIdentitySource
1414
{
15-
// MSI Constants. Docs for MSI are available here https://docs.microsoft.com/en-us/azure/app-service/overview-managed-identity
15+
// MSI Constants. Docs for MSI are available here https://docs.microsoft.com/azure/app-service/overview-managed-identity
1616
private const string AppServiceMsiApiVersion = "2017-09-01";
1717
private const string MsiEndpointInvalidUriError = "The environment variable MSI_ENDPOINT contains an invalid Uri.";
1818

sdk/identity/Azure.Identity/src/AuthorizationCodeCredential.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Azure.Identity
1212
{
1313
/// <summary>
1414
/// Authenticates by redeeming an authorization code previously obtained from Azure Active Directory. See
15-
/// https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
15+
/// https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information
1616
/// about the autorization code authentication flow.
1717
/// </summary>
1818
public class AuthorizationCodeCredential : TokenCredential
@@ -40,7 +40,7 @@ protected AuthorizationCodeCredential()
4040
/// <param name="clientId">The client (application) ID of the service principal</param>
4141
/// <param name="clientSecret">A client secret that was generated for the App Registration used to authenticate the client.</param>
4242
/// <param name="authorizationCode">The authorization code obtained from a call to authorize. The code should be obtained with all required scopes.
43-
/// See https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
43+
/// See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
4444
public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode)
4545
: this(tenantId, clientId, clientSecret, authorizationCode, null)
4646
{
@@ -53,7 +53,7 @@ public AuthorizationCodeCredential(string tenantId, string clientId, string clie
5353
/// <param name="clientId">The client (application) ID of the service principal</param>
5454
/// <param name="clientSecret">A client secret that was generated for the App Registration used to authenticate the client.</param>
5555
/// <param name="authorizationCode">The authorization code obtained from a call to authorize. The code should be obtained with all required scopes.
56-
/// See https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
56+
/// See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
5757
/// <param name="options">Options that allow to configure the management of the requests sent to the Azure Active Directory service.</param>
5858
public AuthorizationCodeCredential(
5959
string tenantId,
@@ -70,7 +70,7 @@ public AuthorizationCodeCredential(
7070
/// <param name="clientId">The client (application) ID of the service principal</param>
7171
/// <param name="clientSecret">A client secret that was generated for the App Registration used to authenticate the client.</param>
7272
/// <param name="authorizationCode">The authorization code obtained from a call to authorize. The code should be obtained with all required scopes.
73-
/// See https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
73+
/// See https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow for more information.</param>
7474
/// <param name="options">Options that allow to configure the management of the requests sent to the Azure Active Directory service.</param>
7575
public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode, TokenCredentialOptions options)
7676
: this(tenantId, clientId, clientSecret, authorizationCode, options, null)

sdk/identity/Azure.Identity/src/ClientCertificateCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Azure.Identity
1616
/// <summary>
1717
/// Enables authentication of a service principal in to Azure Active Directory using a X509 certificate that is assigned to it's App Registration. More information
1818
/// on how to configure certificate authentication can be found here:
19-
/// https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-azure-ad
19+
/// https://docs.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-azure-ad
2020
/// </summary>
2121
public class ClientCertificateCredential : TokenCredential
2222
{

sdk/identity/Azure.Identity/src/ClientSecretCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Azure.Identity
1414
/// <summary>
1515
/// Enables authentication to Azure Active Directory using a client secret that was generated for an App Registration. More information on how
1616
/// to configure a client secret can be found here:
17-
/// https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-configure-app-access-web-apis#add-credentials-to-your-web-application
17+
/// https://docs.microsoft.com/azure/active-directory/develop/quickstart-configure-app-access-web-apis#add-credentials-to-your-web-application
1818
/// </summary>
1919
public class ClientSecretCredential : TokenCredential
2020
{

sdk/identity/Azure.Identity/src/ImdsManagedIdentitySource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Azure.Identity
1313
{
1414
internal class ImdsManagedIdentitySource : ManagedIdentitySource
1515
{
16-
// IMDS constants. Docs for IMDS are available here https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token#get-a-token-using-http
16+
// IMDS constants. Docs for IMDS are available here https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token#get-a-token-using-http
1717
private static readonly Uri s_imdsEndpoint = new Uri("http://169.254.169.254/metadata/identity/oauth2/token");
1818
private static readonly IPAddress s_imdsHostIp = IPAddress.Parse("169.254.169.254");
1919
private const int s_imdsPort = 80;

sdk/identity/Azure.Identity/src/ManagedIdentityCredential.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Azure.Identity
1616
/// <summary>
1717
/// Attempts authentication using a managed identity that has been assigned to the deployment environment. This authentication type works in Azure VMs,
1818
/// App Service and Azure Functions applications, as well as the Azure Cloud Shell. More information about configuring managed identities can be found here:
19-
/// https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview
19+
/// https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview
2020
/// </summary>
2121
public class ManagedIdentityCredential : TokenCredential
2222
{
@@ -37,7 +37,7 @@ protected ManagedIdentityCredential()
3737
/// </summary>
3838
/// <param name="clientId">
3939
/// The client id to authenticate for a user assigned managed identity. More information on user assigned managed identities can be found here:
40-
/// https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview#how-a-user-assigned-managed-identity-works-with-an-azure-vm
40+
/// https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview#how-a-user-assigned-managed-identity-works-with-an-azure-vm
4141
/// </param>
4242
/// <param name="options">Options to configure the management of the requests sent to the Azure Active Directory service.</param>
4343
public ManagedIdentityCredential(string clientId = null, TokenCredentialOptions options = null)

0 commit comments

Comments
 (0)