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

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

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

相关内容

  • 没有找到相关文章

最新更新