Skip to content

Commit c9a8ffc

Browse files
author
Graham Priestley
authored
Merge pull request MicrosoftDocs#256 from Azure/Graham71046
Bug 71046 ver3.7
2 parents 0497b2d + 071df88 commit c9a8ffc

File tree

4 files changed

+10
-18
lines changed

4 files changed

+10
-18
lines changed

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/New-AzureRmPolicyAssignment.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ New-AzureRmPolicyAssignment -Name <String> -Scope <String> [-DisplayName <String
3535

3636
## DESCRIPTION
3737
The **New-AzureRmPolicyAssignment** cmdlet creates a policy assignment.
38-
Specify a policy and scope.
38+
This cmdlet specifies a policy and scope.
3939

4040
## EXAMPLES
4141

@@ -46,10 +46,10 @@ PS C:\> $Policy = Get-AzureRmPolicyDefinition -Name "VirtualMachinePolicy"
4646
PS C:\> New-AzureRmPolicyAssignment -Name "VirtualMachinePolicyAssignment" -PolicyDefinition $Policy -Scope $ResourceGroup.ResourceId
4747
```
4848

49-
The first command gets a resource group named ResourceGroup11 by using the Get-AzureRMResourceGroup cmdlet.
49+
The first command gets a resource group named ResourceGroup11 by using the [Get-AzureRMResourceGroup](,/Get-AzureRmResourceGroup.md) cmdlet.
5050
The command stores that object in the $ResourceGroup variable.
5151

52-
The second command gets the policy definition named VirtualMachinePolicy by using the Get-AzureRmPolicyDefinition cmdlet.
52+
The second command gets the policy definition named VirtualMachinePolicy by using the [Get-AzureRmPolicyDefinition](./Get-AzureRmRoleDefinition.md) cmdlet.
5353
The command stores that object in the $Policy variable.
5454

5555
The final command assigns the policy in $Policy at the level of a resource group.
@@ -238,5 +238,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
238238
[Remove-AzureRmPolicyAssignment](./Remove-AzureRmPolicyAssignment.md)
239239

240240
[Set-AzureRmPolicyAssignment](./Set-AzureRmPolicyAssignment.md)
241-
242-

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/New-AzureRmResource.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Specify data center location, such as Central US or Southeast Asia.
5555

5656
You can place a resource in any location that supports resources of that type.
5757
Resource groups can contain resources from different locations.
58-
To determine which locations support each resource type, use the Get-AzureLocation cmdlet.
58+
To determine which locations support each resource type, use the **Get-AzureLocation** cmdlet.
5959

6060
```yaml
6161
Type: String
@@ -246,7 +246,7 @@ Accept wildcard characters: False
246246
```
247247

248248
### -Plan
249-
A hash table that represents resource plan properties.
249+
Specifies a hash table that represents resource plan properties.
250250

251251
```yaml
252252
Type: Hashtable
@@ -327,7 +327,7 @@ Accept wildcard characters: False
327327
```
328328

329329
### -Sku
330-
A hash table that represents sku properties.
330+
Specifies a hash table that represents SKU properties.
331331

332332
```yaml
333333
Type: Hashtable
@@ -392,5 +392,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
392392
[Remove-AzureRmResource](./Remove-AzureRmResource.md)
393393

394394
[Set-AzureRmResource](./Set-AzureRmResource.md)
395-
396-

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/New-AzureRmResourceGroup.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ New-AzureRmResourceGroup -Name <String> -Location <String> [-Tag <Hashtable>] [-
2020
## DESCRIPTION
2121
The **New-AzureRmResourceGroup** cmdlet creates an Azure resource group.
2222

23-
You can create a resource group by using just a name and location, and then use the New-AzureRmResource cmdlet to create resources to add to the resource group.
23+
You can create a resource group by using just a name and location, and then use the [New-AzureRmResource](./New-AzureRmResource.md) cmdlet to create resources to add to the resource group.
2424

2525
To add a deployment to an existing resource group, use the New-AzureRmResourceGroupDeployment cmdlet.
2626
To add a resource to an existing resource group, use the **New-AzureRmResource** cmdlet.
@@ -73,7 +73,7 @@ Specify an Azure data center location, such as West US or Southeast Asia.
7373
You can place a resource group in any location.
7474
The resource group does not have to be in the same location your Azure subscription or in the same location as its resources.
7575
76-
To determine which location supports each resource type, use the Get-AzureRmResourceProvider cmdlet with the *ProviderNamespace* parameter.
76+
To determine which location supports each resource type, use the [Get-AzureRmResourceProvider](./Get-AzureRmResourceProvider.md) cmdlet with the *ProviderNamespace* parameter.
7777
7878
```yaml
7979
Type: String
@@ -92,7 +92,7 @@ Specifies a hash table of tags.
9292
To add or change a tag, you must replace the collection of tags for the resource group.
9393
9494
A tag is a name-value pair that you can create and apply to resources and resource groups.
95-
After you assign tags to resources and groups, you can use the *Tag* parameter of Get-AzureRmResource and Get-AzureRmResourceGroup to search for resources and groups by tag name or by name and value.
95+
After you assign tags to resources and groups, you can use the *Tag* parameter of **Get-AzureRmResource** and **Get-AzureRmResourceGroup** to search for resources and groups by tag name or by name and value.
9696
You can use tags to categorize your resources, such as by department or cost center, or to track notes or comments about the resources.
9797
9898
Each tag must have a Name key.
@@ -217,5 +217,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
217217
[Remove-AzureRmResourceGroup](./Remove-AzureRmResourceGroup.md)
218218

219219
[Set-AzureRmResourceGroup](./Set-AzureRmResourceGroup.md)
220-
221-

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/New-AzureRmResourceGroupDeployment.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This includes the resources that the deployment requires.
7575
An Azure resource is a user-managed Azure entity, such as a database server, database, website, virtual machine, or Storage account.
7676
An Azure resource group is a collection of Azure resources that are deployed as a unit, such as the website, database server, and databases that are required for a financial website.
7777
A resource group deployment uses a template to add resources to a resource group and publishes them so that they are available in Azure.
78-
To add resources to a resource group without using a template, use the New-AzureRmResource cmdlet.
78+
To add resources to a resource group without using a template, use the [New-AzureRmResource](./New-AzureRmResource.md) cmdlet.
7979

8080
To add a resource group deployment, specify the name of an existing resource group and a resource group template.
8181
A resource group template is a JSON string that represents a resource group for a complex cloud-based service, such as a web portal.
@@ -360,5 +360,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
360360
[Stop-AzureRmResourceGroupDeployment](./Stop-AzureRmResourceGroupDeployment.md)
361361

362362
[Test-AzureRmResourceGroupDeployment](./Test-AzureRmResourceGroupDeployment.md)
363-
364-

0 commit comments

Comments
 (0)