Skip to content

Commit f30290d

Browse files
committed
Updated Az.Compute changelogs
1 parent 179574b commit f30290d

File tree

6 files changed

+2572
-411
lines changed

6 files changed

+2572
-411
lines changed

ChangeLog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22
#### Az.Cdn
33
* Updated cmdlets to support rulesEngine feature based on API version 2019-04-15.
44

5+
#### Az.Compute
6+
* Added `NoWait` parameter that starts the operation and returns immediately, before the operation is completed.
7+
- Updated cmdlets:
8+
Export-AzLogAnalyticRequestRateByInterval
9+
Export-AzLogAnalyticThrottledRequest
10+
Remove-AzVM
11+
Remove-AzVMAccessExtension
12+
Remove-AzVMAEMExtension
13+
Remove-AzVMChefExtension
14+
Remove-AzVMCustomScriptExtension
15+
Remove-AzVMDiagnosticsExtension
16+
Remove-AzVMDiskEncryptionExtension
17+
Remove-AzVMDscExtension
18+
Remove-AzVMSqlServerExtension
19+
Restart-AzVM
20+
Set-AzVM
21+
Set-AzVMAccessExtension
22+
Set-AzVMADDomainExtension
23+
Set-AzVMAEMExtension
24+
Set-AzVMBginfoExtension
25+
Set-AzVMChefExtension
26+
Set-AzVMCustomScriptExtension
27+
Set-AzVMDiagnosticsExtension
28+
Set-AzVMDscExtension
29+
Set-AzVMExtension
30+
Start-AzVM
31+
Stop-AzVM
32+
Update-AzVM
33+
534
#### Az.EventHub
635
* Fix for #9231 - Get-AzEventHubNamespace does not return tags
736
* Fix for #9230 - Get-AzEventHubNamespace returns ResourceGroup instead of ResourceGroupName

src/Compute/Compute/Az.Compute.psd1

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
2-
# Module manifest for module 'PSGet_Az.Compute'
2+
# Module manifest for module 'Az.Compute'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 5/15/2019
6+
# Generated on: 5/29/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '2.1.0'
15+
ModuleVersion = '2.2.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -199,13 +199,38 @@ PrivateData = @{
199199
# IconUri = ''
200200

201201
# ReleaseNotes of this module
202-
ReleaseNotes = '* Add ProtectFromScaleIn and ProtectFromScaleSetAction parameters to Update-AzVmssVM cmdlet.
203-
* New-AzVM wimple parameter set now uses by default an available location if ''East US'' is not supported'
202+
ReleaseNotes = '* Added ''NoWait'' parameter that starts the operation and returns immediately, before the operation is completed.
203+
- Updated cmdlets:
204+
Export-AzLogAnalyticRequestRateByInterval
205+
Export-AzLogAnalyticThrottledRequest
206+
Remove-AzVM
207+
Remove-AzVMAccessExtension
208+
Remove-AzVMAEMExtension
209+
Remove-AzVMChefExtension
210+
Remove-AzVMCustomScriptExtension
211+
Remove-AzVMDiagnosticsExtension
212+
Remove-AzVMDiskEncryptionExtension
213+
Remove-AzVMDscExtension
214+
Remove-AzVMSqlServerExtension
215+
Restart-AzVM
216+
Set-AzVM
217+
Set-AzVMAccessExtension
218+
Set-AzVMADDomainExtension
219+
Set-AzVMAEMExtension
220+
Set-AzVMBginfoExtension
221+
Set-AzVMChefExtension
222+
Set-AzVMCustomScriptExtension
223+
Set-AzVMDiagnosticsExtension
224+
Set-AzVMDscExtension
225+
Set-AzVMExtension
226+
Start-AzVM
227+
Stop-AzVM
228+
Update-AzVM'
204229

205230
# Prerelease string of this module
206231
# Prerelease = ''
207232

208-
# Flag to indicate whether the module requires explicit user acceptance for install/update
233+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
209234
# RequireLicenseAcceptance = $false
210235

211236
# External dependent modules of this module

src/Compute/Compute/ChangeLog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,35 @@
2020
-->
2121
## Upcoming Release
2222

23+
## Version 2.2.0
24+
* Added `NoWait` parameter that starts the operation and returns immediately, before the operation is completed.
25+
- Updated cmdlets:
26+
Export-AzLogAnalyticRequestRateByInterval
27+
Export-AzLogAnalyticThrottledRequest
28+
Remove-AzVM
29+
Remove-AzVMAccessExtension
30+
Remove-AzVMAEMExtension
31+
Remove-AzVMChefExtension
32+
Remove-AzVMCustomScriptExtension
33+
Remove-AzVMDiagnosticsExtension
34+
Remove-AzVMDiskEncryptionExtension
35+
Remove-AzVMDscExtension
36+
Remove-AzVMSqlServerExtension
37+
Restart-AzVM
38+
Set-AzVM
39+
Set-AzVMAccessExtension
40+
Set-AzVMADDomainExtension
41+
Set-AzVMAEMExtension
42+
Set-AzVMBginfoExtension
43+
Set-AzVMChefExtension
44+
Set-AzVMCustomScriptExtension
45+
Set-AzVMDiagnosticsExtension
46+
Set-AzVMDscExtension
47+
Set-AzVMExtension
48+
Start-AzVM
49+
Stop-AzVM
50+
Update-AzVM
51+
2352
## Version 2.1.0
2453
* Add ProtectFromScaleIn and ProtectFromScaleSetAction parameters to Update-AzVmssVM cmdlet.
2554
* New-AzVM wimple parameter set now uses by default an available location if 'East US' is not supported

src/Compute/Compute/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
28-
[assembly: AssemblyVersion("2.1.0")]
29-
[assembly: AssemblyFileVersion("2.1.0")]
28+
[assembly: AssemblyVersion("2.2.0")]
29+
[assembly: AssemblyFileVersion("2.2.0")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")]
3232
#endif

tools/Az/Az.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.5.2'; },
6363
@{ModuleName = 'Az.Billing'; RequiredVersion = '1.0.0'; },
6464
@{ModuleName = 'Az.Cdn'; RequiredVersion = '1.3.0'; },
6565
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.1.1'; },
66-
@{ModuleName = 'Az.Compute'; RequiredVersion = '2.1.0'; },
66+
@{ModuleName = 'Az.Compute'; RequiredVersion = '2.2.0'; },
6767
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '1.0.1'; },
6868
@{ModuleName = 'Az.ContainerRegistry'; RequiredVersion = '1.0.1'; },
6969
@{ModuleName = 'Az.DataFactory'; RequiredVersion = '1.1.1'; },

0 commit comments

Comments
 (0)