| | | 1 | | // <auto-generated> |
| | | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | | 4 | | // license information. |
| | | 5 | | // |
| | | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | | 8 | | // regenerated. |
| | | 9 | | // </auto-generated> |
| | | 10 | | |
| | | 11 | | namespace Microsoft.Azure.EventGrid.Models |
| | | 12 | | { |
| | | 13 | | using Newtonsoft.Json; |
| | | 14 | | using System.Linq; |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// Detail of action on the app service plan. |
| | | 18 | | /// </summary> |
| | | 19 | | public partial class AppServicePlanEventTypeDetail |
| | | 20 | | { |
| | | 21 | | /// <summary> |
| | | 22 | | /// Initializes a new instance of the AppServicePlanEventTypeDetail |
| | | 23 | | /// class. |
| | | 24 | | /// </summary> |
| | 1 | 25 | | public AppServicePlanEventTypeDetail() |
| | | 26 | | { |
| | | 27 | | CustomInit(); |
| | 1 | 28 | | } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// Initializes a new instance of the AppServicePlanEventTypeDetail |
| | | 32 | | /// class. |
| | | 33 | | /// </summary> |
| | | 34 | | /// <param name="stampKind">Kind of environment where app service plan |
| | | 35 | | /// is. Possible values include: 'Public', 'AseV1', 'AseV2'</param> |
| | | 36 | | /// <param name="action">Type of action on the app service plan. |
| | | 37 | | /// Possible values include: 'Updated'</param> |
| | | 38 | | /// <param name="status">Possible values include: 'Started', |
| | | 39 | | /// 'Completed', 'Failed'</param> |
| | 0 | 40 | | public AppServicePlanEventTypeDetail(string stampKind = default(string), string action = default(string), string |
| | | 41 | | { |
| | 0 | 42 | | StampKind = stampKind; |
| | 0 | 43 | | Action = action; |
| | 0 | 44 | | Status = status; |
| | | 45 | | CustomInit(); |
| | 0 | 46 | | } |
| | | 47 | | |
| | | 48 | | /// <summary> |
| | | 49 | | /// An initialization method that performs custom operations like setting defaults |
| | | 50 | | /// </summary> |
| | | 51 | | partial void CustomInit(); |
| | | 52 | | |
| | | 53 | | /// <summary> |
| | | 54 | | /// Gets or sets kind of environment where app service plan is. |
| | | 55 | | /// Possible values include: 'Public', 'AseV1', 'AseV2' |
| | | 56 | | /// </summary> |
| | | 57 | | [JsonProperty(PropertyName = "stampKind")] |
| | 0 | 58 | | public string StampKind { get; set; } |
| | | 59 | | |
| | | 60 | | /// <summary> |
| | | 61 | | /// Gets or sets type of action on the app service plan. Possible |
| | | 62 | | /// values include: 'Updated' |
| | | 63 | | /// </summary> |
| | | 64 | | [JsonProperty(PropertyName = "action")] |
| | 0 | 65 | | public string Action { get; set; } |
| | | 66 | | |
| | | 67 | | /// <summary> |
| | | 68 | | /// Gets or sets possible values include: 'Started', 'Completed', |
| | | 69 | | /// 'Failed' |
| | | 70 | | /// </summary> |
| | | 71 | | [JsonProperty(PropertyName = "status")] |
| | 0 | 72 | | public string Status { get; set; } |
| | | 73 | | |
| | | 74 | | } |
| | | 75 | | } |