Skip to content

Commit b391612

Browse files
author
maddieclayton
authored
Merge branch 'preview' into AsJobNetwork
2 parents 7bbe523 + 2643ead commit b391612

File tree

39 files changed

+177
-285
lines changed

39 files changed

+177
-285
lines changed

src/ResourceManager/Compute/Stack/Commands.Compute/help/Set-AzureRmVMBginfoExtension.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,15 @@ The **Set-AzureRmVMBGInfoExtension** cmdlet adds the BGInfo extension to a virtu
2323

2424
## EXAMPLES
2525

26-
### Example 1: Add the BGInfo extension for a virtual machine
26+
### Example 1: Add the BGInfo extension to a virtual machine
2727
```
28-
PS C:\> Set-AzureVMBGInfoExtension -ResrouceGroupName "ContosoRG" -VMName "ContosoVM" -Name "ExtensionName" -TypeHandlerVersion "2.1" -Location "West Europe"
28+
PS C:\> Set-AzureRmVMBgInfoExtension -ResourceGroupName "ContosoRG" -VMName "ContosoVM"
29+
```
30+
This command adds the BGInfo extension to a virtual machine named ContosoVM in the resource group ContosoRG.
31+
32+
### Example 2: Add a specific version of BGInfo extension to a virtual machine
33+
```
34+
PS C:\> Set-AzureRmVMBgInfoExtension -ResourceGroupName "ContosoRG" -VMName "ContosoVM" -Name "ExtensionName" -TypeHandlerVersion "2.1" -Location "West Europe"
2935
```
3036

3137
This command adds the BGInfo extension to virtual machine named ContosoVM.

src/ResourceManager/HDInsight/Commands.HDInsight/help/Add-AzureRmHDInsightComponentVersion.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,6 @@ The Add-AzureRmHDInsightComponentVersion cmdlet adds a version for a service run
2525
## EXAMPLES
2626

2727
### -------------------------- Example 1: Add a version for Spark to the cluster configuration object. --------------------------
28-
@{paragraph=PS C:\\\>}
29-
30-
31-
32-
33-
34-
35-
3628
```
3729
PS C:\> # Primary storage account info
3830
$storageAccountResourceGroupName = "Group"

src/ResourceManager/HDInsight/Commands.HDInsight/help/New-AzureRmHDInsightCluster.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,6 @@ The New-AzureHDInsightCluster creates an Azure HDInsight cluster by using the sp
8282
## EXAMPLES
8383

8484
### -------------------------- Example 1: Create an Azure HDInsight cluster --------------------------
85-
@{paragraph=PS C:\\\>}
86-
87-
88-
89-
90-
91-
92-
93-
94-
9585
```
9686
PS C:\> # Primary storage account info
9787
$storageAccountResourceGroupName = "Group"

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Add-AzureRmMlWebServiceRegionalProperty.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Creates Azure Machine Learning regional properties for an existing web service.
2323
## EXAMPLES
2424

2525
### -------------------------- Example 1: Add new regional properties for West Central US --------------------------
26-
@{paragraph=PS C:\\\>}
2726

2827
```
2928
Add-AzureRmMlWebServiceRegionalProperty -ResourceGroupName "myresourcegroup" -Name "mywebservicename" -Region westcentralus

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Export-AzureRmMlWebService.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,11 @@ You can return the string immediately or save it to a file.
3131
## EXAMPLES
3232

3333
### -------------------------- Example 1: Export as string --------------------------
34-
@{paragraph=PS C:\\\>}
35-
36-
37-
3834
```
3935
Export-AzureRmMlWebService -WebService $svc -ToJsonString
4036
```
4137

4238
### -------------------------- Example 2: Export to file --------------------------
43-
@{paragraph=PS C:\\\>}
44-
45-
46-
4739
```
4840
Export-AzureRmMlWebService -WebService $svc -OutputFile "C:\mlservice.json"
4941
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Get-AzureRmMlCommitmentAssociation.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,11 @@ Depending on the paramenters passed, the cmdlet returns a specific commitment as
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Get a specific commitment association --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
30-
3127
```
3228
Get-AzureRmMlCommitmentAssociation -ResourceGroupName "MyResourceGroup" -CommitmentPlanName "MyCommitmentPlanName" -Name "MyCommitmentAssociationName"
3329
```
3430

