Skip to content

Commit 171aba0

Browse files
a-santamariaAlfredo Santamaria Gomez
andauthored
fix models namespace (#1)
* remove .ManagedClusters from models namespace * regenerate help * Rename UpgradeMode to ApplicationUpgradeMode Co-authored-by: Alfredo Santamaria Gomez <[email protected]>
1 parent 5dd4762 commit 171aba0

File tree

67 files changed

+347
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+347
-308
lines changed

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/GetAzServiceFabricManagedClusterApplicationTypeVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

2323
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/NewAzServiceFabricManagedClusterApplicationTypeVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2323

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/RemoveAzServiceFabricManagedClusterApplicationTypeVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020

2121
namespace Microsoft.Azure.Commands.ServiceFabric.Commands
2222
{

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypeVersions/SetAzServiceFabricManagedClusterApplicationTypeVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2020
using Microsoft.Azure.Commands.ServiceFabric.Common;
21-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
21+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2424
using Microsoft.WindowsAzure.Commands.Utilities.Common;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/GetAzServiceFabricManagedClusterApplicationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

2323
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/NewAzServiceFabricManagedClusterApplicationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1616
using Microsoft.Azure.Commands.ServiceFabric.Common;
17-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
17+
using Microsoft.Azure.Commands.ServiceFabric.Models;
1818
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
1919
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2020
using System;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/RemoveAzServiceFabricManagedClusterApplicationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2121

2222
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ApplicationTypes/SetAzServiceFabricManagedClusterApplicationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2323
using Microsoft.WindowsAzure.Commands.Utilities.Common;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/GetAzServiceFabricManagedClusterApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

2323
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/NewAzServiceFabricManagedClusterApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
using System.Management.Automation;
1919
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2020
using Microsoft.Azure.Commands.ServiceFabric.Common;
21-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
21+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2424

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/RemoveAzServiceFabricManagedClusterApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020

2121
namespace Microsoft.Azure.Commands.ServiceFabric.Commands
2222
{

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Applications/SetAzServiceFabricManagedClusterApplication.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
using System.Management.Automation;
2020
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2121
using Microsoft.Azure.Commands.ServiceFabric.Common;
22-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
22+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2424
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2525
using Microsoft.WindowsAzure.Commands.Utilities.Common;
@@ -124,7 +124,7 @@ public class SetAzServiceFabricManagedClusterApplication : ManagedApplicationCmd
124124
HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")]
125125
[Parameter(Mandatory = false, ParameterSetName = ByInputObject,
126126
HelpMessage = "The mode used to monitor health during a rolling upgrade. The values are Monitored, and UnmonitoredAuto.")]
127-
public UpgradeMode UpgradeMode { get; set; }
127+
public ApplicationUpgradeMode UpgradeMode { get; set; }
128128

129129
#region RollingUpgradeMonitoringPolicy
130130

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/AddAzServiceFabricManagedClusterClientCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/GetAzServiceFabricManagedCluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/NewAzServiceFabricManagedCluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Security;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.Internal.Resources;
2222
using Microsoft.Azure.Management.Internal.Resources.Models;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedCluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using System.Management.Automation;
1616
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1717
using Microsoft.Azure.Commands.ServiceFabric.Common;
18-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
18+
using Microsoft.Azure.Commands.ServiceFabric.Models;
1919

2020
namespace Microsoft.Azure.Commands.ServiceFabric.Commands
2121
{

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/RemoveAzServiceFabricManagedClusterClientCertificate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/ManagedClusters/SetAzServiceFabricManagedCluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using System.Management.Automation;
1616
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1717
using Microsoft.Azure.Commands.ServiceFabric.Common;
18-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
18+
using Microsoft.Azure.Commands.ServiceFabric.Models;
1919
using Microsoft.Azure.Management.Internal.Resources;
2020
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/AddAzServiceFabricManagedNodeTypeVMSecret.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.Internal.Resources;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/GetAzServiceFabricManagedNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/NewAzServiceFabricManagedNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.Internal.Resources;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2323
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using System.Management.Automation;
1616
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1717
using Microsoft.Azure.Commands.ServiceFabric.Common;
18-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
18+
using Microsoft.Azure.Commands.ServiceFabric.Models;
1919
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2020

2121
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/RemoveAzServiceFabricManagedNodeTypeVMExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020
using Microsoft.Azure.Management.Internal.Resources;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/NodeTypes/SetAzServiceFabricManagedNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
2323

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/GetAzServiceFabricManagedClusterService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using System.Management.Automation;
1818
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1919
using Microsoft.Azure.Commands.ServiceFabric.Common;
20-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
20+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2121
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2222

2323
namespace Microsoft.Azure.Commands.ServiceFabric.Commands

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/NewAzServiceFabricManagedClusterService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2020
using Microsoft.Azure.Commands.ServiceFabric.Common;
2121
using Microsoft.Azure.Commands.ServiceFabric.Models;
22-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
2322
using Microsoft.Azure.Management.Internal.Resources;
2423
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2524
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/RemoveAzServiceFabricManagedClusterService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
using System.Management.Automation;
1717
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1818
using Microsoft.Azure.Commands.ServiceFabric.Common;
19-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
19+
using Microsoft.Azure.Commands.ServiceFabric.Models;
2020

2121
namespace Microsoft.Azure.Commands.ServiceFabric.Commands
2222
{

src/ServiceFabric/ServiceFabric/Commands/ManagedClusters/Services/SetAzServiceFabricManagedClusterService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
2020
using Microsoft.Azure.Commands.ServiceFabric.Common;
2121
using Microsoft.Azure.Commands.ServiceFabric.Models;
22-
using Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters;
2322
using Microsoft.Azure.Management.Internal.Resources;
2423
using Microsoft.Azure.Management.ServiceFabricManagedClusters;
2524
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/UpgradeMode.cs renamed to src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ApplicationUpgradeMode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
17-
public enum UpgradeMode
17+
public enum ApplicationUpgradeMode
1818
{
1919
Monitored,
2020
UnmonitoredAuto

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ManagedClusterSku.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// limitations under the License.
1212
// ----------------------------------------------------------------------------------
1313

14-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
14+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1515
{
1616
public enum ManagedClusterSku
1717
{

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedApplicationTypeVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedCluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1616

17-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
17+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1818
{
1919
public class PSManagedCluster : ManagedCluster
2020
{

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1616

17-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
17+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1818
{
1919
public class PSManagedNodeType : NodeType
2020
{

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSManagedService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceCorrelation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/PSServiceMetric.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
using Microsoft.Azure.Management.ServiceFabricManagedClusters.Models;
1818

src/ServiceFabric/ServiceFabric/Models/ManagedClusters/ServicePackageActivationModeEnum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
namespace Microsoft.Azure.Commands.ServiceFabric.Models.ManagedClusters
15+
namespace Microsoft.Azure.Commands.ServiceFabric.Models
1616
{
1717
public enum ServicePackageActivationModeEnum
1818
{

src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedClusterClientCertificate.md

Lines changed: 1 addition & 1 deletion

src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMExtension.md

Lines changed: 1 addition & 1 deletion

src/ServiceFabric/ServiceFabric/help/Add-AzServiceFabricManagedNodeTypeVMSecret.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)