1

我尝试使用 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。我找不到任何Cmdlet(PowerShell)http : //technet.microsoft.com/en-US/library/jj151815.aspx 也支持创建新角色。

4

1 回答 1

0

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

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

于 2013-07-16T11:34:10.040 回答