3531
### -------------------------- Example 2: Get all commitment associations for the specified commitment plan --------------------------
36-
@{paragraph=PS C:\\\>}
37-
38-
39-
4032
```
4133
Get-AzureRmMlCommitmentAssociation -ResourceGroupName "MyResourceGroup" -CommitmentPlanName "MyCommitmentPlanName"
4234
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Get-AzureRmMlCommitmentPlan.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,16 @@ Depending on the paramenters passed, the cmdlet returns the a specific commitmen
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Get a specific commitment plan --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
30-
3127
```
3228
Get-AzureRmMlCommitmentPlan -ResourceGroupName "MyResourceGroup" -Name "MyCommitmentPlanName"
3329
```
3430

3531
### -------------------------- Example 2: Get all commitment plan resources in current subscription --------------------------
36-
@{paragraph=PS C:\\\>}
37-
38-
39-
4032
```
4133
Get-AzureRmMlCommitmentPlan
4234
```
4335

4436
### -------------------------- Example 3: Get all commitment plans in the current subscription and given resource group --------------------------
45-
@{paragraph=PS C:\\\>}
46-
47-
48-
4937
```
5038
Get-AzureRmMlCommitmentPlan -ResourceGroupName "MyResourceGroup"
5139
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Get-AzureRmMlCommitmentPlanUsageHistory.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ Retrieves usage history information for a specified commitment plan, including r
2323
## EXAMPLES
2424

2525
### -------------------------- Example 1: Get usage history for a specific commitment plan --------------------------
26-
@{paragraph=PS C:\\\>}
27-
28-
29-
3026
```
3127
Get-AzureRmMlCommitmentPlanUsageHistory -ResourceGroupName "MyResourceGroup" -Name "MyCommitmentPlanName"
3228
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Get-AzureRmMlWebService.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,16 @@ Depending on the paramenters passed, the cmdlet returns the defintion for a spec
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Get details of specific web service --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
30-
3127
```
3228
Get-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename"
3329
```
3430

3531
### -------------------------- Example 2: Get all web service resources in current subscription --------------------------
36-
@{paragraph=PS C:\\\>}
37-
38-
39-
4032
```
4133
Get-AzureRmMlWebService
4234
```
4335

4436
### -------------------------- Example 3: Get all web services in the current subscription and given resource group --------------------------
45-
@{paragraph=PS C:\\\>}
46-
47-
48-
4937
```
5038
Get-AzureRmMlWebService -ResourceGroupName "myresourcegroup"
5139
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Get-AzureRmMlWebServiceKeys.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,11 @@ Gets the access keys for the Azure Machine Learning web service's runtime APIs.
3030
## EXAMPLES
3131

3232
### -------------------------- Example 1 - Get the keys for a web service specified by resource group and name --------------------------
33-
@{paragraph=PS C:\\\>}
34-
35-
36-
3733
```
3834
Get-AzureRmMlWebServiceKeys -ResourceGroupName "myresourcegroup" -Name "mywebservicename"
3935
```
4036

4137
### -------------------------- Example 2 - Get keys for web service instance --------------------------
42-
@{paragraph=PS C:\\\>}
43-
44-
45-
4638
```
4739
Get-AzureRmMlWebServiceKeys -MlWebService $mlService
4840
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Import-AzureRmMlWebService.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,11 @@ The Import-AzureRmMlWebService cmdlet imports , specified either directly or in
2828
## EXAMPLES
2929

3030
### -------------------------- Example 1: Import from string --------------------------
31-
@{paragraph=PS C:\\\>}
32-
33-
34-
3531
```
3632
Import-AzureRmMlWebService -JsonString $jsonDefinition
3733
```
3834

3935
### -------------------------- Example 2: Import from file path --------------------------
40-
@{paragraph=PS C:\\\>}
41-
42-
4336
```
4437
Import-AzureRmMlWebService -InputFile "C:\mlservice.json"
4538
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Move-AzureRmMlCommitmentAssociation.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ Moves a commitment association resource from its parent commitment plan to anoth
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Move a commitment association --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
30-
3127
```
3228
Get-AzureRmMlCommitmentAssociation -ResourceGroupName "MyResourceGroup" -CommitmentPlanName "SourceCommitmentPlanName" -Name "MyCommitmentAssociationName" -DestinationPlanId "/subscriptions/MySubscriptionId/resourceGroups/MyResourceGroup/providers/Microsoft.MachineLearning/commitmentPlans/DestinationCommitmentPlanName"
3329
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/New-AzureRmMlCommitmentPlan.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ If a commitment plan with the same name exists in the resource group, the call a
2525
## EXAMPLES
2626

2727
### -------------------------- Example 1: Create a new commitment plan --------------------------
28-
@{paragraph=PS C:\\\>}
29-
30-
31-
3228
```
3329
New-AzureRmMlCommitmentPlan -ResourceGroupName "MyResourceGroup" -Name "MyCommitmentPlanName" -Location "South Central US" -SkuName DevTest -SkuTier Standard -SkuCapacity 1
3430
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/New-AzureRmMlWebService.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,13 @@ If a web service with the same name exists in the resource group, the call acts
3232
## EXAMPLES
3333

