-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Management.ResourceManager sdk models and tests for new api v…
…ersion. (#7419) * updated tests for new api version. * Fixed merging of couple of models and a record file. * minor: adjusted whitepacing * Fixed test. * updated .csproj, .props and assembly info. * reverting proj version to 2.4.0-preview as it is the latest. * updated generate.ps1 and resources_resource-manager.txt tracking file. * updated generate.ps1 as suggested. * updated generate.ps1 as suggested. * correct the line that needs to be commented out
- Loading branch information
Showing
28 changed files
with
53,959 additions
and
9,498 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ AutoRest installed successfully. | |
Commencing code generation | ||
Generating CSharp code | ||
Executing AutoRest command | ||
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/resources/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-resources-2019-07 --csharp.output-folder=C:\code\temp\sdk-generated-cs | ||
2019-08-16 17:54:31 UTC | ||
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/resources/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-policy-2019-06 --csharp.output-folder=E:\azure-sdk-for-net\sdk\resources\Microsoft.Azure.Management.Resource\src\Generated | ||
2019-09-04 17:54:17 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: master | ||
Commit: 23326b92394ef630c59833f27e512544162ef4dd | ||
Commit: d547b7794cad660fd3cceee790e407a4d534308c | ||
AutoRest information | ||
Requested version: latest | ||
Bootstrapper version: [email protected] |
2 changes: 1 addition & 1 deletion
2
sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file--> | ||
<PropertyGroup> | ||
<AzureApiTag>Features_2015-12-01;ManagementLinkClient_2016-09-01;Resources_2016-09-01;Authorization_2016-09-01;Authorization_2018-05-01;Management_2018-05-01;PolicyClient_2018-05-01;Management_2019-07-01;ResourceManagementClient_2019-07-01;Resources_2019-07-01;SubscriptionClient_2016-06-01;</AzureApiTag> | ||
<AzureApiTag>Features_2015-12-01;ManagementLinkClient_2016-09-01;Resources_2016-09-01;Authorization_2016-09-01;Authorization_2019-06-01;Management_2019-06-01;PolicyClient_2019-06-01;Management_2019-07-01;ResourceManagementClient_2019-07-01;Resources_2019-07-01;SubscriptionClient_2016-06-01;</AzureApiTag> | ||
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/EnforcementMode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.ResourceManager.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Defines values for EnforcementMode. | ||
/// </summary> | ||
public static class EnforcementMode | ||
{ | ||
/// <summary> | ||
/// The policy effect is enforced during resource creation or update. | ||
/// </summary> | ||
public const string Default = "Default"; | ||
/// <summary> | ||
/// The policy effect is not enforced during resource creation or | ||
/// update. | ||
/// </summary> | ||
public const string DoNotEnforce = "DoNotEnforce"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.