PowerCLI Reference

Set-VApp

Synopsis

This cmdlet modifies the specified vApp.

Syntax

Set-VApp [-CpuExpandableReservation <Boolean>] [-CpuLimitMhz <Int64>] [-CpuReservationMhz <Int64>] [-CpuSharesLevel <SharesLevel>] [-MemExpandableReservation <Boolean>] [-MemLimitGB <Decimal>] [-MemLimitMB <Int64>] [-MemReservationGB <Decimal>] [-MemReservationMB <Int64>] [-MemSharesLevel <SharesLevel>] [-Name <String>] [-NumCpuShares <Int32>] [-NumMemShares <Int32>] [-Server <VIServer[]>] -VApp <VApp[]> [-Confirm] [-WhatIf] [<CommonParameters>]

Related Commands

Online Version
Export-VApp
Get-VApp
Import-VApp
New-VApp
Remove-VApp
Start-VApp
Stop-VApp
Move-VApp

Detailed Description

This cmdlet modifies the specified vApp.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
ConfirmSwitchParameterIf the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation.falseFalse
CpuExpandableReservationBooleanIndicates that the CPU reservation can grow beyond the specified value if there are available resources.falseFalse
CpuLimitMhzInt64Specifies a CPU usage limit in MHz. If this parameter is set, utilization will not exceed this limit even if there are available resources.falseFalse
CpuReservationMhzInt64Specifies the guaranteed available CPU in MHz.falseFalse
CpuSharesLevelSharesLevelSpecifies the CPU allocation level for this vApp. This property is used in relative allocation between resource consumers. This parameter accepts Custom, High, Low, and Normal values.falseFalse
MemExpandableReservationBooleanIndicates that the memory reservation can grow beyond the specified value if there are available resources.falseFalse
MemLimitGBDecimalSpecifies a memory usage limit in gigabytes (GB). If this parameter is set, utilization will not exceed the specified limit even if there are available resources.falseFalse
MemLimitMBInt64This parameter is obsolete. Use MemLimitGB instead. Specifies a memory usage limit in megabytes (MB). If this parameter is set, utilization will not exceed the specified limit even if there are available resources.falseFalse
MemReservationGBDecimalSpecifies the guaranteed available memory in gigabytes (GB).falseFalse
MemReservationMBInt64This parameter is obsolete. Use MemReservationGB instead. Specifies the guaranteed available memory in megabytes (MB).falseFalse
MemSharesLevelSharesLevelSpecifies the memory allocation level for the vApp. This property is used in relative allocation between resource consumers. This cmdlet accepts Custom, High, Low, and Normal values.falseFalse
NameStringModifies the name of the vApp.falseFalse
NumCpuSharesInt32Specifies the CPU allocation level for the vApp. This property is used in relative allocation between resource consumers. This parameter is ignored unless the CpuSharesLevel parameter is set to Custom.falseFalse
NumMemSharesInt32Specifies the memory allocation level for the resource pool. This property is used in relative allocation between resource consumers. This parameter is ignored unless the MemSharesLevel parameter is set to Custom.falseFalse
ServerVIServer[]Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.falseFalse
VAppVApp[]Specifies the vApp that you want to configure.trueTrue (ByValue)
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified.falseFalse

Return Type

Zero or more modified VApp objects

Notes

Examples

-------------------------- Example 1 --------------------------

Get-VApp -Name MyTestVApp1 | Set-VApp -CpuSharesLevel Low -MemSharesLevel Normal

Modifies the CpuSharesLevel and MemSharesLevel properties of the MyTestVApp1 virtual appliance.

-------------------------- Example 2 --------------------------

$myvApp = Get-VApp -Location MyDatacenter1
Set-VApp -VApp $myvApp -CpuExpandableReservation:$true -CpuLimitMhz 4000 -MemExpandableReservation:$true -MemLimitGB 2

Modifies the properties of the vApps available on the MyDatacenter1 datacenter.


Copyright © VMware, Inc. All rights reserved.