Function Rename

This commit is contained in:
Wes Carroll
2019-06-09 15:26:28 -04:00
parent 108cb12439
commit a74bc14e30
3 changed files with 7 additions and 7 deletions
@@ -1,5 +1,5 @@
<# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #> <# .ExternalHelp ./en-us/ZertoApiWrapper-help.xml #>
function Get-ZAJournalHistorySiteStat { function Get-ZAJournalSiteHistoryStat {
[CmdletBinding()] [CmdletBinding()]
param ( param (
[Parameter( [Parameter(
@@ -1,11 +1,11 @@
--- ---
external help file: ZertoApiWrapper-help.xml external help file: ZertoApiWrapper-help.xml
Module Name: ZertoApiWrapper Module Name: ZertoApiWrapper
online version: https://github.com/ZertoPublic/ZertoApiWrapper/blob/master/docs/Get-ZAJournalHistorySiteStat.md online version: https://github.com/ZertoPublic/ZertoApiWrapper/blob/master/docs/Get-ZAJournalSiteHistoryStat.md
schema: 2.0.0 schema: 2.0.0
--- ---
# Get-ZAJournalHistorySiteStat # Get-ZAJournalSiteHistoryStat
## SYNOPSIS ## SYNOPSIS
@@ -14,7 +14,7 @@ Get Max, Avg. and Min Journal History statistics for all VPGs replicating to a s
## SYNTAX ## SYNTAX
``` ```
Get-ZAJournalHistorySiteStat [-recoverySiteIdentifier] <String> [[-startDate] <String>] [[-endDate] <String>] Get-ZAJournalSiteHistoryStat [-recoverySiteIdentifier] <String> [[-startDate] <String>] [[-endDate] <String>]
[[-interval] <Int32>] [<CommonParameters>] [[-interval] <Int32>] [<CommonParameters>]
``` ```
@@ -26,21 +26,21 @@ Get Max, Avg. and Min Journal History statistics for all VPGs replicating to a s
### Example 1 ### Example 1
```powershell ```powershell
PS C:\> Get-ZAJournalHistorySiteStat -recoverySiteIdentifier "9876-5432-1098" PS C:\> Get-ZAJournalSiteHistoryStat -recoverySiteIdentifier "9876-5432-1098"
``` ```
Returns Journal Average History information for the recovery site with identifier "9876-5432-1098" Returns Journal Average History information for the recovery site with identifier "9876-5432-1098"
### Example 2 ### Example 2
```powershell ```powershell
PS C:\> Get-ZAJournalHistorySiteStat -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" PS C:\> Get-ZAJournalSiteHistoryStat -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08"
``` ```
Returns Journal Average History information for the recovery site with identifier "9876-5432-1098" between the dates specified. Returns Journal Average History information for the recovery site with identifier "9876-5432-1098" between the dates specified.
### Example 3 ### Example 3
```powershell ```powershell
PS C:\> Get-ZAJournalHistorySiteStat -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" -interval 7200 PS C:\> Get-ZAJournalSiteHistoryStat -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" -interval 7200
``` ```
Returns Journal Average History information for the recovery site with identifier "9876-5432-1098" between the dates specified with a 2 hour interval. Returns Journal Average History information for the recovery site with identifier "9876-5432-1098" between the dates specified with a 2 hour interval.