Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class NewAzureWebAppSlotCmdlet : WebAppBaseClientCmdLet
[ValidateNotNullOrEmpty]
public SwitchParameter IgnoreCustomHostNames { get; set; }

[Parameter(Position = 8, Mandatory = false, HelpMessage = "Overrides all application settings in new web app")]
[Parameter(Position = 8, Mandatory = false, HelpMessage = "Overrides all application settings in new web app. It works only with SourceWebApp parameter")]
[ValidateNotNullOrEmpty]
public Hashtable AppSettingsOverrides { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/Websites/Websites/Cmdlets/WebApps/NewAzureWebApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class NewAzureWebAppCmdlet : WebAppBaseClientCmdLet
[ValidateNotNullOrEmpty]
public SwitchParameter IgnoreCustomHostNames { get; set; }

[Parameter(Position = 6, Mandatory = false, HelpMessage = "Overrides all application settings in new web app", ParameterSetName = CopyWebAppParameterSet)]
[Parameter(Position = 6, Mandatory = false, HelpMessage = "Overrides all application settings in new web app. It works only with SourceWebApp parameter", ParameterSetName = CopyWebAppParameterSet)]
[ValidateNotNullOrEmpty]
public Hashtable AppSettingsOverrides { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/Websites/Websites/help/New-AzWebApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Accept wildcard characters: False
```

### -AppSettingsOverrides
App Settings Overrides HashTable
App Settings Overrides HashTable. It works only with SourceWebApp parameter.

```yaml
Type: System.Collections.Hashtable
Expand Down
2 changes: 1 addition & 1 deletion src/Websites/Websites/help/New-AzWebAppSlot.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Accept wildcard characters: False
```

### -AppSettingsOverrides
App Settings Overrides Hashtable
App Settings Overrides Hashtable. It works only with SourceWebApp parameter.

```yaml
Type: System.Collections.Hashtable
Expand Down