Skip to content

Commit 1aac18d

Browse files
Remove '[Experimental]' notice from Publish-AzBicepModule -WithSource (#26038)
* Remove '[Experimental]' notice from Publish-AzBicepModule -WithSource * Update docs
1 parent c2cdf88 commit 1aac18d

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

src/Resources/ResourceManager/Implementation/Bicep/PublishAzureBicepModuleCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class PublishAzureBicepModuleCmdlet : AzureRMCmdlet
3434
[Parameter(Mandatory = false, HelpMessage = "Documentation uri of the Bicep module.")]
3535
public string DocumentationUri { get; set; }
3636

37-
[Parameter(Mandatory = false, HelpMessage="[Experimental] Publish source code with the module.")]
37+
[Parameter(Mandatory = false, HelpMessage="Publish source code with the module.")]
3838
public SwitchParameter WithSource { get; set; }
3939

4040
[Parameter(Mandatory = false, HelpMessage="Overwrite existing published module.")]

src/Resources/Resources/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Removed '[Experimental]' notice from `-WithSource` parameter to `Publish-AzBicepModule`
2223

2324
## Version 7.4.0
2425
* Fixed secrets exposure in example documentation.

src/Resources/Resources/help/Publish-AzBicepModule.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Publishes a Bicep file to a registry.
1414

1515
```
1616
Publish-AzBicepModule -FilePath <String> -Target <String> [-DocumentationUri <String>] [-WithSource] [-Force]
17-
[-PassThru] [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
17+
[-PassThru] [-DefaultProfile <IAzureContextContainer>] [-ProgressAction <ActionPreference>] [-WhatIf]
1818
[-Confirm] [<CommonParameters>]
1919
```
2020

@@ -114,6 +114,21 @@ Accept pipeline input: False
114114
Accept wildcard characters: False
115115
```
116116
117+
### -ProgressAction
118+
{{ Fill ProgressAction Description }}
119+
120+
```yaml
121+
Type: System.Management.Automation.ActionPreference
122+
Parameter Sets: (All)
123+
Aliases: proga
124+
125+
Required: False
126+
Position: Named
127+
Default value: None
128+
Accept pipeline input: False
129+
Accept wildcard characters: False
130+
```
131+
117132
### -Target
118133
The target location where the bicep file will be published.
119134
@@ -130,7 +145,7 @@ Accept wildcard characters: False
130145
```
131146
132147
### -WithSource
133-
[Experimental] Publish source code with the module.
148+
Publish source code with the module.
134149
135150
```yaml
136151
Type: System.Management.Automation.SwitchParameter

0 commit comments

Comments
 (0)