Skip to content

Commit 3da08f2

Browse files
committed
Merge remote-tracking branch 'upstream/ignite' into ignite
2 parents 6ab3233 + 6577eed commit 3da08f2

File tree

95 files changed

+27443
-13970
lines changed

Some content is hidden

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

95 files changed

+27443
-13970
lines changed

ChangeLog.txt

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,57 @@
1-
2015.05.17 version 0.8.18
2-
* Azure HDInsight:
3-
* Added support for creating WindowsPaas cluster with RDP Access Enabled by default
4-
* Added cmdlets
5-
* Grant-AzureHdinsightRdpAccess
6-
* Revoke-AzureHdinsightRdpAccess
1+
2015.04.29 version 0.9.0
2+
* Azure Compute
3+
* Added Compute cmdlets support in AzureResourceManager mode
4+
* Add-AzureVMSshPublicKey
5+
* Add-AzureVMSecret
6+
* Add-AzureVMNetworkInterface
7+
* Add-AzureVMDataDisk
8+
* Add-AzureVMAdditionalUnattendContent
9+
* Get-AzureVM
10+
* Get-AzureVMUsage
11+
* Get-AzureVMSize
12+
* Get-AzureVMImageSku
13+
* Get-AzureVMImagePublisher
14+
* Get-AzureVMImageOffer
15+
* Get-AzureVMImageDetail
16+
* Get-AzureVMImage
17+
* Get-AzureVMExtensionImageType
18+
* Get-AzureVMExtensionImageDetail
19+
* Get-AzureVMExtensionImage
20+
* Get-AzureVMExtension
21+
* Get-AzureVMCustomScriptExtension
22+
* Get-AzureVMAccessExtension
23+
* Get-AzureVMImagePublisher
24+
* Get-AzureVMImageOffer
25+
* Get-AzureVMImageDetail
26+
* Get-AzureVMImage
27+
* Get-AzureVMExtensionImageType
28+
* Get-AzureVMExtensionImageDetail
29+
* Get-AzureVMExtensionImage
30+
* Get-AzureVMExtension
31+
* Get-AzureVMCustomScriptExtension
32+
* Get-AzureVMAccessExtension
33+
* New-AzureVM
34+
* New-AzureVMConfig
35+
* Update-AzureVM
36+
* Stop-AzureVM
37+
* Start-AzureVM
38+
* Set-AzureVMSourceImage
39+
* Set-AzureVMOSDisk
40+
* Set-AzureVMOperatingSystem
41+
* Set-AzureVMExtension
42+
* Set-AzureVMCustomScriptExtension
43+
* Set-AzureVMAccessExtension
44+
* Set-AzureVM
45+
* Save-AzureVMImage
46+
* Restart-AzureVM
47+
* Remove-AzureVMNetworkInterface
48+
* Remove-AzureVMExtension
49+
* Remove-AzureVMDataDisk
50+
* Remove-AzureVMCustomScriptExtension
51+
* Remove-AzureVMAccessExtension
52+
* Remove-AzureVM
753
* Azure Network
8-
* Added Cmdlets
54+
* Added Network Cmdlets support in AzureResourceManager mode
955
* Get-AzureVirtualNetwork
1056
* New-AzureVirtualNetwork
1157
* Remove-AzureVirtualNetwork
@@ -70,8 +116,11 @@
70116
* New-AzureStorageAccountKey
71117
* Get-AzureStorageAccountKey
72118
* Made Azure Storage data cmdlets work in AzureResourceManager Mode
73-
74-
2015.04.28 version 0.8.17
119+
* Azure HDInsight:
120+
* Added support for creating WindowsPaas cluster with RDP Access Enabled by default
121+
* Added cmdlets
122+
* Grant-AzureHdinsightRdpAccess
123+
* Revoke-AzureHdinsightRdpAccess
75124
* Azure Batch
76125
* Added cmdlets
77126
* New-AzureBatchVMUser
@@ -97,7 +146,6 @@
97146
* Set-AzureStorSimpleDevice
98147
* Set-AzureStorSimpleVirtualDevice
99148

