< Summary

Class:Microsoft.Azure.EventGrid.Models.ContainerRegistryArtifactEventTarget
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryArtifactEventTarget.cs
Covered lines:3
Uncovered lines:15
Coverable lines:18
Total lines:102
Line coverage:16.6% (3 of 18)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_MediaType()-100%100%
get_Size()-0%100%
get_Digest()-0%100%
get_Repository()-0%100%
get_Tag()-0%100%
get_Name()-0%100%
get_Version()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryArtifactEventTarget.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 target of the event.
 18    /// </summary>
 19    public partial class ContainerRegistryArtifactEventTarget
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// ContainerRegistryArtifactEventTarget class.
 24        /// </summary>
 225        public ContainerRegistryArtifactEventTarget()
 26        {
 27            CustomInit();
 228        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// ContainerRegistryArtifactEventTarget class.
 33        /// </summary>
 34        /// <param name="mediaType">The MIME type of the artifact.</param>
 35        /// <param name="size">The size in bytes of the artifact.</param>
 36        /// <param name="digest">The digest of the artifact.</param>
 37        /// <param name="repository">The repository name of the
 38        /// artifact.</param>
 39        /// <param name="tag">The tag of the artifact.</param>
 40        /// <param name="name">The name of the artifact.</param>
 41        /// <param name="version">The version of the artifact.</param>
 042        public ContainerRegistryArtifactEventTarget(string mediaType = default(string), long? size = default(long?), str
 43        {
 044            MediaType = mediaType;
 045            Size = size;
 046            Digest = digest;
 047            Repository = repository;
 048            Tag = tag;
 049            Name = name;
 050            Version = version;
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets the MIME type of the artifact.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "mediaType")]
 463        public string MediaType { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets the size in bytes of the artifact.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "size")]
 069        public long? Size { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets the digest of the artifact.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "digest")]
 075        public string Digest { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets the repository name of the artifact.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "repository")]
 081        public string Repository { get; set; }
 82
 83        /// <summary>
 84        /// Gets or sets the tag of the artifact.
 85        /// </summary>
 86        [JsonProperty(PropertyName = "tag")]
 087        public string Tag { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets the name of the artifact.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "name")]
 093        public string Name { get; set; }
 94
 95        /// <summary>
 96        /// Gets or sets the version of the artifact.
 97        /// </summary>
 98        [JsonProperty(PropertyName = "version")]
 099        public string Version { get; set; }
 100
 101    }
 102}