Skip to content

Commit 5bcc188

Browse files
committed
Merge branch 'CI'
2 parents 1c1e49c + 7635177 commit 5bcc188

File tree

2,315 files changed

+450046
-14
lines changed

Some content is hidden

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

2,315 files changed

+450046
-14
lines changed
Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
---
2+
external help file: Microsoft.Azure.Commands.AnalysisServices.Dataplane.dll-Help.xml
3+
Module Name: Azure.AnalysisServices
4+
online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.analysisservices/add-azureanalysisservicesaccount
5+
schema: 2.0.0
6+
content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Add-AzureAnalysisServicesAccount.md
7+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Add-AzureAnalysisServicesAccount.md
8+
---
9+
10+
# Add-AzureAnalysisServicesAccount
11+
12+
## SYNOPSIS
13+
Adds an authenticated account to use for Azure Analysis Services server cmdlet requests.
14+
15+
## SYNTAX
16+
17+
### UserParameterSetName (Default)
18+
```
19+
Add-AzureAnalysisServicesAccount [[-RolloutEnvironment] <String>] [[-Credential] <PSCredential>] [-WhatIf]
20+
[-Confirm] [<CommonParameters>]
21+
```
22+
23+
### ServicePrincipalWithPasswordParameterSetName
24+
```
25+
Add-AzureAnalysisServicesAccount [-RolloutEnvironment] <String> [-Credential] <PSCredential>
26+
[-ServicePrincipal] -TenantId <String> [-WhatIf] [-Confirm] [<CommonParameters>]
27+
```
28+
29+
### ServicePrincipalWithCertificateParameterSetName
30+
```
31+
Add-AzureAnalysisServicesAccount [-RolloutEnvironment] <String> [-ServicePrincipal] -TenantId <String>
32+
-ApplicationId <String> -CertificateThumbprint <String> [-WhatIf] [-Confirm] [<CommonParameters>]
33+
```
34+
35+
## DESCRIPTION
36+
The Add-AzureAnalysisServicesAccount cmdlet is used to login to an instance of Azure Analysis Services server
37+
38+
## EXAMPLES
39+
40+
### Example 1
41+
```
42+
PS C:\>Add-AzureAnalysisServicesAccount
43+
RolloutEnvironment: westcentralus.asazure.windows.net
44+
Credential: $UserCredential
45+
```
46+
47+
This example will add the account specified by the $UserCredential variable to the westcentralus.asazure.windows.net Analysis Services environment.
48+
49+
### Example 2
50+
```
51+
PS C:\>$ApplicationCredential = Get-Credential
52+
PS C:\>Add-AzureAnalysisServicesAccount -RolloutEnvironment 'westcentralus.asazure.windows.net' -ServicePrincipal -Credential $ApplicationCredential -TenantId "xxxx-xxxx-xxxx-xxxx"
53+
```
54+
55+
The first command gets the application service principal credentials, and then stores them in the $ApplicationCredential variable.
56+
The second command add the application service principal account specified by the $ApplicationCredential variable and TenantId to the westcentralus.asazure.windows.net Analysis Services environment.
57+
58+
### Example 3
59+
```
60+
PS C:\>Add-AzureAnalysisServicesAccount -RolloutEnvironment 'westcentralus.asazure.windows.net' -ServicePrincipal -ApplicationId "yyyy-yyyy-yyyy-yyyy" -CertificateThumbprint 'zzzzzzzzzzzzzzzz' -TenantId "xxxx-xxxx-xxxx-xxxx"
61+
```
62+
63+
This example will add the application service principal account specified by the ApplicationId, TenantId and CertificateThumbprint to the westcentralus.asazure.windows.net Analysis Services environment.
64+
65+
## PARAMETERS
66+
67+
### -ApplicationId
68+
The application ID.
69+
70+
```yaml
71+
Type: System.String
72+
Parameter Sets: ServicePrincipalWithCertificateParameterSetName
73+
Aliases:
74+
75+
Required: True
76+
Position: Named
77+
Default value: None
78+
Accept pipeline input: False
79+
Accept wildcard characters: False
80+
```
81+
82+
### -CertificateThumbprint
83+
Certificate Hash (Thumbprint)
84+
85+
```yaml
86+
Type: System.String
87+
Parameter Sets: ServicePrincipalWithCertificateParameterSetName
88+
Aliases:
89+
90+
Required: True
91+
Position: Named
92+
Default value: None
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
### -Credential
98+
Login credentials
99+
100+
```yaml
101+
Type: System.Management.Automation.PSCredential
102+
Parameter Sets: UserParameterSetName
103+
Aliases:
104+
105+
Required: False
106+
Position: 1
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
```yaml
113+
Type: System.Management.Automation.PSCredential
114+
Parameter Sets: ServicePrincipalWithPasswordParameterSetName
115+
Aliases:
116+
117+
Required: True
118+
Position: 1
119+
Default value: None
120+
Accept pipeline input: False
121+
Accept wildcard characters: False
122+
```
123+
124+
### -RolloutEnvironment
125+
Name of the Azure Analysis Services environment to which to logon to. Given the full name of the server for example asazure://westcentralus.asazure.windows.net/testserver , the correct value for this variable will be westcentralus.asazure.windows.net
126+
127+
```yaml
128+
Type: System.String
129+
Parameter Sets: UserParameterSetName
130+
Aliases:
131+
132+
Required: False
133+
Position: 0
134+
Default value: None
135+
Accept pipeline input: False
136+
Accept wildcard characters: False
137+
```
138+
139+
```yaml
140+
Type: System.String
141+
Parameter Sets: ServicePrincipalWithPasswordParameterSetName, ServicePrincipalWithCertificateParameterSetName
142+
Aliases:
143+
144+
Required: True
145+
Position: 0
146+
Default value: None
147+
Accept pipeline input: False
148+
Accept wildcard characters: False
149+
```
150+
151+
### -ServicePrincipal
152+
Indicates that this account authenticates by providing service principal credentials.
153+
154+
```yaml
155+
Type: System.Management.Automation.SwitchParameter
156+
Parameter Sets: ServicePrincipalWithPasswordParameterSetName, ServicePrincipalWithCertificateParameterSetName
157+
Aliases:
158+
159+
Required: True
160+
Position: Named
161+
Default value: None
162+
Accept pipeline input: False
163+
Accept wildcard characters: False
164+
```
165+
166+
### -TenantId
167+
Tenant name or ID
168+
169+
```yaml
170+
Type: System.String
171+
Parameter Sets: ServicePrincipalWithPasswordParameterSetName, ServicePrincipalWithCertificateParameterSetName
172+
Aliases:
173+
174+
Required: True
175+
Position: Named
176+
Default value: None
177+
Accept pipeline input: False
178+
Accept wildcard characters: False
179+
```
180+
181+
### -Confirm
182+
Prompts you for confirmation before running the cmdlet.
183+
184+
```yaml
185+
Type: System.Management.Automation.SwitchParameter
186+
Parameter Sets: (All)
187+
Aliases: cf
188+
189+
Required: False
190+
Position: Named
191+
Default value: None
192+
Accept pipeline input: False
193+
Accept wildcard characters: False
194+
```
195+
196+
### -WhatIf
197+
Shows what would happen if the cmdlet runs.
198+
The cmdlet is not run.
199+
200+
```yaml
201+
Type: System.Management.Automation.SwitchParameter
202+
Parameter Sets: (All)
203+
Aliases: wi
204+
205+
Required: False
206+
Position: Named
207+
Default value: None
208+
Accept pipeline input: False
209+
Accept wildcard characters: False
210+
```
211+
212+
### CommonParameters
213+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
214+
215+
## INPUTS
216+
217+
### None
218+
219+
## OUTPUTS
220+
221+
### Microsoft.Azure.Commands.AnalysisServices.Dataplane.AsAzureProfile
222+
223+
## NOTES
224+
Alias: Login-AzureAsAccount
225+
226+
## RELATED LINKS
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
Module Name: Azure.AnalysisServices
3+
Module Guid: c717b5a4-1f1b-4a2f-8aa1-bfd09934626e
4+
Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azure.analysisservices
5+
Help Version: 0.5.0.0
6+
Locale: en-US
7+
content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Azure.AnalysisServices.md
8+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Azure.AnalysisServices.md
9+
---
10+
11+
# Azure.AnalysisServices Module
12+
## Description
13+
This module contains commands for performing operations on a given Azure Analysis Services environment
14+
15+
## Azure.AnalysisServices Cmdlets
16+
### [Add-AzureAnalysisServicesAccount](Add-AzureAnalysisServicesAccount.md)
17+
Adds an authenticated account to use for Azure Analysis Services server cmdlet requests.
18+
19+
### [Export-AzureAnalysisServicesInstanceLog](Export-AzureAnalysisServicesInstanceLog.md)
20+
Exports a log from an instance of Analysis Services server in the currently logged in Environment as specified in Add-AzureAnalysisServicesAccount command
21+
22+
### [Restart-AzureAnalysisServicesInstance](Restart-AzureAnalysisServicesInstance.md)
23+
Restarts an instance of Analysis Services server in the currently logged in Environment as specified in Add-AzureAnalysisServicesAccount command
24+
25+
### [Sync-AzureAnalysisServicesInstance](Sync-AzureAnalysisServicesInstance.md)
26+
Synchronizes a specified database on the specified instance of Analysis Services server to all the query scaleout instances in the currently logged in Environment as specified in Add-AzureAnalysisServicesAccount command
27+
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
---
2+
external help file: Microsoft.Azure.Commands.AnalysisServices.Dataplane.dll-Help.xml
3+
Module Name: Azure.AnalysisServices
4+
online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.analysisservices/export-azureanalysisservicesinstancelog
5+
schema: 2.0.0
6+
content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Export-AzureAnalysisServicesInstanceLog.md
7+
original_content_git_url: https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/help/Export-AzureAnalysisServicesInstanceLog.md
8+
---
9+
10+
# Export-AzureAnalysisServicesInstanceLog
11+
12+
## SYNOPSIS
13+
Exports a log from an instance of Analysis Services server in the currently logged in Environment as specified in Add-AzureAnalysisServicesAccount command
14+
15+
## SYNTAX
16+
17+
```
18+
Export-AzureAnalysisServicesInstanceLog -Instance <String> -OutputPath <String> [-Force] [-WhatIf] [-Confirm]
19+
[<CommonParameters>]
20+
```
21+
22+
## DESCRIPTION
23+
The Export-AzureAnalysisServicesInstance cmdlet exports log from an instance of Azure Analysis Services server to file
24+
25+
## EXAMPLES
26+
27+
### Example 1
28+
```
29+
PS C:\>Export-AzureAnalysisServicesInstanceLog -Instance testserver -OuptutPath C:\path\to\log\testserver.log
30+
```
31+
32+
This command will export log from the server 'testserver' in the environment specified in the Add-AzureAnalysisServicesAccount command
33+
and save it to file specified in OutputPath 'C:\path\to\log\testserver.log'
34+
35+
## PARAMETERS
36+
37+
### -Force
38+
Overwrite file if exists without asking
39+
40+
```yaml
41+
Type: System.Management.Automation.SwitchParameter
42+
Parameter Sets: (All)
43+
Aliases:
44+
45+
Required: False
46+
Position: Named
47+
Default value: None
48+
Accept pipeline input: False
49+
Accept wildcard characters: False
50+
```
51+
52+
### -Instance
53+
Name of the Analysis Services server instance
54+
55+
```yaml
56+
Type: System.String
57+
Parameter Sets: (All)
58+
Aliases:
59+
60+
Required: True
61+
Position: Named
62+
Default value: None
63+
Accept pipeline input: False
64+
Accept wildcard characters: False
65+
```
66+
67+
### -OutputPath
68+
Output path to file to export log
69+
70+
```yaml
71+
Type: System.String
72+
Parameter Sets: (All)
73+
Aliases:
74+
75+
Required: True
76+
Position: Named
77+
Default value: None
78+
Accept pipeline input: False
79+
Accept wildcard characters: False
80+
```
81+
82+
### -Confirm
83+
Prompts you for confirmation before running the cmdlet.
84+
85+
```yaml
86+
Type: System.Management.Automation.SwitchParameter
87+
Parameter Sets: (All)
88+
Aliases: cf
89+
90+
Required: False
91+
Position: Named
92+
Default value: None
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
### -WhatIf
98+
Shows what would happen if the cmdlet runs. The cmdlet is not run.
99+
100+
```yaml
101+
Type: System.Management.Automation.SwitchParameter
102+
Parameter Sets: (All)
103+
Aliases: wi
104+
105+
Required: False
106+
Position: Named
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### CommonParameters
113+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
114+
115+
## INPUTS
116+
117+
### None
118+
119+
## OUTPUTS
120+
121+
### System.Void
122+
123+
## NOTES
124+
Alias: Export-AzureAsInstanceLog
125+
126+
## RELATED LINKS

0 commit comments

Comments
 (0)