Skip to content

Commit 1e1c404

Browse files
committed
Merge pull request #33 from ogail/dev
Merge profile branch into dev
2 parents cdc3303 + e8c3645 commit 1e1c404

File tree

1,361 files changed

+208609
-89494
lines changed

Some content is hidden

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

1,361 files changed

+208609
-89494
lines changed

AzurePowershell.Test.targets

Lines changed: 93 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,45 @@
2222
<HDInsightTestDebug>.\src\ServiceManagement\HDInsight\Commands.HDInsight.Test\bin\Debug\Microsoft.WindowsAzure.Commands.HDInsight.Test.dll</HDInsightTestDebug>
2323
<StorageTestDebug>.\src\ServiceManagement\Storage\Commands.Storage.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Storage.Test.dll</StorageTestDebug>
2424
<KeyVaultTestDebug>.\src\ResourceManager\KeyVault\Commands.KeyVault.Test\bin\Debug\Microsoft.Azure.Commands.KeyVault.Test.dll</KeyVaultTestDebug>
25-
<TestFilter>"!Functional&#x26;!Scenario&#x26;!AzureRTScenario&#x26;!Sequential&#x26;!PIRTest&#x26;!Preview&#x26;!ADDomain"</TestFilter>
25+
<TestFilter>"!Functional&#x26;!Scenario&#x26;!AzureRTScenario&#x26;!Sequential&#x26;!PIRTest&#x26;!Preview&#x26;!ADDomain&#x26;!Network&#x26;!AzureRTUpload&#x26;!AzureRTCleanUp"</TestFilter>
2626
<ScenarioTestFilter>All</ScenarioTestFilter>
2727
<OneSDKCITFilter>"OneSDK&#x26;CIT"</OneSDKCITFilter>
28-
<AzureRTAllTestFilter>"Functional|AzureRTScenario"</AzureRTAllTestFilter>
29-
<AzureRTAllTestFilter2>"Functional|AzureRTScenario|Preview"</AzureRTAllTestFilter2>
30-
<AzureRTAllTestFilter3>"Functional|AzureRTScenario|Sequential"</AzureRTAllTestFilter3>
28+
<AzureRTAllTestFilter>"Functional|AzureRTScenario|Sequential|AzureRTUpload|Network"</AzureRTAllTestFilter>
29+
<AzureRTParAllFilter>"Functional|AzureRTScenario"</AzureRTParAllFilter>
30+
<AzureRTAllPreviewFilter>"Functional|AzureRTScenario|Preview"</AzureRTAllPreviewFilter>
31+
<AzureRTUploadSeqFilter>"AzureRTUpload|Sequential"</AzureRTUploadSeqFilter>
32+
<AzureRTSeqAllFilter>"AzureRTUpload|Sequential|Network"</AzureRTSeqAllFilter>
3133
</PropertyGroup>
3234

35+
<ItemGroup>
36+
<XUnitTests Include=".\src\Common\Commands.Common.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Common.Test.dll"/>
37+
<XUnitTests Include=".\src\ResourceManager\Sql\Commands.Sql.Test\bin\Debug\Microsoft.Azure.Commands.Sql.Test.dll"/>
38+
<XUnitTests Include=".\src\ServiceManagement\Services\Commands.Test\bin\Debug\Microsoft.WindowsAzure.Commands.Test.dll"/>
39+
<XUnitTests Include=".\src\ResourceManager\Resources\Commands.Resources.Test\bin\Debug\Microsoft.Azure.Commands.Resources.Test.dll"/>
40+
<XUnitTests Include=".\src\ResourceManager\DataFactories\Commands.DataFactories.Test\bin\Debug\Microsoft.Azure.Commands.DataFactories.Test.dll"/>
41+
<XUnitTests Include=".\src\ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.StreamAnalytics.Test.dll"/>
42+
<XUnitTests Include=".\src\ResourceManager\Batch\Commands.Batch.Test\bin\Debug\Microsoft.Azure.Commands.Batch.Test.dll"/>
43+
<XUnitTests Include=".\src\ResourceManager\KeyVault\Commands.KeyVault.Test\bin\Debug\Microsoft.Azure.Commands.KeyVault.Test.dll"/>
44+
<XUnitTests Include=".\src\ServiceManagement\ManagedCache\Commands.ManagedCache.Test\bin\Debug\Microsoft.Azure.Commands.ManagedCache.Test.dll"/>
45+
<XUnitTests Include=".\src\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
46+
<XUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
47+
<XUnitTests Include=".\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll"/>
48+
</ItemGroup>
49+
3350
<Target Name="InvokeMSTest">
3451
<!--Remove existing test result; otherwsie mstest will error-->
3552
<Delete Files="$(_testResult)"/>
3653
<Exec
3754
Command="MSTest.exe /testcontainer:$(_testAssembly) /testsettings:$(_testSettings) /category:$(_testFilter) /resultsfile:$(_testResult)"
3855
ContinueOnError="false" />
3956
</Target>
57+
58+
<Target Name="InvokeXUnit">
59+
<Message Importance="high" Text="Running XUnit tests" />
60+
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
61+
<Xunit.Runner.MSBuild.xunit Assemblies="@(XUnitTests)" Html="$(TestOutputDirectory)\xunit.tests.dll.html" Verbose="true"
62+
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false"/>
63+
</Target>
4064

