Skip to content

Commit a0d75b0

Browse files
authored
unpreview azconfig (#20432)
1 parent cb7ad31 commit a0d75b0

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

src/Accounts/Accounts/Config/ClearConfigCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
using Microsoft.Azure.Commands.Common.Exceptions;
1616
using Microsoft.Azure.Commands.ResourceManager.Common;
1717
using Microsoft.Azure.PowerShell.Common.Config;
18-
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1918
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2019
using System;
2120
using System.Collections.Generic;
@@ -27,7 +26,6 @@ namespace Microsoft.Azure.Commands.Common.Authentication.Config
2726
{
2827
[Cmdlet("Clear", AzureRMConstants.AzureRMPrefix + "Config", SupportsShouldProcess = true, DefaultParameterSetName = ClearAll)]
2928
[OutputType(typeof(bool))]
30-
[CmdletPreview(PreviewMessage)]
3129
public class ClearConfigCommand : ConfigCommandBase, IDynamicParameters
3230
{
3331
private const string ClearByKey = "ClearByKey";

src/Accounts/Accounts/Config/ConfigCommandBase.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ namespace Microsoft.Azure.Commands.Common.Authentication.Config
2424
{
2525
public abstract class ConfigCommandBase : AzureRMCmdlet
2626
{
27-
public const string PreviewMessage = "The cmdlet group \"AzConfig\" is in preview. Feedback is welcome: https://aka.ms/azpsissue";
28-
2927
private readonly RuntimeDefinedParameterDictionary _dynamicParameters = new RuntimeDefinedParameterDictionary();
3028

3129
protected IConfigManager ConfigManager { get; }

src/Accounts/Accounts/Config/ExportConfigCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515
using Microsoft.Azure.Commands.Common.Exceptions;
1616
using Microsoft.Azure.Commands.ResourceManager.Common;
1717
using Microsoft.Azure.PowerShell.Common.Config;
18-
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1918
using System.Management.Automation;
2019

2120
namespace Microsoft.Azure.Commands.Common.Authentication.Config
2221
{
2322
[Cmdlet("Export", AzureRMConstants.AzureRMPrefix + "Config", SupportsShouldProcess = true)]
24-
[CmdletPreview(ConfigCommandBase.PreviewMessage)]
2523
[OutputType(typeof(bool))]
2624
public class ExportConfigCommand : AzureRMCmdlet
2725
{

src/Accounts/Accounts/Config/GetConfigCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
using Microsoft.Azure.Commands.Profile.Models;
1616
using Microsoft.Azure.Commands.ResourceManager.Common;
1717
using Microsoft.Azure.PowerShell.Common.Config;
18-
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1918
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2019
using System;
2120
using System.Collections.Generic;
@@ -27,7 +26,6 @@ namespace Microsoft.Azure.Commands.Common.Authentication.Config
2726
{
2827
[Cmdlet(VerbsCommon.Get, AzureRMConstants.AzureRMPrefix + "Config")]
2928
[OutputType(typeof(PSConfig))]
30-
[CmdletPreview(PreviewMessage)]
3129
public class GetConfigCommand : ConfigCommandBase, IDynamicParameters
3230
{
3331
public GetConfigCommand() : base()

src/Accounts/Accounts/Config/ImportConfigCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,11 @@
1414

1515
using Microsoft.Azure.Commands.ResourceManager.Common;
1616
using Microsoft.Azure.PowerShell.Common.Config;
17-
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
1817
using System.Management.Automation;
1918

2019
namespace Microsoft.Azure.Commands.Common.Authentication.Config
2120
{
2221
[Cmdlet("Import", AzureRMConstants.AzureRMPrefix + "Config", SupportsShouldProcess = true)]
23-
[CmdletPreview(ConfigCommandBase.PreviewMessage)]
2422
[OutputType(typeof(bool))]
2523
public class ImportConfigCommand : AzureRMCmdlet
2624
{

src/Accounts/Accounts/Config/UpdateConfigCommand.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
using Microsoft.Azure.Commands.Profile.Models;
1717
using Microsoft.Azure.Commands.ResourceManager.Common;
1818
using Microsoft.Azure.PowerShell.Common.Config;
19-
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2019
using System;
2120
using System.Collections.Generic;
2221
using System.Collections.ObjectModel;
@@ -27,7 +26,6 @@ namespace Microsoft.Azure.Commands.Common.Authentication.Config
2726
{
2827
[Cmdlet("Update", AzureRMConstants.AzureRMPrefix + "Config", SupportsShouldProcess = true)]
2928
[OutputType(typeof(PSConfig))]
30-
[CmdletPreview(PreviewMessage)]
3129
public class UpdateConfigCommand : ConfigCommandBase, IDynamicParameters
3230
{
3331
private const string ProcessMessage = "Update the configs that apply to \"{0}\" by the following keys: {1}.";

0 commit comments

Comments
 (0)