diff --git a/ZertoApiWrapper/Public/New-ZertoVpg.ps1 b/ZertoApiWrapper/Public/New-ZertoVpg.ps1
index 1ea7fe8..7b34854 100644
--- a/ZertoApiWrapper/Public/New-ZertoVpg.ps1
+++ b/ZertoApiWrapper/Public/New-ZertoVpg.ps1
@@ -136,12 +136,12 @@ function New-ZertoVpg {
HelpMessage = "Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited",
Mandatory = $false
)]
- [int]$journalHardLimitInMb = 153600,
+ [uint64]$journalHardLimitInMb = 153600,
[Parameter(
HelpMessage = "Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit.",
Mandatory = $false
)]
- [int]$journalWarningThresholdInMb = 0
+ [uint64]$journalWarningThresholdInMb = 0
)
begin {
@@ -299,4 +299,4 @@ function New-ZertoVpg {
# Return vpgSettings Identifier as a string to pass into Save function.
return $vpgSettingsIdentifier.toString()
}
-}
\ No newline at end of file
+}
diff --git a/ZertoApiWrapper/Public/Remove-ZertoVpg.ps1 b/ZertoApiWrapper/Public/Remove-ZertoVpg.ps1
index 3645ec7..38ec249 100644
--- a/ZertoApiWrapper/Public/Remove-ZertoVpg.ps1
+++ b/ZertoApiWrapper/Public/Remove-ZertoVpg.ps1
@@ -1,37 +1,72 @@
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
function Remove-ZertoVpg {
- [cmdletbinding( SupportsShouldProcess = $true )]
+ [cmdletbinding( SupportsShouldProcess = $true, DefaultParameterSetName = "vpgIdentifier" )]
param(
[Parameter(
Mandatory = $true,
- HelpMessage = "Name of the VPG to delete."
+ ParameterSetName = "vpgName",
+ ValueFromPipeline = $true,
+ ValueFromPipelineByPropertyName = $true,
+ HelpMessage = "Name(s) of the VPG(s) to delete."
)]
- [string]$vpgName,
+ [string[]]$vpgName,
+ [Parameter(
+ Mandatory = $true,
+ ParameterSetName = "vpgIdentifier",
+ ValueFromPipeline = $true,
+ ValueFromPipelineByPropertyName = $true,
+ HelpMessage = "vpgIdentifier(s) of the VPG(s) to delete."
+ )]
+ [string[]]$vpgidentifier,
[Parameter(
HelpMessage = "Use this parameter to keep the recovery volumes at the target site, by setting it to True. If the virtual machines in the deleted VPG are reprotected, these volumes can be used as preseeded volumes to speed up the initial synchronization of the new VPG. Default is to remove Recovery Volumes"
)]
- [bool]$keepRecoveryVolumes = $false,
+ [switch]$keepRecoveryVolumes = $false,
[Parameter(
HelpMessage = "Use this parameter to force delete the VPG, by setting this parameter equal to true."
)]
- [bool]$force = $false
+ [switch]$force = $false
)
begin {
$baseUri = "vpgs"
- $vpgIdentifier = $(get-zertovpg -name $vpgName).vpgIdentifier
+ $body = @{}
+ if ($keepRecoveryVolumes) {
+ $body['KeepRecoveryVolumes'] = $True
+ } else {
+ $body['KeepRecoveryVolumes'] = $False
+ }
+ if ($force) {
+ $body['force'] = $True
+ } else {
+ $body['force'] = $False
+ }
}
process {
- $vpgIdentifier = $(get-zertovpg -name $vpgName).vpgIdentifier
- if ( $vpgIdentifier ) {
- $uri = "{0}/{1}" -f $baseUri, $vpgIdentifier
- $body = @{"Force" = $force; "KeepRecoveryVolumes" = $keepRecoveryVolumes}
- if ($PSCmdlet.ShouldProcess( $vpgName + " and these settings: " + $($body | ConvertTo-Json) ) ) {
- Invoke-ZertoRestRequest -uri $uri -body $($body | ConvertTo-Json) -Method "DELETE"
+ switch ($PSCmdlet.ParameterSetName) {
+ "vpgName" {
+ foreach ($name in $vpgName) {
+ $id = $(get-zertovpg -name $name).vpgIdentifier
+ if ($id) {
+ $uri = "{0}/{1}" -f $baseUri, $id
+ if ($PSCmdlet.ShouldProcess( $name + " and these settings: " + $($body | ConvertTo-Json) ) ) {
+ Invoke-ZertoRestRequest -uri $uri -body $($body | ConvertTo-Json) -Method "DELETE"
+ }
+ } else {
+ Write-Output "VPG with name $vpgName not found. Please check the name and try again"
+ }
+ }
+ }
+
+ "vpgIdentifier" {
+ foreach ($id in $vpgIdentifier) {
+ $uri = "{0}/{1}" -f $baseUri, $id
+ if ($PSCmdlet.ShouldProcess( $id + " and these settings: " + $($body | ConvertTo-Json) ) ) {
+ Invoke-ZertoRestRequest -uri $uri -body $($body | ConvertTo-Json) -Method "DELETE"
+ }
+ }
}
- } else {
- Write-Output "VPG with name $vpgName not found. Please check the name and try again"
}
}
diff --git a/ZertoApiWrapper/Public/en-us/ZertoApiWrapper-help.xml b/ZertoApiWrapper/Public/en-us/ZertoApiWrapper-help.xml
index 64a1bf9..1ae92cc 100644
--- a/ZertoApiWrapper/Public/en-us/ZertoApiWrapper-help.xml
+++ b/ZertoApiWrapper/Public/en-us/ZertoApiWrapper-help.xml
@@ -5015,7 +5015,7 @@
System.Object
-
+ JSON data returned from the API as a PowerShell object containing settings for the selected VPG(s).
@@ -5033,7 +5033,7 @@
- -------------------------- Example 1 --------------------------
+ -------------------------- Example 2 --------------------------
PS C:\> Get-ZertoVpg -name "MyVpg"
Returns information about VPG with the name "MyVpg"
@@ -7911,9 +7911,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -7935,9 +7935,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -8143,9 +8143,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -8167,9 +8167,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -8375,9 +8375,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -8399,9 +8399,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -8607,9 +8607,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -8631,9 +8631,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -8839,9 +8839,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -8863,9 +8863,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -9071,9 +9071,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -9095,9 +9095,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -9315,9 +9315,9 @@
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
- Int32
+ UInt64
- Int32
+ UInt64
153600
@@ -9339,9 +9339,9 @@
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
- Int32
+ UInt64
- Int32
+ UInt64
None
@@ -9664,26 +9664,13 @@
Remove-ZertoVpg
-
- vpgName
-
- Name of the VPG to delete.
-
- String
-
- String
-
-
- None
-
force
- Use this parameter to force delete the VPG, by setting this parameter equal to true.
+ Use this switch to force delete the VPG. If unused, a non-forced remove vpg operation will be executed.
- Boolean
- Boolean
+ SwitchParameter
False
@@ -9691,11 +9678,81 @@
keepRecoveryVolumes
- Use this parameter to keep the recovery volumes at the target site, by setting it to True. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. Default is to remove Recovery Volumes
+ Use this switch to keep the recovery volumes at the target site. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. If this switch is not set, recovery volumes will not be retained. If required to be retained, get the path to these volumes prior to the deletion to use as pre-seed volumes for an easier operation.
- Boolean
- Boolean
+ SwitchParameter
+
+
+ False
+
+
+ vpgidentifier
+
+ vpgIdentifier(s) of the VPG(s) to delete.
+
+ String[]
+
+ String[]
+
+
+ None
+
+
+ Confirm
+
+ Prompts you for confirmation before running the cmdlet.
+
+
+ SwitchParameter
+
+
+ False
+
+
+ WhatIf
+
+ Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+
+ SwitchParameter
+
+
+ False
+
+
+
+ Remove-ZertoVpg
+
+ vpgName
+
+ Name(s) of the VPG(s) to delete.
+
+ String[]
+
+ String[]
+
+
+ None
+
+
+ force
+
+ Use this switch to force delete the VPG. If unused, a non-forced remove vpg operation will be executed.
+
+
+ SwitchParameter
+
+
+ False
+
+
+ keepRecoveryVolumes
+
+ Use this switch to keep the recovery volumes at the target site. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. If this switch is not set, recovery volumes will not be retained. If required to be retained, get the path to these volumes prior to the deletion to use as pre-seed volumes for an easier operation.
+
+
+ SwitchParameter
False
@@ -9728,11 +9785,11 @@
force
- Use this parameter to force delete the VPG, by setting this parameter equal to true.
+ Use this switch to force delete the VPG. If unused, a non-forced remove vpg operation will be executed.
- Boolean
+ SwitchParameter
- Boolean
+ SwitchParameter
False
@@ -9740,23 +9797,35 @@
keepRecoveryVolumes
- Use this parameter to keep the recovery volumes at the target site, by setting it to True. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. Default is to remove Recovery Volumes
+ Use this switch to keep the recovery volumes at the target site. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. If this switch is not set, recovery volumes will not be retained. If required to be retained, get the path to these volumes prior to the deletion to use as pre-seed volumes for an easier operation.
- Boolean
+ SwitchParameter
- Boolean
+ SwitchParameter
False
-
+
+ vpgidentifier
+
+ vpgIdentifier(s) of the VPG(s) to delete.
+
+ String[]
+
+ String[]
+
+
+ None
+
+
vpgName
- Name of the VPG to delete.
+ Name(s) of the VPG(s) to delete.
- String
+ String[]
- String
+ String[]
None
@@ -9802,7 +9871,7 @@
System.Object
-
+ Task Identifier of the Remove operation
@@ -9821,9 +9890,23 @@
-------------------------- Example 2 --------------------------
- PS C:\> Remove-ZertoVpg -vpgName "MyVpg" -keepRecoveryVolumes
+ PS C:\> Remove-ZertoVpg -vpgName "MyVpg", "MyOtherVpg" -keepRecoveryVolumes
- Deletes Zerto Virtual Protection Group named "MyVpg". Recovery volumes at the recovery site will be retained.
+ Deletes Zerto Virtual Protection Groups named "MyVpg" and "MyOtherVpg." Recovery volumes at the recovery site will be retained for both VPGs.
+
+
+
+ -------------------------- Example 3 --------------------------
+ PS C:\> Remove-ZertoVpg -vpgIdentifier "MyVpgIdentifier" -keepRecoveryVolumes
+
+ Deletes Zerto Virtual Protection Group with vpgIdentifier "MyVpgIdentifier". Recovery volumes at the recovery site will be retained.
+
+
+
+ -------------------------- Example 4 --------------------------
+ PS C:\> Get-ZertoVpg -recoverySiteIdentifier "MyRecoverySiteIdentifier" | Remove-ZertoVpg
+
+ Uses the `Get-ZertoVpg` function to get all VPGs currently being protected to recovery site with identifier "MyRecoverySiteIdentifier." This information is piped into the `Remove-ZertoVpg` function and will remove all VPGs being protected to the specified recovery site.
diff --git a/docs/Add-ZertoPeerSite.md b/docs/Add-ZertoPeerSite.md
index 7439f8d..4d98d40 100644
--- a/docs/Add-ZertoPeerSite.md
+++ b/docs/Add-ZertoPeerSite.md
@@ -93,8 +93,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -105,4 +104,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Peer Site End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/index.html#page/RestfulAPIs%2FStatusAPIs.5.044.html%23)
diff --git a/docs/Checkpoint-ZertoVpg.md b/docs/Checkpoint-ZertoVpg.md
index ae74fba..1b95cf0 100644
--- a/docs/Checkpoint-ZertoVpg.md
+++ b/docs/Checkpoint-ZertoVpg.md
@@ -61,8 +61,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -73,4 +72,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Connect-ZertoServer.md b/docs/Connect-ZertoServer.md
index af6b498..3cd7c14 100644
--- a/docs/Connect-ZertoServer.md
+++ b/docs/Connect-ZertoServer.md
@@ -93,8 +93,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -105,6 +104,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Session End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/index.html#page/RestfulAPIs%2FStatusAPIs.5.068.html%23)
[PSCredential Documentation](https://docs.microsoft.com/en-us/dotnet/api/system.management.automation.pscredential?view=pscore-6.0.0)
[Get-Credential Documentation](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-credential?view=powershell-6)
diff --git a/docs/Disconnect-ZertoServer.md b/docs/Disconnect-ZertoServer.md
index 090b04f..4d56d90 100644
--- a/docs/Disconnect-ZertoServer.md
+++ b/docs/Disconnect-ZertoServer.md
@@ -13,7 +13,7 @@ Disconnects the current session from the ZVM
## SYNTAX
```
-Disconnect-ZertoServer
+Disconnect-ZertoServer []
```
## DESCRIPTION
@@ -30,6 +30,9 @@ Disconnects from the Zerto Server
## PARAMETERS
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
## INPUTS
### None
@@ -39,4 +42,5 @@ Disconnects from the Zerto Server
## NOTES
## RELATED LINKS
+
[Zerto REST API Session End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/index.html#page/RestfulAPIs%2FStatusAPIs.5.068.html%23)
diff --git a/docs/Edit-ZertoVra.md b/docs/Edit-ZertoVra.md
index ab0db64..bf40004 100644
--- a/docs/Edit-ZertoVra.md
+++ b/docs/Edit-ZertoVra.md
@@ -166,8 +166,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -178,4 +177,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VRA End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.117.html#)
diff --git a/docs/Get-ZertoAlert.md b/docs/Get-ZertoAlert.md
index d404372..905ba14 100644
--- a/docs/Get-ZertoAlert.md
+++ b/docs/Get-ZertoAlert.md
@@ -295,8 +295,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -307,4 +306,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Alerts End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/index.html#page/RestfulAPIs%2FStatusAPIs.5.009.html%23)
diff --git a/docs/Get-ZertoDatastore.md b/docs/Get-ZertoDatastore.md
index 8133c1b..9c81382 100644
--- a/docs/Get-ZertoDatastore.md
+++ b/docs/Get-ZertoDatastore.md
@@ -59,8 +59,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -71,4 +70,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Datastore Information End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.016.html#)
diff --git a/docs/Get-ZertoEvent.md b/docs/Get-ZertoEvent.md
index f7484d8..f512d16 100644
--- a/docs/Get-ZertoEvent.md
+++ b/docs/Get-ZertoEvent.md
@@ -344,8 +344,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -356,4 +355,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Events End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.022.html#)
diff --git a/docs/Get-ZertoLicense.md b/docs/Get-ZertoLicense.md
index b3fc7bf..477b8f1 100644
--- a/docs/Get-ZertoLicense.md
+++ b/docs/Get-ZertoLicense.md
@@ -13,7 +13,7 @@ Retrieve information about a Zerto Virtual Replication license.
## SYNTAX
```
-Get-ZertoLicense
+Get-ZertoLicense []
```
## DESCRIPTION
@@ -30,6 +30,9 @@ Retrieve information about a Zerto Virtual Replication license.
## PARAMETERS
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
## INPUTS
### None
@@ -39,4 +42,5 @@ Retrieve information about a Zerto Virtual Replication license.
## NOTES
## RELATED LINKS
+
[Zerto REST API License Information](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.034.html#)
diff --git a/docs/Get-ZertoLocalSite.md b/docs/Get-ZertoLocalSite.md
index 9633982..6b0c6fa 100644
--- a/docs/Get-ZertoLocalSite.md
+++ b/docs/Get-ZertoLocalSite.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Local Site End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.038.html#)
diff --git a/docs/Get-ZertoPeerSite.md b/docs/Get-ZertoPeerSite.md
index a4cec56..1e127de 100644
--- a/docs/Get-ZertoPeerSite.md
+++ b/docs/Get-ZertoPeerSite.md
@@ -162,8 +162,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -174,4 +173,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Peer Site End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.038.html#)
diff --git a/docs/Get-ZertoProtectedVm.md b/docs/Get-ZertoProtectedVm.md
index a456c24..db23650 100644
--- a/docs/Get-ZertoProtectedVm.md
+++ b/docs/Get-ZertoProtectedVm.md
@@ -238,8 +238,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -250,4 +249,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Protected VMs End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.088.html#)
diff --git a/docs/Get-ZertoRecoveryReport.md b/docs/Get-ZertoRecoveryReport.md
index 6e70cae..a8c2e32 100644
--- a/docs/Get-ZertoRecoveryReport.md
+++ b/docs/Get-ZertoRecoveryReport.md
@@ -175,8 +175,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -187,4 +186,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Recovery Report End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.055.html#)
diff --git a/docs/Get-ZertoResourcesReport.md b/docs/Get-ZertoResourcesReport.md
index ae739b1..8e16b77 100644
--- a/docs/Get-ZertoResourcesReport.md
+++ b/docs/Get-ZertoResourcesReport.md
@@ -10,7 +10,6 @@ schema: 2.0.0
## SYNOPSIS
The resources report API generates information about the resources that are used by the virtual machines that are recovered to the site where the report is run. If no virtual machines are recovered to the site where the report is run, the report is empty.
-
## SYNTAX
### main (Default)
@@ -305,8 +304,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -317,4 +315,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Resources Report End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.058.html#)
diff --git a/docs/Get-ZertoServiceProfile.md b/docs/Get-ZertoServiceProfile.md
index 9404a6c..4b19813 100644
--- a/docs/Get-ZertoServiceProfile.md
+++ b/docs/Get-ZertoServiceProfile.md
@@ -72,8 +72,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -84,4 +83,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Service Profile End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.062.html#)
diff --git a/docs/Get-ZertoTask.md b/docs/Get-ZertoTask.md
index 0fb03f8..6229464 100644
--- a/docs/Get-ZertoTask.md
+++ b/docs/Get-ZertoTask.md
@@ -186,8 +186,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -198,4 +197,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Task End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.076.html#)
diff --git a/docs/Get-ZertoUnprotectedVm.md b/docs/Get-ZertoUnprotectedVm.md
index 40a19c1..b1d43bd 100644
--- a/docs/Get-ZertoUnprotectedVm.md
+++ b/docs/Get-ZertoUnprotectedVm.md
@@ -13,7 +13,7 @@ Returns all virtual machines at the site not currently protected in a virtual pr
## SYNTAX
```
-Get-ZertoUnprotectedVm
+Get-ZertoUnprotectedVm []
```
## DESCRIPTION
@@ -30,6 +30,9 @@ Returns all virtual machines at the site not currently protected in a virtual pr
## PARAMETERS
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
## INPUTS
### None
@@ -39,4 +42,5 @@ Returns all virtual machines at the site not currently protected in a virtual pr
## NOTES
## RELATED LINKS
+
[Zerto REST API Virtualization Sites End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.082.html#)
diff --git a/docs/Get-ZertoVirtualizationSite.md b/docs/Get-ZertoVirtualizationSite.md
index a77157c..59d46a0 100644
--- a/docs/Get-ZertoVirtualizationSite.md
+++ b/docs/Get-ZertoVirtualizationSite.md
@@ -248,8 +248,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -260,4 +259,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Virtualization Sites End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.082.html#)
diff --git a/docs/Get-ZertoVolume.md b/docs/Get-ZertoVolume.md
index 2b7589c..91f3d52 100644
--- a/docs/Get-ZertoVolume.md
+++ b/docs/Get-ZertoVolume.md
@@ -128,8 +128,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -140,4 +139,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Volumes End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.094.html#)
diff --git a/docs/Get-ZertoVpg.md b/docs/Get-ZertoVpg.md
index 01b3aa4..299b221 100644
--- a/docs/Get-ZertoVpg.md
+++ b/docs/Get-ZertoVpg.md
@@ -8,68 +8,80 @@ schema: 2.0.0
# Get-ZertoVpg
## SYNOPSIS
+
Returns information about VPGs
## SYNTAX
### main (Default)
-```
+
+```PowerShell
Get-ZertoVpg []
```
### stats
-```
+
+```PowerShell
Get-ZertoVpg -protectionGroupIdentifier [-checkpointsStats] []
```
### checkpoints
-```
-Get-ZertoVpg -protectionGroupIdentifier [-checkpoints] [-startDate ] [-endDate ]
- []
+
+```PowerShell
+Get-ZertoVpg -protectionGroupIdentifier [-checkpoints] [-startDate ] [-endDate ] []
```
### protectionGroupIdentifier
-```
+
+```PowerShell
Get-ZertoVpg -protectionGroupIdentifier []
```
### entityTypes
-```
+
+```PowerShell
Get-ZertoVpg [-entityTypes] []
```
### failoverCommitPolicies
-```
+
+```PowerShell
Get-ZertoVpg [-failoverCommitPolicies] []
```
### failoverShutdownPolicies
-```
+
+```PowerShell
Get-ZertoVpg [-failoverShutdownPolicies] []
```
### priorities
-```
+
+```PowerShell
Get-ZertoVpg [-priorities] []
```
### retentionPolicies
-```
+
+```PowerShell
Get-ZertoVpg [-retentionPolicies] []
```
### statuses
-```
+
+```PowerShell
Get-ZertoVpg [-statuses] []
```
### subStatuses
-```
+
+```PowerShell
Get-ZertoVpg [-subStatuses] []
```
### filter
-```
+
+```PowerShell
Get-ZertoVpg [-name ] [-status ] [-subStatus ] [-protectedSiteType ]
[-recoverySiteType ] [-protectedSiteIdentifier ] [-recoverySiteIdentifier ]
[-organizationName ] [-zorgIdentifier ] [-priority ]
@@ -77,18 +89,21 @@ Get-ZertoVpg [-name ] [-status ] [-subStatus ] [-protect
```
## DESCRIPTION
+
returns information about VPGs
## EXAMPLES
### Example 1
+
```powershell
PS C:\> Get-ZertoVpg
```
Returns information about all VPGs in the site processing the request
-### Example 1
+### Example 2
+
```powershell
PS C:\> Get-ZertoVpg -name "MyVpg"
```
@@ -98,6 +113,7 @@ Returns information about VPG with the name "MyVpg"
## PARAMETERS
### -backupEnabled
+
If backup is enabled.
```yaml
@@ -113,6 +129,7 @@ Accept wildcard characters: False
```
### -checkpoints
+
Return checkpoints for the selected Virtual Protection Group.
```yaml
@@ -128,6 +145,7 @@ Accept wildcard characters: False
```
### -checkpointsStats
+
Return earliest and latest checkpoints for the selected Virtual Protection Group
```yaml
@@ -143,6 +161,7 @@ Accept wildcard characters: False
```
### -endDate
+
Return checkpoints before the specified start date.
Valid formats include: 'yyyy-MM-ddTHH:mm:ss.fffZ', 'yyyy-MM-ddTHH:mm:ssZ', 'yyyy-MM-ddTHH:mmZ', 'yyyy-MM-ddTHHZ', 'yyyy-MM-dd', 'yyyy-MM', 'yyyy'.
Adding Z to the end of the time sets the time to UTC.
@@ -160,6 +179,7 @@ Accept wildcard characters: False
```
### -entityTypes
+
Return Valid VPG entityTypes
```yaml
@@ -175,6 +195,7 @@ Accept wildcard characters: False
```
### -failoverCommitPolicies
+
Valid Failover Commit Policies
```yaml
@@ -190,6 +211,7 @@ Accept wildcard characters: False
```
### -failoverShutdownPolicies
+
Valid Failover Shutdown Policies
```yaml
@@ -205,6 +227,7 @@ Accept wildcard characters: False
```
### -name
+
The name of the VPG.
```yaml
@@ -220,6 +243,7 @@ Accept wildcard characters: False
```
### -organizationName
+
The ZORG for this VPG.
```yaml
@@ -235,6 +259,7 @@ Accept wildcard characters: False
```
### -priorities
+
Valid VPG priorities
```yaml
@@ -250,6 +275,7 @@ Accept wildcard characters: False
```
### -priority
+
The VPG priority.
Possible values are: '0' or 'Low', '1' or 'Medium', '2' or 'High'
@@ -266,6 +292,7 @@ Accept wildcard characters: False
```
### -protectedSiteIdentifier
+
The identifier of the protected site where the VPG virtual machines are protected.
```yaml
@@ -281,6 +308,7 @@ Accept wildcard characters: False
```
### -protectedSiteType
+
The protected site environment.
This filter behaves in the same way as the sourceType filter.
Please see Zerto API Documentation for vaild values and discriptions.
@@ -298,6 +326,7 @@ Accept wildcard characters: False
```
### -protectionGroupIdentifier
+
The identifier(s) of the Virtual Protection Group to return
```yaml
@@ -313,6 +342,7 @@ Accept wildcard characters: False
```
### -recoverySiteIdentifier
+
The identifier of the protected site where the VPG virtual machines are recovered.
```yaml
@@ -328,6 +358,7 @@ Accept wildcard characters: False
```
### -recoverySiteType
+
The recovery site environment.
This filter behaves in the same way as the sourceType filter.
Please see Zerto API Documentation for vaild values and discriptions.
@@ -345,6 +376,7 @@ Accept wildcard characters: False
```
### -retentionPolicies
+
Valid retention policies
```yaml
@@ -360,6 +392,7 @@ Accept wildcard characters: False
```
### -serviceProfileIdentifier
+
The identifier of the service profile to use for the VPG when a Zerto Cloud Manager is used.
```yaml
@@ -375,6 +408,7 @@ Accept wildcard characters: False
```
### -startDate
+
Return checkpoints after the specified start date.
Valid formats include: 'yyyy-MM-ddTHH:mm:ss.fffZ', 'yyyy-MM-ddTHH:mm:ssZ', 'yyyy-MM-ddTHH:mmZ', 'yyyy-MM-ddTHHZ', 'yyyy-MM-dd', 'yyyy-MM', 'yyyy'.
Adding Z to the end of the time sets the time to UTC.
@@ -392,6 +426,7 @@ Accept wildcard characters: False
```
### -status
+
The status of the VPG.
Please use 'Get-ZertoVpg -statuses' for valid values
@@ -408,6 +443,7 @@ Accept wildcard characters: False
```
### -statuses
+
Valid VPG statuses
```yaml
@@ -423,6 +459,7 @@ Accept wildcard characters: False
```
### -subStatus
+
The substatus of the VPG.
Please use 'Get-ZertoVpg -substatuses' for valid values
@@ -439,6 +476,7 @@ Accept wildcard characters: False
```
### -subStatuses
+
Valid VPG sub statuses
```yaml
@@ -454,6 +492,7 @@ Accept wildcard characters: False
```
### -zorgIdentifier
+
The internal identifier for the ZORG.
```yaml
@@ -469,16 +508,21 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### None
+
## OUTPUTS
### System.Object
+
+JSON data returned from the API as a PowerShell object containing settings for the selected VPG(s).
+
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Get-ZertoVpgSetting.md b/docs/Get-ZertoVpgSetting.md
index c0470ce..989e250 100644
--- a/docs/Get-ZertoVpgSetting.md
+++ b/docs/Get-ZertoVpgSetting.md
@@ -436,8 +436,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -448,4 +447,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG Settings End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.108.html#)
diff --git a/docs/Get-ZertoVra.md b/docs/Get-ZertoVra.md
index 914b930..1e3bf10 100644
--- a/docs/Get-ZertoVra.md
+++ b/docs/Get-ZertoVra.md
@@ -241,8 +241,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -253,4 +252,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VRA End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.117.html#)
diff --git a/docs/Get-ZertoZorg.md b/docs/Get-ZertoZorg.md
index 1b5ad9e..bb59509 100644
--- a/docs/Get-ZertoZorg.md
+++ b/docs/Get-ZertoZorg.md
@@ -59,8 +59,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -71,4 +70,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API ZOrg End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.126.html#)
diff --git a/docs/Get-ZertoZsspSession.md b/docs/Get-ZertoZsspSession.md
index 7cc82db..1b356b6 100644
--- a/docs/Get-ZertoZsspSession.md
+++ b/docs/Get-ZertoZsspSession.md
@@ -52,8 +52,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -64,4 +63,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API ZSSP Session End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.132.html#)
diff --git a/docs/Install-ZertoVra.md b/docs/Install-ZertoVra.md
index 7f0b6ed..c622f86 100644
--- a/docs/Install-ZertoVra.md
+++ b/docs/Install-ZertoVra.md
@@ -215,8 +215,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -227,4 +226,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VRA End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.117.html#)
diff --git a/docs/Invoke-ZertoFailover.md b/docs/Invoke-ZertoFailover.md
index b7ec49a..ac3aa84 100644
--- a/docs/Invoke-ZertoFailover.md
+++ b/docs/Invoke-ZertoFailover.md
@@ -173,8 +173,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -185,4 +184,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoFailoverCommit.md b/docs/Invoke-ZertoFailoverCommit.md
index b20bb19..afdaa91 100644
--- a/docs/Invoke-ZertoFailoverCommit.md
+++ b/docs/Invoke-ZertoFailoverCommit.md
@@ -68,8 +68,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -80,4 +79,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoFailoverRollback.md b/docs/Invoke-ZertoFailoverRollback.md
index b9ace3f..4f4f451 100644
--- a/docs/Invoke-ZertoFailoverRollback.md
+++ b/docs/Invoke-ZertoFailoverRollback.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoForceSync.md b/docs/Invoke-ZertoForceSync.md
index 60f22a1..9260de8 100644
--- a/docs/Invoke-ZertoForceSync.md
+++ b/docs/Invoke-ZertoForceSync.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoMove.md b/docs/Invoke-ZertoMove.md
index db39bfe..fb989bf 100644
--- a/docs/Invoke-ZertoMove.md
+++ b/docs/Invoke-ZertoMove.md
@@ -162,8 +162,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -174,4 +173,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoMoveCommit.md b/docs/Invoke-ZertoMoveCommit.md
index ca5131c..584ee4c 100644
--- a/docs/Invoke-ZertoMoveCommit.md
+++ b/docs/Invoke-ZertoMoveCommit.md
@@ -80,8 +80,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -92,4 +91,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Invoke-ZertoMoveRollback.md b/docs/Invoke-ZertoMoveRollback.md
index fba2e49..40b5501 100644
--- a/docs/Invoke-ZertoMoveRollback.md
+++ b/docs/Invoke-ZertoMoveRollback.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/New-ZertoVpg.md b/docs/New-ZertoVpg.md
index 46aea84..73d2536 100644
--- a/docs/New-ZertoVpg.md
+++ b/docs/New-ZertoVpg.md
@@ -18,7 +18,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryCluster -datastoreCluster -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -28,7 +28,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryCluster -datastore -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -38,7 +38,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryHost -datastoreCluster -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -48,7 +48,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryHost -datastore -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -58,7 +58,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryResourcePool -datastoreCluster -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -68,7 +68,7 @@ New-ZertoVpg -vpgName [-vpgPriority ] [-journalHistoryInHours <
-recoverySite -recoveryResourcePool -datastore -recoveryFolder
[-rpoInSeconds ] [-testIntervalInMinutes ] [-serviceProfile ]
[-useWanCompression ] [-zorg ] -recoveryNetwork -testNetwork
- [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
+ [-journalDatastore ] [-journalHardLimitInMb ] [-journalWarningThresholdInMb ]
[]
```
@@ -220,7 +220,7 @@ Accept wildcard characters: False
Default journal hard limit in megabytes. Default set to 153600 MB (150 GB). Set to 0 to set the journal to unlimited
```yaml
-Type: Int32
+Type: UInt64
Parameter Sets: (All)
Aliases:
@@ -251,7 +251,7 @@ Accept wildcard characters: False
Default journal warning threshold in megabytes. If unset or greater than the hard limit, will be set to 75% of the journal hard limit. If the journalHardLimitInMB is set to 0 (unlimited), this will be set to unlimited as well.
```yaml
-Type: Int32
+Type: UInt64
Parameter Sets: (All)
Aliases:
diff --git a/docs/Remove-ZertoVpg.md b/docs/Remove-ZertoVpg.md
index 1a3b0b4..9fba18b 100644
--- a/docs/Remove-ZertoVpg.md
+++ b/docs/Remove-ZertoVpg.md
@@ -8,21 +8,32 @@ schema: 2.0.0
# Remove-ZertoVpg
## SYNOPSIS
+
Deletes a Zerto Virtual Protection Group
## SYNTAX
-```
-Remove-ZertoVpg [-vpgName] [-keepRecoveryVolumes ] [-force ] [-WhatIf] [-Confirm]
+### vpgIdentifier (Default)
+
+```PowerShell
+Remove-ZertoVpg -vpgidentifier [-keepRecoveryVolumes] [-force] [-WhatIf] [-Confirm]
[]
```
+### vpgName
+
+```PowerShell
+Remove-ZertoVpg [-vpgName] [-keepRecoveryVolumes] [-force] [-WhatIf] [-Confirm] []
+```
+
## DESCRIPTION
+
Deletes a Zerto Virtual Protection Group.
## EXAMPLES
### Example 1
+
```powershell
PS C:\> Remove-ZertoVpg -vpgName "MyVpg"
```
@@ -30,19 +41,37 @@ PS C:\> Remove-ZertoVpg -vpgName "MyVpg"
Deletes Zerto Virtual Protection Group named "MyVpg". Recovery volumes at the recovery site will be deleted.
### Example 2
+
```powershell
-PS C:\> Remove-ZertoVpg -vpgName "MyVpg" -keepRecoveryVolumes
+PS C:\> Remove-ZertoVpg -vpgName "MyVpg", "MyOtherVpg" -keepRecoveryVolumes
```
-Deletes Zerto Virtual Protection Group named "MyVpg". Recovery volumes at the recovery site will be retained.
+Deletes Zerto Virtual Protection Groups named "MyVpg" and "MyOtherVpg." Recovery volumes at the recovery site will be retained for both VPGs.
+
+### Example 3
+
+```powershell
+PS C:\> Remove-ZertoVpg -vpgIdentifier "MyVpgIdentifier" -keepRecoveryVolumes
+```
+
+Deletes Zerto Virtual Protection Group with vpgIdentifier "MyVpgIdentifier". Recovery volumes at the recovery site will be retained.
+
+### Example 4
+
+```powershell
+PS C:\> Get-ZertoVpg -recoverySiteIdentifier "MyRecoverySiteIdentifier" | Remove-ZertoVpg
+```
+
+Uses the `Get-ZertoVpg` function to get all VPGs currently being protected to recovery site with identifier "MyRecoverySiteIdentifier." This information is piped into the `Remove-ZertoVpg` function and will remove all VPGs being protected to the specified recovery site.
## PARAMETERS
### -force
-Use this parameter to force delete the VPG, by setting this parameter equal to true.
+
+Use this switch to force delete the VPG. If unused, a non-forced remove vpg operation will be executed.
```yaml
-Type: Boolean
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -54,10 +83,11 @@ Accept wildcard characters: False
```
### -keepRecoveryVolumes
-Use this parameter to keep the recovery volumes at the target site, by setting it to True. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. Default is to remove Recovery Volumes
+
+Use this switch to keep the recovery volumes at the target site. If the virtual machines in the deleted VPG are re-protected, these volumes can be used as pre-seed volumes to speed up the initial synchronization of the new VPG. If this switch is not set, recovery volumes will not be retained. If required to be retained, get the path to these volumes prior to the deletion to use as pre-seed volumes for an easier operation.
```yaml
-Type: Boolean
+Type: SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -68,22 +98,40 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -vpgName
-Name of the VPG to delete.
+### -vpgidentifier
+
+vpgIdentifier(s) of the VPG(s) to delete.
```yaml
-Type: String
-Parameter Sets: (All)
+Type: String[]
+Parameter Sets: vpgIdentifier
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+```
+
+### -vpgName
+
+Name(s) of the VPG(s) to delete.
+
+```yaml
+Type: String[]
+Parameter Sets: vpgName
Aliases:
Required: True
Position: 0
Default value: None
-Accept pipeline input: False
+Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
```
### -Confirm
+
Prompts you for confirmation before running the cmdlet.
```yaml
@@ -99,6 +147,7 @@ Accept wildcard characters: False
```
### -WhatIf
+
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
@@ -115,14 +164,19 @@ Accept wildcard characters: False
```
### CommonParameters
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### None
+
## OUTPUTS
### System.Object
+
+Task Identifier of the Remove operation
+
## NOTES
## RELATED LINKS
diff --git a/docs/Resume-ZertoVpg.md b/docs/Resume-ZertoVpg.md
index 4e969e5..20d4bb3 100644
--- a/docs/Resume-ZertoVpg.md
+++ b/docs/Resume-ZertoVpg.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Save-ZertoVpgSettings.md b/docs/Save-ZertoVpgSettings.md
index 68d9b99..6a10f72 100644
--- a/docs/Save-ZertoVpgSettings.md
+++ b/docs/Save-ZertoVpgSettings.md
@@ -88,4 +88,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG Settings End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.108.html#)
diff --git a/docs/Set-ZertoAlert.md b/docs/Set-ZertoAlert.md
index 3b5952c..6498a31 100644
--- a/docs/Set-ZertoAlert.md
+++ b/docs/Set-ZertoAlert.md
@@ -120,8 +120,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -132,4 +131,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API Alerts End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/index.html#page/RestfulAPIs%2FStatusAPIs.5.009.html%23)
diff --git a/docs/Set-ZertoLicense.md b/docs/Set-ZertoLicense.md
index d2bf107..4a5df05 100644
--- a/docs/Set-ZertoLicense.md
+++ b/docs/Set-ZertoLicense.md
@@ -77,8 +77,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -89,4 +88,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API License Information](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.034.html#)
diff --git a/docs/Start-ZertoCloneVpg.md b/docs/Start-ZertoCloneVpg.md
index bee7567..4f1a709 100644
--- a/docs/Start-ZertoCloneVpg.md
+++ b/docs/Start-ZertoCloneVpg.md
@@ -95,8 +95,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -107,4 +106,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Start-ZertoFailoverTest.md b/docs/Start-ZertoFailoverTest.md
index 82da776..a14fafb 100644
--- a/docs/Start-ZertoFailoverTest.md
+++ b/docs/Start-ZertoFailoverTest.md
@@ -79,8 +79,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -91,4 +90,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Stop-ZertoCloneVpg.md b/docs/Stop-ZertoCloneVpg.md
index a1aba19..f4905c6 100644
--- a/docs/Stop-ZertoCloneVpg.md
+++ b/docs/Stop-ZertoCloneVpg.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Stop-ZertoFailoverTest.md b/docs/Stop-ZertoFailoverTest.md
index 9c600f4..0a499dd 100644
--- a/docs/Stop-ZertoFailoverTest.md
+++ b/docs/Stop-ZertoFailoverTest.md
@@ -79,8 +79,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -91,4 +90,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Suspend-ZertoVpg.md b/docs/Suspend-ZertoVpg.md
index e60e9d2..b3cef31 100644
--- a/docs/Suspend-ZertoVpg.md
+++ b/docs/Suspend-ZertoVpg.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VPG End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.100.html#)
diff --git a/docs/Uninstall-ZertoVra.md b/docs/Uninstall-ZertoVra.md
index 3f4ebc6..91e32ac 100644
--- a/docs/Uninstall-ZertoVra.md
+++ b/docs/Uninstall-ZertoVra.md
@@ -46,8 +46,7 @@ Accept wildcard characters: False
```
### CommonParameters
-This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
-For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
@@ -58,4 +57,5 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## NOTES
## RELATED LINKS
+
[Zerto REST API VRA End Point Documentation](http://s3.amazonaws.com/zertodownload_docs/Latest/Zerto%20Virtual%20Replication%20Zerto%20Virtual%20Manager%20%28ZVM%29%20-%20vSphere%20Online%20Help/RestfulAPIs/StatusAPIs.5.117.html#)