| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> Detail of action on the app service plan. </summary> |
| | 11 | | public partial class AppServicePlanEventTypeDetail |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of AppServicePlanEventTypeDetail. </summary> |
| 0 | 14 | | internal AppServicePlanEventTypeDetail() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of AppServicePlanEventTypeDetail. </summary> |
| | 19 | | /// <param name="stampKind"> Kind of environment where app service plan is. </param> |
| | 20 | | /// <param name="action"> Type of action on the app service plan. </param> |
| | 21 | | /// <param name="status"> Asynchronous operation status of the operation on the app service plan. </param> |
| 2 | 22 | | internal AppServicePlanEventTypeDetail(StampKind? stampKind, AppServicePlanAction? action, AsyncStatus? status) |
| | 23 | | { |
| 2 | 24 | | StampKind = stampKind; |
| 2 | 25 | | Action = action; |
| 2 | 26 | | Status = status; |
| 2 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Kind of environment where app service plan is. </summary> |
| 0 | 30 | | public StampKind? StampKind { get; } |
| | 31 | | /// <summary> Type of action on the app service plan. </summary> |
| 0 | 32 | | public AppServicePlanAction? Action { get; } |
| | 33 | | /// <summary> Asynchronous operation status of the operation on the app service plan. </summary> |
| 0 | 34 | | public AsyncStatus? Status { get; } |
| | 35 | | } |
| | 36 | | } |