VMware Cloud Community
rg01
Contributor
Contributor
Jump to solution

Suspend vApp

Am I missing something or is there no commandlet to suspend a vApp? I see the Suspend-CIVApp but I'm not working with cloud vApps.

Tags (1)
Reply
0 Kudos
1 Solution

Accepted Solutions
LucD
Leadership
Leadership
Jump to solution

No, no cmdlet for that functionality.

But you can easily use the API method.

$vApp = Get-VApp -Name MyvApp

$vApp.ExtensionData.SuspendVApp()


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

View solution in original post

Reply
0 Kudos
2 Replies
LucD
Leadership
Leadership
Jump to solution

No, no cmdlet for that functionality.

But you can easily use the API method.

$vApp = Get-VApp -Name MyvApp

$vApp.ExtensionData.SuspendVApp()


Blog: lucd.info  Twitter: @LucD22  Co-author PowerCLI Reference

Reply
0 Kudos
rg01
Contributor
Contributor
Jump to solution

Thanks!

Reply
0 Kudos