Skip to content

Commit

Permalink
Nfsaas 1707 add netapp (#13)
Browse files Browse the repository at this point in the history
* NFSAAS-1707 update from review comments

* NFSAAS-1707 update from review comments

* NFSAAS-1707 updates from review comments
  • Loading branch information
leonardbf authored Mar 28, 2019
1 parent f3fc634 commit 4df3ab2
Show file tree
Hide file tree
Showing 14 changed files with 198 additions and 198 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gets details of an Azure NetApp Files (ANF) account.

### ByFieldsParameterSet (Default)
```
Get-AzNetAppFilesAccount -ResourceGroupName <String> [-Name <String> | -AccountName <String>]
Get-AzNetAppFilesAccount -ResourceGroupName <String> [-Name <String>]
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

Expand Down
26 changes: 13 additions & 13 deletions src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesPool.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gets details of an Azure NetApp Files (ANF) pool.

### ByFieldsParameterSet (Default)
```
Get-AzNetAppFilesPool -ResourceGroupName <String> -AccountName <String> [-Name <String> | -PoolName <String>]
Get-AzNetAppFilesPool -ResourceGroupName <String> -AccountName <String> [-Name <String>]
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

Expand All @@ -25,7 +25,7 @@ Get-AzNetAppFilesPool -ResourceId <String> [-DefaultProfile <IAzureContextContai

### ByObjectParameterSet
```
Get-AzNetAppFilesPool [-AccountInputObject <PSNetAppFilesAccount>] [-DefaultProfile <IAzureContextContainer>]
Get-AzNetAppFilesPool -AccountObject <PSNetAppFilesAccount> [-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -55,33 +55,33 @@ This command gets the account named MyAnfPool from the account "MyAnfAccount".

## PARAMETERS

### -AccountInputObject
The account object containing the pool to return
### -AccountName
The name of the ANF account

```yaml
Type: PSNetAppFilesAccount
Parameter Sets: ByObjectParameterSet
Type: String
Parameter Sets: ByFieldsParameterSet
Aliases:

Required: False
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept pipeline input: False
Accept wildcard characters: False
```
### -AccountName
The name of the ANF account
### -AccountObject
The account object containing the pool to return
```yaml
Type: String
Parameter Sets: ByFieldsParameterSet
Type: PSNetAppFilesAccount
Parameter Sets: ByObjectParameterSet
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
Expand Down
32 changes: 16 additions & 16 deletions src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSnapshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ Gets details of an Azure NetApp Files (ANF) snapshot.
### ByFieldsParameterSet (Default)
```
Get-AzNetAppFilesSnapshot -ResourceGroupName <String> -AccountName <String> -PoolName <String>
-VolumeName <String> [-Name <String> | -SnapshotName <String>] [-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
-VolumeName <String> [-Name <String>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

### ByResourceIdParameterSet
```
Get-AzNetAppFilesSnapshot -ResourceId <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
Get-AzNetAppFilesSnapshot [-Name <String>] -ResourceId <String> [-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
```

### ByParentObjectParameterSet
```
Get-AzNetAppFilesSnapshot [-Name <String> | -SnapshotName <String>] [-VolumeInputObject <PSNetAppFilesPool>]
Get-AzNetAppFilesSnapshot [-Name <String>] -VolumeObject <PSNetAppFilesVolume>
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

Expand Down Expand Up @@ -147,33 +147,33 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
### -VolumeInputObject
The pool object containing the volume to return
### -VolumeName
The name of the ANF volume
```yaml
Type: PSNetAppFilesPool
Parameter Sets: ByParentObjectParameterSet
Type: String
Parameter Sets: ByFieldsParameterSet
Aliases:

Required: False
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept pipeline input: False
Accept wildcard characters: False
```
### -VolumeName
The name of the ANF volume
### -VolumeObject
The volume object containing the snapshot to return
```yaml
Type: String
Parameter Sets: ByFieldsParameterSet
Type: PSNetAppFilesVolume
Parameter Sets: ByParentObjectParameterSet
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
Expand All @@ -185,7 +185,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
### System.String
### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesPool
### Microsoft.Azure.Commands.NetAppFiles.Models.PSNetAppFilesVolume
## OUTPUTS
Expand Down
26 changes: 13 additions & 13 deletions src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesVolume.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gets details of an Azure NetApp Files (ANF) volume.

### ByFieldsParameterSet (Default)
```
Get-AzNetAppFilesVolume -ResourceGroupName <String> -AccountName <String> -PoolName <String> [-Name <String> | -VolumeName <String>]
Get-AzNetAppFilesVolume -ResourceGroupName <String> -AccountName <String> -PoolName <String> [-Name <String>]
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
```

Expand All @@ -25,7 +25,7 @@ Get-AzNetAppFilesVolume -ResourceId <String> [-DefaultProfile <IAzureContextCont

### ByParentObjectParameterSet
```
Get-AzNetAppFilesVolume [-PoolInputObject <PSNetAppFilesPool>] [-DefaultProfile <IAzureContextContainer>]
Get-AzNetAppFilesVolume -PoolObject <PSNetAppFilesPool> [-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -103,33 +103,33 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -PoolInputObject
The pool object containing the volume to return
### -PoolName
The name of the ANF pool
```yaml
Type: PSNetAppFilesPool
Parameter Sets: ByParentObjectParameterSet
Type: String
Parameter Sets: ByFieldsParameterSet
Aliases:

Required: False
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept pipeline input: False
Accept wildcard characters: False
```
### -PoolName
The name of the ANF pool
### -PoolObject
The pool object containing the volume to return
```yaml
Type: String
Parameter Sets: ByFieldsParameterSet
Type: PSNetAppFilesPool
Parameter Sets: ByParentObjectParameterSet
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Creates a new Azure NetApp Files (ANF) account.
## SYNTAX

```
New-AzNetAppFilesAccount -ResourceGroupName <String> -Location <String> [-Tag <Hashtable>] -Name <String> | -AccountName <String>
New-AzNetAppFilesAccount -ResourceGroupName <String> -Location <String> [-Tag <Hashtable>] -Name <String>
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

Expand Down
32 changes: 16 additions & 16 deletions src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesPool.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Creates a new Azure NetApp Files (ANF) pool.

### ByFieldsParameterSet (Default)
```
New-AzNetAppFilesPool -ResourceGroupName <String> -Location <String> -AccountName <String> [-Name <String> | -PoolName <String>]
New-AzNetAppFilesPool -ResourceGroupName <String> -Location <String> -AccountName <String> -Name <String>
-PoolSize <Int64> -ServiceLevel <String> [-Tag <Hashtable>] [-DefaultProfile <IAzureContextContainer>]
[-WhatIf] [-Confirm] [<CommonParameters>]
```

### ByParentObjectParameterSet
```
New-AzNetAppFilesPool -Name <String> | -PoolName <String> -PoolSize <Int64> -ServiceLevel <String> [-Tag <Hashtable>]
[-InputObject <PSNetAppFilesAccount>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
New-AzNetAppFilesPool -Name <String> -PoolSize <Int64> -ServiceLevel <String> [-Tag <Hashtable>]
-AccountObject <PSNetAppFilesAccount> [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

Expand Down Expand Up @@ -67,33 +67,33 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
### -AccountObject
The account for the new pool object
```yaml
Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
Type: PSNetAppFilesAccount
Parameter Sets: ByParentObjectParameterSet
Aliases:

Required: False
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
### -InputObject
The account for the new pool object
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
Type: PSNetAppFilesAccount
Parameter Sets: ByParentObjectParameterSet
Aliases:
Type: IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down
34 changes: 17 additions & 17 deletions src/NetAppFiles/NetAppFiles/help/New-AzNetAppFilesSnapshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Creates a new Azure NetApp Files (ANF) snapshot.
### ByFieldsParameterSet (Default)
```
New-AzNetAppFilesSnapshot -ResourceGroupName <String> -Location <String> -AccountName <String>
-PoolName <String> -VolumeName <String> -Name <String> | -SnapshotName <String> -FileSystemId <String> [-Tag <Hashtable>]
-PoolName <String> -VolumeName <String> -Name <String> -FileSystemId <String> [-Tag <Hashtable>]
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### ByParentObjectParameterSet
```
New-AzNetAppFilesSnapshot -Name <String> | -SnapshotName <String> [-Tag <Hashtable>] [-InputObject <PSNetAppFilesVolume>]
New-AzNetAppFilesSnapshot -Name <String> [-Tag <Hashtable>] -VolumeObject <PSNetAppFilesVolume>
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
```

Expand Down Expand Up @@ -96,21 +96,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -InputObject
The volume for the new snapshot object
```yaml
Type: PSNetAppFilesVolume
Parameter Sets: ByParentObjectParameterSet
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
### -Location
The location of the resource
Expand Down Expand Up @@ -201,6 +186,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -VolumeObject
The volume for the new snapshot object
```yaml
Type: PSNetAppFilesVolume
Parameter Sets: ByParentObjectParameterSet
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```
### -Confirm
Prompts you for confirmation before running the cmdlet.
Expand Down
Loading

0 comments on commit 4df3ab2

Please sign in to comment.