File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
ResourceManager/Implementation/Bicep Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class PublishAzureBicepModuleCmdlet : AzureRMCmdlet
34
34
[ Parameter ( Mandatory = false , HelpMessage = "Documentation uri of the Bicep module." ) ]
35
35
public string DocumentationUri { get ; set ; }
36
36
37
- [ Parameter ( Mandatory = false , HelpMessage = "[Experimental] Publish source code with the module." ) ]
37
+ [ Parameter ( Mandatory = false , HelpMessage = "Publish source code with the module." ) ]
38
38
public SwitchParameter WithSource { get ; set ; }
39
39
40
40
[ Parameter ( Mandatory = false , HelpMessage = "Overwrite existing published module." ) ]
Original file line number Diff line number Diff line change 19
19
-->
20
20
21
21
## Upcoming Release
22
+ * Removed '[ Experimental] ' notice from ` -WithSource ` parameter to ` Publish-AzBicepModule `
22
23
23
24
## Version 7.4.0
24
25
* Fixed secrets exposure in example documentation.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Publishes a Bicep file to a registry.
14
14
15
15
```
16
16
Publish-AzBicepModule -FilePath <String> -Target <String> [-DocumentationUri <String>] [-WithSource] [-Force]
17
- [-PassThru] [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
17
+ [-PassThru] [-DefaultProfile <IAzureContextContainer>] [-ProgressAction <ActionPreference>] [- WhatIf]
18
18
[-Confirm] [<CommonParameters>]
19
19
```
20
20
@@ -114,6 +114,21 @@ Accept pipeline input: False
114
114
Accept wildcard characters : False
115
115
` ` `
116
116
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
+
117
132
### -Target
118
133
The target location where the bicep file will be published.
119
134
@@ -130,7 +145,7 @@ Accept wildcard characters: False
130
145
` ` `
131
146
132
147
### -WithSource
133
- [Experimental] Publish source code with the module.
148
+ Publish source code with the module.
134
149
135
150
` ` ` yaml
136
151
Type : System.Management.Automation.SwitchParameter
You can’t perform that action at this time.
0 commit comments