Skip to content

Commit 9369dfb

Browse files
committed
Merge pull request #191 from danielceckert/ignite
Set-AzurePublicIP documentation edits for new DomainNameLabel parameter
2 parents 59b7fa0 + 313b19a commit 9369dfb

File tree

1 file changed

+51
-2
lines changed

1 file changed

+51
-2
lines changed

src/ServiceManagement/Compute/Commands.ServiceManagement/Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25686,7 +25686,7 @@ C:\PS> Get-AzureVM -ServiceName "MyService" -Name "MyVM"
2568625686
<command:details>
2568725687
<command:name>Set-AzurePublicIP</command:name>
2568825688
<maml:description>
25689-
<maml:para>Set-AzurePublicIP [-PublicIPName] &lt;string&gt; [[-IdleTimeoutInMinutes] &lt;int&gt;] -VM &lt;IPersistentVM&gt; [&lt;CommonParameters&gt;]</maml:para>
25689+
<maml:para>Set-AzurePublicIP [-PublicIPName] &lt;string&gt; [[-IdleTimeoutInMinutes] &lt;int&gt;] [[-DomainNameLabel] &lt;string&gt;] -VM &lt;IPersistentVM&gt; [&lt;CommonParameters&gt;]</maml:para>
2569025690
</maml:description>
2569125691
<maml:copyright>
2569225692
<maml:para />
@@ -25697,7 +25697,7 @@ C:\PS&gt; Get-AzureVM -ServiceName &quot;MyService&quot; -Name &quot;MyVM&quot;
2569725697
</command:details>
2569825698
<maml:description>
2569925699
<!--This is the Description section-->
25700-
<maml:para>Adds a new Public IP to the virtual machine. The public ip is really assigned when the virtual machine is updated.</maml:para>
25700+
<maml:para>Adds a new Public IP to the virtual machine. The public ip is really assigned when the virtual machine is updated. An optional DomainNameLabel will automatically create a corresponding DNS entry for the public IP.</maml:para>
2570125701
</maml:description>
2570225702
<command:syntax>
2570325703
<command:syntaxItem>
@@ -25716,6 +25716,13 @@ C:\PS&gt; Get-AzureVM -ServiceName &quot;MyService&quot; -Name &quot;MyVM&quot;
2571625716
</maml:description>
2571725717
<command:parameterValue required="true" variableLength="true">Nullable`1[Int32]</command:parameterValue>
2571825718
</command:parameter>
25719+
<command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3">
25720+
<maml:name>DomainNameLabel</maml:name>
25721+
<maml:description>
25722+
<maml:para>The name to use when creating a corresponding DNS entry for a public IP address</maml:para>
25723+
</maml:description>
25724+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
25725+
</command:parameter>
2571925726
<command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named">
2572025727
<maml:name>VM</maml:name>
2572125728
<maml:description>
@@ -25750,6 +25757,18 @@ C:\PS&gt; Get-AzureVM -ServiceName &quot;MyService&quot; -Name &quot;MyVM&quot;
2575025757
</dev:type>
2575125758
<dev:defaultValue></dev:defaultValue>
2575225759
</command:parameter>
25760+
<command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="3">
25761+
<maml:name>DomainNameLabel</maml:name>
25762+
<maml:description>
25763+
<maml:para></maml:para>
25764+
</maml:description>
25765+
<command:parameterValue required="true" variableLength="false">String</command:parameterValue>
25766+
<dev:type>
25767+
<maml:name>String</maml:name>
25768+
<maml:uri/>
25769+
</dev:type>
25770+
<dev:defaultValue></dev:defaultValue>
25771+
</command:parameter>
2575325772
<command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="named">
2575425773
<maml:name>VM</maml:name>
2575525774
<maml:description>
@@ -25826,6 +25845,36 @@ C:\PS&gt; Get-AzureVM -ServiceName &quot;MyService&quot; -Name &quot;MyVM&quot;
2582625845
</command:commandLine>
2582725846
</command:commandLines>
2582825847
</command:example>
25848+
<command:example>
25849+
<maml:title>-------------------------- EXAMPLE 3 --------------------------</maml:title>
25850+
<maml:introduction>
25851+
<maml:para></maml:para>
25852+
</maml:introduction>
25853+
<dev:code>PS C:\&gt; Get-AzureVM -ServiceName FTPInAzure -Name FTPInstance | Set-AzurePublicIP -PublicIPName ftpip -DomainNameLabel ipname | Update-AzureVM</dev:code>
25854+
<dev:remarks>
25855+
<maml:para>Description</maml:para>
25856+
</dev:remarks>
25857+
<command:commandLines>
25858+
<command:commandLine>
25859+
<command:commandText>-----------Requests for a public IP to be assigned to the virtual machine. The public ip allocation happens during update VM.</command:commandText>
25860+
</command:commandLine>
25861+
</command:commandLines>
25862+
</command:example>
25863+
<command:example>
25864+
<maml:title>-------------------------- EXAMPLE 4 --------------------------</maml:title>
25865+
<maml:introduction>
25866+
<maml:para></maml:para>
25867+
</maml:introduction>
25868+
<dev:code>PS C:\&gt; New-AzureVMConfig -Name &quot;FTPInstance&quot; -InstanceSize Small -ImageName $images[50].ImageName | Add-AzureProvisioningConfig -Windows -AdminUsername xyz -Password abcd123! | Set-AzurePublicIP -PublicIPName &quot;ftpip&quot; -DomainNameLabel ipname | New-AzureVM -ServiceName &quot;FTPinAzure&quot; -Location &quot;North Central US&quot;</dev:code>
25869+
<dev:remarks>
25870+
<maml:para>Description</maml:para>
25871+
</dev:remarks>
25872+
<command:commandLines>
25873+
<command:commandLine>
25874+
<command:commandText>-----------Requests for a public IP to be assigned during VM creation and for the public IP address to be created with a corresponding DNS entry.</command:commandText>
25875+
</command:commandLine>
25876+
</command:commandLines>
25877+
</command:example>
2582925878
</command:examples>
2583025879
<maml:relatedLinks>
2583125880
<maml:navigationLink>

0 commit comments

Comments
 (0)