Skip to content

Commit 6d9479e

Browse files
author
Sean Wheeler
committed
2 parents eb66617 + fa13fe4 commit 6d9479e

14 files changed

+134
-180
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ test: off
2727
on_success:
2828
- cd azure-psdocs-processing
2929
- git add -A
30-
- git diff --quiet --exit-code --cached || git commit --author="VSC CI Service <vscavu@microsoft.com>" -m "Update azure powershell docs." && git pull origin master && git push origin master
30+
- git diff --quiet --exit-code --cached || git commit --author="VSC CI Service <vscavu@microsoft.com>" -m "Update azure powershell docs." && git pull origin master --rebase && git push origin master
3131
# on_finish:
3232
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/Get-AzureRmProviderOperation.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,33 @@ Use **Get-AzureRmProviderOperation** Microsoft.Compute/* to get all operations o
3030

3131
### Example 1: Get all actions for all providers
3232

33-
3433
```
3534
PS C:\> Get-AzureRmProviderOperation *
3635
```
3736

38-
### -------------------------- Get actions for a particular resource provider --------------------------
37+
This command gets all actions from all resource providers.
3938

39+
### Example 2: Get actions for a particular resource provider
4040

4141
```
4242
PS C:\> Get-AzureRmProviderOperation Microsoft.Insights/*
4343
```
4444

45-
### -------------------------- Get all actions that can be performed on virtual machines --------------------------
45+
This command gets all actions from the resource provider named Microsoft.Insights.
4646

47+
### Example 3: Get all actions that can be performed on virtual machines
4748

4849
```
4950
PS C:\> Get-AzureRmProviderOperation */virtualMachines/*
5051
```
5152

53+
This command gets all actions that can be performed on virtual machines.
54+
55+
5256
## PARAMETERS
5357

5458
### -OperationSearchString
55-
The operation search string (with possible wildcard (*) characters)
59+
Specifies the operation search string (with possible wildcard (*) characters).
5660

5761
```yaml
5862
Type: String

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

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ This command gets a resource of the type microsoft.web/sites, named ContosoWebsi
8181
## PARAMETERS
8282

8383
### -ResourceGroupName
84+
Specifies the name of the resource group.
85+
8486
```yaml
8587
Type: String
8688
Parameter Sets: Get resource by name, group and type
@@ -118,6 +120,8 @@ Accept wildcard characters: False
118120
```
119121
120122
### -ResourceType
123+
Specifies the resource type of the resource this cmdlet gets.
124+
121125
```yaml
122126
Type: String
123127
Parameter Sets: Get resource by name, group and type, Get a single resource at the tenant level.
@@ -155,6 +159,8 @@ Accept wildcard characters: False
155159
```
156160
157161
### -ApiVersion
162+
Specifies the API version of the resource that this cmdlet gets.
163+
158164
```yaml
159165
Type: String
160166
Parameter Sets: (All)
@@ -181,6 +187,8 @@ Accept wildcard characters: False
181187
```
182188
183189
### -ExtensionResourceName
190+
Specifies the name of the extension resource.
191+
184192
```yaml
185193
Type: String
186194
Parameter Sets: Get resource by name, group and type, Get resource by name and group, Get a resource by name and type., Lists the resources based on the specified scope at the tenant level., Get a single resource at the tenant level.
@@ -194,6 +202,8 @@ Accept wildcard characters: False
194202
```
195203
196204
### -ExtensionResourceType
205+
Specifies the type of the extension resource.
206+
197207
```yaml
198208
Type: String
199209
Parameter Sets: Get resource by name, group and type, Get resource by name and group, Get a resource by name and type., Lists the resources based on the specified scope at the tenant level., Get a single resource at the tenant level.
@@ -219,6 +229,8 @@ Accept wildcard characters: False
219229
```
220230
221231
### -IsCollection
232+
Indicates that the resource is a collection.
233+
222234
```yaml
223235
Type: SwitchParameter
224236
Parameter Sets: Get resource by name and group, Get a resource by name and type., Lists the resources based on the specified scope at the tenant level., Get a single resource at the tenant level., Get resource collection
@@ -277,6 +289,8 @@ Accept wildcard characters: False
277289
```
278290

279291
### -ResourceName
292+
Specifies the name of the resource.
293+
280294
```yaml
281295
Type: String
282296
Parameter Sets: Get resource by name, group and type, Get a single resource at the tenant level.
@@ -349,5 +363,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
349363
[Remove-AzureRmResource](./Remove-AzureRmResource.md)
350364

351365
[Set-AzureRmResource](./Set-AzureRmResource.md)
352-
353-

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The **Get-AzureRmResourceGroup** cmdlet gets Azure resource groups in the curren
2828
You can get all resource groups, or specify a resource group by name or by other properties.
2929
By default, this cmdlet gets all resource groups in the current subscription.
3030

31-
For more information about Azure resources and Azure resource groups, see the New-AzureRmResourceGroup cmdlet.
31+
For more information about Azure resources and Azure resource groups, see the [New-AzureRmResourceGroup](./New-AzureRmResourceGroup.md) cmdlet.
3232

3333
## EXAMPLES
3434

@@ -148,5 +148,3 @@ This cmdlet returns resource groups.
148148
[Remove-AzureRmResourceGroup](./Remove-AzureRmResourceGroup.md)
149149
150150
[Set-AzureRmResourceGroup](./Set-AzureRmResourceGroup.md)
151-
152-

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ An Azure resource is a user-managed Azure entity, such as a database server, dat
3232
An Azure resource group is a collection of Azure resources that are deployed as a unit.
3333

3434
A deployment is the operation that makes the resources in the resource group available for use.
35-
For more information about Azure resources and Azure resource groups, see the New-AzureRmResourceGroup cmdlet.
35+
For more information about Azure resources and Azure resource groups, see the [New-AzureRmResourceGroup](./New-AzureRmResourceGroup.md) cmdlet.
3636

3737
You can use this cmdlet for tracking.
38-
For debugging, use this cmdlet with the Get-AzureRmLog cmdlet.
38+
For debugging, use this cmdlet with the **Get-AzureRmLog** cmdlet.
3939

4040
## EXAMPLES
4141

@@ -174,5 +174,3 @@ The cmdlet returns resource group deployments.
174174
[Stop-AzureRmResourceGroupDeployment](./Stop-AzureRmResourceGroupDeployment.md)
175175
176176
[Test-AzureRmResourceGroupDeployment](./Test-AzureRmResourceGroupDeployment.md)
177-
178-

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/Get-AzureRmResourceGroupDeploymentOperation.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ This is the same information provided in the deployment details on the portal.
2525

2626
To get the request and the response content, enable the setting when submitting a deployment through **New-AzureRmResourceGroupDeployment**.
2727
It can potentially log and expose secrets like passwords used in the resource property or **listKeys** operations that are then returned when you retrieve the deployment operations.
28-
For more on this setting and how to enable it, see New-AzureRmResourceGroupDeployment and Debugging ARM template deployments
28+
For more on this setting and how to enable it, see [New-AzureRmResourceGroupDeployment](./New-AzureRmResourceGroupDeployment.md) and Debugging ARM template deployments.
2929

3030
## EXAMPLES
3131

32-
### -------------------------- Get1 --------------------------
32+
### Example 1: Get a group deployment operation
3333
```
34-
PS C:\> Get-AzureRmResourceGroupDeploymentOperation -DeploymentName test -ResourceGroupName test
34+
PS C:\> Get-AzureRmResourceGroupDeploymentOperation -DeploymentName "Test01" -ResourceGroupName "RG002"
3535
```
3636

37-
Gets deployment operation with name "test" under resource group "test"
37+
This command gets the deployment operation named Test01 under resource group named RG002.
3838

3939
## PARAMETERS
4040

4141
### -DeploymentName
42-
The deployment name.
42+
Specifies the deployment name.
4343

4444
```yaml
4545
Type: String
@@ -54,7 +54,7 @@ Accept wildcard characters: False
5454
```
5555
5656
### -SubscriptionId
57-
The subscription to use.
57+
Specifies the subscription ID that this cmdlet gets.
5858
5959
```yaml
6060
Type: Guid
@@ -69,7 +69,7 @@ Accept wildcard characters: False
6969
```
7070
7171
### -ResourceGroupName
72-
The resource group name.
72+
Specifies the name of the resource group.
7373
7474
```yaml
7575
Type: String
@@ -84,7 +84,7 @@ Accept wildcard characters: False
8484
```
8585
8686
### -ApiVersion
87-
When set, indicates the version of the resource provider API to use.
87+
Specifies the version of the resource provider API to use.
8888
If not specified, the API version is automatically determined as the latest available.
8989
9090
```yaml
@@ -100,7 +100,7 @@ Accept wildcard characters: False
100100
```
101101
102102
### -Pre
103-
When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use.
103+
Indicates that the cmdlet should use pre-release API versions when automatically determining which version to use.
104104
105105
```yaml
106106
Type: SwitchParameter
@@ -163,4 +163,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
163163
## NOTES
164164
165165
## RELATED LINKS
166-

azureps-cmdlets-docs/ResourceManager/AzureRM.Resources/v3.7.0/Get-AzureRmResourceProvider.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ The **Get-AzureRmResourceProvider** cmdlet gets an Azure resource provider.
2929

3030
## EXAMPLES
3131

32-
### 1:
33-
```
34-
35-
```
36-
3732
## PARAMETERS
3833

3934
### -ListAvailable
@@ -126,5 +121,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
126121
[Register-AzureRmResourceProvider](./Register-AzureRmResourceProvider.md)
127122
128123
[Unregister-AzureRmResourceProvider](./Unregister-AzureRmResourceProvider.md)
129-
130-

0 commit comments

Comments
 (0)