forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task 5207653: RI renewal: Dot net sdk changes. (#7386)
* Task 5207653: RI renewal: Dot net sdk changes. * FW: Renewal changes * FW: Renewal changes for dot net SDK. * FW: Changes for the provided comments * FW: Fixed autorest to be compatible with node LTS * Task 5207653: RI renewal: Dot net sdk changes.
- Loading branch information
Showing
44 changed files
with
2,934 additions
and
540 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Installing AutoRest version: latest | ||
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/reservations/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\rd\azure-sdk-for-net\sdk | ||
2019-08-29 18:21:06 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: master | ||
Commit: 543e24fb91a603ac8395d767824ad6deddd1d20a | ||
AutoRest information | ||
Requested version: latest | ||
Bootstrapper version: autorest@2.0.4283 |
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
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
48 changes: 48 additions & 0 deletions
48
...soft.Azure.Management.Reservations/src/Generated/Models/PatchPropertiesRenewProperties.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,48 @@ | ||
// <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.Reservations.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
public partial class PatchPropertiesRenewProperties | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the PatchPropertiesRenewProperties | ||
/// class. | ||
/// </summary> | ||
public PatchPropertiesRenewProperties() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the PatchPropertiesRenewProperties | ||
/// class. | ||
/// </summary> | ||
public PatchPropertiesRenewProperties(PurchaseRequest purchaseProperties = default(PurchaseRequest)) | ||
{ | ||
PurchaseProperties = purchaseProperties; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// </summary> | ||
[JsonProperty(PropertyName = "purchaseProperties")] | ||
public PurchaseRequest PurchaseProperties { get; set; } | ||
|
||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Properties.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,46 @@ | ||
// <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.Reservations.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
public partial class Properties | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the Properties class. | ||
/// </summary> | ||
public Properties() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the Properties class. | ||
/// </summary> | ||
public Properties(SubscriptionScopeProperties propertiesProperty = default(SubscriptionScopeProperties)) | ||
{ | ||
PropertiesProperty = propertiesProperty; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties")] | ||
public SubscriptionScopeProperties PropertiesProperty { get; set; } | ||
|
||
} | ||
} |
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.