Skip to content

Commit 20e4a17

Browse files
aladdindockceiw
andauthored
Aladdin generated examples for Compute, Monitor, Network, Resources, Sql, Websites (Azure#15567)
* Add new examples to Compute, Monitor, Network, Resources, Sql, Websites - Add new examples to the following modules: Compute Monitor Network Resources Sql Websites Co-authored-by: Maoliang Huang <[email protected]>
1 parent d7ec64f commit 20e4a17

File tree

62 files changed

+446
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+446
-178
lines changed

src/Compute/Compute/help/New-AzDiskEncryptionSet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Creates a disk encryption set.
2424

2525
### Example 1
2626
```powershell
27-
PS C:\> $config = New-AzDiskEncryptionSetConfig -Location 'westcentralus' -KeyUrl "https://valut1.vault.azure.net:443/keys/key1/mykey" -SourceVaultId '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.KeyVault/vaults/vault1 -IdentityType 'SystemAssigned'
28-
PS C:\> New-AzDiskEncryptionSet -ResourceGroupName 'rg1' -Name 'enc1' -DiskEncryptionSet $config;
27+
PS C:\> $config = New-AzDiskEncryptionSetConfig -Location 'westcentralus' -KeyUrl "https://valut1.vault.azure.net:443/keys/key1/mykey" -SourceVaultId '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.KeyVault/vaults/vault1' -IdentityType 'SystemAssigned'
28+
PS C:\> $config | New-AzDiskEncryptionSet -ResourceGroupName 'rg1' -Name 'enc1'
2929
```
3030

3131
Creates disk encryption set using the given active key in the key vault.

src/Compute/Compute/help/New-AzDiskEncryptionSetConfig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Creates a configurable disk encryption set object.
2626

2727
### Example 1
2828
```powershell
29-
PS C:\> $config = New-AzDiskEncryptionSetConfig -Location 'westcentralus' -KeyUrl "https://valut1.vault.azure.net:443/keys/key1/mykey" -SourceVaultId '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.KeyVault/vaults/vault1 -IdentityType 'SystemAssigned'
30-
PS C:\> New-AzDiskEncryptionSet -ResourceGroupName 'rg1' -Name 'enc1' -DiskEncryptionSet $config;
29+
PS C:\> $config = New-AzDiskEncryptionSetConfig -Location 'westcentralus' -KeyUrl "https://valut1.vault.azure.net:443/keys/key1/mykey" -SourceVaultId '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.KeyVault/vaults/vault1' -IdentityType 'SystemAssigned'
30+
PS C:\> $config | New-AzDiskEncryptionSet -ResourceGroupName 'rg1' -Name 'enc1'
3131
```
3232

3333
Creates disk encryption set using the given active key in the key vault.

src/Compute/Compute/help/New-AzVmssConfig.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,15 @@ Creates a VMSS configuration object. (autogenerated)
8989
New-AzVmssConfig -Location <String> -Overprovision $false -SkuCapacity 2 -SkuName 'Standard_A0' -Tag 'Sql' -UpgradePolicyMode Automatic
9090
```
9191

92+
### Example 3
93+
94+
Creates a VMSS configuration object. (autogenerated)
95+
96+
<!-- Aladdin Generated Example -->
97+
```powershell
98+
New-AzVmssConfig -Location <String> -SkuCapacity 2 -SkuName 'Standard_A0' -UpgradePolicyMode Automatic -IdentityType SystemAssigned
99+
```
100+
92101
## PARAMETERS
93102

94103
### -AutomaticRepairGracePeriod

src/Compute/Compute/help/Save-AzVMImage.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can deploy virtual machines from your captured image.
3535
## EXAMPLES
3636

3737
### Example 1: Capture a virtual machine
38-
```
38+
```powershell
3939
PS C:\> Set-AzVM -ResourceGroupName "ResourceGroup11" -Name "VirtualMachine07" -Generalized
4040
PS C:\> Save-AzVMImage -ResourceGroupName "ResourceGroup11" -VMName "VirtualMachine07" -DestinationContainerName "VMContainer01" -VHDNamePrefix "VM07"
4141
```
@@ -44,6 +44,15 @@ The first command marks the virtual machine named VirtualMachine07 as generalize
4444
The second command captures a virtual machine named VirtualMachine07 as a VMImage.
4545
The **Output** property returns a JSON template.
4646

47+
### Example 2
48+
49+
Saves a virtual machine as a VMImage. (autogenerated)
50+
51+
<!-- Aladdin Generated Example -->
52+
```powershell
53+
Save-AzVMImage -DestinationContainerName 'VMContainer01' -Name 'VirtualMachine07' -Path '/home/admin/.ssh/authorized_keys' -ResourceGroupName 'ResourceGroup11' -VHDNamePrefix 'VM07'
54+
```
55+
4756
## PARAMETERS
4857

4958
### -AsJob

src/Compute/Compute/help/Set-AzVmssVM.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,20 @@ The **Set-AzVmssVM** cmdlet modifies the state of a Virtual Machine Scale Set (V
5454

5555
Modifies the state of a VMSS instance. (autogenerated)
5656

57-
```powershell <!-- Aladdin Generated Example -->
57+
<!-- Aladdin Generated Example -->
58+
```powershell
5859
Set-AzVmssVM -InstanceId <String> -Reimage -ResourceGroupName myresourcegroup -VMScaleSetName 'VMSS001'
5960
```
6061

62+
### Example 2
63+
64+
Modifies the state of a VMSS instance. (autogenerated)
65+
66+
<!-- Aladdin Generated Example -->
67+
```powershell
68+
Set-AzVmssVM -InstanceId <String> -PerformMaintenance -ResourceGroupName myresourcegroup -VMScaleSetName 'VMSS001'
69+
```
70+
6171
## PARAMETERS
6272

6373
### -AsJob

src/Compute/Compute/help/Update-AzVmss.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,21 @@ The **Update-AzVmss** cmdlet updates the state of a Virtual Machine Scale Set (V
6565
## EXAMPLES
6666

6767
### Example 1: Update the state of a VMSS to the state of a local VMSS object.
68-
```
68+
```powershell
6969
PS C:\> Update-AzVmss -ResourceGroupName "Group001" -Name "VMSS001" -VirtualMachineScaleSet $LocalVMSS
7070
```
7171

7272
This command updates the state of the VMSS named VMSS001 that belongs to the resource group named Group001 to the state of a local VMSS object, $LocalVMSS.
7373

74+
### Example 2
75+
76+
Updates the state of a VMSS. (autogenerated)
77+
78+
<!-- Aladdin Generated Example -->
79+
```powershell
80+
Update-AzVmss -ResourceGroupName 'Group001' -VMScaleSetName 'VMSS001' -VirtualMachineScaleSet <PSVirtualMachineScaleSet> -IdentityType SystemAssigned
81+
```
82+
7483
## PARAMETERS
7584

7685
### -AsJob

src/Monitor/Monitor/help/Add-AzAutoscaleSetting.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This cmdlet implements the ShouldProcess pattern, i.e. it might request confirma
3737
## EXAMPLES
3838

3939
### Example 1: Create an Autoscale setting
40-
```
40+
```powershell
4141
PS C:\>$Rule1 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/b93fb07a-6f93-30be-bf3e-4f0deca15f4f/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/mywebsite" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:05:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "1"
4242
4343
PS C:\> $Rule2 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/b93fb07a-6f93-30be-bf3e-4f0deca15f4f/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/mywebsite" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:10:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "2"
@@ -53,6 +53,15 @@ The first two commands use [New-AzAutoscaleRule](https://docs.microsoft.com/powe
5353
The third and fourth commands use [New-AzAutoscaleProfile](https://docs.microsoft.com/powershell/module/az.monitor/new-azautoscaleprofile) to create Autoscale profiles, $Profile1 and $Profile2, using $Rule1 and $Rule2.
5454
The final command creates an Autoscale setting using the profiles in $Profile1 and $Profile2.
5555

56+
### Example 2
57+
58+
Creates an Autoscale setting. (autogenerated)
59+
60+
<!-- Aladdin Generated Example -->
61+
```powershell
62+
Add-AzAutoscaleSetting -AutoscaleProfile <List`1[AutoscaleProfile]> -DisableSetting -Location 'East US' -Name 'MySetting' -ResourceGroupName 'Default-Web-EastUS' -TargetResourceId '/subscriptions/00000000-0000-0000-0000-00000000000000000/resourceGroups/Default-Web-EastUS/providers/microsoft.web/serverFarms/DefaultServerFarm'
63+
```
64+
5665
## PARAMETERS
5766

5867
### -AutoscaleProfile

src/Monitor/Monitor/help/New-AzDataCollectionRule.md

Lines changed: 4 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ The output of a DCR serialized with the cmdlet ConvertTo-Json is also supported
4242

4343
### Example 1: Create data collection rule, JSON from Rest API
4444
```powershell
45-
PS C:\>New-AzDataCollectionRule -Location 'East US 2 EUAP' -ResourceGroupName 'testdcr'
46-
-RuleName 'newDcrEx1' -RuleFile 'C:\samples\dcrEx1.json'
47-
-Description 'Dcr description'
45+
PS C:\>New-AzDataCollectionRule -Location 'East US 2 EUAP' -ResourceGroupName 'testdcr' `
46+
-RuleName 'newDcrEx1' -RuleFile 'C:\samples\dcrEx1.json' `
47+
-Description 'Dcr description' `
4848
-Tag @{"tag1"="value1"; "tag2"="value2"}
4949
5050
Description : Dcr description
@@ -98,62 +98,6 @@ Tags : {[tag2, value2], [tag1, value1]}
9898

9999
This command creates a data collection rules for the current subscription.
100100

101-
### Example 2: Create data collection rule, JSON from PSDataCollectionRuleResource
102-
```powershell
103-
PS C:\>New-AzDataCollectionRule -Location 'East US 2 EUAP' -ResourceGroupName 'testdcr'
104-
-RuleName 'newDcrEx2' -RuleFile 'C:\samples\dcrEx2.json'
105-
-Description 'Dcr description'
106-
-Tag @{"tag1"="value1"; "tag2"="value2"}
107-
108-
Description : Dcr description
109-
DataSources : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources
110-
Destinations : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations
111-
DataFlows : {Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow}
112-
ProvisioningState : Succeeded
113-
Etag : "{etag}"
114-
Id : /subscriptions/{subId}/resourceGroups/testdcr/providers/Microsoft.Insights/dataCollectionRules/newDcrEx2
115-
Name : newDcrEx2
116-
Type : Microsoft.Insights/dataCollectionRules
117-
Location : East US 2 EUAP
118-
Tags : {[tag2, value2], [tag1, value1]}
119-
120-
# Note: Content of C:\samples\dcrEx2.json
121-
{
122-
"DataSources": {
123-
"PerformanceCounters": [
124-
{
125-
"Streams": [
126-
"Microsoft-InsightsMetrics"
127-
],
128-
"ScheduledTransferPeriod": "PT1M",
129-
"SamplingFrequencyInSeconds": 10,
130-
"CounterSpecifiers": [
131-
"\\Processor Information(_Total)\\% Processor Time"
132-
],
133-
"Name": "perfCounter01"
134-
}
135-
]
136-
},
137-
"Destinations": {
138-
"AzureMonitorMetrics": {
139-
"Name": "azureMonitorMetrics-default"
140-
}
141-
},
142-
"DataFlows": [
143-
{
144-
"Streams": [
145-
"Microsoft-InsightsMetrics"
146-
],
147-
"Destinations": [
148-
"azureMonitorMetrics-default"
149-
]
150-
}
151-
]
152-
}
153-
```
154-
155-
This command creates a data collection rules for the current subscription.
156-
157101
## PARAMETERS
158102

159103
### -DefaultProfile
@@ -309,4 +253,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
309253
[Set-AzDataCollectionRule](./Set-AzDataCollectionRule.md)
310254
[Remove-AzDataCollectionRule](./Remove-AzDataCollectionRule.md)
311255
[Get-AzDataCollectionRule](./Get-AzDataCollectionRule.md)
312-
[Update-AzDataCollectionRule](./Update-AzDataCollectionRule.md)
256+
[Update-AzDataCollectionRule](./Update-AzDataCollectionRule.md)

src/Network/Network/help/Add-AzApplicationGatewayTrustedClientCertificate.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ The **Add-AzApplicationGatewayTrustedClientCertificate** cmdlet adds a trusted c
2323
## EXAMPLES
2424

2525
### Example 1
26+
27+
Adds a trusted client CA certificate chain to an application gateway. (autogenerated)
28+
29+
<!-- Aladdin Generated Example -->
2630
```powershell
27-
PS C:\> $gw = Get-AzApplicationGateway -Name $appgwName -ResourceGroupName $resgpName
28-
PS C:\> $trustedClient = New-AzApplicationGatewayTrustedClientCertificate -Name "ClientCert" -CertificateFile "C:\clientCAChain.cer"
29-
PS C:\> $AppGw = Add-AzApplicationGatewaySslProfile -Name $sslProfileName -ApplicationGateway $gw -TrustedClientCertificates $trustedClient
30-
PS C:\> $gw = Set-AzApplicationGateway -ApplicationGateway $gw
31+
Add-AzApplicationGatewayTrustedClientCertificate -ApplicationGateway <PSApplicationGateway> -CertificateFile 'C:\cert.cer' -Name 'cert01'
3132
```
3233

33-
The first command gets the application gateway and stores it in $gw variable. The second command creates a new trusted client CA certificate chain taking path of the client CA certificate as input. The third command creates a SSL profile using trusted client certificate. The fourth command updates the Application Gateway.
34-
3534
## PARAMETERS
3635

3736
### -ApplicationGateway
@@ -146,4 +145,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
146145
147146
[Remove-AzApplicationGatewayTrustedClientCertificate](./Remove-AzApplicationGatewayTrustedClientCertificate.md)
148147
149-
[Set-AzApplicationGatewayTrustedClientCertificate](./Set-AzApplicationGatewayTrustedClientCertificate.md)
148+
[Set-AzApplicationGatewayTrustedClientCertificate](./Set-AzApplicationGatewayTrustedClientCertificate.md)

src/Network/Network/help/Add-AzExpressRouteCircuitPeeringConfig.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ cmdlet to activate the configuration.
5353
## EXAMPLES
5454

5555
### Example 1: Add a peer to an existing ExpressRoute circuit
56-
```
56+
```powershell
5757
$circuit = Get-AzExpressRouteCircuit -Name $CircuitName -ResourceGroupName $rg
5858
$parameters = @{
5959
Name = 'AzurePrivatePeering'
@@ -68,6 +68,15 @@ Add-AzExpressRouteCircuitPeeringConfig @parameters
6868
Set-AzExpressRouteCircuit -ExpressRouteCircuit $circuit
6969
```
7070

71+
### Example 2
72+
73+
Adds a peering configuration to an ExpressRoute circuit. (autogenerated)
74+
75+
<!-- Aladdin Generated Example -->
76+
```powershell
77+
Add-AzExpressRouteCircuitPeeringConfig -ExpressRouteCircuit <PSExpressRouteCircuit> -MicrosoftConfigAdvertisedPublicPrefixes <String[]> -MicrosoftConfigCustomerAsn <Int32> -MicrosoftConfigRoutingRegistryName <String> -Name 'AzurePrivatePeering' -PeerASN 100 -PeerAddressType IPv4 -PeeringType AzurePrivatePeering -PrimaryPeerAddressPrefix '123.0.0.0/30' -SecondaryPeerAddressPrefix '123.0.0.4/30' -VlanId 300
78+
```
79+
7180
## PARAMETERS
7281

7382
### -DefaultProfile

src/Network/Network/help/Add-AzLoadBalancerInboundNatPoolConfig.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ PS C:\> $slb | Add-AzLoadBalancerInboundNatPoolConfig -Name "myInboundNatPool" -
4343
PS C:\> $lb | Set-AzLoadBalancer
4444
```
4545

46+
### Example 2
47+
48+
Adds an inbound NAT pool to a load balancer. (autogenerated)
49+
50+
<!-- Aladdin Generated Example -->
51+
```powershell
52+
Add-AzLoadBalancerInboundNatPoolConfig -BackendPort 1001 -FrontendIpConfigurationId <String> -FrontendPortRangeEnd 2000 -FrontendPortRangeStart 1001 -Name 'myInboundNatPool' -Protocol TCP -LoadBalancer <PSLoadBalancer>
53+
```
54+
4655
## PARAMETERS
4756

4857
### -BackendPort

src/Network/Network/help/Add-AzLoadBalancerInboundNatRuleConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The **Add-AzLoadBalancerInboundNatRuleConfig** cmdlet adds an inbound network ad
3535
## EXAMPLES
3636

3737
### Example 1: Add an inbound NAT rule configuration to a load balancer
38-
```
38+
```powershell
3939
PS C:\>$slb = Get-AzLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup"
4040
PS C:\> $slb | Add-AzLoadBalancerInboundNatRuleConfig -Name "NewNatRule" -FrontendIPConfiguration $slb.FrontendIpConfigurations[0] -Protocol "Tcp" -FrontendPort 3350 -BackendPort 3350 -EnableFloatingIP
4141
PS C:\> $slb | Set-AzLoadBalancer

src/Network/Network/help/Add-AzNetworkSecurityRuleConfig.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,25 +38,25 @@ The **Add-AzNetworkSecurityRuleConfig** cmdlet adds a network security rule conf
3838

3939
## EXAMPLES
4040

41-
### 1: Adding a network security group
42-
```
41+
### Example 1: Adding a network security group
42+
```powershell
4343
Get-AzNetworkSecurityGroup -Name nsg1 -ResourceGroupName rg1 |
44-
Add-AzNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access
45-
Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix Internet
46-
-SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389 |
44+
Add-AzNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access `
45+
Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceAddressPrefix Internet `
46+
-SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 3389 |
4747
Set-AzNetworkSecurityGroup
4848
```
4949

5050
The first command retrieves an Azure network security group named "nsg1" from resource group "rg1". The second command adds a network security rule named "rdp-rule" that allows traffic from internet on port 3389 to the retrieved network security group object. Persists the modified Azure network security group.
5151

52-
### 2: Adding a new security rule with application security groups
53-
```
52+
### Example 2: Adding a new security rule with application security groups
53+
```powershell
5454
$srcAsg = New-AzApplicationSecurityGroup -ResourceGroupName MyResourceGroup -Name srcAsg -Location "West US"
5555
$destAsg = New-AzApplicationSecurityGroup -ResourceGroupName MyResourceGroup -Name destAsg -Location "West US"
5656
5757
Get-AzNetworkSecurityGroup -Name nsg1 -ResourceGroupName rg1 |
58-
Add-AzNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access
59-
Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceApplicationSecurityGroup
58+
Add-AzNetworkSecurityRuleConfig -Name rdp-rule -Description "Allow RDP" -Access `
59+
Allow -Protocol Tcp -Direction Inbound -Priority 100 -SourceApplicationSecurityGroup `
6060
$srcAsg -SourcePortRange * -DestinationApplicationSecurityGroup $destAsg -DestinationPortRange 3389 |
6161
Set-AzNetworkSecurityGroup
6262
```

src/Network/Network/help/Disconnect-AzVirtualNetworkGatewayVpnConnection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ The **Disconnect-AzVirtualNetworkGatewayVpnConnection** cmdlet enables you to di
3131

3232
## EXAMPLES
3333

34-
### Example
35-
```
34+
### Example 1
35+
```powershell
3636
PS C:\> Disconnect-AzVirtualNetworkGatewayVpnConnection -ResourceName vnet-gw -ResourceGroupName vnetgwrg -VpnConnectionId @("IKEv2_7e1cfe59-5c7c-4315-a876-b11fbfdfeed4")
3737
3838
```

src/Network/Network/help/Get-AzAvailableServiceDelegation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The **Get-AzAvailableServiceDelegation** cmdlet allows you to retrieve all of th
2222

2323
## EXAMPLES
2424

25-
### 1: Getting all available service delegations
25+
### Example 1: Getting all available service delegations
2626
```powershell
2727
PS C:\> Get-AzAvailableServiceDelegation -Location "westus"
2828

src/Network/Network/help/Get-AzCustomIpPrefix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The **Get-AzCustomIpPrefix** cmdlet gets one or more CustomIpPrefixes given the
3030

3131
### Example 1
3232
```powershell
33-
PS C:\> Get-AzPublicIpPrefix -ResourceGroupName myRg -Name myCustomIpPrefix
33+
PS C:\> Get-AzCustomIpPrefix -ResourceGroupName myRg -Name myCustomIpPrefix
3434
3535
Name : myCustomIpPrefix
3636
ResourceGroupName : myRg
@@ -134,4 +134,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
134134
135135
[Remove-AzCustomIpPrefix](./Remove-AzCustomIpPrefix.md)
136136
137-
[Update-AzCustomIpPrefix](./Update-AzCustomIpPrefix.md)
137+
[Update-AzCustomIpPrefix](./Update-AzCustomIpPrefix.md)

0 commit comments

Comments
 (0)