1

Given an Azure subscription ID and resource group name, how can I get a list of all provider(s) that make up the resources in that group? E.g. if a RG contains websites and VMs, I'd get ["Microsoft.Website", "Microsoft.Compute"].

Chris Long
  • 3,007
  • 4
  • 30
  • 37

1 Answers1

0

Apparently, the only way to do this is by using the List By Resource Group API, then parsing the resource IDs manually.

Chris Long
  • 3,007
  • 4
  • 30
  • 37