100-
101149
2015.03.31 version 0.8.16
102150
* Azure Data Factory:
103151
* Fixes for clean install and subscription registration issues

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Gets default VM size string
128128
#>
129129
function Get-DefaultVMSize
130130
{
131-
param([string] $location = "eastasia")
131+
param([string] $location = "westus")
132132

133133
$vmSizes = Get-AzureVMSize -Location $location | where { $_.NumberOfCores -ge 4 -and $_.MaxDataDiskCount -ge 8 };
134134

@@ -169,7 +169,7 @@ Gets default CRP Image
169169
#>
170170
function Get-DefaultCRPImage
171171
{
172-
param([string] $loc = "eastasia", [string] $query = '*Microsoft*Windows*Server')
172+
param([string] $loc = "westus", [string] $query = '*Microsoft*Windows*Server')
173173

174174
$result = (Get-AzureVMImagePublisher -Location $loc) | select -ExpandProperty PublisherName | where { $_ -like $query };
175175
if ($result.Count -eq 1)
@@ -222,7 +222,7 @@ Gets VMM Images
222222
#>
223223
function Get-MarketplaceImage
224224
{
225-
param([string] $location = "eastasia", [string] $pubFilter = '*', [string] $offerFilter = '*')
225+
param([string] $location = "westus", [string] $pubFilter = '*', [string] $offerFilter = '*')
226226

227227
$imgs = Get-AzureVMImagePublisher -Location $location | where { $_.PublisherName -like $pubFilter } | Get-AzureVMImageOffer | where { $_.Offer -like $offerFilter } | Get-AzureVMImageSku | Get-AzureVMImage | Get-AzureVMImageDetail | where { $_.PurchasePlan -ne $null };
228228

@@ -235,7 +235,7 @@ Gets default VM config object
235235
#>
236236
function Get-DefaultVMConfig
237237
{
238-
param([string] $location = "eastasia")
238+
param([string] $location = "westus")
239239

240240
# VM Profile & Hardware
241241
$vmsize = Get-DefaultVMSize $location;

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineExtensionTests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function Test-VirtualMachineExtension
2525
try
2626
{
2727
# Common
28-
$loc = 'East Asia';
28+
$loc = 'westus';
2929
New-AzureResourceGroup -Name $rgname -Location $loc;
3030

3131
# VM Profile & Hardware
@@ -202,7 +202,7 @@ function Test-VirtualMachineCustomScriptExtension
202202
try
203203
{
204204
# Common
205-
$loc = 'East Asia';
205+
$loc = 'westus';
206206
New-AzureResourceGroup -Name $rgname -Location $loc;
207207

208208
# VM Profile & Hardware
@@ -358,7 +358,7 @@ function Test-VirtualMachineAccessExtension
358358
try
359359
{
360360
# Common
361-
$loc = 'East Asia';
361+
$loc = 'westus';
362362
New-AzureResourceGroup -Name $rgname -Location $loc;
363363

364364
# VM Profile & Hardware

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineNetworkInterfaceTests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Test-SingleNetworkInterface
2424
try
2525
{
2626
# Common
27-
$loc = 'eastasia';
27+
$loc = 'westus';
2828
New-AzureResourceGroup -Name $rgname -Location $loc;
2929

3030
# VM Profile & Hardware
@@ -147,7 +147,7 @@ function Test-SingleNetworkInterfaceDnsSettings
147147
try
148148
{
149149
# Common
150-
$loc = 'eastasia';
150+
$loc = 'westus';
151151
New-AzureResourceGroup -Name $rgname -Location $loc;
152152

153153
# VM Profile & Hardware
@@ -254,7 +254,7 @@ function Test-MultipleNetworkInterface
254254
try
255255
{
256256
# Common
257-
$loc = 'eastasia';
257+
$loc = 'westus';
258258
New-AzureResourceGroup -Name $rgname -Location $loc;
259259

260260
# VM Profile & Hardware

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Test-VirtualMachine
2424
try
2525
{
2626
# Common
27-
$loc = 'eastasia';
27+
$loc = 'westus';
2828
New-AzureResourceGroup -Name $rgname -Location $loc;
2929

3030
# VM Profile & Hardware
@@ -218,7 +218,7 @@ function Test-VirtualMachineImageList
218218

219219
try
220220
{
221-
$locStr = 'EastAsia';
221+
$locStr = 'westus';
222222

223223
# List Tests
224224
$foundAnyImage = $false;
@@ -372,7 +372,7 @@ function Test-VirtualMachineSizeAndUsage
372372
try
373373
{
374374
# Common
375-
$loc = 'eastasia';
375+
$loc = 'westus';
376376
New-AzureResourceGroup -Name $rgname -Location $loc;
377377

378378
# Availability Set
@@ -543,7 +543,7 @@ function Test-VirtualMachinePIRv2
543543
try
544544
{
545545
# Common
546-
$loc = 'eastasia';
546+
$loc = 'westus';
547547
New-AzureResourceGroup -Name $rgname -Location $loc;
548548

549549
# VM Profile & Hardware
@@ -653,7 +653,7 @@ function Test-VirtualMachineCapture
653653
try
654654
{
655655
# Common
656-
$loc = 'eastasia';
656+
$loc = 'westus';
657657
New-AzureResourceGroup -Name $rgname -Location $loc;
658658

659659
# VM Profile & Hardware
@@ -769,7 +769,7 @@ function Test-VirtualMachineDataDisk
769769
try
770770
{
771771
# Common
772-
$loc = 'eastasia';
772+
$loc = 'westus';
773773
New-AzureResourceGroup -Name $rgname -Location $loc;
774774

775775
# VM Profile & Hardware
@@ -850,7 +850,7 @@ function Test-VirtualMachinePlan
850850
try
851851
{
852852
# Common
853-
$loc = 'eastasia';
853+
$loc = 'westus';
854854
New-AzureResourceGroup -Name $rgname -Location $loc;
855855

856856
# VM Profile & Hardware
@@ -934,7 +934,7 @@ function Test-VirtualMachinePlan2
934934
try
935935
{
936936
# Common
937-
$loc = 'eastasia';
937+
$loc = 'westus';
938938
New-AzureResourceGroup -Name $rgname -Location $loc;
939939

940940
# VM Profile & Hardware

0 commit comments

Comments
 (0)