Skip to content

Commit db15652

Browse files
committed
Update help doc
1 parent ba8ef9d commit db15652

File tree

3 files changed

+53
-5
lines changed

3 files changed

+53
-5
lines changed

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/ScenarioTests/AsTests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -622,9 +622,9 @@ function Test-AnalysisServicesServerGateway
622622
try
623623
{
624624
# Creating server
625-
$location = Get-Location
626-
$resourceGroupName = Get-ResourceGroupName
627-
$serverName = Get-AnalysisServicesServerName
625+
$location = Get-Location
626+
$resourceGroupName = Get-ResourceGroupName
627+
$serverName = Get-AnalysisServicesServerName
628628
$gatewayName = $env:GATEWAY_NAME
629629
$gateway = Get-AzureRmResource -ResourceName $gatewayName -ResourceGroupName $resourceGroupName
630630
$serverCreated = New-AzureRmAnalysisServicesServer -ResourceGroupName $resourceGroupName -Name $serverName -Location $location -Sku S0 -GatewayResourceId $gateway.ResourceId -PassThru

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

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Creates a new Analysis Services server
1515
```
1616
New-AzureRmAnalysisServicesServer [-ResourceGroupName] <String> [-Name] <String> [-Location] <String>
1717
[-Sku] <String> [[-Tag] <Hashtable>] [[-Administrator] <String>] [[-BackupBlobContainerUri] <String>]
18-
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
18+
[[-FirewallConfig] <Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesFirewallConfig>]
19+
[[-GatewayResourceId] <String>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
1920
```
2021

2122
## DESCRIPTION
@@ -199,6 +200,21 @@ Accept pipeline input: True (ByPropertyName)
199200
Accept wildcard characters: False
200201
```
201202
203+
### -GatewayResourceId
204+
Gateway resource Id for assocaite to an Analysis server
205+
206+
```yaml
207+
Type: String
208+
Parameter Sets: (All)
209+
Aliases:
210+
211+
Required: False
212+
Position: Named
213+
Default value: None
214+
Accept pipeline input: True (ByPropertyName)
215+
Accept wildcard characters: False
216+
```
217+
202218
### -Confirm
203219
Prompts user to confirm whether to perform the operation
204220

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

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ Modifies an instance of Analysis Services server
1515
### Default (Default)
1616
```
1717
Set-AzureRmAnalysisServicesServer [-Name] <String> [[-ResourceGroupName] <String>] [[-Sku] <String>]
18-
[[-Tag] <Hashtable>] [[-Administrator] <String>] [[-BackupBlobContainerUri] <String>] [-PassThru]
18+
[[-Tag] <Hashtable>] [[-Administrator] <String>] [[-BackupBlobContainerUri] <String>]
19+
[[-FirewallConfig] <Microsoft.Azure.Commands.AnalysisServices.Models.AzureAnalysisServicesFirewallConfig>]
20+
[[-GatewayResourceId] <String>] [-DisassociateGateway] [-PassThru]
1921
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
2022
```
2123

@@ -224,6 +226,36 @@ Accept pipeline input: True (ByPropertyName)
224226
Accept wildcard characters: False
225227
```
226228
229+
### -GatewayResourceId
230+
Gateway resource Id for assocaite to an Analysis server
231+
232+
```yaml
233+
Type: String
234+
Parameter Sets: (All)
235+
Aliases:
236+
237+
Required: False
238+
Position: Named
239+
Default value: None
240+
Accept pipeline input: True (ByPropertyName)
241+
Accept wildcard characters: False
242+
```
243+
244+
### -DisassociateGateway
245+
Disassociate Gateway resource from an Analysis server
246+
247+
```yaml
248+
Type: SwitchParameter
249+
Parameter Sets: (All)
250+
Aliases:
251+
252+
Required: False
253+
Position: Named
254+
Default value: None
255+
Accept pipeline input: True
256+
Accept wildcard characters: False
257+
```
258+
227259
### -Confirm
228260
Prompts user to confirm whether to perform the operation
229261

0 commit comments

Comments
 (0)