< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_Addr()-100%100%
get_Host()-0%100%
get_Method()-0%100%
get_Useragent()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryEventRequest.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    /// The request that generated the event.
 18    /// </summary>
 19    public partial class ContainerRegistryEventRequest
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the ContainerRegistryEventRequest
 23        /// class.
 24        /// </summary>
 325        public ContainerRegistryEventRequest()
 26        {
 27            CustomInit();
 328        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the ContainerRegistryEventRequest
 32        /// class.
 33        /// </summary>
 34        /// <param name="id">The ID of the request that initiated the
 35        /// event.</param>
 36        /// <param name="addr">The IP or hostname and possibly port of the
 37        /// client connection that initiated the event. This is the RemoteAddr
 38        /// from the standard http request.</param>
 39        /// <param name="host">The externally accessible hostname of the
 40        /// registry instance, as specified by the http host header on incoming
 41        /// requests.</param>
 42        /// <param name="method">The request method that generated the
 43        /// event.</param>
 44        /// <param name="useragent">The user agent header of the
 45        /// request.</param>
 046        public ContainerRegistryEventRequest(string id = default(string), string addr = default(string), string host = d
 47        {
 048            Id = id;
 049            Addr = addr;
 050            Host = host;
 051            Method = method;
 052            Useragent = useragent;
 53            CustomInit();
 054        }
 55
 56        /// <summary>
 57        /// An initialization method that performs custom operations like setting defaults
 58        /// </summary>
 59        partial void CustomInit();
 60
 61        /// <summary>
 62        /// Gets or sets the ID of the request that initiated the event.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "id")]
 065        public string Id { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets the IP or hostname and possibly port of the client
 69        /// connection that initiated the event. This is the RemoteAddr from
 70        /// the standard http request.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "addr")]
 573        public string Addr { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the externally accessible hostname of the registry
 77        /// instance, as specified by the http host header on incoming
 78        /// requests.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "host")]
 081        public string Host { get; set; }
 82
 83        /// <summary>
 84        /// Gets or sets the request method that generated the event.
 85        /// </summary>
 86        [JsonProperty(PropertyName = "method")]
 087        public string Method { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets the user agent header of the request.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "useragent")]
 093        public string Useragent { get; set; }
 94
 95    }
 96}