3434
### -------------------------- Example 1: Create a new service from a Json file based definition --------------------------
35-
@{paragraph=PS C:\\\>}
36-
37-
38-
3935
```
4036
New-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename" -Location "South Central US" -DefinitionFile "C:\mlservice.json"
4137
```
4238

4339
Creates a new Azure Machine Learning web service named "mywebservicename" in the "myresourcegroup" group and South Central US region, based on the definition present in the referenced json file.
4440

4541
### -------------------------- Example 2: Create a new service from an object instance --------------------------
46-
@{paragraph=PS C:\\\>}
47-
48-
49-
5042
```
5143
New-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename" -Location "South Central US" -NewWebServiceDefinition $serviceDefinitionObject
5244
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Remove-AzureRmMlCommitmentPlan.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ Deletes an Azure Machine Learning commitment plan. Note that commitment plans wh
3030
## EXAMPLES
3131

3232
### -------------------------- Example 1: Delete a commitment plan --------------------------
33-
@{paragraph=PS C:\\\>}
34-
35-
36-
3733
```
3834
Remove-AzureRmMlCommitmentPlan -ResourceGroupName "MyResourceGroup" -Name "MyCommitmentPlanName"
3935
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Remove-AzureRmMlWebService.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ Deletes a Azure Machine Learning web service referenced by resource group and na
3030
## EXAMPLES
3131

3232
### -------------------------- Example 1 --------------------------
33-
@{paragraph=PS C:\\\>}
34-
35-
36-
3733
```
3834
Remove-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename"
3935
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Update-AzureRmMlCommitmentPlan.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ Updates an existing commitment plan resource. Note that most properties of the c
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Update a commitment plan --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
30-
3127
```
3228
Update-AzureRmMlCommitmentPlan -ResourceGroupName "MyResourceGroup" -Name "MyCommitmentPlanName" -Tags @{'MyTagKey'='MyTagValue'}
3329
```

src/ResourceManager/MachineLearning/Commands.MachineLearning/help/Update-AzureRmMlWebService.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,13 @@ Pass only the properties that you want modified.
3636
## EXAMPLES
3737

3838
### -------------------------- Example 1: Selective update arguments --------------------------
39-
@{paragraph=PS C:\\\>}
40-
41-
42-
4339
```
4440
Update-AzureRmMlWebService -ResourceGroupName "myresourcegroup" -Name "mywebservicename" -Description "new update to description" -Keys @{Primary='changed primary key'} -Diagnostics @{Level='All'}
4541
```
4642

4743
Here, we change the description, primary access key and enable the diagnostics collection for all traces during runtime for the web service.
4844

4945
### -------------------------- Example 2: Update based on a web service instance --------------------------
50-
@{paragraph=PS C:\\\>}
51-
52-
53-
5446
```
5547
$updates = @{ Properties = @{ Title="New Title"; RealtimeConfiguration = @{ MaxConcurrentCalls=25 }}}
5648

