Update with ShouldProcess
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function New-ZertoVpgSettingsIdentifier {
|
function New-ZertoVpgSettingsIdentifier {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[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.",
|
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 {
|
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 {
|
end {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function Start-ZertoCloneVpg {
|
function Start-ZertoCloneVpg {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Name of the VPG you wish to clone.",
|
HelpMessage = "Name of the VPG you wish to clone.",
|
||||||
@@ -53,7 +53,9 @@ function Start-ZertoCloneVpg {
|
|||||||
$body['VmIdentifiers'] = $vmIdentifiers
|
$body['VmIdentifiers'] = $vmIdentifiers
|
||||||
}
|
}
|
||||||
Write-Verbose $body
|
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 {
|
end {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function Start-ZertoFailoverTest {
|
function Start-ZertoFailoverTest {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Name of VPG to failover test",
|
HelpMessage = "Name of VPG to failover test",
|
||||||
@@ -42,7 +42,11 @@ function Start-ZertoFailoverTest {
|
|||||||
}
|
}
|
||||||
$body['VmIdentifiers'] = $vmIdentifiers
|
$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 {
|
end {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function Stop-ZertoCloneVpg {
|
function Stop-ZertoCloneVpg {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Name of the VPG to stop cloning",
|
HelpMessage = "Name of the VPG to stop cloning",
|
||||||
@@ -16,7 +16,10 @@ function Stop-ZertoCloneVpg {
|
|||||||
|
|
||||||
process {
|
process {
|
||||||
$uri = "{0}/{1}/CloneAbort" -f $baseUri, $vpgIdentifier
|
$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 {
|
end {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
|
||||||
function Stop-ZertoFailoverTest {
|
function Stop-ZertoFailoverTest {
|
||||||
[cmdletbinding()]
|
[cmdletbinding( SupportsShouldProcess = $true )]
|
||||||
param(
|
param(
|
||||||
[Parameter(
|
[Parameter(
|
||||||
HelpMessage = "Name(s) of VPG(s) to stop testing.",
|
HelpMessage = "Name(s) of VPG(s) to stop testing.",
|
||||||
@@ -26,7 +26,10 @@ function Stop-ZertoFailoverTest {
|
|||||||
foreach ($name in $vpgName) {
|
foreach ($name in $vpgName) {
|
||||||
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
$vpgId = $(Get-ZertoVpg -name $name).vpgIdentifier
|
||||||
$uri = "{0}/{1}/FailoverTestStop" -f $baseUri, $vpgId
|
$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