admin管理员组

文章数量:1335595

We've encountered a permission that's new to us and would greatly appreciate it if the ARM team could assist us in identifying its source. The permission is Microsoft_Resources/marketplace/purchase/action.

We are trying to understand the origin and purpose of this specific permission. Any insights or documentation references that could help us identify where this permission comes from and how it should be used would be highly appreciated.

Thanks !

We have reviewed the available documentation and searched through various forums and resources to find information about the Microsoft_Resources/marketplace/purchase/action permission. We also attempted to trace its origin within our Azure Resource Manager (ARM) configurations and logs but were unable to pinpoint its source or understand its specific use case.

We were expecting to find detailed documentation or examples that explain the purpose and application of this permission, but our efforts have not yielded any conclusive results so far.

We've encountered a permission that's new to us and would greatly appreciate it if the ARM team could assist us in identifying its source. The permission is Microsoft_Resources/marketplace/purchase/action.

We are trying to understand the origin and purpose of this specific permission. Any insights or documentation references that could help us identify where this permission comes from and how it should be used would be highly appreciated.

Thanks !

We have reviewed the available documentation and searched through various forums and resources to find information about the Microsoft_Resources/marketplace/purchase/action permission. We also attempted to trace its origin within our Azure Resource Manager (ARM) configurations and logs but were unable to pinpoint its source or understand its specific use case.

We were expecting to find detailed documentation or examples that explain the purpose and application of this permission, but our efforts have not yielded any conclusive results so far.

Share Improve this question edited Nov 19, 2024 at 23:40 old_timer 71.6k9 gold badges98 silver badges175 bronze badges asked Nov 19, 2024 at 23:06 Amir HershkovitzAmir Hershkovitz 11 bronze badge 1
  • Try to connect wth Microsoft Support or open a GitHub issue in the Azure REST API documentation repository for clarification on the Microsoft_Resources/marketplace/purchase/action @Amir – Vinay B Commented Nov 20, 2024 at 5:16
Add a comment  | 

1 Answer 1

Reset to default 0

Identifying Source of a Permission in Azure Resource Manager (ARM)

The permission you mentioned is Microsoft.Resources/marketplace/purchase/action is a section of Azure's Role-Based Access Control system which only relates to marketplace.

In order to access this, we need relevent permissions to use the resources from the marketplace. To have the relevent permissions to access the refer the microsoft document.

You can review your roles using following commands

Get-AzRoleAssignment -Scope /subscriptions/<subscription-id> | Where-Object {$_.RoleDefinitionName -like "*marketplace*"}

Get-AzRoleDefinition | Where-Object {$_.Actions -contains "Microsoft.Resources/marketplace/purchase/action"}

For futher info and information relates to this please reaching out to Microsoft Support or consulting the Azure community forum its always better to contact them for configuring permissions for marketplace purchases.

Refer:

https://learn.microsoft/en-us/marketplace/azure-marketplace-overview

https://learn.microsoft/en-us/cli/azure/role/assignment?view=azure-cli-latest#az-role-assignment-list

本文标签: Identifying Source of a Permission in Azure Resource Manager (ARM)Stack Overflow