2

As stated here and here one can create reserved IP adresses in Microsoft Azure.

Used Powershell command: New-AzureReservedIP.

What are the powershell parameters -ReservedIPName and -Label used for? What´s the difference?

Community
  • 1
  • 1
huha
  • 4,053
  • 2
  • 29
  • 47

1 Answers1

2

As with pretty much all of the Azure service management APIs, the Name is a unique identifier that you use when calling other APIs (ie. passing the name into the New-AzureVM command). The label is just a descriptive label that you can use for your own purposes (ie. "Static IP for Billing system").

kwill
  • 10,867
  • 1
  • 28
  • 26
  • Thanks kwill, as you said the Name is a unique identifier. For example it is used to delete the reserved IP with Remove-AzureReservedIP. – huha May 15 '14 at 09:16