VMware {code} Community
Bramha
Contributor
Contributor
Jump to solution

API to turn on Fault Tolerance

For my BR application I need to Turn Off FT to be able to take a VM Snapshot . I found API TurnOffFaultToleranceForVM_Task to turn off FT for a VM. But I dont see any API to turn it on back again. Why isn't there an API to turn FT on ?. Is there some way I can do this ?

Thanks,

Parag

0 Kudos
1 Solution

Accepted Solutions
lamw
Community Manager
Community Manager
Jump to solution

For fault tolerance management, you'll be using the following methods:

CreateSecondaryVM_Task() (configure FT for a VM)

EnableSecondaryVM_Task() (turn ON FT for a VM)

DisableSecondaryVM_Task() (disable FT for a VM)

TurnOffFaultToleranceForVM_Task() (turn OFF FT for a VM)

You can take a look at this script I wrote to manage FT:

=========================================================================

William Lam

VMware vExpert 2009

VMware ESX/ESXi scripts and resources at:

VMware Code Central - Scripts/Sample code for Developers and Administrators

VMware Developer Comuunity

Twitter: @lamw

If you find this information useful, please award points for "correct" or "helpful".

View solution in original post

0 Kudos
2 Replies
lamw
Community Manager
Community Manager
Jump to solution

For fault tolerance management, you'll be using the following methods:

CreateSecondaryVM_Task() (configure FT for a VM)

EnableSecondaryVM_Task() (turn ON FT for a VM)

DisableSecondaryVM_Task() (disable FT for a VM)

TurnOffFaultToleranceForVM_Task() (turn OFF FT for a VM)

You can take a look at this script I wrote to manage FT:

=========================================================================

William Lam

VMware vExpert 2009

VMware ESX/ESXi scripts and resources at:

VMware Code Central - Scripts/Sample code for Developers and Administrators

VMware Developer Comuunity

Twitter: @lamw

If you find this information useful, please award points for "correct" or "helpful".

0 Kudos
Bramha
Contributor
Contributor
Jump to solution

thanks!! this is what I needed.

0 Kudos