Skip to content

Commit 23d7204

Browse files
author
Anavi Nahar
committed
Merge branch 'master' of https://github.com/Azure/azure-powershell into setNicHelp
2 parents 73d7485 + 9ebcf1f commit 23d7204

File tree

1,036 files changed

+104064
-61898
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,036 files changed

+104064
-61898
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ x64/
2929
build/
3030
bld/
3131
src/*/[Bb]in/
32+
setup/**/*/[Bb]in/
33+
setup/[Bb]in/
3234
[Oo]bj/
3335

3436
# Roslyn cache directories

AzurePowershell.Test.targets

Lines changed: 568 additions & 529 deletions
Large diffs are not rendered by default.

ChangeLog.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,64 @@
1-
## 2017.02.22 - Version 3.6.0
1+
## 2017.03.09 - Version 3.7.0
2+
* ApiManagement
3+
* Added new cmdlets to manage Backend entity
4+
- New-AzureRmApiManagementBackend
5+
- Get-AzureRmApiManagementBackend
6+
- Set-AzureRmApiManagementBackend
7+
- Remove-AzureRmApiManagementBackend
8+
* Created supporting cmdlets to create in-memory objects required while Creating or Updating Backend entity
9+
- New-AzureRmApiManagementBackendCredential
10+
- New-AzureRmApiManagementBackendProxy
11+
* Billing
12+
* New Cmdlet Get-AzureRmBillingInvoice
13+
- cmdlet to retrieve azure billing invoices of the subscription.
14+
* Compute
15+
* Updated Set-AzureRmVMAEMExtension and Test-AzureRmVMAEMExtension cmdlets to support managed disks
16+
* LogicApp
17+
* New cmdlets for X12 Interchange Control Number disaster recovery:
18+
- Get-AzureRmIntegrationAccountGeneratedIcn
19+
- Get-AzureRmIntegrationAccountReceivedIcn
20+
- Remove-AzureRmIntegrationAccountReceivedIcn
21+
- Set-AzureRmIntegrationAccountGeneratedIcn
22+
- Set-AzureRmIntegrationAccountReceivedIcn
23+
* Network
24+
* Added support for connection draining to Application Gateways
25+
- Added Get-AzureRmApplicationGatewayConnectionDraining
26+
- Added New-AzureRmApplicationGatewayConnectionDraining
27+
- Added Remove-AzureRmApplicationGatewayConnectionDraining
28+
- Added Set-AzureRmApplicationGatewayConnectionDraining
29+
- Updated Add-AzureRmApplicationGatewayBackendHttpSettings: Added optional parameter -ConnectionDraining
30+
- Updated New-AzureRmApplicationGatewayBackendHttpSettings: Added optional parameter -ConnectionDraining
31+
- Updated Set-AzureRmApplicationGatewayBackendHttpSettings: Added optional parameter -ConnectionDraining
32+
33+
* Remapped unused 'Name' parameter in ExpressRoute cmdlets to 'ExpressRouteCircuitName'
34+
- Get-AzureRmExpressRouteCircuitARPTable
35+
- Get-AzureRmExpressRouteCircuitRouteTable
36+
- Get-AzureRmExpressRouteCircuitRouteTableSummary
37+
- Get-AzureRmExpressRouteCircuitStats
38+
* Sql
39+
* Bug fix - Auditing and Threat Detection cmdlets now return a meangfull error instead of null refernce error.
40+
* Updating Transparent Data Encryption (TDE) with Bring Your Own Key (BYOK) support cmdlets for updated API.
41+
* Websites
42+
* Update help documentation for AppServicePlan cmdlets
43+
* ServiceManagement
44+
* Update the output object of migration cmdlets (Move-AzureService, Move-AzureStorageAccount, Move-AzureVirtualNetwork, Move-AzureNetworkSecurityGroup, Move-AzureReservedIP, Move-AzureRouteTable):
45+
- ValidationMessages contain "Information" and "Warning" messages in addition to "Error" messages.
46+
- Result output is changed according to ValidationMessages.
47+
48+
* Removed ManagedCache cmdlets. These cmdlets were non-functional and have been deeprecated for more than a year
49+
- Get-AzureManagedCacheLocation
50+
- Get-AzureManagedCache
51+
- Get-AzureManagedCacheAccessKey
52+
- Get-AzureManagedCacheNamedCache
53+
- New-AzureManagedCache
54+
- New-AzureManagedCacheAccessKey
55+
- New-AzureManagedCacheNamedCache
56+
- Remove-AzureManagedCache
57+
- Remove-AzureManagedCacheNamedCache
58+
- Set-AzureManagedCache
59+
- Set-AzureManagedCacheNamedCache
60+
61+
## 2017.02.22 - Version 3.6.0
262
* AnalysisServices
363
* Added State property in additional to ProvisioningState
464
- All the cmdlet returning AnalysisService would have a new property 'State' used outside of provisioing.

appveyor.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ environment:
88
build_script:
99
- ps: |
1010
$ErrorActionPreference = "Stop"
11-
$response = Invoke-WebRequest ("https://api.github.com/repos/" + $env:APPVEYOR_REPO_NAME + "/releases/tags/" + $env:APPVEYOR_REPO_TAG_NAME) -Timeout 10
11+
$response = Invoke-WebRequest ("https://api.github.com/repos/" + $env:APPVEYOR_REPO_NAME + "/releases/latest") -Timeout 10
1212
if($response -ne $null -and $response.StatusCode -ne 200)
1313
{
1414
$host.SetShouldExit(1)
1515
}
1616
17-
$unzip_path = "C:\projects\azure-powershell-release"
17+
$unzip_path = "C:\projects\release"
1818
$unzip_file = $unzip_path + "zip"
1919
Invoke-WebRequest ($response.Content | ConvertFrom-Json).zipball_url -OutFile $unzip_file
2020
7z x $unzip_file -o"$unzip_path"
@@ -38,7 +38,7 @@ build_script:
3838
{
3939
continue
4040
}
41-
if((gc $psd1 | Out-String) -notmatch "ModuleVersion\s*=\s*$pattern")
41+
if((gc $psd1 | Out-String) -notmatch "ModuleVersion\s*=\s*'$pattern'")
4242
{
4343
continue
4444
}
@@ -48,12 +48,12 @@ build_script:
4848
test: off
4949
shallow_clone: true
5050
on_success:
51-
- git clone -q --branch=%target_branch% %content_repo% %TEMP%\Azure
52-
- cd %TEMP%\Azure
53-
- ps: ls $global:output -dir | % { copy $_.FullName (ls -dir | select -First 1) -Recurse -Force }
5451
- git config --global credential.helper store
5552
- ps: ac "$env:USERPROFILE\.git-credentials" "https://$($env:github_access_token):[email protected]`n"
5653
- git config --global user.email %email%
5754
- git config --global user.name %name%
55+
- git clone -q --branch=%target_branch% %content_repo% %TEMP%\Azure
56+
- cd %TEMP%\Azure
57+
- ps: ls $global:output -dir | % { copy $_.FullName (ls -dir | select -First 1) -Recurse -Force }
5858
- git add -A
59-
- git diff --quiet --exit-code --cached || git commit -m "Sync docs from source code repo to content repo." && git push origin %target_branch% && appveyor AddMessage "Content Updated"
59+
- git diff --quiet --exit-code --cached || git commit -m "Sync docs from source code repo to content repo." && git push origin %target_branch% && appveyor AddMessage "Content Updated"

0 commit comments

Comments
 (0)