forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab3ffbc
commit 1a2b39c
Showing
12 changed files
with
177 additions
and
20 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/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\hylee-sdk\july2\sdk | ||
2019-07-18 00:16:54 UTC | ||
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=G:\Code\azure-sdk-for-net\sdk | ||
2019-08-02 00:04:37 UTC | ||
Azure-rest-api-specs repository information | ||
GitHub fork: Azure | ||
Branch: master | ||
Commit: 6b6a445819212313e466b2f77f8b3e6d4f9d18fb | ||
Commit: ab88105b1fd4d8b982869c43b1fbf365f24fc0af | ||
AutoRest information | ||
Requested version: latest | ||
Bootstrapper version: [email protected] |
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>Compute_2019-03-01;Compute_2018-09-30;Compute_2019-04-01;ContainerService_2017-01-31;</AzureApiTag> | ||
<AzureApiTag>Compute_2019-03-01;Compute_2018-09-30;Compute_2019-07-01;Compute_2019-04-01;ContainerService_2017-01-31;</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
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
50 changes: 50 additions & 0 deletions
50
...compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ScheduledEventsProfile.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,50 @@ | ||
// <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.Compute.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
public partial class ScheduledEventsProfile | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the ScheduledEventsProfile class. | ||
/// </summary> | ||
public ScheduledEventsProfile() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the ScheduledEventsProfile class. | ||
/// </summary> | ||
/// <param name="terminateNotificationProfile">Specifies Terminate | ||
/// Scheduled Event related configurations.</param> | ||
public ScheduledEventsProfile(TerminateNotificationProfile terminateNotificationProfile = default(TerminateNotificationProfile)) | ||
{ | ||
TerminateNotificationProfile = terminateNotificationProfile; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets specifies Terminate Scheduled Event related | ||
/// configurations. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "terminateNotificationProfile")] | ||
public TerminateNotificationProfile TerminateNotificationProfile { get; set; } | ||
|
||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
...e/Microsoft.Azure.Management.Compute/src/Generated/Models/TerminateNotificationProfile.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,68 @@ | ||
// <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.Compute.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
public partial class TerminateNotificationProfile | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the TerminateNotificationProfile | ||
/// class. | ||
/// </summary> | ||
public TerminateNotificationProfile() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the TerminateNotificationProfile | ||
/// class. | ||
/// </summary> | ||
/// <param name="notBeforeTimeout">Configurable length of time a | ||
/// Virtual Machine being deleted will have to potentially approve the | ||
/// Terminate Scheduled Event before the event is auto approved (timed | ||
/// out). The configuration must be specified in ISO 8601 format, the | ||
/// default value is 5 minutes (PT5M)</param> | ||
/// <param name="enable">Specifies whether the Terminate Scheduled | ||
/// event is enabled or disabled.</param> | ||
public TerminateNotificationProfile(string notBeforeTimeout = default(string), bool? enable = default(bool?)) | ||
{ | ||
NotBeforeTimeout = notBeforeTimeout; | ||
Enable = enable; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets or sets configurable length of time a Virtual Machine being | ||
/// deleted will have to potentially approve the Terminate Scheduled | ||
/// Event before the event is auto approved (timed out). The | ||
/// configuration must be specified in ISO 8601 format, the default | ||
/// value is 5 minutes (PT5M) | ||
/// </summary> | ||
[JsonProperty(PropertyName = "notBeforeTimeout")] | ||
public string NotBeforeTimeout { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets specifies whether the Terminate Scheduled event is | ||
/// enabled or disabled. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "enable")] | ||
public bool? Enable { 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,10 +50,10 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_ComputeManageme | |
// BEGIN: Code Generation Metadata Section | ||
public static readonly String AutoRestVersion = "latest"; | ||
public static readonly String AutoRestBootStrapperVersion = "[email protected]"; | ||
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\\hylee-sdk\\july2\\sdk"; | ||
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=G:\\Code\\azure-sdk-for-net\\sdk"; | ||
public static readonly String GithubForkName = "Azure"; | ||
public static readonly String GithubBranchName = "master"; | ||
public static readonly String GithubCommidId = "6b6a445819212313e466b2f77f8b3e6d4f9d18fb"; | ||
public static readonly String GithubCommidId = "ab88105b1fd4d8b982869c43b1fbf365f24fc0af"; | ||
public static readonly String CodeGenerationErrors = ""; | ||
public static readonly String GithubRepoName = "azure-rest-api-specs"; | ||
// END: Code Generation Metadata Section | ||
|
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.