Skip to content

Commit 95bd6b0

Browse files
committed
Merge branch 'preview' of https://github.com/Azure/azure-powershell into release-4.2.0
# Conflicts: # src/ResourceManager/Compute/Commands.Compute/help/New-AzureRmDiskConfig.md # src/ResourceManager/Compute/Commands.Compute/help/New-AzureRmDiskUpdateConfig.md # src/ResourceManager/Compute/Commands.Compute/help/New-AzureRmSnapshotConfig.md # src/ResourceManager/Compute/Commands.Compute/help/New-AzureRmSnapshotUpdateConfig.md
2 parents 1eb8d47 + 056b11e commit 95bd6b0

File tree

156 files changed

+1763149
-17637
lines changed

Some content is hidden

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

156 files changed

+1763149
-17637
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This repository contains a set of PowerShell cmdlets for developers and administrators to develop, deploy and manage Microsoft Azure applications.
66

77
* For documentation on how to build and deploy applications to Microsoft Azure please see the [Microsoft Azure Documentation Center](https://docs.microsoft.com/en-us/azure/).
8-
* For comprehensive documentation on the developer cmdlets see the [overview of Azure PowerShell](aka.ms/azpsdocs).
8+
* For comprehensive documentation on the developer cmdlets see the [overview of Azure PowerShell](https://aka.ms/azpsdocs).
99
* For suggesting improvements, join our improvement discussion ([Issue #3692](https://github.com/Azure/azure-powershell/issues/3692)).
1010

1111
## Features

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/help/New-AzureRmAnalysisServicesServer.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
external help file: Microsoft.Azure.Commands.AnalysisServices.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

@@ -36,7 +36,7 @@ A string representing a comma separated list of users or groups to be set as adm
3636
```yaml
3737
Type: String
3838
Parameter Sets: (All)
39-
Aliases:
39+
Aliases:
4040

4141
Required: False
4242
Position: 4
@@ -51,7 +51,7 @@ The Azure region where the Analysis Services server is hosted
5151
```yaml
5252
Type: String
5353
Parameter Sets: (All)
54-
Aliases:
54+
Aliases:
5555
Accepted values: North Central US, South Central US, Central US, West Europe, North Europe, West US, East US, East US 2, Japan East, Japan West, Brazil South, Southeast Asia, East Asia, Australia East, Australia Southeast
5656

5757
Required: True
@@ -67,7 +67,7 @@ Name of the Analysis Services server
6767
```yaml
6868
Type: String
6969
Parameter Sets: (All)
70-
Aliases:
70+
Aliases:
7171

7272
Required: True
7373
Position: 1
@@ -82,7 +82,7 @@ Name of the Azure resource group to which the server belongs
8282
```yaml
8383
Type: String
8484
Parameter Sets: (All)
85-
Aliases:
85+
Aliases:
8686

8787
Required: True
8888
Position: 0
@@ -98,8 +98,8 @@ The supported values are 'S0', 'S1', 'S2', 'S4' for the Standard tier; 'B1', 'B2
9898
```yaml
9999
Type: String
100100
Parameter Sets: (All)
101-
Aliases:
102-
Accepted values: S1, S2, S4, D1
101+
Aliases:
102+
Accepted values: S1, S2, S4, B1, B2, D1
103103

104104
Required: True
105105
Position: 3
@@ -109,12 +109,15 @@ Accept wildcard characters: False
109109
```
110110
111111
### -Tag
112-
Key-value pairs in the form of a hash table set as tags on the server.
112+
Key-value pairs in the form of a hash table set as tags on the server. For example:
113+
114+
@{key0=$null;key1="value1";key2="value2"}
115+
113116
114117
```yaml
115118
Type: Hashtable
116119
Parameter Sets: (All)
117-
Aliases:
120+
Aliases:
118121

119122
Required: False
120123
Position: 4

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/help/Set-AzureRmAnalysisServicesServer.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
external help file: Microsoft.Azure.Commands.AnalysisServices.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

@@ -23,7 +23,7 @@ The Set-AzureRmAnalysisServicesServer cmdlet modifies an instance of Analysis Se
2323

2424
### Example 1
2525
```
26-
PS C:\> Set-AzureRmAnalysisServicesServer -Name "testserver" -ResourceGroupName "testgroup" -Tag "key1:value1,key2:value2" -Administrator "[email protected]"
26+
PS C:\> Set-AzureRmAnalysisServicesServer -Name "testserver" -ResourceGroupName "testgroup" -Tag @{key0="value0";key1=$null;key2="value2"} -Administrator "[email protected]"
2727
```
2828

2929
Modifies the server named testserver in resourcegroup testgroup to set the tags as key1:value1 and key2:value2 and administrator to [email protected]
@@ -32,13 +32,12 @@ Modifies the server named testserver in resourcegroup testgroup to set the tags
3232

3333
### -Administrator
3434
A string representing a comma separated list of users or groups to be set as administrators on the server.
35-
The users or groups need to be specified UPN format e.g.
36-
35+
The users or groups need to be specified UPN format, for example: [email protected] or [email protected]
3736

3837
```yaml
3938
Type: String
4039
Parameter Sets: (All)
41-
Aliases:
40+
Aliases:
4241

4342
Required: False
4443
Position: 4
@@ -53,7 +52,7 @@ Name of the Analysis Services server
5352
```yaml
5453
Type: String
5554
Parameter Sets: (All)
56-
Aliases:
55+
Aliases:
5756

5857
Required: True
5958
Position: 0
@@ -68,7 +67,7 @@ Will return the deleted server details if the operation completes successfully
6867
```yaml
6968
Type: SwitchParameter
7069
Parameter Sets: (All)
71-
Aliases:
70+
Aliases:
7271

7372
Required: False
7473
Position: Named
@@ -83,7 +82,7 @@ Name of the Azure resource group to which the server belongs
8382
```yaml
8483
Type: String
8584
Parameter Sets: (All)
86-
Aliases:
85+
Aliases:
8786

8887
Required: False
8988
Position: 1
@@ -99,8 +98,8 @@ The supported values are 'S0', 'S1', 'S2', 'S4' for the Standard tier; 'B1', 'B2
9998
```yaml
10099
Type: String
101100
Parameter Sets: (All)
102-
Aliases:
103-
Accepted values: S1, S2, S4
101+
Aliases:
102+
Accepted values: S1, S2, S4, B1, B2, D1
104103

105104
Required: False
106105
Position: 2
@@ -110,12 +109,14 @@ Accept wildcard characters: False
110109
```
111110
112111
### -Tag
113-
Key-value pairs in the form of a hash table set as tags on the server.
112+
Key-value pairs in the form of a hash table. For example:
113+
114+
@{key0="value0";key1=$null;key2="value2"}
114115
115116
```yaml
116117
Type: Hashtable
117118
Parameter Sets: (All)
118-
Aliases:
119+
Aliases:
119120

120121
Required: False
121122
Position: 3

src/ResourceManager/ApiManagement/Commands.ApiManagement/help/Get-AzureRmApiManagementProperty.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll-Help.xml
33
ms.assetid: 894297BF-2771-4871-9E4C-8684364DAC4B
4-
online version:
4+
online version:
55
schema: 2.0.0
66
---
77

@@ -37,7 +37,7 @@ Get-AzureRmApiManagementProperty -Context <PsApiManagementContext> [-Tag <String
3737

3838
### 1:
3939
```
40-
PS C:\>
40+
PS C:\> Get-AzureRmApiManagementProperty -Context $Context -Name $PropertyName
4141
```
4242

4343
## PARAMETERS
@@ -46,7 +46,7 @@ PS C:\>
4646
```yaml
4747
Type: PsApiManagementContext
4848
Parameter Sets: (All)
49-
Aliases:
49+
Aliases:
5050

5151
Required: True
5252
Position: Named
@@ -59,7 +59,7 @@ Accept wildcard characters: False
5959
```yaml
6060
Type: String
6161
Parameter Sets: Find properties containing Name
62-
Aliases:
62+
Aliases:
6363

6464
Required: False
6565
Position: Named
@@ -72,7 +72,7 @@ Accept wildcard characters: False
7272
```yaml
7373
Type: String
7474
Parameter Sets: Get by property ID
75-
Aliases:
75+
Aliases:
7676

7777
Required: False
7878
Position: Named
@@ -82,10 +82,14 @@ Accept wildcard characters: False
8282
```
8383
8484
### -Tag
85+
Key-value pairs in the form of a hash table. For example:
86+
87+
@{key0="value0";key1=$null;key2="value2"}
88+
8589
```yaml
8690
Type: String
8791
Parameter Sets: Find properties by Tag
88-
Aliases:
92+
Aliases:
8993

9094
Required: False
9195
Position: Named
@@ -103,5 +107,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
103107
104108
## NOTES
105109
106-
## RELATED LINKS
107-
110+
## RELATED LINKS

src/ResourceManager/Automation/Commands.Automation/help/Import-AzureRMAutomationRunbook.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
external help file: Microsoft.Azure.Commands.ResourceManager.Automation.dll-Help.xml
33
ms.assetid: B6487D26-2B6A-4938-B1CD-48EADD8D0C3C
4-
online version:
4+
online version:
55
schema: 2.0.0
66
---
77

@@ -19,16 +19,17 @@ Import-AzureRmAutomationRunbook [-Path] <String> [-Description <String>] [-Name
1919
```
2020

2121
## DESCRIPTION
22-
The **Import-AzureRmAutomationRunbook** cmdlet imports an Azure Automation runbook.
23-
Specify the path to a wps_2 script (.ps1 ) file to import for wps_2 and wps_2 Workflow runbooks, or to a graphical runbook (.graphrunbook) file for graphical runbooks.
24-
The name of the file becomes the name of the runbook.
25-
For wps_2 Workflow runbooks, the script must contain a single wps_2 Workflow definition that matches the name of the file.
22+
The **Import-AzureRmAutomationRunbook** cmdlet imports an Azure Automation runbook. Specify the
23+
path to a wps_2 script (.ps1 ) file to import for wps_2 and wps_2 Workflow runbooks, or to a
24+
graphical runbook (.graphrunbook) file for graphical runbooks. The name of the file becomes the
25+
name of the runbook. For wps_2 Workflow runbooks, the script must contain a single wps_2 Workflow
26+
definition that matches the name of the file.
2627

2728
## EXAMPLES
2829

2930
### Example 1: Import a runbook from a file
3031
```
31-
PS C:\>$Tags = @{"tag01"='value01"; "tag02"="value02"}
32+
PS C:\> $Tags = @{"tag01"="value01"; "tag02"="value02"}
3233
PS C:\> Import-AzureRmAutomationRunbook -Path .\GraphicalRunbook06.graphrunbook -Tags $Tags -ResourceGroup "ResourceGroup01" -AutomationAccountName "AutomationAccount01" -Type GraphicalPowershell
3334
```
3435

@@ -45,7 +46,7 @@ Specifies the name of the Automation account into which this cmdlet imports a ru
4546
```yaml
4647
Type: String
4748
Parameter Sets: (All)
48-
Aliases:
49+
Aliases:
4950

5051
Required: True
5152
Position: 1
@@ -60,7 +61,7 @@ Specifies a description for the imported runbook.
6061
```yaml
6162
Type: String
6263
Parameter Sets: (All)
63-
Aliases:
64+
Aliases:
6465

6566
Required: False
6667
Position: Named
@@ -75,7 +76,7 @@ ps_force
7576
```yaml
7677
Type: SwitchParameter
7778
Parameter Sets: (All)
78-
Aliases:
79+
Aliases:
7980

8081
Required: False
8182
Position: Named
@@ -90,7 +91,7 @@ Specifies whether the runbook logs progress information.
9091
```yaml
9192
Type: Boolean
9293
Parameter Sets: (All)
93-
Aliases:
94+
Aliases:
9495

9596
Required: False
9697
Position: Named
@@ -105,7 +106,7 @@ Specifies whether the runbook logs detailed information.
105106
```yaml
106107
Type: Boolean
107108
Parameter Sets: (All)
108-
Aliases:
109+
Aliases:
109110

110111
Required: False
111112
Position: Named
@@ -150,7 +151,7 @@ Indicates that this cmdlet publishes the runbook that it imports.
150151
```yaml
151152
Type: SwitchParameter
152153
Parameter Sets: (All)
153-
Aliases:
154+
Aliases:
154155

155156
Required: False
156157
Position: Named
@@ -165,7 +166,7 @@ Specifies the name of the resource group for which this cmdlet imports a runbook
165166
```yaml
166167
Type: String
167168
Parameter Sets: (All)
168-
Aliases:
169+
Aliases:
169170

170171
Required: True
171172
Position: 0
@@ -175,7 +176,9 @@ Accept wildcard characters: False
175176
```
176177
177178
### -Tags
178-
Specifies a dictionary of tags for the imported runbook.
179+
Key-value pairs in the form of a hash table. For example:
180+
181+
@{key0="value0";key1=$null;key2="value2"}
179182
180183
```yaml
181184
Type: IDictionary
@@ -191,21 +194,21 @@ Accept wildcard characters: False
191194
192195
### -Type
193196
Specifies the type of runbook that this cmdlet creates.
194-
Valid values are:
197+
Valid values are:
195198
196199
- PowerShell
197200
- GraphicalPowerShell
198201
- PowerShellWorkflow
199202
- GraphicalPowerShellWorkflow
200-
- Graph
203+
- Graph
201204
202205
The value Graph is obsolete.
203206
It is equivalent to GraphicalPowerShellWorkflow.
204207
205208
```yaml
206209
Type: String
207210
Parameter Sets: (All)
208-
Aliases:
211+
Aliases:
209212
Accepted values: PowerShell, GraphicalPowerShell, PowerShellWorkflow, GraphicalPowerShellWorkflow, Graph
210213

211214
Required: True
@@ -272,5 +275,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
272275
[Set-AzureRmAutomationRunbook](./Set-AzureRMAutomationRunbook.md)
273276
274277
[Start-AzureRmAutomationRunbook](./Start-AzureRMAutomationRunbook.md)
275-
276-

0 commit comments

Comments
 (0)