< Summary

Class:Microsoft.Azure.EventGrid.Models.AppServicePlanEventTypeDetail
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\AppServicePlanEventTypeDetail.cs
Covered lines:2
Uncovered lines:8
Coverable lines:10
Total lines:75
Line coverage:20% (2 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_StampKind()-0%100%
get_Action()-0%100%
get_Status()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\AppServicePlanEventTypeDetail.cs

#LineLine coverage
 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
 11namespace 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>
 125        public AppServicePlanEventTypeDetail()
 26        {
 27            CustomInit();
 128        }
 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>
 040        public AppServicePlanEventTypeDetail(string stampKind = default(string), string action = default(string), string
 41        {
 042            StampKind = stampKind;
 043            Action = action;
 044            Status = status;
 45            CustomInit();
 046        }
 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")]
 058        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")]
 065        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")]
 072        public string Status { get; set; }
 73
 74    }
 75}