blob: 72a674b631531e667830d1a9588c4042693cbd85 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
"""Contains Identity Configuration for Azure Machine Learning SDKv2."""
from ._credentials import AzureMLOnBehalfOfCredential
from ._exceptions import CredentialUnavailableError
__all__ = [
"AzureMLOnBehalfOfCredential",
"CredentialUnavailableError",
]
|