Skip to content

Commit c98d67f

Browse files
Add help file and update change log
1 parent 9c7b044 commit c98d67f

File tree

3 files changed

+125
-1
lines changed

3 files changed

+125
-1
lines changed

src/Resources/Resources/Az.Resources.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ CmdletsToExport = 'Get-AzProviderOperation', 'Remove-AzRoleAssignment',
101101
'Remove-AzADSpCredential', 'Remove-AzADUser',
102102
'Update-AzADApplication', 'Update-AzADServicePrincipal',
103103
'Update-AzADUser', 'Remove-AzResourceGroup', 'Get-AzProviderFeature',
104-
'Register-AzProviderFeature', 'Get-AzLocation',
104+
'Register-AzProviderFeature', 'Unregister-AzProviderFeature', 'Get-AzLocation',
105105
'Export-AzResourceGroup', 'Get-AzResourceProvider',
106106
'Register-AzResourceProvider', 'Unregister-AzResourceProvider',
107107
'Get-AzResourceGroupDeployment', 'New-AzResourceGroupDeployment',

src/Resources/Resources/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added 'Unregister-AzResourceProvider' cmdlet.
2122
* Updated `Get-AzResourceGroupDeploymentOperation` and `Save-AzResourceGroupDeploymentTemplate` to use the SDK.
2223

2324
## Version 2.2.0
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
external help file: Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll-Help.xml
3+
Module Name: Az.Resources
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# Unregister-AzProviderFeature
9+
10+
## SYNOPSIS
11+
{{ Fill in the Synopsis }}
12+
13+
## SYNTAX
14+
15+
```
16+
Unregister-AzProviderFeature -FeatureName <String> -ProviderNamespace <String>
17+
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
{{ Fill in the Description }}
22+
23+
## EXAMPLES
24+
25+
### Example 1
26+
```powershell
27+
PS C:\> {{ Add example code here }}
28+
```
29+
30+
{{ Add example description here }}
31+
32+
## PARAMETERS
33+
34+
### -DefaultProfile
35+
The credentials, account, tenant, and subscription used for communication with Azure.
36+
37+
```yaml
38+
Type: IAzureContextContainer
39+
Parameter Sets: (All)
40+
Aliases: AzContext, AzureRmContext, AzureCredential
41+
42+
Required: False
43+
Position: Named
44+
Default value: None
45+
Accept pipeline input: False
46+
Accept wildcard characters: False
47+
```
48+
49+
### -FeatureName
50+
The feature name.
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: (All)
55+
Aliases:
56+
57+
Required: True
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: True (ByPropertyName)
61+
Accept wildcard characters: False
62+
```
63+
64+
### -ProviderNamespace
65+
The resource provider namespace.
66+
67+
```yaml
68+
Type: String
69+
Parameter Sets: (All)
70+
Aliases:
71+
72+
Required: True
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: True (ByPropertyName)
76+
Accept wildcard characters: False
77+
```
78+
79+
### -Confirm
80+
Prompts you for confirmation before running the cmdlet.
81+
82+
```yaml
83+
Type: SwitchParameter
84+
Parameter Sets: (All)
85+
Aliases: cf
86+
87+
Required: False
88+
Position: Named
89+
Default value: None
90+
Accept pipeline input: False
91+
Accept wildcard characters: False
92+
```
93+
94+
### -WhatIf
95+
Shows what would happen if the cmdlet runs.
96+
The cmdlet is not run.
97+
98+
```yaml
99+
Type: SwitchParameter
100+
Parameter Sets: (All)
101+
Aliases: wi
102+
103+
Required: False
104+
Position: Named
105+
Default value: None
106+
Accept pipeline input: False
107+
Accept wildcard characters: False
108+
```
109+
110+
### CommonParameters
111+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
112+
113+
## INPUTS
114+
115+
### System.String
116+
117+
## OUTPUTS
118+
119+
### Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSProviderFeature
120+
121+
## NOTES
122+
123+
## RELATED LINKS

0 commit comments

Comments
 (0)