-
Notifications
You must be signed in to change notification settings - Fork 4k
Updated help for ASRRMcmdlets #3560
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ The **Edit-AzureRmSiteRecoveryRecoveryPlan** cmdlet edits an Azure Site Recovery | |
## PARAMETERS | ||
|
||
### -RecoveryPlan | ||
Specifies a recovery plan. | ||
An instance of an ASRRecoveryPlan to edit. | ||
|
||
```yaml | ||
Type: ASRRecoveryPlan | ||
|
@@ -100,7 +100,7 @@ Accept wildcard characters: False | |
``` | ||
|
||
### -Group | ||
Specifies a Site Recovery plan group. | ||
An instance of the ASRRecoveryPlanGroup which the plan belongs to. | ||
|
||
```yaml | ||
Type: ASRRecoveryPlanGroup | ||
|
@@ -115,6 +115,8 @@ Accept wildcard characters: False | |
``` | ||
|
||
### -AddProtectedItems | ||
An instance of an ASRReplicationProtectedItem. | ||
|
||
```yaml | ||
Type: ASRReplicationProtectedItem[] | ||
Parameter Sets: AddReplicationProtectedItems | ||
|
@@ -128,7 +130,7 @@ Accept wildcard characters: False | |
``` | ||
|
||
### -AddProtectedEntities | ||
Specifies an array of protected entities to add. | ||
An instance of an ASRProtectionEntity array of protected entities to add. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. An instance of an array seems confusing. This is an array of ASRProtectionEntity instances to add |
||
|
||
```yaml | ||
Type: ASRProtectionEntity[] | ||
|
@@ -143,7 +145,7 @@ Accept wildcard characters: False | |
``` | ||
|
||
### -RemoveProtectedEntities | ||
Specifies an array of protected entities. | ||
An instance of an ASRProtectionEntity array of protected entities to remove. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. An instance of an array seems confusing. This is an array of ASRProtectionEntity instances to remove |
||
|
||
```yaml | ||
Type: ASRProtectionEntity[] | ||
|
@@ -158,6 +160,8 @@ Accept wildcard characters: False | |
``` | ||
|
||
### -RemoveProtectedItems | ||
An instance of an ASRReplicationProtectedItem. | ||
|
||
```yaml | ||
Type: ASRReplicationProtectedItem[] | ||
Parameter Sets: RemoveReplicationProtectedItems | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its actually the other way around. Recovery Plan Groups are groupings under the recovery plan. There could be multiple Recovery plan groups in a recovery plan. I'd prefer we call it "Recovery Plan" and "Recovery Plan Group" as those are the nouns for these constructs. The class definition has ASR prefixed to distinguish this as an Azure Site Recovery (ASR) construct.