0
使用Node.js SDK,我創建了一個用戶和一個資源組。我現在如何將用戶作爲所有者分配給資源組?將Azure用戶添加到具有nodejs的資源組
使用Node.js SDK,我創建了一個用戶和一個資源組。我現在如何將用戶作爲所有者分配給資源組?將Azure用戶添加到具有nodejs的資源組
你可以參考這個example。
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來執行此操作,請參閱此link。