Skip to content

Commit f861bd3

Browse files
committed
Fix help file validation errors
1 parent af5706d commit f861bd3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/DataLakeStore/DataLakeStore/DataPlaneCommands/RestoreAzureRmDataLakeStoreDeletedItem.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
namespace Microsoft.Azure.Commands.DataLakeStore
2020
{
21-
[Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreDeletedItem", DefaultParameterSetName = DefaultParameterSet), OutputType(typeof(DataLakeStoreDeletedItem))]
21+
[Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeStoreDeletedItem",
22+
DefaultParameterSetName = DefaultParameterSet, SupportsShouldProcess = true),
23+
OutputType(typeof(DataLakeStoreDeletedItem))]
2224
[Alias("Restore-AdlStoreDeletedItem")]
2325
public class RestoreAzureDataLakeStoreDeletedItem : DataLakeStoreFileSystemCmdletBase
2426
{

src/DataLakeStore/DataLakeStore/help/Restore-AzDataLakeStoreDeletedItem.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Restore-AzDataLakeStoreDeletedItem [-Account] <String> [-Path] <String> [-Destin
2323
### InputObject
2424
```
2525
Restore-AzDataLakeStoreDeletedItem [-Account] <String> [-DeletedItem] <DataLakeStoreDeletedItem>
26-
[-RestoreAction <String>] [-PassThru] [-Force] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
26+
[-RestoreAction <String>] [-PassThru] [-Force] [-DefaultProfile <IAzureContextContainer>]
27+
[<CommonParameters>]
2728
```
2829

2930
## DESCRIPTION
@@ -82,8 +83,7 @@ Accept wildcard characters: False
8283
```
8384
8485
### -DeletedItem
85-
The deleted item object
86-
86+
The deleted item object.
8787
8888
```yaml
8989
Type: Microsoft.Azure.Commands.DataLakeStore.Models.DataLakeStoreDeletedItem
@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
```
114114
115115
### -Force
116-
Forces the command to run without asking for user confirmation
116+
Forces the command to run without asking for user confirmation.
117117
118118
```yaml
119119
Type: System.Management.Automation.SwitchParameter
@@ -128,7 +128,7 @@ Accept wildcard characters: False
128128
```
129129
130130
### -PassThru
131-
Return boolean true on success
131+
Return boolean true on success.
132132
133133
```yaml
134134
Type: System.Management.Automation.SwitchParameter

0 commit comments

Comments
 (0)