Skip to content

Commit 81de947

Browse files
authored
[Identity] Minor doc updates (#35974)
Signed-off-by: Paul Van Eck <[email protected]>
1 parent ec8190c commit 81de947

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

sdk/identity/azure-identity-broker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ms-appx-web://Microsoft.AAD.BrokerPlugin/{client_id}
4242

4343
### Authenticate with `InteractiveBrowserBrokerCredential`
4444

45-
This example demonstrates using `InteractiveBrowserBrokerCredential` as a broker-enabled credential for authenticating with the `BlobServiceClient` from the [azure-storage-blob][azure_storage_blob] library. Here, the `win32gui` package is used to get the current window.
45+
This example demonstrates using `InteractiveBrowserBrokerCredential` as a broker-enabled credential for authenticating with the `BlobServiceClient` from the [azure-storage-blob][azure_storage_blob] library. Here, the `win32gui` module from the `pywin32` package is used to get the current window.
4646

4747
```python
4848
import win32gui

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class ManagedIdentityCredential:
2525
<https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/overview>`__ for more
2626
information about configuring managed identity for applications.
2727
28-
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure
29-
AD app registration. This argument is supported in all hosting environments.
28+
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of a
29+
Microsoft Entra app registration. This argument is supported in all hosting environments.
3030
:keyword identity_config: a mapping ``{parameter_name: value}`` specifying a user-assigned identity by its object
3131
or resource ID, for example ``{"object_id": "..."}``. Check the documentation for your hosting environment to
3232
learn what values it expects.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class ManagedIdentityCredential(AsyncContextManager):
2626
<https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/overview>`__ for more
2727
information about configuring managed identity for applications.
2828
29-
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure
30-
AD app registration. This argument is supported in all hosting environments.
29+
:keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of a
30+
Microsoft Entra app registration. This argument is supported in all hosting environments.
3131
:keyword identity_config: a mapping ``{parameter_name: value}`` specifying a user-assigned identity by its object
3232
or resource ID, for example ``{"object_id": "..."}``. Check the documentation for your hosting environment to
3333
learn what values it expects.

0 commit comments

Comments
 (0)