I'm trying to figure out if resources exist in Azure by using their resource ID. The Azure CLI command would be az resource show $resourceID
. My application is in NodeJS.
Is there some equivalent in NodeJS I can use in my application? If not, is there another way to show a resource exists (information populates) or does not exist (null fields) in NodeJS?
Ultimately want to return true (exists) or false (does not exist).