Function Rename

This commit is contained in:
Wes Carroll
2019-06-09 15:26:14 -04:00
parent d2b559ec83
commit 108cb12439
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-ZAJournalAverageSiteSize { function Get-ZAJournalSiteAverageSize {
[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-ZAJournalAverageSiteSize.md online version: https://github.com/ZertoPublic/ZertoApiWrapper/blob/master/docs/Get-ZAJournalSiteAverageSize.md
schema: 2.0.0 schema: 2.0.0
--- ---
# Get-ZAJournalAverageSiteSize # Get-ZAJournalSiteAverageSize
## SYNOPSIS ## SYNOPSIS
@@ -14,7 +14,7 @@ Get list of samples of total Journal Size of all VPGs replicating to a specified
## SYNTAX ## SYNTAX
``` ```
Get-ZAJournalAverageSiteSize [-recoverySiteIdentifier] <String> [[-startDate] <String>] [[-endDate] <String>] Get-ZAJournalSiteAverageSize [-recoverySiteIdentifier] <String> [[-startDate] <String>] [[-endDate] <String>]
[[-interval] <Int32>] [<CommonParameters>] [[-interval] <Int32>] [<CommonParameters>]
``` ```
@@ -26,21 +26,21 @@ Get list of samples of total Journal Size of all VPGs replicating to a specified
### Example 1 ### Example 1
```powershell ```powershell
PS C:\> Get-ZAJournalAverageSiteSize -recoverySiteIdentifier "9876-5432-1098" PS C:\> Get-ZAJournalSiteAverageSize -recoverySiteIdentifier "9876-5432-1098"
``` ```
Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098" Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098"
### Example 2 ### Example 2
```powershell ```powershell
PS C:\> Get-ZAJournalAverageSiteSize -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" PS C:\> Get-ZAJournalSiteAverageSize -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08"
``` ```
Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098" between the dates specified. Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098" between the dates specified.
### Example 3 ### Example 3
```powershell ```powershell
PS C:\> Get-ZAJournalAverageSiteSize -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" -interval 7200 PS C:\> Get-ZAJournalSiteAverageSize -recoverySiteIdentifier "9876-5432-1098" -startDate "2019-06-01" -endDate "2019-06-08" -interval 7200
``` ```
Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098" between the dates specified with a 2 hour interval. Returns Journal Average Size information for the recovery site with identifier "9876-5432-1098" between the dates specified with a 2 hour interval.