59a0a53812
* Establish a help system * Continue to update Help System * Update Get-ZertoAlert.md * Update Get-ZertoDatastore.md * Add Link to Zerto API for Datastores * Update Get-ZertoLicense.md * Update Links to Zerto API documentation * Update the Readme Information * Continue to update README * Update README * Update README.md * Update Help Markdown Files * Correct API URL * Update ZertoApiWrapper-help.xml * Update Get-ZertoProtectedVm.md * Update Help Markdown files * Update Get-ZertoVpgSetting.md * Added online url to each help object. * Update Help Markdown Files * Update ZertoApiWrapper-help.xml
40 lines
1.2 KiB
PowerShell
40 lines
1.2 KiB
PowerShell
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
|
function Invoke-ZertoMoveCommit {
|
|
[cmdletbinding()]
|
|
param(
|
|
[Parameter(
|
|
HelpMessage = "Name(s) of the VPG(s) to commit.",
|
|
Mandatory = $true
|
|
)]
|
|
[string[]]$vpgName,
|
|
[Parameter(
|
|
HelpMessage = "Set this to True to reverse protect the VPG(s) to the source site. If not set, will use selection made during move initiation. True or False"
|
|
)]
|
|
[bool]$reverseProtect,
|
|
[Parameter(
|
|
HelpMessage = "Use this switch to keep the source VMs. If not set, they will be destroyed."
|
|
)]
|
|
[switch]$keepSourceVms
|
|
)
|
|
|
|
begin {
|
|
$baseUri = "vpgs"
|
|
if ($reverseProtect) {
|
|
$body = @{"ReverseProtection" = $reverseProtect; "KeepSourceVms" = $keepSourceVms}
|
|
} else {
|
|
$body = @{"KeepSourceVms" = $keepSourceVms}
|
|
}
|
|
}
|
|
|
|
process {
|
|
foreach ($name in $vpgName) {
|
|
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
|
$uri = "{0}/{1}/MoveCommit" -f $baseUri, $vpgId
|
|
Invoke-ZertoRestRequest -uri $uri -body $($body | convertto-json) -method "POST"
|
|
}
|
|
}
|
|
|
|
end {
|
|
# Nothing to do
|
|
}
|
|
} |