forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
1306 lines (1243 loc) · 52.5 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015.06.26 version 0.9.4
* Azure Compute cmdlets
* Warning message for deprecation Name parameter in New-AzureVM. The guidance is to use –Name parameter in New-AzureVMConfig cmdlet.
* Save-AzureVMImgage has new paramter -Path to save the JSON template returned from the server.
* Add-AzureVMNetworkInterface has new paramter -NetworkInterface which accepts a list of NIC object returned by Get-AzureNetworkInterface cmdlet.
* Deprecated “-Name” parameter in Set-AzureVMSourceImage. The guidance is to use the Pub, Offer, SKU, Version method to specify the VM Images for the VM.
* Fixed the formatting of the output of VM Image cmdlets.
* Fixed issues in New/Set-AzureDeployment & other service extension related cmdlets.
* Azure Batch cmdlets
* Added Start-AzureBatchPoolResize
* Added Stop-AzureBatchPoolResize
* Azure Key Vault cmdlets
* Updated Key Vault package versions
* Fixed bugs related to secrets
* Azure Network Resource Provider cmdlets
* New-AzureLocalNetworkGateway parameter name change
* Reset-AzureLocalNetworkGateway renamed to Set-AzureLocalNetworkGateway, added new parameter
* VirtualNetworkGateway parameter changes
* New-AzureVirtualNetworkGateway parameter changes
* Removed command Resize-AzureVirtualNetworkGateway
* Reset-AzureVirtualNetworkGatewayConnection renamed to Set-AzureVirtualNetworkGatewayConnection8
* Azure RedisCache cmdlets
* Set-AzureRedisCache - Added support for scaling, using RedisConfiguration instead of MaxMemoryPolicy #513
* New-AzureRedisCache - Using RedisConfiguration instead of MaxMemoryPolicy #513
* Azure Resource Manager cmdlets
* Added Get-UsageAggregates
* Added Get-AzureProviderOperation cmdlet
* Added Test-AzureResourceGroup and Test-AzureResource cmdlets
* Refactored Resource Lock cmdlets
* Removed unnecessary code when getting a resource
* Azure SQL Database
* Added cmdlets for pause/resume functionality and retrieving restore points for restoring backups:
* Suspend-AzureSqlDatabase
* Resume-AzureSqlDatabase
* Get-AzureSqlDatabaseRestorePoints
* Changed cmdlets:
* New-AzureSqlDatabase - Can now create Azure Sql Data Warehouse databases
2015.06.05 version 0.9.3
* Fixed bug in Websites cmdlets related to slots #454
* Fix bug in Set-AzureResource cmdlet #456
* Fix for new azure resource of Microsoft.Storage #457
2015.05.29 version 0.9.2
* Deprecated Switch-AzureMode
* Profile
* Fixed bug in Get-AzureSubscription and Select-AzureSubscription cmdlets
* Added Automation cmdlets
* Get-AzureAutomationWebhook
* New-AzureAutomationWebhook
* Remove-AzureAutomationWebhook
* Set-AzureAutomationWebhook
* Azure Compute
* Get-AzureVMImage and Get-AzureVMImageDetail are combined (Get-AzureVMImageDetail gives a warning message for future deprecation)
* Get-AzureVMExtensionImage and Get-AzureVMExtensionImageDetail are combined (Get-AzureVMExtensionImageDetail gives a warning message for future deprecation)
* Tags are added in VM resources
* Get-AzureVM now gets resource group name from piping
* -All switch is removed from Get-AzureVM
* Get-AzureVM -Status output is updated
* -Force parameter is added for Remove-AzureAvailabilitySet
* Outputs of New-AzureAvailabilitySet, Get-AzureAvailabilitySet, and Remove-AzureAvailabilitySet are updated
* Azure Key Vault
* Update Set-AzureKeyVaultAccessPolicy and Remove-AzureKeyVaultAccessPolicy cmdlets
* Fixed bugs
* Azure Data Factories
* Base cmdlet type switch to use Profile
* New-AzureDataFactoryEncryptedValue cmdlet supporting M data sources
* Azure Resource Manager
* Fixed bug in Move-AzureResource cmdlet
* Fixed bug in Set-AzureResource cmdlet
2015.05.04 version 0.9.1
* Azure SQL Database: new support for configuring audit retention.
* Azure Automation
* Added Automation cmdlets support in AzureResourceManager mode
* Export-AzureAutomationDscConfiguration
* Export-AzureAutomationDscNodeReportContent
* Get-AzureAutomationAccount
* Get-AzureAutomationDscCompilationJob
* Get-AzureAutomationDscCompilationJobOutput
* Get-AzureAutomationDscConfiguration
* Get-AzureAutomationDscNode
* Get-AzureAutomationDscNodeConfiguration
* Get-AzureAutomationDscNodeReport
* Get-AzureAutomationDscOnboardingMetaconfig
* Get-AzureAutomationModule
* Get-AzureAutomationRegistrationInfo
* Import-AzureAutomationDscConfiguration
* New-AzureAutomationAccount
* New-AzureAutomationKey
* New-AzureAutomationModule
* Register-AzureAutomationDscNode
* Remove-AzureAutomationAccount
* Remove-AzureAutomationModule
* Set-AzureAutomationAccount
* Set-AzureAutomationDscNode
* Set-AzureAutomationModule
* Start-AzureAutomationDscCompilationJob
* Unregister-AzureAutomationDscNode
* Azure Key Vault
* Added new cmdlets for key vault management in AzureResourceManager mode
* New-AzureKeyVault
* Get-AzureKeyVault
* Remove-AzureKeyVault
* Set-AzureKeyVaultAccessPolicy
* Remove-AzureKeyVaultAccessPolicy
* Added new cmdlet for secret management in AzureResourceManager mode
* Set-AzureKeyVaultSecretAttribute
2015.04.29 version 0.9.0
* Azure Compute
* Added Compute cmdlets support in AzureResourceManager mode
* Add-AzureVMSshPublicKey
* Add-AzureVMSecret
* Add-AzureVMNetworkInterface
* Add-AzureVMDataDisk
* Add-AzureVMAdditionalUnattendContent
* Get-AzureVM
* Get-AzureVMUsage
* Get-AzureVMSize
* Get-AzureVMImageSku
* Get-AzureVMImagePublisher
* Get-AzureVMImageOffer
* Get-AzureVMImageDetail
* Get-AzureVMImage
* Get-AzureVMExtensionImageType
* Get-AzureVMExtensionImageDetail
* Get-AzureVMExtensionImage
* Get-AzureVMExtension
* Get-AzureVMCustomScriptExtension
* Get-AzureVMAccessExtension
* Get-AzureVMImagePublisher
* Get-AzureVMImageOffer
* Get-AzureVMImageDetail
* Get-AzureVMImage
* Get-AzureVMExtensionImageType
* Get-AzureVMExtensionImageDetail
* Get-AzureVMExtensionImage
* Get-AzureVMExtension
* Get-AzureVMCustomScriptExtension
* Get-AzureVMAccessExtension
* New-AzureVM
* New-AzureVMConfig
* Update-AzureVM
* Stop-AzureVM
* Start-AzureVM
* Set-AzureVMSourceImage
* Set-AzureVMOSDisk
* Set-AzureVMOperatingSystem
* Set-AzureVMExtension
* Set-AzureVMCustomScriptExtension
* Set-AzureVMAccessExtension
* Set-AzureVM
* Save-AzureVMImage
* Restart-AzureVM
* Remove-AzureVMNetworkInterface
* Remove-AzureVMExtension
* Remove-AzureVMDataDisk
* Remove-AzureVMCustomScriptExtension
* Remove-AzureVMAccessExtension
* Remove-AzureVM
* Azure Network
* Added Network Cmdlets support in AzureResourceManager mode
* Get-AzureVirtualNetwork
* New-AzureVirtualNetwork
* Remove-AzureVirtualNetwork
* Set-AzureVirtualNetwork
* Get-AzureVirtualNetworkSubnetConfig
* New-AzureVirtualNetworkSubnetConfig
* Add-AzureVirtualNetworkSubnetConfig
* Set-AzureVirtualNetworkSubnetConfig
* Remove-AzureVirtualNetworkSubnetConfig
* Get-AzureNetworkInterface
* New-AzureNetworkInterface
* Remove-AzureNetworkInterface
* Set-AzureNetworkInterface
* Get-AzurePublicIpAddress
* New-AzurePublicIpAddress
* Remove-AzurePublicIpAddress
* Set-AzurePublicIpAddress
* Add-AzureLoadBalancerBackendAddressPoolConfig
* Add-AzureLoadBalancerFrontendIpConfig
* Add-AzureLoadBalancerInboundNatRuleConfig
* Add-AzureLoadBalancerProbeConfig
* Add-AzureLoadBalancerRuleConfig
* Get-AzureLoadBalancer
* Get-AzureLoadBalancerBackendAddressPoolConfig
* Get-AzureLoadBalancerFrontendIpConfig
* Get-AzureLoadBalancerInboundNatRuleConfig
* Get-AzureLoadBalancerProbeConfig
* Get-AzureLoadBalancerRuleConfig
* New-AzureLoadBalancer
* New-AzureLoadBalancerBackendAddressPoolConfig
* New-AzureLoadBalancerFrontendIpConfig
* New-AzureLoadBalancerInboundNatRuleConfig
* New-AzureLoadBalancerProbeConfig
* New-AzureLoadBalancerRuleConfig
* Remove-AzureLoadBalancer
* Remove-AzureLoadBalancerBackendAddressPoolConfig
* Remove-AzureLoadBalancerFrontendIpConfig
* Remove-AzureLoadBalancerInboundNatRuleConfig
* Remove-AzureLoadBalancerProbeConfig
* Remove-AzureLoadBalancerRuleConfig
* Set-AzureLoadBalancer
* Set-AzureLoadBalancerFrontendIpConfig
* Set-AzureLoadBalancerInboundNatRuleConfig
* Set-AzureLoadBalancerProbeConfig
* Set-AzureLoadBalancerRuleConfig
* Get-AzureNetworkSecurityGroup
* New-AzureNetworkSecurityGroup
* Remove-AzureNetworkSecurityGroup
* Set-AzureNetworkSecurityGroup
* Get-AzureNetworkSecurityRuleConfig
* New-AzureNetworkSecurityRuleConfig
* Remove-AzureNetworkSecurityRuleConfig
* Add-AzureNetworkSecurityRuleConfig
* Set-AzureNetworkSecurityRuleConfig
* Get-AzureRemoteDesktopFile
* Azure Storage
* Added cmdlets in AzureResourceManager Mode
* New-AzureStorageAccount
* Get-AzureStorageAccount
* Set-AzureStorageAccount
* Remove-AzureStorageAccount
* New-AzureStorageAccountKey
* Get-AzureStorageAccountKey
* Made Azure Storage data cmdlets work in AzureResourceManager Mode
* Azure HDInsight:
* Added support for creating WindowsPaas cluster with RDP Access Enabled by default
* Added cmdlets
* Grant-AzureHdinsightRdpAccess
* Revoke-AzureHdinsightRdpAccess
* Azure Batch
* Added cmdlets
* New-AzureBatchVMUser
* Remove-AzureBatchVMUser
* Get-AzureBatchRDPFile
* Get-AzureBatchVMFileContents
* StorSimple: New StorSimple commands in AzureServiceManagement mode
* Added cmdlets
* Confirm-AzureStorSimpleLegacyVolumeContainerStatus
* Get-AzureStorSimpleLegacyVolumeContainerConfirmStatus
* Get-AzureStorSimpleLegacyVolumeContainerMigrationPlan
* Get-AzureStorSimpleLegacyVolumeContainerStatus
* Import-AzureStorSimpleLegacyApplianceConfig
* Import-AzureStorSimpleLegacyVolumeContainer
* Start-AzureStorSimpleLegacyVolumeContainerMigrationPlan
* New-AzureStorSimpleVirtualDeviceCommand
* Get-AzureStorSimpleJob
* Stop-AzureStorSimpleJob
* Start-AzureStorSimpleBackupCloneJob
* Get-AzureStorSimpleFailoverVolumeContainers
* Start-AzureStorSimpleDeviceFailoverJob
* New-AzureStorSimpleNetworkConfig
* Set-AzureStorSimpleDevice
* Set-AzureStorSimpleVirtualDevice
2015.03.31 version 0.8.16
* Azure Data Factory:
* Fixes for clean install and subscription registration issues
* Azure HDInsight:
* Support for creating, deleting, listing, and submitting jobs to HDInsight clusters with Linux Operating System.
* Azure Compute
* Fix pipeline issues with Get-AzureVM (#3047)
* Fixed DateTime Overflow issue
* Azure Batch
* Added cmdlets
* Add/Remove Batch Pools
* Get-BatchTaskFileContent
* Get-BatchTaskFile
* Azure Insights
* Added cmdlets
* Add-AutoscaleSetting
* Get-AutoscaleHistory
* Get-AutoscaleSetting
* New-AutoscaleProfile
* New-AutoscaleRule
* Remove-AutoscaleSetting
* Get-Metrics
* Get-MetricDefinitions
* Format-MetricsAsTable
* Azure Websites
* Added cmdlet Get-AzureWebhostingPlanMetrics
* Added Premium support
* Renamed WebSites to WebApp
* AzureProfile
* Made AzureProfile serializable to support workflow scenarios
2015.03.11 version 0.8.15.1
* Fixes for clean install and subscription registration issues
2015.03.09 version 0.8.15
* Azure RemoteApp: New RemoteApp cmdlets:
* Add-AzureRemoteAppUser
* Disconnect-AzureRemoteAppSession
* Get-AzureRemoteAppCollection
* Get-AzureRemoteAppCollectionUsageDetails
* Get-AzureRemoteAppCollectionUsageSummary
* Get-AzureRemoteAppLocation
* Get-AzureRemoteAppOperationResult
* Get-AzureRemoteAppPlan
* Get-AzureRemoteAppProgram
* Get-AzureRemoteAppSession
* Get-AzureRemoteAppStartMenuProgram
* Get-AzureRemoteAppTemplateImage
* Get-AzureRemoteAppUser
* Get-AzureRemoteAppVNet
* Get-AzureRemoteAppVpnDevice
* Get-AzureRemoteAppVpnDeviceConfigScript
* Get-AzureRemoteAppWorkspace
* Invoke-AzureRemoteAppSessionLogoff
* New-AzureRemoteAppCollection
* New-AzureRemoteAppTemplateImage
* New-AzureRemoteAppVNet
* Publish-AzureRemoteAppProgram
* Remove-AzureRemoteAppCollection
* Remove-AzureRemoteAppTemplateImage
* Remove-AzureRemoteAppUser
* Remove-AzureRemoteAppVNet
* Rename-AzureRemoteAppTemplateImage
* Reset-AzureRemoteAppVpnSharedKey
* Send-AzureRemoteAppSessionMessage
* Set-AzureRemoteAppCollection
* Set-AzureRemoteAppVNet
* Set-AzureRemoteAppWorkspace
* Unpublish-AzureRemoteAppProgram
* Update-AzureRemoteAppCollection
* Storage: new cmdlets
* Get-AzureStorageContainerStoredAccessPolicy
* Get-AzureStorageQueueStoredAccessPolicy
* Get-AzureStorageTableStoredAccessPolicy
* New-AzureStorageContainerStoredAccessPolicy
* New-AzureStorageQueueStoredAccessPolicy
* New-AzureStorageTableStoredAccessPolicy
* Remove-AzureStorageContainerStoredAccessPolicy
* Remove-AzureStorageQueueStoredAccessPolicy
* Remove-AzureStorageTableStoredAccessPolicy
* Set-AzureStorageContainerStoredAccessPolicy
* Set-AzureStorageQueueStoredAccessPolicy
* Set-AzureStorageTableStoredAccessPolicy
* Azure Recovery Services
* New cmdlets:
* Create and enumerate Vaults & Sites, download Vault Settings file
* New- AzureSiteRecoveryVault
* Get-AzureSiteRecoveryVault
* New- AzureSiteRecoverySite
* Get- AzureSiteRecoverySite
* Get-AzureSiteRecoveryVaultSettingsFile
* Enumerate Networks and manage Network Mappings
* Get- AzureSiteRecoveryNetwork
* New- AzureSiteRecoveryNetworkMapping
* Get- AzureSiteRecoveryNetworkMapping
* Remove- AzureSiteRecoveryNetworkMapping
* Enumerate Storages and manage Storage Mappings
* Get-AzureSiteRecoveryStorage
* New- AzureSiteRecoveryStorageMapping
* Get-AzureSiteRecoveryStorageMapping
* Remove- AzureSiteRecoveryStorageMapping
* Create, associated, and dissociate protection profile object
* New- AzureSiteRecoveryProtectionProfileObject
* Start-AzureSiteRecoveryProtectionProfileAssociationJob
* Start-AzureSiteRecoveryProtectionProfileDissociationJob
* Update VM properties and sync owner information
* Set-AzureSiteRecoveryVM
* Update-AzureSiteRecoveryProtectionEntity
* Changed cmdlets:
* Get-AzureSiteRecoveryJob
* Set-AzureSiteRecoveryProtectionEntity – protection profile is introduced
* Start-AzureSiteRecoveryCommitFailoverJob
* Start-AzureSiteRecoveryPlannedFailoverJob
* Start-AzureSiteRecoveryTestFailoverJob
* Azure ExpressRoute cmdlet updates
* Fixed bugs in:
* New-AzureDedicatedCircuit
* New-AzureDedicatedCircuitLink
* New-AzureBGPPeering
* Remove-AzureDedicatedCircuit
* Remove-AzureDedicatedCircuitLink
* Remove-AzureBGPPeering
* Added new cmdlet:
* Update-AzureDedicatedCircuitBandwidth
* Azure SQL Database: new cmdlets for managing database dynamic data masking policies:
* Get-AzureSqlDatabaseDataMaskingPolicy
* Set-AzureSqlDatabaseDataMaskingPolicy
* New-AzureSqlDatabaseDataMaskingRule
* Get-AzureSqlDatabaseDataMaskingRule
* Set-AzureSqlDatabaseDataMaskingRule
* Remove-AzureSqlDatabaseDataMaskingRule
* Azure Batch: new cmdlets:
* Get-AzureBatchPool
* Get-AzureBatchWorkItem
* Get-AzureBatchJob
* Get-AzureBatchTask
* Azure Compute: new features
* Added ForceUpdate parameter for the following cmdlets:
* Set-AzureVMExtension
* Set-AzureVMCustomScriptExtension
* Set-AzureVMAccessExtension
* Show 'Regions' property for Get-AzureVMAvailableExtensions cmdlet
* Add 'ResizedSizeInGB' parameter for the following cmdlets
* Update-AzureDisk
* Set-AzureOSDisk
* Set-AzureDataDisk (DiskName parameter is also added along with ResizedSizeInGB)
* AzureProfile:
* New cmdlets to manage in-memory profiles
* New-AzureProfile: Create a new in-memory Profile
* Select-AzureProfile: Select the profile to be used in the current session
* Added -Profile parameter to every cmdlet - the cmdlet will use the passed-in profile to authenticate with Azure
2015.02.12 version 0.8.14
* StorSimple: New StorSimple commands in AzureServiceManagement mode:
* GetAzureStorSimpleAccessControlRecord
* GetAzureStorSimpleStorageAccountCredential
* RemoveAzureStorSimpleAccessControlRecord
* RemoveAzureStorSimpleStorageAccountCredential
* SetAzureStorSimpleAccessControlRecord
* GetAzureStorSimpleDeviceVolume
* RemoveAzureStorSimpleDeviceVolume
* GetAzureStorSimpleDeviceVolumeContainer
* RemoveAzureStorSimpleDeviceVolumeContainer
* GetAzureStorSimpleDevice
* GetAzureStorSimpleDeviceConnectedInitiator
* GetAzureStorSimpleResource
* GetAzureStorSimpleResourceContext
* SetAzureStorSimpleDeviceBackupPolicy
* NewAzureStorSimpleDeviceBackupPolicy
* GetAzureStorSimpleDeviceBackup
* RemoveAzureStorSimpleDeviceBackup
* StartAzureStorSimpleDeviceBackupJob
* StartAzureStorSimpleDeviceBackupRestoreJob
* RemoveAzureStorSimpleDeviceBackupPolicy
* NewAzureStorSimpleDeviceVolume
* SetAzureStorSimpleDeviceVolume
* NewAzureStorSimpleDeviceVolumeContainer
* SelectAzureStorSimpleResource
* GetAzureStorSimpleDeviceBackupPolicy
* NewAzureStorSimpleStorageAccountCredential
* GetAzureStorSimpleTask
* SetAzureStorSimpleStorageAccountCredential
* NewAzureStorSimpleInlineStorageAccountCredential
* NewAzureStorSimpleAccessControlRecord
* HDInsight:
* 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)
* DataNodeVMSize (new) : use to specify size of data nodes (where applicable)
* ZookeeperNodeVMSize (new): use to specify Zookeeper node sizes (where applicable)
* ClusterType (update): New value (Spark) can be specified as cluster type
* Add-AzureHDInsightConfigValues cmdlet:
* Spark (new): collection of configuration properties can be passed in to customize the Spark service
* Azure Insights cmdlets in AzureResourceManager Mode:
* Get-AzureCrrelationLogId
* Get-AzureResourceGroupLog
* Get-AzureResourceLog
* Get-AzureResourceProviderLog
* Get-AzureSubscriptionIdLog
* Azure VM cmdlets
* Get-AzureVMDscExtentionStatus: Get the DSC Extension status for a cloud service or VM
* Updates and bug fixes for AzureAutomation and AzureDataFactory cmdlets
2015.01.08 version 0.8.13
* Key Vault Service - new cmdlets in AzureResourceManager mode:
* Keys:
* Add-AzureKeyVaultKey
* Get-AzureKeyVaultKey
* Set-AzureKeyVaultKey
* Backup-AzureKeyVaultKey
* Restore-AzureKeyVaultKey
* Remove-AzureKeyVaultKey
* Secrets:
* Get-AzureKeyVaultSecret
* Set-AzureKeyVaultSecret
* Remove-AzureKeyVaultSecret
2014.12.12 version 0.8.12
* StreamAnalytics
* New cmdlets in AzureResourceManager mode
* New-AzureStreamAnalyticsJob
* New-AzureStreamAnalyticsInput
* New-AzureStreamAnalyticsOutput
* New-AzureStreamAnalyticsTransformation
* Get-AzureStreamAnalyticsJob
* Get-AzureStreamAnalyticsInput
* Get-AzureStreamAnalyticsOutput
* Get-AzureStreamAnalyticsTransformation
* Get-AzureStreamAnalyticsQuota
* Remove-AzureStreamAnalyticsJob
* Remove-AzureStreamAnalyticsInput
* Remove-AzureStreamAnalyticsOutput
* Test-AzureStreamAnalyticsInput
* Test-AzureStreamAnalyticsOutput
* Start-AzureStreamAnalyticsJob
* Stop-AzureStreamAnalyticsJob
* Batch
* Fixed issue with Delete-AzureBatchAccount
* Profile
* Fixed issues with Select-AzureSubscription to allow selecting subscriptions by Id
* Deprecated SubscriptionDataFile parameter
* Compute
* Set-AzureVMImage cmdlets - added IconUri, SmallIconUri, and ShowInGui parameters
* Sql
* Added Sql Server v12 support to SQL authentication context for SqlAzure cmdlets
2014.11.14 Version 0.8.11
* Profile
* Clear-AzureProfile: remove all subscription and credential data from the user store
* Select-AzureSubscription: fixed output types in default and PassThru mode
* Compute
* Get-AzureVMSqlServerExtension
* Set-AzureVMSqlServerExtension
* Remove-AzureVMSqlServerExtension
* HDInsight
* New cmdlets
* Add-AzureHDInisghtScriptAction
* Set-AzureHDInsightClusterSize
* Changed cmdlets
*Added ConfigActions parameter
* Managed Cache
* Get-AzureManagedCacheNamedCache
* New-AzureManagedCacheNamedCache
* Set-AzureManagedCacheNamedCache
* Remove-AzureManagedCacheNamedCache
* Websites
* Fixes for webjobs and site creation
* Additional settings for Publish-AzureWebsiteProject cmdlet
* Enable use of SAS URLs in ApplicationDiagnostics storage
* Sql Database (AzureResourceManager)
* New cmdlets to manage direct access to Sql databases:
* Enable-AzureSqlDatabaseDirectAccess
* Disable-AzureSqlDatabaseDirectAccess
* Enable-AzureSqlDatabaseServerDirectAccess
* Enable-AzureSqlDatabaseServerDirectAccess
* Rename previous cmdlets to use the term audit policy instead of audit setting
* Get-AzureSqlDatabaseAuditingPolicy
* Set-AzureSqlDatabaseAuditingPolicy
* Get-AzureSqlDatabaseServerAuditingPolicy
* Set-AzureSqlDatabaseServerAuditingPolicy
* Remove-AzureSqlDatabaseAuditing
* Remove-AzureSqlDatabaseServerAuditing
* Use-AzureSqlDatabaseServerAuditingPolicy
* Allow users to define which storage account key (Primary or Secondary) to use when defining audit policy, using the “StorageKeyType” parameter.
2014.10.27 Version 0.8.10
* Azure Data Factory cmdlets in AzureResourceManager mode
* New-AzureDataFactory
* New-AzureDataFactoryGateway
* New-AzureDataFactoryGatewayKey
* New-AzureDataFactoryHub
* New-AzureDataFactoryLinkedService
* New-AzureDataFactoryPipeline
* New-AzureDataFactoryTable
* New-AzureDataFactoryEncryptValue
* Get-AzureDataFactory
* Get-AzureDataFactoryGateway
* Get-AzureDataFactoryHub
* Get-AzureDataFactoryLinkedService
* Get-AzureDataFactoryPipeline
* Get-AzureDataFactoryRun
* Get-AzureDataFactorySlice
* Get-AzureDataFactoryTable
* Remove-AzureDataFactory
* Remove-AzureDataFactoryGateway
* Remove-AzureDataFactoryHub
* Remove-AzureDataFactoryLinkedService
* Remove-AzureDataFactoryPipeline
* Remove-AzureDataFactoryTable
* Resume-AzureDataFactoryPipeline
* Save-AzureDataFactoryLog
* Set-AzureDataFactoryGateway
* Set-AzureDataFactoryPipelineActivePeriod
* Set-AzureDataFactorySliceStatus
* Suspend-AzureDataFactoryPipeline
* Azure Batch cmdlets in AzureResourceManager mode
* Set-AzureBatchAccount
* Remove-AzureBatchAccount
* New-AzureBatchAccountKey
* New-AzureBatchAccount
* Get-AzureBatchAccountKeys
* Get-AzureBatchAccount
* Azure Network
* Multi NIC support
* Add-AzureNetworkInterfaceConfig
* Get-AzureNetworkInterfaceConfig
* Remove-AzureNetworkInterfaceConfig
* Set-AzureNetworkInterfaceConfig
* Security group support
* Set-AzureNetworkSecurityGroupToSubnet
* Set-AzureNetworkSecurityGroupConfig
* Remove-AzureNetworkSecurityGroupFromSubnet
* Remove-AzureNetworkSecurityGroupConfig
* Remove-AzureNetworkSecurityGroup
* New-AzureNetworkSecurityGroup
* Get-AzureNetworkSecurityGroupForSubnet
* Get-AzureNetworkSecurityGroupConfig
* Get-AzureNetworkSecurityGroup
* VipMobility Support
*Set-AzureReservedIPAssociation
*Remove-AzureReservedIPAssociation
* MultiVip Support
* Add-AzureVirtualIP
* Remove-AzureVirtualIP
* Azure Virtual Machine
* Added Add PublicConfigKey and PrivateConfigKey parameters to SetAzureVMExtension
* Azure Website
* Set-AzureWebsite exposes new parameters and Get-AzureWebsite returns them
* SlotStickyConnectionStringNames – connection string names not to be moved during swap operation
* SlotStickyAppSettingNames – application settings names not to be moved during swap operation
* AutoSwapSlotName – slot name to swap automatically with after successful deployment
* Recovery Services
* Import & view vault settings
* Import-AzureSiteRecoveryVaultSettingsFile
* Get-AzureSiteRecoveryVaultSettings
* Enumerate Servers, Protection Containers, Protection Entities
* Get-AzureSiteRecoveryServer
* Get-AzureSiteRecoveryProtectionContainer
* Get-AzureSiteRecoveryProtectionEntity
* Get-AzureSiteRecoveryVM
* Manage Azure Site Recovery Operations
* Get-AzureSiteRecoveryJob
* Restart-AzureSiteRecoveryJob
* Resume-AzureSiteRecoveryJob
* Stop-AzureSiteRecoveryJob
* Manage Recovery Plan
* New-AzureSiteRecoveryRecoveryPlan
* Get-AzureSiteRecoveryRecoveryPlanFile
* Get-AzureSiteRecoveryRecoveryPlan
* Remove-AzureSiteRecoveryRecoveryPlan
* Update-AzureSiteRecoveryRecoveryPlan
* Protection and Failover Operations
* Set-AzureSiteRecoveryProtectionEntity
* Start-AzureSiteRecoveryCommitFailoverJob
* Start-AzureSiteRecoveryPlannedFailoverJob
* Start-AzureSiteRecoveryTestFailoverJob
* Start-AzureSiteRecoveryUnplannedFailoverJob
* Update-AzureSiteRecoveryProtectionDirection
2014.10.03 Version 0.8.9
* Redis Cache cmdlets in AzureResourceManager mode
* New-AzureRedisCache
* Get-AzureRedisCache
* Set-AzureRedisCache
* Remove-AzureRedisCache
* New-AzureRedisCacheKey
* Get-AzureRedisCacheKey
* Fixed Remove-AzureDataDisk regression
* Fixed cloud service cmdlets to work with the latest Azure authoring tools
* Fixed Get-AzureSubscription -ExtendedDetails regression
* Added -CreateACSNamespace parameter to New-AzureSBNamespace cmdlet
2014.09.10 Version 0.8.8
* Role-based access control support
* Query role definition
* Get-AzureRoleDefinition
* Manage role assignment
* New-AzureRoleAssignment
* Get-AzureRoleAssignment
* Remove-AzureRoleAssignment
* Query Active Directory object
* Get-AzureADUser
* Get-AzureADGroup
* Get-AzureADGroupMember
* Get-AzureADServicePrincipal
* Show user's permissions on
* Get-AzureResourceGroup
* Get-AzureResource
* Active Directory service principal login support in Azure Resource Manager mode
* Add-AzureAccount -Credential -ServicePrincipal -Tenant
* SQL Database auditing support in Azure Resource Manager mode
* Use-AzureSqlServerAuditingSetting
* Set-AzureSqlServerAuditingSetting
* Set-AzureSqlDatabaseAuditingSetting
* Get-AzureSqlServerAuditingSetting
* Get-AzureSqlDatabaseAuditingSetting
* Disable-AzureSqlServerAuditing
* Disable-AzureSqlDatabaseAuditing
* Other improvements
* Virtual Machine DSC extension supports PSCredential as configuration argument
* Virtual Machine Antimalware extension supports native JSON configuration
* Storage supports creating storage account with different geo-redundant options
* Traffic Manager supports nesting of profiles
* Website supports configuring x32/x64 worker process
* -Detail parameter on Get-AzureResourceGroup to improve performance
* Major refactoring around account and subscription management
2014.08.22 Version 0.8.7.1
* AzureResourceManager
* Update Gallery and Monitoring management clients to fix Gallery commands
*HDInsight
* Update Microsoft.Net API for Hadoop
2014.08.18 Version 0.8.7
* Update Newtonsoft.Json dependency to 6.0.4
* Compute
* Windows Azure Diagnostics (WAD) Version 1.2: extension cmdlets for Iaas And PaaS
* Set-AzureVMDiagnosticsExtension
* Get-AzureVMDiagnosticsExtension
* Set-AzureServiceDiagnosticsExtension
* Get-AzureServiceDiagnosticsExtension
* Get-AzureDeployment: added CreatedTime and LastModifiedTime to output
* Get-AzureVM: added Hostname property
* Implemented CustomData support for Azure VMs
* Websites
* Added RoutingRules parameter to Set-AzureWebsite to expose Testing in Production (TiP) and returned from Get-AzureWebsite
* Get-AzureWebsiteMetric to return web site metrics
* Get-AzureWebHostingPlan
* Get-AzureWebHostingPlanMetric to return metrics for the servers in the web hosting plan
* SQL Database
* Get-AzureSqlRecoverableDatabase parameter simplification and return type changes
* Set-AzureSqlDatabaseRecovery parameter and return type changes
* HDInsight
* Added support for provisioning of HBase clusters into Virtual Networks.
2014.08.04 Version 0.8.6
* Non-interactive login support for Microsoft Organizational account with ``Add-AzureAccount -Credential``
* Upgrade cloud service cmdlets dependencies to Azure SDK 2.4
* Compute
* PowerShell DSC VM extension
* Get-AzureVMDscExtension
* Remove-AzureVMDscExtension
* Set-AzureVMDscExtension
* Publish-AzureVMDscConfiguration
* Added CompanyName and SupportedOS parameters to Publish-AzurePlatformExtension
* New-AzureVM will display a warning instead of an error when the service already exists in the same subscription
* Added Version parameter to generic service extension cmdlets
* Changed the ShowInGUI parameter to DoNotShowInGUI in Update-AzureVMImage
* SQL Database
* Added OfflineSecondary parameter to Start-AzureSqlDatabaseCopy
* Database copy cmdlets will return 2 more properties: IsOfflineSecondary and IsTerminationAllowed
* Windows Azure Pack
* New-WAPackCloudService
* Get-WAPackCloudService
* Remove-WAPackCloudService
* New-WAPackVMRole
* Get-WAPackVMRole
* Set-WAPackVMRole
* Remove-WAPackVMRole
* New-WAPackVNet
* Remove-WAPackVNet
* New-WAPackVMSubnet
* Get-WAPackVMSubnet
* Remove-WAPackVMSubnet
* New-WAPackStaticIPAddressPool
* Get-WAPackStaticIPAddressPool
* Remove-WAPackStaticIPAddressPool
* Get-WAPackLogicalNetwork
2014.07.16 Version 0.8.5
* Upgrade .NET dependency to .NET 4.5
* Azure File Service
* Get-AzureStorageFile
* Remove-AzureStorageFile
* Get-AzureStorageFileContent
* Set-AzureStorageFileContent
* Azure Resource Manager tags in AzureResourceManager mode
* New-AzureTag
* Get-AzureTag
* Remove-AzureTag
* Tag parameter in New-AzureResourceGroup, Set-AzureResourceGroup, New-AzureResource and Set-AzureResource
* Tag parameter in Get-AzureResourceGroup and Get-AzureResource
* Compute
* ReverseDnsFqdn parameter in New-AzureService, Set-AzureService, New-AzureVM and New-AzureQuickVM
* Added VirtualIPName parameter to Set-AzureEndpoint, Add-AzureEndpoint, Set-AzureLoadBalancedEndpoint for Multivip support
* Network
* Set-AzureInternalLoadBalancer
* Add-AzureDns
* Set-AzureDns
* Remove-AzureDns
* Added IdealTimeoutInMinutes parameter to Set-AzurePublicIP, Add-AzureEndpoint and Set-AzureLoadBalancedEndpoint
2014.06.30 Version 0.8.4
* Compute
* New-AzurePlatformExtensionCertificateConfig
* New-AzurePlatformExtensionEndpointConfigSet
* New-AzurePlatformExtensionLocalResourceConfigSet
* Publish-AzurePlatformExtension
* Remove-AzurePlatformExtensionEndpoint
* Remove-AzurePlatformExtensionLocalResource
* Set-AzurePlatformExtension
* Set-AzurePlatformExtensionEndpoint
* Set-AzurePlatformExtensionLocalResource
* Unpublish-AzurePlatformExtension
* Antimalware
* Get-AzureVMMicrosoftAntimalwareExtension
* Set-AzureVMMicrosoftAntimalwareExtension
* Improve the cmdlets to use AzureStorageContext instead of flat storage parameters
* Networking
* Enabling New-AzureVnetGateway to create dynamic gateways
* Added alias New-AzureDns to New-AzureDnsConfig
* Scheduler
* New-AzureSchedulerJobCollection
* Set-AzureSchedulerJobCollection
2014.05.29 Version 0.8.3
* Restructured source code and installation folder
* Web Site
* Return instances info from Get-AzureWebsite
* Added "Slot1" and "Slot2" parameters to enable swap between any 2 slots
* Traffic Manager
* Support for Weighted Round Robin policies
* Support for Performance policies with external endpoints
* Update Get-AzureRoleSize, Get-AzureAffinityGroup, Get-AzureService, Get-AzureLocation cmdlets with role sizes info
* New "ClusterType" parameter for HDInsight
2014.05.12 Version 0.8.2
* Compute and Network improvements
* Public IP support
* Set-AzurePublicIP
* Get-AzurePublicIP
* Remove-AzurePublicIP
* Reserved IP support
* New-AzureReservedIP
* Get-AzureReservedIP
* Remove-AzureReservedIP
* Internal load balancer support
* New-AzureInternalLoadBalancerConfig
* Add-AzureInternalLoadBalancer
* Get-AzureInternalLoadBalancer
* Remove-AzureInternalLoadBalancer
* VM image disk improvements
* New-AzureVMImageDiskConfigSet
* Set-AzureVMImageOSDiskConfig
* Remove-AzureVMImageOSDiskConfig
* Set-AzureVMImageDataDiskConfig
* Remove-AzureVMImageDataDiskConfig
* Virtual network improvements
* Set-AzureVnetGatewayKey
* Azure Automation cmdlets
* Get-AzureAutomationAccount
* Get-AzureAutomationJob
* Get-AzureAutomationJobOutput
* Get-AzureAutomationRunbook
* Get-AzureAutomationRunbookDefinition
* Get-AzureAutomationSchedule
* New-AzureAutomationRunbook
* New-AzureAutomationSchedule
* Publish-AzureAutomationRunbook
* Register-AzureAutomationScheduledRunbook
* Remove-AzureAutomationRunbook
* Remove-AzureAutomationSchedule
* Resume-AzureAutomationJob
* Set-AzureAutomationRunbook
* Set-AzureAutomationRunbookDefinition
* Set-AzureAutomationSchedule
* Start-AzureAutomationRunbook
* Stop-AzureAutomationJob
* Suspend-AzureAutomationJob
* Unregister-AzureAutomationScheduledRunbook
* Traffic Manager cmdlets
* Add-AzureTrafficManagerEndpoint
* Disable-AzureTrafficManagerProfile
* Enable-AzureTrafficManagerProfile
* Get-AzureTrafficManagerProfile
* New-AzureTrafficManagerProfile
* Remove-AzureTrafficManagerEndpoint
* Remove-AzureTrafficManagerProfile
* Set-AzureTrafficManagerEndpoint
* Set-AzureTrafficManagerProfile
* Test-AzureTrafficManagerDomainName
* Anti-Malware Cloud Service extension cmdlets
* Get-AzureServiceAntimalwareConfig
* Remove-AzureServiceAntimalwareExtension
* Set-AzureServiceAntimalwareExtension
2014.05.07 Version 0.8.1
* Managed cache cmdlets
* New-AzureManagedCache
* Set-AzureManagedCache
* Get-AzureManagedCache
* Remove-AzureManagedCache
* New-AzureManagedCacheAccessKey
* Get-AzureManagedCacheAccessKey
* Fixed installer to support Windows PowerShell 5.0 Preview
* Fixed a bunch of module loading issues
* Documentation improvements
* Engineering and infrastructure improvements
2014.04.03 Version 0.8.0
* Azure Resource Manager cmdlets (preview)
* Switch-AzureMode to switch the PowerShell module between service management and resource manager.
* Resource groups
* New-AzureResourceGroup
* Get-AzureResourceGroup
* Remove-AzureResourceGroup
* Get-AzureResourceGroupLog
* Templates
* Get-AzureResourceGroupGalleryTemplate
* Save-AzureResourceGroupGalleryTemplate
* Test-AzureResourceGroupTemplate
* Deployments
* New-AzureResourceGroupDeployment
* Get-AzureResourceGroupDeployment
* Resources
* New-AzureResource
* Get-AzureResource
* Set-AzureResource
* Remove-AzureResource
* Azure Scheduler cmdlets
* Get-AzureSchedulerLocation
* Job collection
* Get-AzureSchedulerJobCollection
* Remove-AzureSchedulerJobCollection
* HTTP job and storage queue job
* New-AzureSchedulerHttpJob
* Set-AzureSchedulerHttpJob
* New-AzureSchedulerStorageQueueJob
* Set-AzureSchedulerStorageQueueJob
* Get-AzureSchedulerJob
* Remove-AzureSchedulerJob
* Get-AzureSchedulerJobHistory
* Virtual Machine improvements
* Puppet extension
* Get-AzureVMPuppetExtension
* Set-AzureVMPuppetExtension
* Remove-AzureVMPuppetExtension
* Custom script extension
* Get-AzureVMCustomScriptExtension
* Set-AzureVMCustomScriptExtension
* Remove-AzureVMCustomScriptExtension
* VM Image support in the following cmdlets
* Get-AzureVMImage
* Save-AzureVMImage
* Remove-AzureVMImage
* New-AzureVM
* New-AzureQuickVM
* Upgrade cloud service cmdlets dependencies to Azure SDK 2.3
2014.03.11 Version 0.7.4
* VM extension cmdlets
* Set-AzureVMExtension
* Get-AzureVMExtension
* Remove-AzureVMExtension
* Set-AzureVMAccessExtension
* Get-AzureVMAccessExtension
* Remove-AzureVMAccessExtension
* Multi-thread support in storage cmdlets
* Add YARN support via -Yarn parameter on Add-AzureHDInsightConfigValues
2014.02.25 Version 0.7.3.1
* Hotfix for https://github.com/WindowsAzure/azure-sdk-tools/issues/2350
2014.02.12 Version 0.7.3
* Web Site cmdlets
* Slot
* All Web Site cmdlets takes a new -Slot parameter
* Switch-AzureWebsiteSlot to swap slots
* WebJob
* Get-AzureWebsiteJob
* New-AzureWebsiteJob
* Remove-AzureWebsiteJob
* Start-AzureWebsiteJob
* Stop-AzureWebsiteJob
* Get-AzureWebsiteJobHistory
* Publish project to Web Site via WebDeploy
* Publish-AzureWebsiteProject
* Test Web Site name availability
* Test-AzureName -Website
* Virtual Machine cmdlets
* Generic extension
* Get-AzureVMAvailableExtension
* Get-AzureServiceAvailableExtension
* BGInfo extension
* Get-AzureVMBGInfoExtension
* Set-AzureVMBGInfoExtension
* Remove-AzureBMBGInfoExtension
* VM role size
* Get-AzureRoleSize
* New-AzureQuickVM -InstanceSize takes a string instead of enum
* Other improvements
* Add-AzureProvisioningConfig will enable guest agent by default. Use -DisableGuestAgent to disable it
* Cloud Service cmdlets
* Generic extension
* Get-AzureServiceExtension
* Set-AzureServiceExtension
* Remove-AzureServiceExtension
* Active directory domain extension
* Get-AzureServiceADDomainExtension
* Set-AzureServiceADDomainExtension
* Remove-AzureServiceADDomainExtension
* New-AzureServiceADDomainExtensionConfig
Virtual Network cmdlets
* Get-AzureStaticVNetIP
* Set-AzureStaticVNetIP
* Remove-AzureStaticVNetIP
* Test-AzureStaticVNetIP
* Storage cmdlets
* Metrics and logging
* Get-AzureStorageServiceLoggingProperty
* Set-AzureStorageServiceLoggingProperty
* Get-AzureStorageServiceMetricsProperty
* Set-AzureStorageServiceMetricsProperty
* Timeout configuration via -ServerTimeoutRequest and -ClientTimeoutRequest parameters