Skip to content

Commit

Permalink
_internal -> _managed_identity
Browse files Browse the repository at this point in the history
  • Loading branch information
chlowell committed Jul 12, 2019
1 parent ccd6545 commit 91b42cc
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from ._authn_client import AsyncAuthnClient
from ..constants import Endpoints, EnvironmentVariables
from .._internal import _ManagedIdentityBase
from .._managed_identity import _ManagedIdentityBase


class _AsyncManagedIdentityBase(_ManagedIdentityBase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from azure.core.pipeline.policies import ContentDecodePolicy, HeadersPolicy, NetworkTraceLoggingPolicy, AsyncRetryPolicy

from ._authn_client import AsyncAuthnClient
from ._internal import ImdsCredential, MsiCredential
from ._managed_identity import ImdsCredential, MsiCredential
from .._base import ClientSecretCredentialBase, CertificateCredentialBase
from ..constants import Endpoints, EnvironmentVariables
from ..credentials import ChainedTokenCredential
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure-identity/azure/identity/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from ._authn_client import AuthnClient
from ._base import ClientSecretCredentialBase, CertificateCredentialBase
from ._internal import ImdsCredential, MsiCredential
from ._managed_identity import ImdsCredential, MsiCredential
from .constants import Endpoints, EnvironmentVariables

try:
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure-identity/tests/test_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
ManagedIdentityCredential,
ChainedTokenCredential,
)
from azure.identity._internal import ImdsCredential
from azure.identity._managed_identity import ImdsCredential
from azure.identity.constants import EnvironmentVariables

from helpers import mock_response, Request, validating_transport
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure-identity/tests/test_identity_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
EnvironmentCredential,
ManagedIdentityCredential,
)
from azure.identity.aio._internal import ImdsCredential
from azure.identity.aio._managed_identity import ImdsCredential
from azure.identity.constants import EnvironmentVariables

from helpers import mock_response, Request, async_validating_transport
Expand Down

0 comments on commit 91b42cc

Please sign in to comment.