Skip to content

Commit 65ca86d

Browse files
committed
Servicemanagement API for analysis services
1 parent c9bea12 commit 65ca86d

25 files changed

+1488
-3
lines changed

src/ResourceManager/AnalysisServices/AnalysisServices.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AnalysisServices.T
1818
EndProject
1919
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AnalysisServices", "Commands.AnalysisServices\Commands.AnalysisServices.csproj", "{8AAB43E6-E8F6-4F91-AF8A-6A63CD78EF1E}"
2020
EndProject
21+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AnalysisServices.ServiceManagement", "Commands.AnalysisServices.ServiceManagement\Commands.AnalysisServices.ServiceManagement.csproj", "{4944B213-4F12-4815-B416-3FF1853ADCC1}"
22+
EndProject
2123
Global
2224
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2325
Debug|Any CPU = Debug|Any CPU
@@ -52,6 +54,10 @@ Global
5254
{8AAB43E6-E8F6-4F91-AF8A-6A63CD78EF1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
5355
{8AAB43E6-E8F6-4F91-AF8A-6A63CD78EF1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
5456
{8AAB43E6-E8F6-4F91-AF8A-6A63CD78EF1E}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{4944B213-4F12-4815-B416-3FF1853ADCC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58+
{4944B213-4F12-4815-B416-3FF1853ADCC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
59+
{4944B213-4F12-4815-B416-3FF1853ADCC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{4944B213-4F12-4815-B416-3FF1853ADCC1}.Release|Any CPU.Build.0 = Release|Any CPU
5561
EndGlobalSection
5662
GlobalSection(SolutionProperties) = preSolution
5763
HideSolutionNode = FALSE
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
#
2+
# Module manifest for module 'Microsoft.Azure.Commands.AnalysisServices.ServiceManagement'
3+
#
4+
# Generated by: Microsoft Corporation
5+
#
6+
# Generated on: 9/19/2015
7+
#
8+
9+
@{
10+
11+
# Version number of this module.
12+
ModuleVersion = '0.0.1'
13+
14+
# ID used to uniquely identify this module
15+
GUID = 'c717b5a4-1f1b-4a2f-8aa1-bfd09934626e'
16+
17+
# Author of this module
18+
Author = 'Microsoft Corporation'
19+
20+
# Company or vendor of this module
21+
CompanyName = 'Microsoft Corporation'
22+
23+
# Copyright statement for this module
24+
Copyright = '© Microsoft Corporation. All rights reserved.'
25+
26+
# Description of the functionality provided by this module
27+
Description = 'Microsoft Azure PowerShell - Analysis Services server management'
28+
29+
# Minimum version of the Windows PowerShell engine required by this module
30+
PowerShellVersion = '3.0'
31+
32+
# Name of the Windows PowerShell host required by this module
33+
PowerShellHostName = ''
34+
35+
# Minimum version of the Windows PowerShell host required by this module
36+
PowerShellHostVersion = ''
37+
38+
# Minimum version of the .NET Framework required by this module
39+
DotNetFrameworkVersion = '4.0'
40+
41+
# Minimum version of the common language runtime (CLR) required by this module
42+
CLRVersion='4.0'
43+
44+
# Processor architecture (None, X86, Amd64, IA64) required by this module
45+
ProcessorArchitecture = 'None'
46+
47+
# Assemblies that must be loaded prior to importing this module
48+
RequiredAssemblies = @()
49+
50+
# Script files (.ps1) that are run in the caller's environment prior to importing this module
51+
ScriptsToProcess = @()
52+
53+
# Type files (.ps1xml) to be loaded when importing this module
54+
TypesToProcess = @()
55+
56+
# Format files (.ps1xml) to be loaded when importing this module
57+
FormatsToProcess = @(
58+
'.\Microsoft.Azure.Commands.AnalsysisServices.ServiceManagement.format.ps1xml'
59+
)
60+
61+
# Modules to import as nested modules of the module specified in ModuleToProcess
62+
NestedModules = @(
63+
'.\Microsoft.Azure.Commands.AnalysisServices.ServiceManagement.dll'
64+
)
65+
66+
# Functions to export from this module
67+
FunctionsToExport = '*'
68+
69+
# Cmdlets to export from this module
70+
CmdletsToExport = '*'
71+
72+
# Variables to export from this module
73+
VariablesToExport = '*'
74+
75+
# Aliases to export from this module
76+
AliasesToExport = '*'
77+
78+
# List of all modules packaged with this module
79+
ModuleList = @()
80+
81+
# List of all files packaged with this module
82+
FileList = @()
83+
84+
# Private data to pass to the module specified in ModuleToProcess
85+
PrivateData = @{
86+
87+
PSData = @{
88+
89+
# Tags applied to this module. These help with module discovery in online galleries.
90+
Tags = @("Azure", "ServiceManagement", "AzureAS", "AS")
91+
92+
# A URL to the license for this module.
93+
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'
94+
95+
# A URL to the main website for this project.
96+
ProjectUri = 'https://github.com/Azure/azure-powershell'
97+
98+
# A URL to an icon representing this module.
99+
# IconUri = ''
100+
101+
# ReleaseNotes of this module
102+
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'
103+
104+
} # End of PSData hashtable
105+
106+
} # End of PrivateData hashtable
107+
108+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!--
2+
Please leave this section at the top of the change log.
3+
4+
Changes for the current release should go under the section titled "Current Release", and should adhere to the following format:
5+
6+
## Current Release
7+
* Overview of change #1
8+
- Additional information about change #1
9+
* Overview of change #2
10+
- Additional information about change #2
11+
- Additional information about change #2
12+
* Overview of change #3
13+
* Overview of change #4
14+
- Additional information about change #4
15+
16+
## YYYY.MM.DD - Version X.Y.Z (Previous Release)
17+
* Overview of change #1
18+
- Additional information about change #1
19+
-->
20+
## Current Release
21+
22+
## Version 3.2.0
23+
* Fixed bug in Get-AzureRMAnalysisServicesServer
24+
- When this command was run against some resources, it would fail with a null reference exception.
25+
* Added two new dataplane APIs in a separate module AzureRM.AnalysisServices.ServiceManagement.psd1
26+
- This introduces two new APIs that enable customers to login to Azure Analysis Services servers and issue a restart command.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
#
2+
# Module manifest for module 'Microsoft.Azure.Commands.AnalysisServices.ServiceManagement'
3+
#
4+
# Generated by: Microsoft Corporation
5+
#
6+
# Generated on: 9/19/2015
7+
#
8+
9+
@{
10+
11+
# Version number of this module.
12+
ModuleVersion = '0.0.1'
13+
14+
# ID used to uniquely identify this module
15+
GUID = 'c717b5a4-1f1b-4a2f-8aa1-bfd09934626e'
16+
17+
# Author of this module
18+
Author = 'Microsoft Corporation'
19+
20+
# Company or vendor of this module
21+
CompanyName = 'Microsoft Corporation'
22+
23+
# Copyright statement for this module
24+
Copyright = '© Microsoft Corporation. All rights reserved.'
25+
26+
# Description of the functionality provided by this module
27+
Description = 'Microsoft Azure PowerShell - Analysis Services server management'
28+
29+
# Minimum version of the Windows PowerShell engine required by this module
30+
PowerShellVersion = '3.0'
31+
32+
# Name of the Windows PowerShell host required by this module
33+
PowerShellHostName = ''
34+
35+
# Minimum version of the Windows PowerShell host required by this module
36+
PowerShellHostVersion = ''
37+
38+
# Minimum version of the .NET Framework required by this module
39+
DotNetFrameworkVersion = '4.0'
40+
41+
# Minimum version of the common language runtime (CLR) required by this module
42+
CLRVersion='4.0'
43+
44+
# Processor architecture (None, X86, Amd64, IA64) required by this module
45+
ProcessorArchitecture = 'None'
46+
47+
# Assemblies that must be loaded prior to importing this module
48+
RequiredAssemblies = @()
49+
50+
# Script files (.ps1) that are run in the caller's environment prior to importing this module
51+
ScriptsToProcess = @()
52+
53+
# Type files (.ps1xml) to be loaded when importing this module
54+
TypesToProcess = @()
55+
56+
# Format files (.ps1xml) to be loaded when importing this module
57+
FormatsToProcess = @()
58+
59+
# Modules to import as nested modules of the module specified in ModuleToProcess
60+
NestedModules = @(
61+
'.\Microsoft.Azure.Commands.AnalysisServices.ServiceManagement.dll'
62+
)
63+
64+
# Functions to export from this module
65+
FunctionsToExport = '*'
66+
67+
# Cmdlets to export from this module
68+
CmdletsToExport = '*'
69+
70+
# Variables to export from this module
71+
VariablesToExport = '*'
72+
73+
# Aliases to export from this module
74+
AliasesToExport = '*'
75+
76+
# List of all modules packaged with this module
77+
ModuleList = @()
78+
79+
# List of all files packaged with this module
80+
FileList = @()
81+
82+
# Private data to pass to the module specified in ModuleToProcess
83+
PrivateData = @{
84+
85+
PSData = @{
86+
87+
# Tags applied to this module. These help with module discovery in online galleries.
88+
Tags = @("Azure", "ServiceManagement", "AzureAS", "AS")
89+
90+
# A URL to the license for this module.
91+
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'
92+
93+
# A URL to the main website for this project.
94+
ProjectUri = 'https://github.com/Azure/azure-powershell'
95+
96+
# A URL to an icon representing this module.
97+
# IconUri = ''
98+
99+
# ReleaseNotes of this module
100+
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'
101+
102+
} # End of PSData hashtable
103+
104+
} # End of PrivateData hashtable
105+
106+
}

0 commit comments

Comments
 (0)