Skip to content

Commit 20ecc7f

Browse files
committed
Merge pull request #204 from huangpf/vmss
HPF PR: vmss <- huangpf:vmss
2 parents aa434c2 + c4c2e63 commit 20ecc7f

File tree

222 files changed

+7793
-3288
lines changed

Some content is hidden

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

222 files changed

+7793
-3288
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For detail descriptions and examples of the cmdlets, type
5959
* [Azure Stack](https://azure.microsoft.com/en-us/overview/azure-stack/)
6060
* [Windows Azure Pack](https://www.microsoft.com/en-us/server-cloud/windows-azure-pack.aspx)
6161
* [Microsoft Azure China](https://www.azure.cn/)
62-
* [USGovernment](https://azure.microsoft.com/en-us/features/gov/)
62+
* [Microsoft Azure US Government](https://azure.microsoft.com/en-us/features/gov/)
6363

6464
## Installation
6565

@@ -123,6 +123,15 @@ Add-AzureRmAccount -EnvironmentName AzureChinaCloud
123123
New-AzureRmResourceGroup -Name myresourceGroup -Location "China East"
124124
```
125125

126+
### Microsoft Azure US Government
127+
128+
```powershell
129+
Add-AzureRmAccount -EnvironmentName AzureUSGovernment
130+
131+
# use the cmdlets to manage your services/applications
132+
New-AzureRmResourceGroup -Name myresourceGroup -Location "US Gov Virginia"
133+
```
134+
126135
### Windows Azure Pack
127136

128137
```powershell

build.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@
293293
<!-- Run Dependecy Analyzer -->
294294
<Target Name="DependencyAnalysis">
295295
<Message Importance="high" Text="Running Dependency Analysis..." />
296-
<Exec Command="$(MSBuildProjectDirectory)\src\Package\StaticAnalysis.exe $(MSBuildProjectDirectory)\src\Package\$(Configuration) $(MSBuildProjectDirectory)\src\Package"/>
296+
<!-- <Exec Command="$(MSBuildProjectDirectory)\src\Package\StaticAnalysis.exe $(MSBuildProjectDirectory)\src\Package\$(Configuration) $(MSBuildProjectDirectory)\src\Package"/> -->
297297
</Target>
298298

299299
<!-- Publish all packages -->

src/ResourceManager/Compute/AzureRM.Compute.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@{
1010

1111
# Version number of this module.
12-
ModuleVersion = '1.2.5'
12+
ModuleVersion = '1.2.6'
1313

1414
# ID used to uniquely identify this module
1515
GUID = '0a83c907-1ffb-4d87-a492-c65ac7d7ed37'

src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
<Reference Include="Microsoft.Azure.Management.Authorization">
6464
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll</HintPath>
6565
</Reference>
66-
<Reference Include="Microsoft.Azure.Management.Compute, Version=10.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
67-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Compute.12.0.1-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll</HintPath>
66+
<Reference Include="Microsoft.Azure.Management.Compute, Version=13.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
67+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Compute.13.0.1-prerelease\lib\net45\Microsoft.Azure.Management.Compute.dll</HintPath>
6868
<Private>True</Private>
6969
</Reference>
7070
<Reference Include="Microsoft.Azure.Management.Network, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
@@ -365,6 +365,9 @@
365365
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests\TestVirtualMachineScaleSet.json">
366366
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
367367
</None>
368+
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests\TestVirtualMachineScaleSetLB.json">
369+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
370+
</None>
368371
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests\TestVirtualMachineScaleSetReimageUpdate.json">
369372
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
370373
</None>

src/ResourceManager/Compute/Commands.Compute.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232

3333
[assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")]
3434

35-
[assembly: AssemblyVersion("1.2.5")]
36-
[assembly: AssemblyFileVersion("1.2.5")]
35+
[assembly: AssemblyVersion("1.2.6")]
36+
[assembly: AssemblyFileVersion("1.2.6")]
3737
[assembly: CollectionBehavior(DisableTestParallelization = true)]

src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineScaleSetTests.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,13 @@ public void TestVirtualMachineScaleSetReimageUpdate()
3232
{
3333
ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineScaleSetReimageUpdate");
3434
}
35+
36+
[Fact]
37+
[Trait(Category.AcceptanceType, Category.CheckIn)]
38+
public void TestVirtualMachineScaleSetLB()
39+
{
40+
ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineScaleSetLB");
41+
}
42+
3543
}
3644
}

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

Lines changed: 253 additions & 130 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)