File tree Expand file tree Collapse file tree 3 files changed +53
-5
lines changed
src/ResourceManager/AnalysisServices
Commands.AnalysisServices/help
Commands.AnalysisServices.Test/ScenarioTests Expand file tree Collapse file tree 3 files changed +53
-5
lines changed Original file line number Diff line number Diff line change @@ -622,9 +622,9 @@ function Test-AnalysisServicesServerGateway
622
622
try
623
623
{
624
624
# 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
628
628
$gatewayName = $env: GATEWAY_NAME
629
629
$gateway = Get-AzureRmResource - ResourceName $gatewayName - ResourceGroupName $resourceGroupName
630
630
$serverCreated = New-AzureRmAnalysisServicesServer - ResourceGroupName $resourceGroupName - Name $serverName - Location $location - Sku S0 - GatewayResourceId $gateway.ResourceId - PassThru
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ Creates a new Analysis Services server
15
15
```
16
16
New-AzureRmAnalysisServicesServer [-ResourceGroupName] <String> [-Name] <String> [-Location] <String>
17
17
[-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>]
19
20
```
20
21
21
22
## DESCRIPTION
@@ -199,6 +200,21 @@ Accept pipeline input: True (ByPropertyName)
199
200
Accept wildcard characters : False
200
201
` ` `
201
202
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
+
202
218
### -Confirm
203
219
Prompts user to confirm whether to perform the operation
204
220
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ Modifies an instance of Analysis Services server
15
15
### Default (Default)
16
16
```
17
17
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]
19
21
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
20
22
```
21
23
@@ -224,6 +226,36 @@ Accept pipeline input: True (ByPropertyName)
224
226
Accept wildcard characters : False
225
227
` ` `
226
228
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
+
227
259
### -Confirm
228
260
Prompts user to confirm whether to perform the operation
229
261
You can’t perform that action at this time.
0 commit comments