A credit-union vault team needs a custom role that can read blob data inside a storage account but must not change the storage account resource itself. Where should those permission strings be placed in the custom role definition?
Select an answer to reveal the explanation.
Short Explanation
Control plane is the bank building; data plane is the safe deposit boxes. Account knobs go in Actions; reading blob bytes goes in DataActions. Mix those drawers and you either open the building or never reach the boxes.
Full Explanation
Azure custom roles distinguish Actions (Resource Manager / control plane) from DataActions (data plane). Reading blob content is a data-plane operation and belongs in DataActions, while creating or updating the storage account resource uses Actions. AssignableScopes only advertises where the role may be assigned.