diff --git a/sdk/identity/azure-identity-broker/README.md b/sdk/identity/azure-identity-broker/README.md index 308effac0f7c9..5fc069418f235 100644 --- a/sdk/identity/azure-identity-broker/README.md +++ b/sdk/identity/azure-identity-broker/README.md @@ -42,7 +42,7 @@ ms-appx-web://Microsoft.AAD.BrokerPlugin/{client_id} ### Authenticate with `InteractiveBrowserBrokerCredential` -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. +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. ```python import win32gui diff --git a/sdk/identity/azure-identity/azure/identity/_credentials/managed_identity.py b/sdk/identity/azure-identity/azure/identity/_credentials/managed_identity.py index 1016237de0421..4364d432111ca 100644 --- a/sdk/identity/azure-identity/azure/identity/_credentials/managed_identity.py +++ b/sdk/identity/azure-identity/azure/identity/_credentials/managed_identity.py @@ -25,8 +25,8 @@ class ManagedIdentityCredential: `__ for more information about configuring managed identity for applications. - :keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure - AD app registration. This argument is supported in all hosting environments. + :keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of a + Microsoft Entra app registration. This argument is supported in all hosting environments. :keyword identity_config: a mapping ``{parameter_name: value}`` specifying a user-assigned identity by its object or resource ID, for example ``{"object_id": "..."}``. Check the documentation for your hosting environment to learn what values it expects. diff --git a/sdk/identity/azure-identity/azure/identity/aio/_credentials/managed_identity.py b/sdk/identity/azure-identity/azure/identity/aio/_credentials/managed_identity.py index dd89690d50ec0..9e61083427c50 100644 --- a/sdk/identity/azure-identity/azure/identity/aio/_credentials/managed_identity.py +++ b/sdk/identity/azure-identity/azure/identity/aio/_credentials/managed_identity.py @@ -26,8 +26,8 @@ class ManagedIdentityCredential(AsyncContextManager): `__ for more information about configuring managed identity for applications. - :keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of an Azure - AD app registration. This argument is supported in all hosting environments. + :keyword str client_id: a user-assigned identity's client ID or, when using Pod Identity, the client ID of a + Microsoft Entra app registration. This argument is supported in all hosting environments. :keyword identity_config: a mapping ``{parameter_name: value}`` specifying a user-assigned identity by its object or resource ID, for example ``{"object_id": "..."}``. Check the documentation for your hosting environment to learn what values it expects.