4165
<Target Name="BeforeRunTests">
4266
<Message Importance="high" Text="You are required to have installed a version of Visual Studio with support for MSTest (and MSTest on your path)." />
@@ -113,6 +137,14 @@
113137
<Xunit.Runner.MSBuild.xunit Assemblies="$(_RecoveryServicesTestAssembly)" Html="$(TestOutputDirectory)\RecoveryServices.xunit.dll.html" Verbose="false"
114138
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
115139
</Target>
140+
141+
<Target Name="TestStorSimple">
142+
<PropertyGroup>
143+
<_StorSimpleTestAssembly>.\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll</_StorSimpleTestAssembly>
144+
</PropertyGroup>
145+
<Xunit.Runner.MSBuild.xunit Assemblies="$(_StorSimpleTestAssembly)" Html="$(TestOutputDirectory)\StorSimple.xunit.dll.html" Verbose="false"
146+
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
147+
</Target>
116148

117149
<!-- Run the scenario tests -->
118150
<Target Name="ScenarioTest" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
@@ -186,6 +218,14 @@
186218
ContinueOnError="false" />
187219
</Target>
188220

221+
<Target Name="AzureRTRepeat" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
222+
<Message Importance="high" Text="Running a specific tests..." />
223+
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
224+
<Exec
225+
Command="for /l %%x in (1, 1, $(RepeatTimes)) do MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /test:$(TestName) /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug%%x.trx"
226+
ContinueOnError="false" />
227+
</Target>
228+
189229
<Target Name="AzureRTMulti" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
190230
<Message Importance="high" Text="Running tests:" />
191231
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
@@ -198,7 +238,7 @@
198238
<Message Importance="high" Text="Running AzureRT all tests..." />
199239
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
200240
<Exec
201-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:$(AzureRTAllTestFilter3) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
241+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:$(AzureRTAllTestFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
202242
ContinueOnError="false" />
203243
</Target>
204244

@@ -208,33 +248,67 @@
208248
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
209249
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
210250
<Exec
211-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:Sequential /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
251+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:$(AzureRTSeqAllFilter) /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
212252
ContinueOnError="true" />
213253
<Exec
214-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:$(AzureRTAllTestFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
254+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:$(AzureRTParAllFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
215255
ContinueOnError="false" />
216256
</Target>
217257

218258
<Target Name="AzureRTSeq" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
219259
<Message Importance="high" Text="Running AzureRT all tests..." />
220260

221261
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
222-
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
223262
<Exec
224-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:Sequential /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
263+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:$(AzureRTSeqAllFilter) /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
225264
ContinueOnError="true" />
226265
</Target>
227266

228-
<Target Name="AzureRTPar" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
267+
<Target Name="AzureRTNetwork" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
268+
<Message Importance="high" Text="Running AzureRT all tests..." />
269+
270+
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
271+
<Exec
272+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:Network /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
273+
ContinueOnError="false" />
274+
</Target>
275+
276+
<Target Name="AzureRTUploadSeq" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
229277
<Message Importance="high" Text="Running AzureRT all tests..." />
230278

231279
<Delete Files="$(TestOutputDirectory)\RTSequentialDebug.trx" />
280+
<Exec
281+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:$(AzureRTUploadSeqFilter) /resultsfile:$(TestOutputDirectory)\RTSequentialDebug.trx"
282+
ContinueOnError="false" />
283+
</Target>
284+
285+
<Target Name="AzureRTPar" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
286+
<Message Importance="high" Text="Running AzureRT all tests..." />
287+
232288
<Delete Files="$(TestOutputDirectory)\RTDebug.trx" />
233289
<Exec
234290
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:$(AzureRTAllTestFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
235291
ContinueOnError="false" />
236292
</Target>
237293

294+
<Target Name="AzureRTFunctional" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
295+
<Message Importance="high" Text="Running AzureRT Functional tests..." />
296+
297+
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
298+
<Exec
299+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:Functional /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug.trx"
300+
ContinueOnError="false" />
301+
</Target>
302+
303+
<Target Name="AzureRTScenario" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
304+
<Message Importance="high" Text="Running AzureRT Scenario tests..." />
305+
306+
<Delete Files="$(TestOutputDirectory)\RTScenarioDebug.trx" />
307+
<Exec
308+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:AzureRTScenario /resultsfile:$(TestOutputDirectory)\RTScenarioDebug.trx"
309+
ContinueOnError="false" />
310+
</Target>
311+
238312
<Target Name="AzureRTAllPreview" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
239313
<Message Importance="high" Text="Running AzureRT all tests..." />
240314
<Delete Files="$(TestOutputDirectory)\RTAddVhdDebug.trx" />
@@ -243,7 +317,7 @@
243317
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(TestSettings) /category:Sequential /resultsfile:$(TestOutputDirectory)\RTAddVhdDebug.trx"
244318
ContinueOnError="true" />
245319
<Exec
246-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:$(AzureRTAllTestFilter2) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
320+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:$(AzureRTAllPreviewFilter) /resultsfile:$(TestOutputDirectory)\RTDebug.trx"
247321
ContinueOnError="false" />
248322
</Target>
249323

@@ -255,6 +329,14 @@
255329
ContinueOnError="false" />
256330
</Target>
257331

332+
<Target Name="AzureRTCleanUp" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
333+
<Message Importance="high" Text="Running AzureRT clean up tests..." />
334+
<Delete Files="$(TestOutputDirectory)\RTCleanUpDebug.trx" />
335+
<Exec
336+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:AzureRTCleanUp /resultsfile:$(TestOutputDirectory)\RTCleanUpDebug.trx"
337+
ContinueOnError="false" />
338+
</Target>
339+
258340
<!-- DSC extension related targets -->
259341
<Target Name="TestDSCExtension_x64">
260342
<Message Importance="high" Text="Running DSC extension BVT x64 tests..." />

ChangeLog.txt

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,184 @@
1+
2015.03.11 version 0.8.15.1
2+
* Fixes for clean install and subscription registration issues
3+
4+
2015.03.09 version 0.8.15
5+
* Azure RemoteApp: New RemoteApp cmdlets:
6+
* Add-AzureRemoteAppUser
7+
* Disconnect-AzureRemoteAppSession
8+
* Get-AzureRemoteAppCollection
9+
* Get-AzureRemoteAppCollectionUsageDetails
10+
* Get-AzureRemoteAppCollectionUsageSummary
11+
* Get-AzureRemoteAppLocation
12+
* Get-AzureRemoteAppOperationResult
13+
* Get-AzureRemoteAppPlan
14+
* Get-AzureRemoteAppProgram
15+
* Get-AzureRemoteAppSession
16+
* Get-AzureRemoteAppStartMenuProgram
17+
* Get-AzureRemoteAppTemplateImage
18+
* Get-AzureRemoteAppUser
19+
* Get-AzureRemoteAppVNet
20+
* Get-AzureRemoteAppVpnDevice
21+
* Get-AzureRemoteAppVpnDeviceConfigScript
22+
* Get-AzureRemoteAppWorkspace
23+
* Invoke-AzureRemoteAppSessionLogoff
24+
* New-AzureRemoteAppCollection
25+
* New-AzureRemoteAppTemplateImage
26+
* New-AzureRemoteAppVNet
27+
* Publish-AzureRemoteAppProgram
28+
* Remove-AzureRemoteAppCollection
29+
* Remove-AzureRemoteAppTemplateImage
30+
* Remove-AzureRemoteAppUser
31+
* Remove-AzureRemoteAppVNet
32+
* Rename-AzureRemoteAppTemplateImage
33+
* Reset-AzureRemoteAppVpnSharedKey
34+
* Send-AzureRemoteAppSessionMessage
35+
* Set-AzureRemoteAppCollection
36+
* Set-AzureRemoteAppVNet
37+
* Set-AzureRemoteAppWorkspace
38+
* Unpublish-AzureRemoteAppProgram
39+
* Update-AzureRemoteAppCollection
40+
41+
* Storage: new cmdlets
42+
* Get-AzureStorageContainerStoredAccessPolicy
43+
* Get-AzureStorageQueueStoredAccessPolicy
44+
* Get-AzureStorageTableStoredAccessPolicy
45+
* New-AzureStorageContainerStoredAccessPolicy
46+
* New-AzureStorageQueueStoredAccessPolicy
47+
* New-AzureStorageTableStoredAccessPolicy
48+
* Remove-AzureStorageContainerStoredAccessPolicy
49+
* Remove-AzureStorageQueueStoredAccessPolicy
50+
* Remove-AzureStorageTableStoredAccessPolicy
51+
* Set-AzureStorageContainerStoredAccessPolicy
52+
* Set-AzureStorageQueueStoredAccessPolicy
53+
* Set-AzureStorageTableStoredAccessPolicy
54+
55+
* Azure Recovery Services
56+
* New cmdlets:
57+
* Create and enumerate Vaults & Sites, download Vault Settings file
58+
* New- AzureSiteRecoveryVault
59+
* Get-AzureSiteRecoveryVault
60+
* New- AzureSiteRecoverySite
61+
* Get- AzureSiteRecoverySite
62+
* Get-AzureSiteRecoveryVaultSettingsFile
63+
* Enumerate Networks and manage Network Mappings
64+
* Get- AzureSiteRecoveryNetwork
65+
* New- AzureSiteRecoveryNetworkMapping
66+
* Get- AzureSiteRecoveryNetworkMapping
67+
* Remove- AzureSiteRecoveryNetworkMapping
68+
* Enumerate Storages and manage Storage Mappings
69+
* Get-AzureSiteRecoveryStorage
70+
* New- AzureSiteRecoveryStorageMapping
71+
* Get-AzureSiteRecoveryStorageMapping
72+
* Remove- AzureSiteRecoveryStorageMapping
73+
* Create, associated, and dissociate protection profile object
74+
* New- AzureSiteRecoveryProtectionProfileObject
75+
* Start-AzureSiteRecoveryProtectionProfileAssociationJob
76+
* Start-AzureSiteRecoveryProtectionProfileDissociationJob
77+
* Update VM properties and sync owner information
78+
* Set-AzureSiteRecoveryVM
79+
* Update-AzureSiteRecoveryProtectionEntity
80+
* Changed cmdlets:
81+
* Get-AzureSiteRecoveryJob
82+
* Set-AzureSiteRecoveryProtectionEntity – protection profile is introduced
83+
* Start-AzureSiteRecoveryCommitFailoverJob
84+
* Start-AzureSiteRecoveryPlannedFailoverJob
85+
* Start-AzureSiteRecoveryTestFailoverJob
86+
87+
* Azure ExpressRoute cmdlet updates
88+
* Fixed bugs in:
89+
* New-AzureDedicatedCircuit
90+
* New-AzureDedicatedCircuitLink
91+
* New-AzureBGPPeering
92+
* Remove-AzureDedicatedCircuit
93+
* Remove-AzureDedicatedCircuitLink
94+
* Remove-AzureBGPPeering
95+
* Added new cmdlet:
96+
* Update-AzureDedicatedCircuitBandwidth
97+
98+
* Azure SQL Database: new cmdlets for managing database dynamic data masking policies:
99+
* Get-AzureSqlDatabaseDataMaskingPolicy
100+
* Set-AzureSqlDatabaseDataMaskingPolicy
101+
* New-AzureSqlDatabaseDataMaskingRule
102+
* Get-AzureSqlDatabaseDataMaskingRule
103+
* Set-AzureSqlDatabaseDataMaskingRule
104+
* Remove-AzureSqlDatabaseDataMaskingRule
105+
106+
* Azure Batch: new cmdlets:
107+
* Get-AzureBatchPool
108+
* Get-AzureBatchWorkItem
109+
* Get-AzureBatchJob
110+
* Get-AzureBatchTask
111+
112+
* Azure Compute: new features
113+
* Added ForceUpdate parameter for the following cmdlets:
114+
* Set-AzureVMExtension
115+
* Set-AzureVMCustomScriptExtension
116+
* Set-AzureVMAccessExtension
117+
* Show 'Regions' property for Get-AzureVMAvailableExtensions cmdlet
118+
* Add 'ResizedSizeInGB' pramater for the following cmdlets
119+
* Update-AzureDisk
120+
* Set-AzureOSDisk
121+
* Set-AzureDataDisk (DiskName parameter is also added along with ResizedSizeInGB)
122+
123+
* AzureProfile:
124+
* New cmdlets to manage in-memory profiles
125+
* New-AzureProfile: Create a new in-memory Profile
126+
* Select-AzureProfile: Select the profile to be used in the current session
127+
* Added -Profile parameter to every cmdlet - the cmdlet will use the passed-in profile to authenticate with Azure
128+
129+
2015.02.12 version 0.8.14
130+
* StorSimple: New StorSimple commands in AzureServiceManagement mode:
131+
* GetAzureStorSimpleAccessControlRecord
132+
* GetAzureStorSimpleStorageAccountCredential
133+
* RemoveAzureStorSimpleAccessControlRecord
134+
* RemoveAzureStorSimpleStorageAccountCredential
135+
* SetAzureStorSimpleAccessControlRecord
136+
* GetAzureStorSimpleDeviceVolume
137+
* RemoveAzureStorSimpleDeviceVolume
138+
* GetAzureStorSimpleDeviceVolumeContainer
139+
* RemoveAzureStorSimpleDeviceVolumeContainer
140+
* GetAzureStorSimpleDevice
141+
* GetAzureStorSimpleDeviceConnectedInitiator
142+
* GetAzureStorSimpleResource
143+
* GetAzureStorSimpleResourceContext
144+
* SetAzureStorSimpleDeviceBackupPolicy
145+
* NewAzureStorSimpleDeviceBackupPolicy
146+
* GetAzureStorSimpleDeviceBackup
147+
* RemoveAzureStorSimpleDeviceBackup
148+
* StartAzureStorSimpleDeviceBackupJob
149+
* StartAzureStorSimpleDeviceBackupRestoreJob
150+
* RemoveAzureStorSimpleDeviceBackupPolicy
151+
* NewAzureStorSimpleDeviceVolume
152+
* SetAzureStorSimpleDeviceVolume
153+
* NewAzureStorSimpleDeviceVolumeContainer
154+
* SelectAzureStorSimpleResource
155+
* GetAzureStorSimpleDeviceBackupPolicy
156+
* NewAzureStorSimpleStorageAccountCredential
157+
* GetAzureStorSimpleTask
158+
* SetAzureStorSimpleStorageAccountCredential
159+
* NewAzureStorSimpleInlineStorageAccountCredential
160+
* NewAzureStorSimpleAccessControlRecord
161+
162+
* HDInsight:
163+
* HeadNodeVMSize (update): the parameter is now a string that can now accept various sizes (specifications here: https://msdn.microsoft.com/en-us/library/azure/dn197896.aspx -> Sizes for Web and Worker Role Instances)
164+
* DataNodeVMSize (new) : use to specify size of data nodes (where applicable)
165+
* ZookeeperNodeVMSize (new): use to specify Zookeeper node sizes (where applicable)
166+
* ClusterType (update): New value (Spark) can be specified as cluster type
167+
* Add-AzureHDInsightConfigValues cmdlet:
168+
* Spark (new): collection of configuration properties can be passed in to customize the Spark service
169+
170+
* Azure Insights cmdlets in AzureResourceManager Mode:
171+
* Get-AzureCrrelationLogId
172+
* Get-AzureResourceGroupLog
173+
* Get-AzureResourceLog
174+
* Get-AzureResourceProviderLog
175+
* Get-AzureSubscriptionIdLog
176+
177+
* Azure VM cmdlets
178+
* Get-AzureVMDscExtentionStatus: Get the DSC Extension status for a cloud service or VM
179+
180+
* Updates and bug fixes for AzureAutomation and AzureDataFactory cmdlets
181+
1182
2015.01.08 version 0.8.13
2183
* Key Vault Service - new cmdlets in AzureResourceManager mode:
3184
* Keys:

0 commit comments

Comments
 (0)