答案 0 :(得分:1)
如果您找到了所需内容,请查看RestAPI: https://msdn.microsoft.com/Library/Azure/Ad/Graph/api/api-catalog
如果您没有找到它,则可能无法实现。如果您找到了,那么这个RestAPI将通过azure-graphrbac
包在Python中公开:
如果您在RestAPI中找到它,而不是在Python包中找到它,请打开一个问题,以支持您需要的端点:
https://github.com/Azure/azure-sdk-for-python/issues
(我在MS的Azure SDK for Python团队工作)
答案 1 :(得分:0)
感谢@ laurent-mazuel我发现Navigation Properties are missing from SDK
的问题解决方法:
来自文档:Service Principal Entity具有导航属性appRoleAssignedTo
。然后解决方案是使用原始API端点作为以下内容:
在https://graph.windows.net/{tenant_id}/servicePrincipals/{service_principal}/appRoleAssignedTo/
ServicePrincipalOperations
并延伸azure-sdk-for-python
返回AppRoleAssignment实体。