File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 19
19
- Additional information about change #1
20
20
-->
21
21
## Upcoming Release
22
+ * Added 'Delete' to the argument completer of EvictionPolicy parameter for New-AzVM and New-AzVMConfig cmdlets.
22
23
* Fixed name of new VM Extension for SAP
23
24
24
25
## Version 4.1.0
Original file line number Diff line number Diff line change @@ -97,8 +97,8 @@ public class NewAzureVMConfigCommand : Microsoft.Azure.Commands.ResourceManager.
97
97
98
98
[ Parameter (
99
99
ValueFromPipelineByPropertyName = true ,
100
- HelpMessage = "The eviction policy for the low priority virtual machine. Only supported value is 'Deallocate'. " ) ]
101
- [ PSArgumentCompleter ( "Deallocate" ) ]
100
+ HelpMessage = "The eviction policy for the Azure Spot virtual machine. Supported values are 'Deallocate' and 'Delete' " ) ]
101
+ [ PSArgumentCompleter ( "Deallocate" , "Delete" ) ]
102
102
public string EvictionPolicy { get ; set ; }
103
103
104
104
[ Parameter (
Original file line number Diff line number Diff line change @@ -242,10 +242,10 @@ public class NewAzureVMCommand : VirtualMachineBaseCmdlet
242
242
public string Priority { get ; set ; }
243
243
244
244
[ Parameter ( ParameterSetName = SimpleParameterSet , Mandatory = false ,
245
- HelpMessage = "The eviction policy for the low priority virtual machine. Only supported value is 'Deallocate'." ) ]
245
+ HelpMessage = "The eviction policy for the Azure Spot virtual machine. Supported values are 'Deallocate' and 'Delete '." ) ]
246
246
[ Parameter ( ParameterSetName = DiskFileParameterSet , Mandatory = false ,
247
- HelpMessage = "The eviction policy for the low priority virtual machine. Only supported value is 'Deallocate'." ) ]
248
- [ PSArgumentCompleter ( "Deallocate" ) ]
247
+ HelpMessage = "The eviction policy for the Azure Spot virtual machine. Supported values are 'Deallocate' and 'Delete '." ) ]
248
+ [ PSArgumentCompleter ( "Deallocate" , "Delete" ) ]
249
249
public string EvictionPolicy { get ; set ; }
250
250
251
251
[ Parameter ( ParameterSetName = SimpleParameterSet , Mandatory = false ,
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ Accept wildcard characters: False
335
335
` ` `
336
336
337
337
# ## -EvictionPolicy
338
- The eviction policy for the low priority virtual machine. Only supported value is 'Deallocate'.
338
+ The eviction policy for the Azure Spot virtual machine. Supported values are 'Deallocate' and 'Delete '.
339
339
340
340
` ` ` yaml
341
341
Type: System.String
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ Accept wildcard characters: False
104
104
` ` `
105
105
106
106
### -EvictionPolicy
107
- The eviction policy for the low priority virtual machine. Only supported value is 'Deallocate'.
107
+ The eviction policy for the Azure Spot virtual machine. Supported values are 'Deallocate' and 'Delete '.
108
108
109
109
` ` ` yaml
110
110
Type : System.String
You can’t perform that action at this time.
0 commit comments