< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryImageDeletedEventData.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 System.Linq;
 14
 15    /// <summary>
 16    /// Schema of the Data property of an EventGridEvent for a
 17    /// Microsoft.ContainerRegistry.ImageDeleted event.
 18    /// </summary>
 19    public partial class ContainerRegistryImageDeletedEventData : ContainerRegistryEventData
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// ContainerRegistryImageDeletedEventData class.
 24        /// </summary>
 125        public ContainerRegistryImageDeletedEventData()
 26        {
 27            CustomInit();
 128        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// ContainerRegistryImageDeletedEventData class.
 33        /// </summary>
 34        /// <param name="id">The event ID.</param>
 35        /// <param name="timestamp">The time at which the event
 36        /// occurred.</param>
 37        /// <param name="action">The action that encompasses the provided
 38        /// event.</param>
 39        /// <param name="target">The target of the event.</param>
 40        /// <param name="request">The request that generated the event.</param>
 41        /// <param name="actor">The agent that initiated the event. For most
 42        /// situations, this could be from the authorization context of the
 43        /// request.</param>
 44        /// <param name="source">The registry node that generated the event.
 45        /// Put differently, while the actor initiates the event, the source
 46        /// generates it.</param>
 47        public ContainerRegistryImageDeletedEventData(string id = default(string), System.DateTime? timestamp = default(
 048            : base(id, timestamp, action, target, request, actor, source)
 49        {
 50            CustomInit();
 051        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58    }
 59}

Methods/Properties

.ctor()
.ctor(...)