Skip to content

Commit 761ba3c

Browse files
authored
Merge branch 'release-2018-06-29' into task-adls-fixdebugmessagesandsdkfixes
2 parents 90ab5b8 + 7258a45 commit 761ba3c

File tree

1,198 files changed

+151654
-35650
lines changed

Some content is hidden

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

1,198 files changed

+151654
-35650
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ app.config
2626
*.userprefs
2727
*.sln.docstates
2828
.vscode
29+
*.userosscache
2930

3031
# Build results
3132
[Dd]ebug/

ModuleMappings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
],
7171
"src/ResourceManager/DeviceProvisioningServices/": [
7272
"AzureRM.DeviceProvisioningServices"
73+
],
74+
"src/ResourceManager/DevSpaces/": [
75+
"AzureRM.DevSpaces"
7376
],
7477
"src/ResourceManager/DevTestLabs/": [
7578
"AzureRM.DevTestLabs"

TestMappings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
"src/ResourceManager/DeviceProvisioningServices/": [
7777
".\\src\\ResourceManager\\DeviceProvisioningServices\\Commands.DeviceProvisioningServices.Test\\bin\\Debug\\Microsoft.Azure.Commands.DeviceProvisioningServices.dll"
7878
],
79+
"src/ResourceManager/DevSpaces/": [
80+
".\\src\\ResourceManager\\DevSpaces\\Commands.DevSpaces.Test\\bin\\Debug\\Microsoft.Azure.Commands.DevSpaces.Test.dll"
81+
],
7982
"src/ResourceManager/DevTestLabs/": [],
8083
"src/ResourceManager/Dns/": [
8184
".\\src\\ResourceManager\\Dns\\Commands.Dns.Test\\bin\\Debug\\Microsoft.Azure.Commands.Dns.Test.dll"

build.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@
280280

281281
<Exec ContinueOnError="false"
282282
Command="&quot;$(PowerShellCommand)&quot; -NonInteractive -NoLogo -NoProfile -Command &quot; . $(LibraryToolsFolder)\NewHelpIndex.ps1 -OutputFile $(PackageDirectory)\index.json -BuildConfig $(Configuration) &quot;"
283-
Condition="'$(Latest)' == 'true' and $(CodeSign) == 'true'"/>
283+
Condition=" '$(Scope)' == 'All' or '$(Scope)' == 'Latest' and $(CodeSign) == 'true'"/>
284284

285285
<!-- Copying modules to be signed -->
286286

@@ -601,7 +601,7 @@
601601
<Target Name="ChangeLogCheck">
602602
<Exec Command="&quot;$(PowerShellCommand)&quot; -NonInteractive -NoLogo -NoProfile -Command &quot;. $(LibraryToolsFolder)\CheckChangeLog.ps1 -FilesChanged '@(FilesChanged)' &quot;"
603603
ContinueOnError="false"
604-
Condition="'$(Latest)' == 'true'"/>
604+
Condition=" '$(Scope)' == 'All' or '$(Scope)' == 'Latest' "/>
605605
<OnError ExecuteTargets="ChangeLogErrorMessage"/>
606606
</Target>
607607

documentation/breaking-changes/breaking-changes-attribute-help.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ Breaking changes in the cmdlet : Get-SomeObjectA
237237

238238
#### The output return type is changing
239239
```cs
240-
[CmdletOutputBreakingChange(typeof(List<Foo>), ReplacementCmdletOutputTypeName = "Dictionary<String, Foo>")]
241-
[Cmdlet(VerbsCommon.Get, "SomeObjectA"), OutputType(typeof(List<Foo>))]
240+
[CmdletOutputBreakingChange(typeof(Foo), ReplacementCmdletOutputTypeName = "Dictionary<String, Foo>")]
241+
[Cmdlet(VerbsCommon.Get, "SomeObjectA"), OutputType(typeof(Foo))]
242242
public class GetSomeObjectA : AzureRMCmdlet
243243
{
244244
protected override void BeginProcessing()

documentation/breaking-changes/breaking-changes-tool-help.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ When the type of the output is a generic, and one of the arguments of the generi
300300
For example, if we had a cmdlet `Get-SomeObject` that returned a list of `Foo` objects
301301

302302
```cs
303-
[Cmdlet(VerbsCommon.Get, "SomeObject"), OutputType(typeof(List<Foo>))]
303+
[Cmdlet(VerbsCommon.Get, "SomeObject"), OutputType(typeof(Foo))]
304304
public class GetSomeObject : Cmdlet
305305
{
306306
protected override void BeginProcessing()
@@ -313,7 +313,7 @@ public class GetSomeObject : Cmdlet
313313
but it now returns a list of `Bar` objects
314314

315315
```cs
316-
[Cmdlet(VerbsCommon.Get, "SomeObject"), OutputType(typeof(List<Bar>))]
316+
[Cmdlet(VerbsCommon.Get, "SomeObject"), OutputType(typeof(Bar))]
317317
```
318318

319319
the following script will no longer work since we are accessing properties of the `Foo` object that may not be a part of the `Bar` object
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<Import Project="..\..\..\tools\Common.Netcore.Dependencies.targets" />
4+
5+
<PropertyGroup>
6+
<TargetFramework>netcoreapp2.0</TargetFramework>
7+
<AssemblyName>Microsoft.Azure.Commands.Common.Aks</AssemblyName>
8+
<RootNamespace>Microsoft.Azure.Commands.Common.Aks</RootNamespace>
9+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
10+
</PropertyGroup>
11+
12+
13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14+
<DelaySign>false</DelaySign>
15+
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
16+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
17+
<WarningsAsErrors />
18+
</PropertyGroup>
19+
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
21+
<SignAssembly>true</SignAssembly>
22+
<DelaySign>true</DelaySign>
23+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
24+
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
25+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
26+
<WarningsAsErrors />
27+
</PropertyGroup>
28+
29+
<ItemGroup>
30+
<ProjectReference Include="..\Commands.Common\Common.Netcore.csproj" />
31+
<ProjectReference Include="..\..\ResourceManager\Common\Commands.ResourceManager.Common\Common.ResourceManager.Netcore.csproj" />
32+
</ItemGroup>
33+
34+
<ItemGroup>
35+
<Compile Update="Properties\Resources.Designer.cs">
36+
<DesignTime>true</DesignTime>
37+
<AutoGen>true</AutoGen>
38+
<DependentUpon>Resources.resx</DependentUpon>
39+
</Compile>
40+
</ItemGroup>
41+
42+
<ItemGroup>
43+
<EmbeddedResource Update="Properties\Resources.resx">
44+
<Generator>ResXFileCodeGenerator</Generator>
45+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
46+
</EmbeddedResource>
47+
</ItemGroup>
48+
49+
50+
</Project>
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{87BA5687-5563-4491-8846-77D98D0605D3}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Microsoft.Azure.Commands.Common.Aks</RootNamespace>
11+
<AssemblyName>Microsoft.Azure.Commands.Common.Aks</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE;SIGN</DefineConstants>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
30+
<CodeAnalysisLogFile>bin\Release\Management.Utilities.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
31+
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
32+
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
33+
<ErrorReport>prompt</ErrorReport>
34+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
35+
<SignAssembly>true</SignAssembly>
36+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
37+
<DelaySign>true</DelaySign>
38+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
39+
<Prefer32Bit>false</Prefer32Bit>
40+
</PropertyGroup>
41+
<ItemGroup>
42+
<Reference Include="Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
43+
<HintPath>..\..\packages\Microsoft.Rest.ClientRuntime.2.3.11\lib\net452\Microsoft.Rest.ClientRuntime.dll</HintPath>
44+
<Private>True</Private>
45+
</Reference>
46+
<Reference Include="Microsoft.Rest.ClientRuntime.Azure, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
47+
<HintPath>..\..\packages\Microsoft.Rest.ClientRuntime.Azure.3.3.12\lib\net452\Microsoft.Rest.ClientRuntime.Azure.dll</HintPath>
48+
<Private>True</Private>
49+
</Reference>
50+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
51+
<HintPath>..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
52+
<Private>True</Private>
53+
</Reference>
54+
<Reference Include="System" />
55+
<Reference Include="System.Core" />
56+
<Reference Include="System.Net" />
57+
<Reference Include="System.Net.Http" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<Compile Include="Properties\AssemblyInfo.cs" />
61+
<Compile Include="Version2017_08_31\ContainerServiceClient.cs" />
62+
<Compile Include="Version2017_08_31\IContainerServiceClient.cs" />
63+
<Compile Include="Version2017_08_31\IManagedClustersOperations.cs" />
64+
<Compile Include="Version2017_08_31\ManagedClustersOperations.cs" />
65+
<Compile Include="Version2017_08_31\ManagedClustersOperationsExtensions.cs" />
66+
<Compile Include="Version2017_08_31\Models\ContainerServiceAgentPoolProfile.cs" />
67+
<Compile Include="Version2017_08_31\Models\ContainerServiceDiagnosticsProfile.cs" />
68+
<Compile Include="Version2017_08_31\Models\ContainerServiceLinuxProfile.cs" />
69+
<Compile Include="Version2017_08_31\Models\ContainerServiceMasterProfile.cs" />
70+
<Compile Include="Version2017_08_31\Models\ContainerServiceServicePrincipalProfile.cs" />
71+
<Compile Include="Version2017_08_31\Models\ContainerServiceSshConfiguration.cs" />
72+
<Compile Include="Version2017_08_31\Models\ContainerServiceSshPublicKey.cs" />
73+
<Compile Include="Version2017_08_31\Models\ContainerServiceStorageProfileTypes.cs" />
74+
<Compile Include="Version2017_08_31\Models\ContainerServiceVMDiagnostics.cs" />
75+
<Compile Include="Version2017_08_31\Models\ContainerServiceVMSizeTypes.cs" />
76+
<Compile Include="Version2017_08_31\Models\ContainerServiceWindowsProfile.cs" />
77+
<Compile Include="Version2017_08_31\Models\KeyVaultSecretRef.cs" />
78+
<Compile Include="Version2017_08_31\Models\ManagedCluster.cs" />
79+
<Compile Include="Version2017_08_31\Models\ManagedClusterAccessProfile.cs" />
80+
<Compile Include="Version2017_08_31\Models\ManagedClusterPoolUpgradeProfile.cs" />
81+
<Compile Include="Version2017_08_31\Models\ManagedClusterUpgradeProfile.cs" />
82+
<Compile Include="Version2017_08_31\Models\OrchestratorProfile.cs" />
83+
<Compile Include="Version2017_08_31\Models\OSType.cs" />
84+
<Compile Include="Version2017_08_31\Models\Page.cs" />
85+
<Compile Include="Version2017_08_31\Models\Resource.cs" />
86+
<None Include="MSSharedLibKey.snk" />
87+
</ItemGroup>
88+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
90+
Other similar extension points exist, see Microsoft.Common.targets.
91+
<Target Name="BeforeBuild">
92+
</Target>
93+
<Target Name="AfterBuild">
94+
</Target>
95+
-->
96+
<ItemGroup>
97+
<None Include="packages.config" />
98+
</ItemGroup>
99+
<ItemGroup />
100+
</Project>
160 Bytes
Binary file not shown.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Commands.Common.Aks")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("Commands.Common.Aks")]
13+
[assembly: AssemblyCopyright("Copyright © 2018")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("87ba5687-5563-4491-8846-77d98d0605d3")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

src/ResourceManager/Aks/Commands.Aks/Generated/ContainerServiceClient.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/ContainerServiceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31
88
{
99
using Microsoft.Rest;
1010
using Microsoft.Rest.Azure;

src/ResourceManager/Aks/Commands.Aks/Generated/IContainerServiceClient.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/IContainerServiceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31
88
{
99
using Microsoft.Rest;
1010
using Microsoft.Rest.Azure;

src/ResourceManager/Aks/Commands.Aks/Generated/IManagedClustersOperations.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/IManagedClustersOperations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31
88
{
99
using Microsoft.Rest;
1010
using Microsoft.Rest.Azure;

src/ResourceManager/Aks/Commands.Aks/Generated/ManagedClustersOperations.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/ManagedClustersOperations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31
88
{
99
using Microsoft.Rest;
1010
using Microsoft.Rest.Azure;

src/ResourceManager/Aks/Commands.Aks/Generated/ManagedClustersOperationsExtensions.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/ManagedClustersOperationsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31
88
{
99
using Microsoft.Rest;
1010
using Microsoft.Rest.Azure;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceAgentPoolProfile.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceAgentPoolProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceDiagnosticsProfile.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceDiagnosticsProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceLinuxProfile.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceLinuxProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceMasterProfile.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceMasterProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceServicePrincipalProfile.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceServicePrincipalProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceSshConfiguration.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceSshConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceSshPublicKey.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceSshPublicKey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Microsoft.Rest;
1010
using Newtonsoft.Json;

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceStorageProfileTypes.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceStorageProfileTypes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99

1010
/// <summary>

src/ResourceManager/Aks/Commands.Aks/Generated/Models/ContainerServiceVMDiagnostics.cs renamed to src/Common/Commands.Common.Aks/Version2017_08_31/Models/ContainerServiceVMDiagnostics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// regenerated.
55
// </auto-generated>
66

7-
namespace Microsoft.Azure.Commands.Aks.Generated.Models
7+
namespace Microsoft.Azure.Commands.Aks.Generated.Version2017_08_31.Models
88
{
99
using Newtonsoft.Json;
1010
using System.Linq;

0 commit comments

Comments
 (0)