< Summary

Class:Microsoft.Azure.EventGrid.Models.WebAppServicePlanUpdatedEventDataSku
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\WebAppServicePlanUpdatedEventDataSku.cs
Covered lines:0
Uncovered lines:14
Coverable lines:14
Total lines:85
Line coverage:0% (0 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Name()-0%100%
get_Tier()-0%100%
get_Size()-0%100%
get_Family()-0%100%
get_Capacity()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\WebAppServicePlanUpdatedEventDataSku.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    /// sku of app service plan.
 18    /// </summary>
 19    public partial class WebAppServicePlanUpdatedEventDataSku
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// WebAppServicePlanUpdatedEventDataSku class.
 24        /// </summary>
 025        public WebAppServicePlanUpdatedEventDataSku()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// WebAppServicePlanUpdatedEventDataSku class.
 33        /// </summary>
 34        /// <param name="name">name of app service plan sku.</param>
 35        /// <param name="tier">tier of app service plan sku.</param>
 36        /// <param name="size">size of app service plan sku.</param>
 37        /// <param name="family">family of app service plan sku.</param>
 38        /// <param name="capacity">capacity of app service plan sku.</param>
 039        public WebAppServicePlanUpdatedEventDataSku(string name = default(string), string tier = default(string), string
 40        {
 041            Name = name;
 042            Tier = tier;
 043            Size = size;
 044            Family = family;
 045            Capacity = capacity;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets name of app service plan sku.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "name")]
 058        public string Name { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets tier of app service plan sku.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "Tier")]
 064        public string Tier { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets size of app service plan sku.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "Size")]
 070        public string Size { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets family of app service plan sku.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "Family")]
 076        public string Family { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets capacity of app service plan sku.
 80        /// </summary>
 81        [JsonProperty(PropertyName = "Capacity")]
 082        public string Capacity { get; set; }
 83
 84    }
 85}