Skip to content

Commit e0ad533

Browse files
committed
2 parents 278abe2 + 1b268ac commit e0ad533

File tree

814 files changed

+329154
-207652
lines changed

Some content is hidden

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

814 files changed

+329154
-207652
lines changed

.azure-pipelines/windows-powershell.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,36 @@ jobs:
1919
testFramework: ${{ variables.TestFramework }}
2020
configuration: ${{ variables.Configuration }}
2121

22+
- job: Analyze
23+
displayName: Analyze
24+
dependsOn: Build
25+
condition: succeeded()
26+
pool:
27+
vmImage: ${{ variables.WindowsImage }}
28+
29+
steps:
30+
- template: util/analyze-steps.yml
31+
parameters:
32+
osName: ${{ variables.WindowsName }}
33+
configuration: ${{ variables.Configuration }}
34+
- task: PowerShell@2
35+
displayName: 'Cleanup Build'
36+
inputs:
37+
targetType: filePath
38+
filePath: tools/CleanupBuild.ps1
39+
pwsh: true
40+
- task: NuGetCommand@2
41+
displayName: 'Download BinSkim'
42+
inputs:
43+
command: custom
44+
arguments: 'install Microsoft.CodeAnalysis.BinSkim -OutputDirectory $(System.DefaultWorkingDirectory)/tools/SecurityTools'
45+
- task: PowerShell@2
46+
displayName: 'Run BinSkim'
47+
inputs:
48+
targetType: filePath
49+
filePath: tools/SecurityTools/RunBinSkim.ps1
50+
pwsh: true
51+
2252
- job: Test
2353
displayName: Test
2454
dependsOn: Build

.github/ISSUE_TEMPLATE/az-module-bug-report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ assignees: ''
3737

3838
## Module versions
3939

40-
<!-- Please run (Get-Module -Name Az.* -ListAvailable) and paste the output in the below code block -->
40+
<!-- Please run (Get-Module -ListAvailable) and paste the output in the below code block -->
4141

4242
```powershell
4343
@@ -53,7 +53,7 @@ assignees: ''
5353

5454
## Error output
5555

56-
<!-- Please run Resolve-AzureRmError and paste the output in the below code block -->
56+
<!-- Please run Resolve-AzError and paste the output in the below code block -->
5757

5858
```
5959

