Microsoft
DP-100 · Question #182
You create an Azure Machine Learning workspace. You must create a custom role named DataScientist that meets the following requirements: - Role members must not be able to delete the workspace. - Role
Sign in or unlock DP-100 to reveal the answer and full explanation for question #182. The question stem and answer options stay visible for context.
Design and prepare a machine learning solution
Question
You create an Azure Machine Learning workspace. You must create a custom role named DataScientist that meets the following requirements: - Role members must not be able to delete the workspace. - Role members must not be able to create, update, or delete compute resource in the workspace. - Role members must not be able to add new users to the workspace. You need to create a JSON file for the DataScientist role in the Azure Machine Learning workspace. The custom role must enforce the restrictions specified by the IT Operations team. Which JSON code segment should you use? A. B. C. D.
Exhibits
Options
- A{ "Name": "DataScientist", "IsCustom": true, "Description": "Project Data Scientist role", "Actions": [], "NotActions": [ "Microsoft.MachineLearningServices/workspaces//delete", "Microsoft.MachineLearningServices/workspaces/computes//write", "Microsoft.MachineLearningServices/workspaces/computes//delete", "Microsoft.Authorization//write" ], "AssignableScopes": [ "/subscriptions/<id>/resourceGroups/ml-rg/providers/Microsoft.MachineLearningServices/workspaces/ml-ws" ] }
- B{ "Name": "DataScientist", "IsCustom": true, "Description": "Project Data Scientist role", "Actions": [], "NotActions": [ "Microsoft.MachineLearningServices/workspaces/*/write" ], "AssignableScopes": [ "/subscriptions/<id>/resourceGroups/ml-rg/providers/Microsoft.MachineLearningServices/workspaces/ml-ws" ] }
- C{ "Name": "DataScientist", "IsCustom": true, "Description": "Project Data Scientist role", "Actions": [ "Microsoft.MachineLearningServices/workspaces//delete", "Microsoft.MachineLearningServices/workspaces/computes//write", "Microsoft.MachineLearningServices/workspaces/computes//delete", "Microsoft.Authorization//write" ], "NotActions": [], "AssignableScopes": [ "/subscriptions/<id>/resourceGroups/ml-rg/providers/Microsoft.MachineLearningServices/workspaces/ml-ws" ] }
- D{ "Name": "DataScientist", "IsCustom": true, "Description": "Project Data Scientist role", "Actions": [], "NotActions": [], "AssignableScopes": [ "/subscriptions/<id>/resourceGroups/ml-rg/providers/Microsoft.MachineLearningServices/workspaces/ml-ws" ] }
Unlock DP-100 to see the answer
You've previewed enough free DP-100 questions. Unlock DP-100 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#Azure RBAC#Custom Roles#Azure Machine Learning#Access Control



