< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AppEventTypeDetail()-100%100%
get_Name()-100%100%
get_ClientRequestId()-0%100%
get_CorrelationRequestId()-0%100%
get_RequestId()-0%100%
get_Address()-0%100%
get_Verb()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\WebAppUpdatedEventData.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    /// Schema of the Data property of an EventGridEvent for an
 18    /// Microsoft.Web.AppUpdated event.
 19    /// </summary>
 20    public partial class WebAppUpdatedEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the WebAppUpdatedEventData class.
 24        /// </summary>
 125        public WebAppUpdatedEventData()
 26        {
 27            CustomInit();
 128        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the WebAppUpdatedEventData class.
 32        /// </summary>
 33        /// <param name="name">name of the web site that had this
 34        /// event.</param>
 35        /// <param name="clientRequestId">The client request id generated by
 36        /// the app service for the site API operation that triggered this
 37        /// event.</param>
 38        /// <param name="correlationRequestId">The correlation request id
 39        /// generated by the app service for the site API operation that
 40        /// triggered this event.</param>
 41        /// <param name="requestId">The request id generated by the app service
 42        /// for the site API operation that triggered this event.</param>
 43        /// <param name="address">HTTP request URL of this operation.</param>
 44        /// <param name="verb">HTTP verb of this operation.</param>
 045        public WebAppUpdatedEventData(AppEventTypeDetail appEventTypeDetail = default(AppEventTypeDetail), string name =
 46        {
 047            AppEventTypeDetail = appEventTypeDetail;
 048            Name = name;
 049            ClientRequestId = clientRequestId;
 050            CorrelationRequestId = correlationRequestId;
 051            RequestId = requestId;
 052            Address = address;
 053            Verb = verb;
 54            CustomInit();
 055        }
 56
 57        /// <summary>
 58        /// An initialization method that performs custom operations like setting defaults
 59        /// </summary>
 60        partial void CustomInit();
 61
 62        /// <summary>
 63        /// </summary>
 64        [JsonProperty(PropertyName = "appEventTypeDetail")]
 265        public AppEventTypeDetail AppEventTypeDetail { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets name of the web site that had this event.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "name")]
 271        public string Name { get; set; }
 72
 73        /// <summary>
 74        /// Gets or sets the client request id generated by the app service for
 75        /// the site API operation that triggered this event.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "clientRequestId")]
 078        public string ClientRequestId { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets the correlation request id generated by the app
 82        /// service for the site API operation that triggered this event.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "correlationRequestId")]
 085        public string CorrelationRequestId { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets the request id generated by the app service for the
 89        /// site API operation that triggered this event.
 90        /// </summary>
 91        [JsonProperty(PropertyName = "requestId")]
 092        public string RequestId { get; set; }
 93
 94        /// <summary>
 95        /// Gets or sets HTTP request URL of this operation.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "address")]
 098        public string Address { get; set; }
 99
 100        /// <summary>
 101        /// Gets or sets HTTP verb of this operation.
 102        /// </summary>
 103        [JsonProperty(PropertyName = "verb")]
 0104        public string Verb { get; set; }
 105
 106    }
 107}