ChangeLog.md

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,119 @@
1+
## 2.0.0 - May 2019
2+
#### Az.Accounts
3+
* Update Authentication Library to fix ADFS issues with username/password auth
4+
5+
#### Az.CognitiveServices
6+
* Only display Bing disclaimer for Bing Search Services.
7+
* Improve error when create account failed.
8+
9+
#### Az.Compute
10+
* Proximity placement group feature.
11+
- The following new cmdlets are added:
12+
New-AzProximityPlacementGroup
13+
Get-AzProximityPlacementGroup
14+
Remove-AzProximityPlacementGroup
15+
- The new parameter, ProximityPlacementGroupId, is added to the following cmdlets:
16+
New-AzAvailabilitySet
17+
New-AzVMConfig
18+
New-AzVmssConfig
19+
* StorageAccountType parameter is added to New-AzGalleryImageVersion.
20+
* TargetRegion of New-AzGalleryImageVersion can contain StorageAccountType.
21+
* SkipShutdown switch parameter is added to Stop-AzVM and Stop-AzVmss
22+
* Breaking changes
23+
- Set-AzVMBootDiagnostics is changed to Set-AzVMBootDiagnostic.
24+
- Export-AzLogAnalyticThrottledRequests is changed to Export-AzLogAnalyticThrottledRequests.
25+
26+
#### Az.DeploymentManager
27+
* First Generally Available release of Azure Deployment Manager cmdlets
28+
29+
#### Az.Dns
30+
* Automatic DNS NameServer Delegation
31+
- Create DNS zone cmdlet accepts parent zone name as additional optional parameter.
32+
- Adds NS records in the parent zone for newly created child zone.
33+
34+
#### Az.FrontDoor
35+
* First Generally Available Release of Azure FrontDoor cmdlets
36+
* Rename WAF cmdlets to include 'Waf'
37+
- `Get-AzFrontDoorFireWallPolicy --> Get-AzFrontDoorWafPolicy`
38+
- `New-AzFrontDoorCustomRuleObject --> New-AzFrontDoorWafCustomRuleObject`
39+
- `New-AzFrontDoorFireWallPolicy --> New-AzFrontDoorWafPolicy`
40+
- `New-AzFrontDoorManagedRuleObject --> New-AzFrontDoorWafManagedRuleObject`
41+
- `New-AzFrontDoorManagedRuleOverrideObject --> New-AzFrontDoorWafManagedRuleOverrideObject`
42+
- `New-AzFrontDoorMatchConditionObject --> New-AzFrontDoorWafMatchConditionObject`
43+
- `New-AzFrontDoorRuleGroupOverrideObject --> New-AzFrontDoorWafRuleGroupOverrideObject`
44+
- `Remove-AzFrontDoorFireWallPolicy --> Remove-AzFrontDoorWafPolicy`
45+
- `Update-AzFrontDoorFireWallPolicy --> Update-AzFrontDoorWafPolicy`
46+
#### Az.HDInsight
47+
* Removed two cmdlets:
48+
- Grant-AzHDInsightHttpServicesAccess
49+
- Revoke-AzHDInsightHttpServicesAccess
50+
* Added a new cmdlet Set-AzHDInsightGatewayCredential to replace Grant-AzHDInsightHttpServicesAccess
51+
* Update cmdlet Get-AzHDInsightJobOutput to distinguish reader role and hdinsight operator role:
52+
- Users with reader role need to specify 'DefaultStorageAccountKey' parameter explicitly, otherwise error occurs.
53+
- Users with hdinsight operator role will not be affected.
54+
55+
#### Az.Monitor
56+
* New cmdlets for SQR API (Scheduled Query Rule)
57+
- New-AzScheduledQueryRuleAlertingAction
58+
- New-AzScheduledQueryRuleAznsActionGroup
59+
- New-AzScheduledQueryRuleLogMetricTrigger
60+
- New-AzScheduledQueryRuleSchedule
61+
- New-AzScheduledQueryRuleSource
62+
- New-AzScheduledQueryRuleTriggerCondition
63+
- New-AzScheduledQueryRule
64+
- Get-AzScheduledQueryRule
65+
- Set-AzScheduledQueryRule
66+
- Update-AzScheduledQueryRule
67+
- Remove-AzScheduledQueryRule
68+
- [More](https://docs.microsoft.com/en-us/rest/api/monitor/scheduledqueryrules) information about SQR API
69+
- Updated Az.Monitor.md to include cmdlets for GenV2(non classic) metric-based alert rule
70+
71+
#### Az.Network
72+
* Add support for Nat Gateway Resource
73+
- New cmdlets
74+
- New-AzNatGateway
75+
- Get-AzNatGateway
76+
- Set-AzNatGateway
77+
- Remove-AzNatGateway
78+
- Updated cmdlets
79+
- New-AzureVirtualNetworkSubnetConfigCommand
80+
- Add-AzureVirtualNetworkSubnetConfigCommand
81+
* Updated below commands for feature: Custom routes set/remove on Brooklyn Gateway.
82+
- Updated New-AzVirtualNetworkGateway: Added optional parameter -CustomRoute to set the address prefixes as custom routes to set on Gateway.
83+
- Updated Set-AzVirtualNetworkGateway: Added optional parameter -CustomRoute to set the address prefixes as custom routes to set on Gateway.
84+
85+
#### Az.PolicyInsights
86+
* Support for querying policy evaluation details.
87+
- Add '-Expand' parameter to Get-AzPolicyState. Support '-Expand PolicyEvaluationDetails'.
88+
89+
#### Az.RecoveryServices
90+
* Support for Cross subscription Azure to Azure site recovery.
91+
* Marking upcoming breaking changes for Azure Site Recovery.
92+
* Fix for Azure Site Recovery recovery plan end action plan.
93+
* Fix for Azure Site Recovery Update network mapping for Azure to Azure.
94+
* Fix for Azure Site Recovery update protection direction for Azure to Azure for managed disk.
95+
* Other minor fixes.
96+
97+
#### Az.Relay
98+
* Fix typos in customer-facing messages
99+
100+
#### Az.ServiceBus
101+
* Added new cmdlets for NetworkRuleSet of Namespace
102+
103+
#### Az.Storage
104+
* Upgrade to Storage Client Library 10.0.1 (the namespace of all objects from this SDK change from 'Microsoft.WindowsAzure.Storage.*' to 'Microsoft.Azure.Storage.*')
105+
* Upgrade to Microsoft.Azure.Management.Storage 11.0.0, to support new API version 2019-04-01.
106+
* The default Storage account Kind in Create Storage account change from 'Storage' to 'StorageV2'
107+
- New-AzStorageAccount
108+
* Change the Storage account cmdlet output Sku.Name to be aligned with input SkuName by add '-', like 'StandardLRS' change to 'Standard_LRS'
109+
- New-AzStorageAccount
110+
- Get-AzStorageAccount
111+
- Set-AzStorageAccount
112+
113+
#### Az.Websites
114+
* 'Kind' property will now be set for PSSite objects returned by Get-AzWebApp
115+
* Get-AzWebApp*Metrics and Get-AzAppServicePlanMetrics marked deprecated
116+
1117
## 1.8.0 - April 2019
2118
### Highlights since the last major release
3119
* General availability of `Az` module

documentation/development-docs/azure-powershell-developer-guide.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ The Azure PowerShell Developer Guide was created to help with the development an
3636
- [After Development](#after-development)
3737
- [Misc](#misc)
3838
- [Publish to PowerShell Gallery](#publish-to-powershell-gallery)
39-
- [AsJob Parameter](#asjob-parameter)
40-
- [Argument Completers](#argument-completers)
41-
- [Resource Group Completer](#resource-group-completers)
42-
- [Location Completer](#location-completer)
43-
- [Generic Argument Completer](#generic-argument-completer)
4439

4540
# Prerequisites
4641

@@ -313,4 +308,4 @@ Whenver you make updates to a project, please make sure to update the correspond
313308

314309
## Publish to PowerShell Gallery
315310

316-
To publish your module to the [official PowerShell gallery](http://www.powershellgallery.com/) or the test gallery site, contact the Azure PowerShell team
311+
To publish your module to the [official PowerShell gallery](http://www.powershellgallery.com/) or the test gallery site, contact the Azure PowerShell team

0 commit comments

Comments
 (0)