Skip to content

Commit 0b0d684

Browse files
committed
help fixes
1 parent dc6b3b6 commit 0b0d684

File tree

2 files changed

+91
-5
lines changed

2 files changed

+91
-5
lines changed

src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmNetworkInterfaceTapConfig.md

Lines changed: 46 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,25 @@ Removes a tap configuration from given network interface
1212

1313
## SYNTAX
1414

15+
### RemoveByNameParameterSet (Default)
1516
```
1617
Remove-AzureRmNetworkInterfaceTapConfig -ResourceGroupName <String> -NetworkInterfaceName <String>
1718
-Name <String> [-Force] [-PassThru] [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
1819
[<CommonParameters>]
1920
```
2021

22+
### DeleteByResourceIdParameterSet
23+
```
24+
Remove-AzureRmNetworkInterfaceTapConfig -ResourceId <String> [-Force] [-PassThru]
25+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
26+
```
27+
28+
### DeleteByInputObjectParameterSet
29+
```
30+
Remove-AzureRmNetworkInterfaceTapConfig -InputObject <PSNetworkInterfaceTapConfiguration> [-Force] [-PassThru]
31+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
32+
```
33+
2134
## DESCRIPTION
2235
The **Remove-AzureRmNetworkInterfaceTapConfig** cmdlet removes an Azure tap configuration from a network interface list.
2336

@@ -71,12 +84,27 @@ Accept pipeline input: False
7184
Accept wildcard characters: False
7285
```
7386
87+
### -InputObject
88+
Reference to NetworkInterfaceTapConfig.
89+
90+
```yaml
91+
Type: Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration
92+
Parameter Sets: DeleteByInputObjectParameterSet
93+
Aliases:
94+
95+
Required: True
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: True (ByValue)
99+
Accept wildcard characters: False
100+
```
101+
74102
### -Name
75103
The virtual network peering name.
76104
77105
```yaml
78106
Type: System.String
79-
Parameter Sets: (All)
107+
Parameter Sets: RemoveByNameParameterSet
80108
Aliases:
81109

82110
Required: True
@@ -91,7 +119,7 @@ The virtual network name.
91119
92120
```yaml
93121
Type: System.String
94-
Parameter Sets: (All)
122+
Parameter Sets: RemoveByNameParameterSet
95123
Aliases:
96124

97125
Required: True
@@ -122,7 +150,22 @@ The resource group name.
122150
123151
```yaml
124152
Type: System.String
125-
Parameter Sets: (All)
153+
Parameter Sets: RemoveByNameParameterSet
154+
Aliases:
155+
156+
Required: True
157+
Position: Named
158+
Default value: None
159+
Accept pipeline input: True (ByPropertyName)
160+
Accept wildcard characters: False
161+
```
162+
163+
### -ResourceId
164+
NetworkInterfaceTapConfig resource id.
165+
166+
```yaml
167+
Type: System.String
168+
Parameter Sets: DeleteByResourceIdParameterSet
126169
Aliases:
127170

128171
Required: True

src/ResourceManager/Network/Commands.Network/help/Remove-AzureRmVirtualNetworkTap.md

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,24 @@ Removes a virtual network tap.
1212

1313
## SYNTAX
1414

15+
### RemoveByNameParameterSet (Default)
1516
```
1617
Remove-AzureRmVirtualNetworkTap -ResourceGroupName <String> -Name <String> [-Force] [-AsJob] [-PassThru]
1718
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
1819
```
1920

21+
### DeleteByResourceIdParameterSet
22+
```
23+
Remove-AzureRmVirtualNetworkTap -ResourceId <String> [-Force] [-AsJob] [-PassThru]
24+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
25+
```
26+
27+
### DeleteByInputObjectParameterSet
28+
```
29+
Remove-AzureRmVirtualNetworkTap -InputObject <PSVirtualNetworkTap> [-Force] [-AsJob] [-PassThru]
30+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
31+
```
32+
2033
## DESCRIPTION
2134
The **Remove-AzureRmVirtualNetworkTap** cmdlet removes an Azure virtual network tap.
2235

@@ -77,12 +90,27 @@ Accept pipeline input: False
7790
Accept wildcard characters: False
7891
```
7992
93+
### -InputObject
94+
Reference to VirtualNetworkTap resource
95+
96+
```yaml
97+
Type: Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap
98+
Parameter Sets: DeleteByInputObjectParameterSet
99+
Aliases:
100+
101+
Required: True
102+
Position: Named
103+
Default value: None
104+
Accept pipeline input: True (ByValue)
105+
Accept wildcard characters: False
106+
```
107+
80108
### -Name
81109
The name of the tap.
82110
83111
```yaml
84112
Type: System.String
85-
Parameter Sets: (All)
113+
Parameter Sets: RemoveByNameParameterSet
86114
Aliases:
87115

88116
Required: True
@@ -113,7 +141,22 @@ The resource group name of the virtual network tap.
113141
114142
```yaml
115143
Type: System.String
116-
Parameter Sets: (All)
144+
Parameter Sets: RemoveByNameParameterSet
145+
Aliases:
146+
147+
Required: True
148+
Position: Named
149+
Default value: None
150+
Accept pipeline input: True (ByPropertyName)
151+
Accept wildcard characters: False
152+
```
153+
154+
### -ResourceId
155+
VirtualNetworkTap resourceId
156+
157+
```yaml
158+
Type: System.String
159+
Parameter Sets: DeleteByResourceIdParameterSet
117160
Aliases:
118161

119162
Required: True

0 commit comments

Comments
 (0)