通过Python sdk将所有者添加到Azure AD组

时间:2019-03-19 08:21:38

标签: python azure-active-directory azure-ad-graph-api rbac

我试图创建一个创建AD安全组并将所有者添加到该组。我正在python中执行此操作。

我可以创建该网上论坛,但无法将所有者添加到该网上论坛。我正在使用服务主体来执行此操作。

下面是我的代码

from azure.graphrbac import GraphRbacManagementClient
from azure.common.credentials import ServicePrincipalCredentials
from azure.graphrbac.models import GroupCreateParameters, GroupAddMemberParameters

credentials = ServicePrincipalCredentials(
 client_id="service_principal",
 secret="keyof_service_principal",
 resource="https://graph.windows.net",
 tenant = ''   
    )

 tenant_id = ""
 graphrbac_client = GraphRbacManagementClient(
 credentials,
 tenant_id
    )

 group = GroupCreateParameters(display_name="GroupName", mail_nickname="GroupMail-at-microsoft.com")
 graphrbac_client.groups.create(group)

但是当我尝试执行add_owner时,它会引发错误。

graphrbac_client.groups.add_owner(groupId, owner)
Traceback (most recent call last):
File "<stdin>", line 1, in <module> AttributeError: 'GroupsOperations' object has no attribute 'add_owner'
>>> dir(graphrbac_client.groups)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_client', '_deserialize', '_serialize', 'add_member', 'api_version', 'config', 'create', 'delete', 'get', 'get_group_members', 'get_member_groups', 'is_member_of', 'list', 'models', 'remove_member']

我在目录中看不到add_owner。

1 个答案:

答案 0 :(得分:0)

谢谢

做到了,

我安装了带有版本0.40的graphrbac的azure模块

$pip freeze | grep rbac
  azure-graphrbac==0.40.0

检查azure-graphrbac当前版本为0.60

我不得不单独卸载azure-graphrbac并使用pip重新安装当前版本。那解决了这个问题。

尽管它抛出了一个与azure模块不兼容的错误,但我暂时不认为这是个问题。

azure 4.0.0 has requirement azure-graphrbac~=0.40.0, but you'll have azure-graphrbac 0.60.0 which is incompatible.