如何在Window Azure Active Directory上创建新的ROLE

时间:2013-07-16 09:38:27

标签: azure azure-active-directory

我尝试使用GraphAPI添加新角色:

var role = Role.CreateRole("6e5f96e0-c084-452a-99a3-a1ee8d59ec88");

DirectoryService.AddToroles(role);

DirectoryService.SaveChanges();

但它引发了一个例外:Data contract version does not allow 'Create' operations against instances of resource 'Role'

如何为Azure Active Directory窗口创建新的自定义ROLE。 我找不到任何Cmdlet(PowerShell)http://technet.microsoft.com/en-US/library/jj151815.aspx支持创建新的ROLE。

1 个答案:

答案 0 :(得分:0)

根据文档here,对角色的唯一可能操作是GetRoles。所以目前你无法在AAD中创建角色。你只能消费它们。

但是有Groups您可以创建/更新/删除组,以及添加或删除组中的成员。