You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add configs to config framework
* use signed common build
* Fix configs set on process scope get lost
* Get-AzConfig supports filter by Scope
* use official common build v1.3.58
Copy file name to clipboardExpand all lines: src/Accounts/Accounts/ChangeLog.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,10 @@
19
19
-->
20
20
21
21
## Upcoming Release
22
-
* Added a preview feature allowing user to control the configurations of Azure PowerShell by using the following cmdlets:
23
-
-`Get-AzConfig`
24
-
-`Update-AzConfig`
25
-
-`Clear-AzConfig`
22
+
* Added a preview feature allowing user to control the following configurations by using `Get-AzConfig`, `Update-AzConfig` and `Clear-AzConfig`:
23
+
-`DefaultSubscriptionForLogin`: Subscription name or GUID. Sets the default context for Azure PowerShell when logging in without specifying a subscription.
24
+
-`DisplayBreakingChangeWarning`: Controls if warning messages for breaking changes are displayed or suppressed.
25
+
-`EnableDataCollection`: When enabled, Azure PowerShell cmdlets send telemetry data to Microsoft to improve the customer experience.
26
26
* Upgraded System.Reflection.DispatchProxy on Windows PowerShell [#17856]
27
27
* Upgraded Azure.Identity to 1.6.0 and Azure.Core to 1.24.0
thrownewAzPSArgumentException($"When clearing configs, {nameof(Scope)} must be either {ConfigScope.Process} or {ConfigScope.CurrentUser}",nameof(Scope));
Copy file name to clipboardExpand all lines: src/Accounts/Accounts/Config/ConfigCommandBase.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public ConfigCommandBase() : base()
51
51
ConfigManager=configManager;
52
52
}
53
53
54
-
[Parameter(HelpMessage="Specifies what part of Azure PowerShell the config applies to. Possible values are:\n- \""+ConfigFilter.GlobalAppliesTo+"\": the config applies to all modules and cmdlets of Azure PowerShell.\n- Module name: the config applies to a certain module of Azure PowerShell. For example, \"Az.Storage\".\n- Cmdlet name: the config applies to a certain cmdlet of Azure PowerShell. For example, \"Get-AzKeyVault\".\nIf not specified, when getting configs, output will be all of the above; when updating, it defaults to \""+ConfigFilter.GlobalAppliesTo+"\"; when clearing, configs applying to any targets are cleared.")]
54
+
[Parameter(HelpMessage="Specifies what part of Azure PowerShell the config applies to. Possible values are:\n- \""+ConfigFilter.GlobalAppliesTo+"\": the config applies to all modules and cmdlets of Azure PowerShell.\n- Module name: the config applies to a certain module of Azure PowerShell. For example, \"Az.Storage\".\n- Cmdlet name: the config applies to a certain cmdlet of Azure PowerShell. For example, \"Get-AzKeyVault\".\nIf not specified, when getting or clearing configs, it defaults to all the above; when updating, it defaults to \""+ConfigFilter.GlobalAppliesTo+"\".")]
thrownewAzPSArgumentException($"When updating configs, {nameof(Scope)} must be either {ConfigScope.Process} or {ConfigScope.CurrentUser}",nameof(Scope));
0 commit comments