使用 Node.js SDK,我创建了一个用户和一个资源组。我现在如何将用户作为所有者分配给资源组?
问问题
144 次
1 回答
1
你可以参考这个例子。
authzClient.roleAssignments.create(scope, assignmentGuid, roleCreateParams, function (err, roleAssignment, req, res) {
if (err) {
console.log('\nError occured while creating the roleAssignment: \n' + util.inspect(err, { depth: null }));
return;
}
根据您的需要,您需要示例。
Owner
角色 ID 是8e3af657-a8ff-443c-a75c-2fe8c4bcb635
.
scope
应该是这样/subscriptions/{subscription-id}/resourceGroups/myresourcegroup1
的。
将应用程序 ID 替换为您的用户对象 ID。
此外,您可以使用 Azure REST API 来执行此操作,请参阅此链接。
于 2017-09-13T03:20:46.960 回答