< Summary

Class:Microsoft.Azure.EventGrid.Models.ContainerRegistryEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryEventData.cs
Covered lines:6
Uncovered lines:12
Coverable lines:18
Total lines:109
Line coverage:33.3% (6 of 18)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_Timestamp()-0%100%
get_Action()-0%100%
get_Target()-100%100%
get_Request()-100%100%
get_Actor()-100%100%
get_Source()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryEventData.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 content of the event request message.
 18    /// </summary>
 19    public partial class ContainerRegistryEventData
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the ContainerRegistryEventData class.
 23        /// </summary>
 324        public ContainerRegistryEventData()
 25        {
 26            CustomInit();
 327        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the ContainerRegistryEventData class.
 31        /// </summary>
 32        /// <param name="id">The event ID.</param>
 33        /// <param name="timestamp">The time at which the event
 34        /// occurred.</param>
 35        /// <param name="action">The action that encompasses the provided
 36        /// event.</param>
 37        /// <param name="target">The target of the event.</param>
 38        /// <param name="request">The request that generated the event.</param>
 39        /// <param name="actor">The agent that initiated the event. For most
 40        /// situations, this could be from the authorization context of the
 41        /// request.</param>
 42        /// <param name="source">The registry node that generated the event.
 43        /// Put differently, while the actor initiates the event, the source
 44        /// generates it.</param>
 045        public ContainerRegistryEventData(string id = default(string), System.DateTime? timestamp = default(System.DateT
 46        {
 047            Id = id;
 048            Timestamp = timestamp;
 049            Action = action;
 050            Target = target;
 051            Request = request;
 052            Actor = actor;
 053            Source = source;
 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        /// Gets or sets the event ID.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "id")]
 066        public string Id { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the time at which the event occurred.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "timestamp")]
 072        public System.DateTime? Timestamp { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets the action that encompasses the provided event.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "action")]
 078        public string Action { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets the target of the event.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "target")]
 684        public ContainerRegistryEventTarget Target { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets the request that generated the event.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "request")]
 890        public ContainerRegistryEventRequest Request { get; set; }
 91
 92        /// <summary>
 93        /// Gets or sets the agent that initiated the event. For most
 94        /// situations, this could be from the authorization context of the
 95        /// request.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "actor")]
 798        public ContainerRegistryEventActor Actor { get; set; }
 99
 100        /// <summary>
 101        /// Gets or sets the registry node that generated the event. Put
 102        /// differently, while the actor initiates the event, the source
 103        /// generates it.
 104        /// </summary>
 105        [JsonProperty(PropertyName = "source")]
 6106        public ContainerRegistryEventSource Source { get; set; }
 107
 108    }
 109}