Pharaoh
Pharaoh

Reputation: 752

Azure Resource Identifier format URI -URL OR URN

I am working with Azure and I have noticed that for every resource group and resource it created an ID that looks like this.

For Resource Groups /subscriptions/<Subscriptionid>/resourceGroups/<resourcegroupname>

and For Resource it looks like this /subscriptions/<Subscriptionid>/resourceGroups/<resourcegroupname>/providers/Microsoft.Compute/disks/<disk name>

This is azure's unique identifier.

What kind of URI is this, a URL or URN?

Upvotes: 5

Views: 9382

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

well, it cant be urn, because its supposed to start with urn, so this is a url

What is the difference between URI, URL and URN?

on the other hand, azure mentions these as resource ID everywhere, so probably not url, i think its just a URI thats somewhat unique to azure

Upvotes: 1

Related Questions