Update with ShouldProcess
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function New-ZertoVpgSettingsIdentifier {
|
||||
[cmdletbinding()]
|
||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||
param(
|
||||
[Parameter(
|
||||
HelpMessage = "Identifier of the VPG to create a VPG settings identifier. If a vpgIdentifier is not provided, a new VPG settings object is created without any configured settings. This would be used for creating a new VPG from scratch.",
|
||||
@@ -33,7 +33,10 @@ function New-ZertoVpgSettingsIdentifier {
|
||||
}
|
||||
|
||||
process {
|
||||
Invoke-ZertoRestRequest -uri $baseUri -body $body -Method "POST"
|
||||
if ($PSCmdlet.ShouldProcess("Creating VPG Settings Object")) {
|
||||
Invoke-ZertoRestRequest -uri $baseUri -body $body -Method "POST"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
end {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function Start-ZertoCloneVpg {
|
||||
[cmdletbinding()]
|
||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||
param(
|
||||
[Parameter(
|
||||
HelpMessage = "Name of the VPG you wish to clone.",
|
||||
@@ -53,7 +53,9 @@ function Start-ZertoCloneVpg {
|
||||
$body['VmIdentifiers'] = $vmIdentifiers
|
||||
}
|
||||
Write-Verbose $body
|
||||
Invoke-ZertoRestRequest -uri $uri -body $($body | ConvertTo-Json) -method "POST"
|
||||
if ($PSCmdlet.ShouldProcess("Clone Vpg")) {
|
||||
Invoke-ZertoRestRequest -uri $uri -body $($body | ConvertTo-Json) -method "POST"
|
||||
}
|
||||
}
|
||||
|
||||
end {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function Start-ZertoFailoverTest {
|
||||
[cmdletbinding()]
|
||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||
param(
|
||||
[Parameter(
|
||||
HelpMessage = "Name of VPG to failover test",
|
||||
@@ -42,7 +42,11 @@ function Start-ZertoFailoverTest {
|
||||
}
|
||||
$body['VmIdentifiers'] = $vmIdentifiers
|
||||
}
|
||||
Invoke-ZertoRestRequest -uri $uri -method "POST" -body $($body | ConvertTo-Json)
|
||||
if ($PSCmdlet.ShouldProcess("Starting Failover Test")) {
|
||||
Invoke-ZertoRestRequest -uri $uri -method "POST" -body $($body | ConvertTo-Json)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
end {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function Stop-ZertoCloneVpg {
|
||||
[cmdletbinding()]
|
||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||
param(
|
||||
[Parameter(
|
||||
HelpMessage = "Name of the VPG to stop cloning",
|
||||
@@ -16,7 +16,10 @@ function Stop-ZertoCloneVpg {
|
||||
|
||||
process {
|
||||
$uri = "{0}/{1}/CloneAbort" -f $baseUri, $vpgIdentifier
|
||||
invoke-ZertoRestRequest -uri $uri -method "POST"
|
||||
if ($PSCmdlet.ShouldProcess("Stopping VPG Clone Operation")) {
|
||||
invoke-ZertoRestRequest -uri $uri -method "POST"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
end {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||
function Stop-ZertoFailoverTest {
|
||||
[cmdletbinding()]
|
||||
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||
param(
|
||||
[Parameter(
|
||||
HelpMessage = "Name(s) of VPG(s) to stop testing.",
|
||||
@@ -26,7 +26,10 @@ function Stop-ZertoFailoverTest {
|
||||
foreach ($name in $vpgName) {
|
||||
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
||||
$uri = "{0}/{1}/FailoverTestStop" -f $baseUri, $vpgId
|
||||
Invoke-ZertoRestRequest -uri $uri -method "POST" -body $($body | ConvertTo-Json)
|
||||
if ($PSCmdlet.ShouldProcess("Stopping Failover Test")) {
|
||||
Invoke-ZertoRestRequest -uri $uri -method "POST" -body $($body | ConvertTo-Json)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user