Skip to content

Commit f4495b7

Browse files
authored
Fix sphinx for identity (#33816)
1 parent f9b1bc8 commit f4495b7

File tree

12 files changed

+12
-11
lines changed

12 files changed

+12
-11
lines changed

sdk/identity/azure-identity/azure/identity/_credentials/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class AzureApplicationCredential(ChainedTokenCredential):
4141
4242
When this environment configuration is incomplete, the credential will attempt to authenticate a managed identity.
4343
See `Microsoft Entra ID documentation
44-
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`_ for an overview
44+
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`__ for an overview
4545
of managed identities.
4646
4747
:keyword str authority: Authority of a Microsoft Entra endpoint, for example "login.microsoftonline.com",

sdk/identity/azure-identity/azure/identity/_credentials/authorization_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AuthorizationCodeCredential(GetTokenMixin):
1414
"""Authenticates by redeeming an authorization code previously obtained from Microsoft Entra ID.
1515
1616
See `Microsoft Entra ID documentation
17-
<https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow>`_ for more information
17+
<https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow>`__ for more information
1818
about the authentication flow.
1919
2020
:param str tenant_id: ID of the application's Microsoft Entra tenant. Also called its "directory" ID.

sdk/identity/azure-identity/azure/identity/_credentials/certificate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class CertificateCredential(ClientCredentialBase):
1919
2020
The certificate must have an RSA private key, because this credential signs assertions using RS256. See
2121
`Microsoft Entra ID documentation
22-
<https://learn.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-microsoft-identity-platform>`_
22+
<https://learn.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-microsoft-identity-platform>`__
2323
for more information on configuring certificate authentication.
2424
2525
:param str tenant_id: ID of the service principal's tenant. Also called its "directory" ID.

sdk/identity/azure-identity/azure/identity/_credentials/managed_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ManagedIdentityCredential:
2222
2323
This credential defaults to using a system-assigned identity. To configure a user-assigned identity, use one of
2424
the keyword arguments. See `Microsoft Entra ID documentation
25-
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`_ for more
25+
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`__ for more
2626
information about configuring managed identity for applications.
2727
2828
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure

sdk/identity/azure-identity/azure/identity/_credentials/on_behalf_of.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class OnBehalfOfCredential(MsalCredential, GetTokenMixin):
2424
This flow is typically used by middle-tier services that authorize requests to other services with a delegated
2525
user identity. Because this is not an interactive authentication flow, an application using it must have admin
2626
consent for any delegated permissions before requesting tokens for them. See `Microsoft Entra ID documentation
27-
<https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow>`_ for a more detailed
27+
<https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow>`__ for a more detailed
2828
description of the on-behalf-of flow.
2929
3030
:param str tenant_id: ID of the service principal's tenant. Also called its "directory" ID.

sdk/identity/azure-identity/azure/identity/_credentials/user_password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class UsernamePasswordCredential(InteractiveCredential):
1919
2020
This credential can only authenticate work and school accounts; Microsoft accounts are not supported.
2121
See `Microsoft Entra ID documentation
22-
<https://learn.microsoft.com/azure/active-directory/fundamentals/sign-up-organization>`_ for more information about
22+
<https://learn.microsoft.com/azure/active-directory/fundamentals/sign-up-organization>`__ for more information about
2323
account types.
2424
2525
:param str client_id: The application's client ID

sdk/identity/azure-identity/azure/identity/aio/_credentials/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class AzureApplicationCredential(ChainedTokenCredential):
4141
4242
When this environment configuration is incomplete, the credential will attempt to authenticate a managed identity.
4343
See `Microsoft Entra ID documentation
44-
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`_ for an overview
44+
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`__ for an overview
4545
of managed identities.
4646
4747
:keyword str authority: Authority of a Microsoft Entra endpoint, for example "login.microsoftonline.com",

sdk/identity/azure-identity/azure/identity/aio/_credentials/authorization_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AuthorizationCodeCredential(AsyncContextManager, GetTokenMixin):
1414
"""Authenticates by redeeming an authorization code previously obtained from Microsoft Entra ID.
1515
1616
See `Microsoft Entra ID documentation
17-
<https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow>`_ for more information
17+
<https://learn.microsoft.com/azure/active-directory/develop/v2-oauth2-auth-code-flow>`__ for more information
1818
about the authentication flow.
1919
2020
:param str tenant_id: ID of the application's Microsoft Entra tenant. Also called its "directory" ID.

sdk/identity/azure-identity/azure/identity/aio/_credentials/certificate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CertificateCredential(AsyncContextManager, GetTokenMixin):
1616
1717
The certificate must have an RSA private key, because this credential signs assertions using RS256. See
1818
`Microsoft Entra ID documentation
19-
<https://docs.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-microsoft-identity-platform>`_
19+
<https://docs.microsoft.com/azure/active-directory/develop/active-directory-certificate-credentials#register-your-certificate-with-microsoft-identity-platform>`__
2020
for more information on configuring certificate authentication.
2121
2222
:param str tenant_id: ID of the service principal's tenant. Also called its 'directory' ID.

sdk/identity/azure-identity/azure/identity/aio/_credentials/managed_identity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ManagedIdentityCredential(AsyncContextManager):
2323
2424
This credential defaults to using a system-assigned identity. To configure a user-assigned identity, use one of
2525
the keyword arguments. See `Microsoft Entra ID documentation
26-
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`_ for more
26+
<https://learn.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview>`__ for more
2727
information about configuring managed identity for applications.
2828
2929
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure

0 commit comments

Comments
 (0)