src/ResourceManager/Network/Commands.Network/help/Add-AzureRmRouteFilterRuleConfig.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ The Add-AzureRmRouteFilterRuleConfig cmdlet adds a route filter rule to an Azure
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Add a route filter rule to a route filter --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
3027
```
3128
PS C:\>$RouteFilter = Get-AzureRmRouteFilter -ResourceGroupName "ResourceGroup11" -Name "routefilter01"
3229
PS C:\> Add-AzureRmRouteFilterRuleConfig -Name "rule13" -Access Allow -RouteFilterRuleType Community -RouteFilter $RouteFilter

src/ResourceManager/Network/Commands.Network/help/Get-AzureRmApplicationGatewayBackendHealth.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,13 @@ The Get-AzureRmApplicationGatewayBackendHealth cmdlet gets application gateway b
2424
## EXAMPLES
2525

2626
### -------------------------- Example 1: Gets backend health without expanded resources. --------------------------
27-
@{paragraph=PS C:\\\>}
28-
29-
3027
```
3128
PS C:\>$BackendHealth = Get-AzureRmApplicationGatewayBackendHealth -Name ApplicationGateway01 -ResourceGroupName ResourceGroup01
3229
```
3330

3431
This command gets the backend health of application gateway named ApplicationGateway01 that belongs to the resource group named ResourceGroup01 and stores it in the $BackendHealth variable.
3532

3633
### -------------------------- Example 1: Gets backend health with expanded resources. --------------------------
37-
@{paragraph=PS C:\\\>}
38-
39-
4034
```
4135
PS C:\>$BackendHealth = Get-AzureRmApplicationGatewayBackendHealth -Name ApplicationGateway01 -ResourceGroupName ResourceGroup01 -ExpandResource "backendhealth/applicationgatewayresource"
4236
```

src/ResourceManager/Network/Commands.Network/help/Test-AzureRmNetworkWatcherConnectivity.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ The Test-AzureRmNetworkWatcherConnectivity cmdlet returns connectivity informati
3232
## EXAMPLES
3333

3434
### --------------- Example 1: Test Network Watcher Connectivity from a VM to a website ---------------
35-
@{paragraph=PS C:\\\>}
36-
37-
3835
```
3936
Test-AzureRmNetworkWatcherConnectivity -NetworkWatcherName NetworkWatcher -ResourceGroupName NetworkWatcherRG -SourceId "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ContosoRG/providers/Microsoft.Compute/virtualMachines/MultiTierApp0" -DestinationAddress "bing.com" -DestinationPort 80
4037

src/ResourceManager/PowerBIEmbedded/Commands.Management.PowerBIEmbedded/help/AzureRM.PowerBIEmbedded.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,30 @@ Locale: en-US
1010
## Description
1111
This topic displays help topics for the Azure Power BI Embedded Cmdlets.
1212

13-
## AzureRM.PowerBIEmbedded Cmdlets
13+
## PowerBI Embedded Capacity Cmdlets
14+
### [Get-AzureRmPowerBIEmbeddedCapacity](Get-AzureRmPowerBIEmbeddedCapacity.md)
15+
Gets the details of a PowerBI Embedded Capacity.
16+
17+
### [New-AzureRmPowerBIEmbeddedCapacity](New-AzureRmPowerBIEmbeddedCapacity.md)
18+
Creates a new PowerBI Embedded Capacity.
19+
20+
### [Remove-AzureRmPowerBIEmbeddedCapacity](Remove-AzureRmPowerBIEmbeddedCapacity.md)
21+
Deletes an instance of PowerBI Embedded Capacity.
22+
23+
### [Resume-AzureRmPowerBIEmbeddedCapacity](Resume-AzureRmPowerBIEmbeddedCapacity.md)
24+
Resumes an instance of PowerBI Embedded Capacity.
25+
26+
### [Suspend-AzureRmPowerBIEmbeddedCapacity](Suspend-AzureRmPowerBIEmbeddedCapacity.md)
27+
Suspends an instance of PowerBI Embedded Capacity.
28+
29+
### [Test-AzureRmPowerBIEmbeddedCapacity](Test-AzureRmPowerBIEmbeddedCapacity.md)
30+
Tests the existence of an instance of PowerBI Embedded Capacity.
31+
32+
### [Update-AzureRmPowerBIEmbeddedCapacity](Update-AzureRmPowerBIEmbeddedCapacity.md)
33+
Modifies an instance of PowerBI Embedded Capacity.
34+
35+
36+
## PowerBI Workspace Collection Cmdlets
1437
### [Get-AzureRmPowerBIWorkspace](Get-AzureRmPowerBIWorkspace.md)
1538
Gets the workspaces in a Power BI workspace collection.
1639

src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmADSpCredential.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,6 @@ A new key credential is added to an existing service principal.
6969
In this example, the supplied base64 encoded public X509 certificate ("myapp.cer") is added to the service principal using its SPN.
7070

7171
### -------------------------- Example 3 --------------------------
72-
@{paragraph=PS C:\\\>}
73-
74-
75-
76-
77-
78-
79-
8072
```
8173
PS E:\> New-AzureRmADSpCredential -ServicePrincipalName "http://test123" -CertValue $credValue
8274
```

0 commit comments

Comments
 (0)