add 1 property and 1 function for vMotionEncryption

This commit is contained in:
yangm
2016-12-20 19:41:59 -08:00
parent ce69869e8a
commit 7d49541a25

View File

@@ -69,7 +69,7 @@ New-VIProperty -Name KMSserver -ObjectType VirtualMachine -Value {
if ($VM.Encrypted) {
$VM.EncryptionKeyId.ProviderId.Id
}
} -BasedOnExtensionProperty 'Config.KeyId' -Force | Out-Null
} -BasedOnExtensionProperty 'Config.KeyId' -Force | Out-Null
New-VIProperty -Name Encrypted -ObjectType HardDisk -Value {
Param ($hardDisk)
@@ -249,7 +249,7 @@ Function Set-vMotionEncryptionConfig {
.PARAMETER Encryption
Specifies the value you want to set to the vMotionEncryption property.
The Encryption options are: Disabled, Opportunistic, and Required.
The Encryption options are: disabled, opportunistic, and required.
.EXAMPLE
PS C:\> Get-VM | Set-vMotionEncryptionConfig -Encryption opportunistic
@@ -257,8 +257,8 @@ Function Set-vMotionEncryptionConfig {
Sets the vMotionEncryption of all the VMs
.NOTES
Author : Carrie Yang
Author email : yangm@vmware.com
Author : Brian Graf, Carrie Yang.
Author email : grafb@vmware.com, yangm@vmware.com
Version : 1.0
==========Tested Against Environment==========
@@ -274,23 +274,26 @@ Function Set-vMotionEncryptionConfig {
[Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelinebyPropertyName=$True)]
[VMware.VimAutomation.ViCore.Types.V1.Inventory.VirtualMachine]$VM,
[Parameter(Mandatory=$True]
[ValidateSet("disabled", "opportunistic", "required")]
[String]$Encryption
)
process{
# Confirm the connected VIServer is vCenter Server
ConfirmIsVCenter
if ($VM.vMotionEncryption -eq $Encryption) {
Write-Warning "The encrypted vMotion state is already $Encrypted, no need to change it."
return
}
if ($VM.Encrypted -and $VM.vMotionEncryption -ne $Encryption) {
if ($VM.Encrypted) {
Write-Error "Cannot change encrypted vMotion state for an encrypted VM."
return
}
$VMView = $VM | get-view
$config = new-object VMware.Vim.VirtualMachineConfigSpec
$config.MigrateEncryption = New-object VMware.Vim.VirtualMachineConfigSpecEncryptedVMotionModes
$config.MigrateEncryption = "$encryption"
$Config = New-Object VMware.Vim.VirtualMachineConfigSpec
$Config.MigrateEncryption = New-Object VMware.Vim.VirtualMachineConfigSpecEncryptedVMotionModes
$Config.MigrateEncryption = $Encryption
$VMView.ReconfigVM($config)