ServicePrincipalsOperations参数需要什么?

时间:2019-07-19 21:40:11

标签: python azure-active-directory service-principal

我正在尝试使用Python在Azure AD中以编程方式注册服务主体。看来我应该使用ServicePrincipalsOperations类,但是文档并未明确概述参数所需的内容。似乎期望从azure.graphrbac中的其他类中获取数据,但是文档尚不清楚。

我认为我应该使用azure.graphrbac.GraphRbacManagementClient来生成ServicePrincipalsOperations的客户端参数,但这只是一个猜测。

同样,我怀疑我需要为配置参数使用azure.graphrbac.models.ServicePrincipalCreateParameters

有没有人使用Python成功注册了服务主体,也许可以对这些参数有更多的了解?

谢谢!

1 个答案:

答案 0 :(得分:0)

因此,您可以使用this test作为参考,但需要将do specify文档Create service principal programmatically in Azure Python API传递给该方法以创建服务主体。

示例代码:

        let view = UIView(frame: CGRect(x: 0, y: 0, width: picker.frame.width, height: picker.frame.height))
        let gradient = CAGradientLayer()

        gradient.frame = view.bounds
        gradient.colors = [UIColor.white.cgColor, UIColor.lightGray.cgColor]

        picker.layer.insertSublayer(gradient, at: 0)

更多阅读内容:{{3}}