Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Get-AzRecoveryServicesAsrRecoveryPoint Description #15222

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Get-AzRecoveryServicesAsrRecoveryPoint Description
Added information about the order of recovery points in the array.
  • Loading branch information
rishjai-msft authored Jun 9, 2021
commit 56abf6714993a72b5398ea5596c643b5eb5821dd
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Get-AzRecoveryServicesAsrRecoveryPoint -Name <String> -ReplicationProtectedItem
```

## DESCRIPTION
The **Get-AzRecoveryServicesAsrRecoveryPoint** cmdlet gets the list of available recovery points for a replication protected item.
The **Get-AzRecoveryServicesAsrRecoveryPoint** cmdlet gets the list of available recovery points for a replication protected item. The list is in order from latest to oldest Recovery Points, the first one being the Latest Processed (lowest RTO).

## EXAMPLES

Expand All @@ -34,7 +34,7 @@ The **Get-AzRecoveryServicesAsrRecoveryPoint** cmdlet gets the list of available
PS C:\> $RecoveryPoints = Get-AzRecoveryServicesAsrRecoveryPoint -ReplicationProtectedItem $ReplicationProtectedItem
```

Gets recovery points for the specified ASR replication protected item.
Gets recovery points for the specified ASR replication protected item. $RecoveryPoints[0] will have the Latest Processed Recovery Point (for Lowest RTO).

## PARAMETERS

Expand Down