You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-identity-based-service-authentication.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -251,14 +251,14 @@ The following steps outline how to set up data access with user identity for tra
251
251
252
252
1. Grant data access and create data store as described above for CLI.
253
253
254
-
1. Submit a training job with identity parameter set to [azure.ai.ml.UserIdentity](/python/api/azure-ai-ml/azure.ai.ml.useridentity). This parameter setting enables the job to access data on behalf of user submitting the job.
254
+
1. Submit a training job with identity parameter set to [azure.ai.ml.UserIdentityConfiguration](/python/api/azure-ai-ml/azure.ai.ml.useridentityconfiguration). This parameter setting enables the job to access data on behalf of user submitting the job.
255
255
256
256
```python
257
257
from azure.ai.ml import command
258
258
from azure.ai.ml.entities import Data, UriReference
259
259
from azure.ai.ml import Input
260
260
from azure.ai.ml.constants import AssetTypes
261
-
from azure.ai.ml import UserIdentity
261
+
from azure.ai.ml import UserIdentityConfiguration
262
262
263
263
# Specify the data location
264
264
my_job_inputs = {
@@ -272,7 +272,7 @@ The following steps outline how to set up data access with user identity for tra
0 commit comments