< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.V2Manifest
Assembly:Microsoft.Azure.ContainerRegistry
File(s):C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Customizations\ManifestConvertions.cs
C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\V2Manifest.cs
Covered lines:13
Uncovered lines:5
Coverable lines:18
Total lines:165
Line coverage:72.2% (13 of 18)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
op_Explicit(...)-100%100%
.ctor()-100%100%
.ctor(...)-0%100%
get_MediaType()-100%100%
get_Config()-100%100%
get_Layers()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Customizations\ManifestConvertions.cs

#LineLine coverage
 1
 2namespace Microsoft.Azure.ContainerRegistry.Models
 3{
 4    public partial class V2Manifest : Manifest
 5    {
 6        /// <summary>
 7        /// Provides a method to convert ManifestWrapper to V2Manifest
 8        /// </summary>
 9        public static explicit operator V2Manifest(ManifestWrapper v)
 10        {
 411            var manifest = new V2Manifest
 412            {
 413                Layers = v.Layers,
 414                SchemaVersion = v.SchemaVersion,
 415                Config = v.Config,
 416                MediaType = v.MediaType
 417            };
 418            return manifest;
 19        }
 20    }
 21
 22    public partial class V1Manifest : Manifest
 23    {
 24        /// <summary>
 25        /// Provides a method to convert ManifestWrapper to V1Manifest
 26        /// </summary>
 27        public static explicit operator V1Manifest(ManifestWrapper v)
 28        {
 29            var manifest = new V1Manifest
 30            {
 31                Architecture = v.Architecture,
 32                FsLayers = v.FsLayers,
 33                History = v.History,
 34                Name = v.Name,
 35                Signatures = v.Signatures,
 36                Tag = v.Tag,
 37                SchemaVersion = v.SchemaVersion
 38            };
 39            return manifest;
 40        }
 41    }
 42
 43    public partial class ManifestList : Manifest
 44    {
 45        /// <summary>
 46        /// Provides a method to convert ManifestWrapper to ManifestList
 47        /// </summary>
 48        public static explicit operator ManifestList(ManifestWrapper v)
 49        {
 50            var manifest = new ManifestList
 51            {
 52                Manifests = v.Manifests,
 53                SchemaVersion = v.SchemaVersion,
 54                MediaType = v.MediaType
 55            };
 56            return manifest;
 57        }
 58    }
 59
 60    public partial class OCIIndex : Manifest
 61    {
 62        /// <summary>
 63        /// Provides a method to convert ManifestWrapper to OCIIndex
 64        /// </summary>
 65        public static explicit operator OCIIndex(ManifestWrapper v)
 66        {
 67            var manifest = new OCIIndex
 68            {
 69                Manifests = v.Manifests,
 70                SchemaVersion = v.SchemaVersion,
 71                Annotations = v.Annotations
 72            };
 73            return manifest;
 74        }
 75    }
 76
 77    public partial class OCIManifest : Manifest
 78    {
 79        /// <summary>
 80        /// Provides a method to convert ManifestWrapper to OCIManifest
 81        /// </summary>
 82        public static explicit operator OCIManifest(ManifestWrapper v)
 83        {
 84            var manifest = new OCIManifest
 85            {
 86                Layers = v.Layers,
 87                SchemaVersion = v.SchemaVersion,
 88                Config = v.Config,
 89                Annotations = v.Annotations
 90            };
 91            return manifest;
 92        }
 93    }
 94}

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\V2Manifest.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.ContainerRegistry.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Returns the requested Docker V2 Manifest file
 20    /// </summary>
 21    public partial class V2Manifest : Manifest
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the V2Manifest class.
 25        /// </summary>
 626        public V2Manifest()
 27        {
 28            CustomInit();
 629        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the V2Manifest class.
 33        /// </summary>
 34        /// <param name="schemaVersion">Schema version</param>
 35        /// <param name="mediaType">Media type for this Manifest</param>
 36        /// <param name="config">V2 image config descriptor</param>
 37        /// <param name="layers">List of V2 image layer information</param>
 38        public V2Manifest(int? schemaVersion = default(int?), string mediaType = default(string), Descriptor config = de
 039            : base(schemaVersion)
 40        {
 041            MediaType = mediaType;
 042            Config = config;
 043            Layers = layers;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets media type for this Manifest
 54        /// </summary>
 55        [JsonProperty(PropertyName = "mediaType")]
 856        public string MediaType { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets V2 image config descriptor
 60        /// </summary>
 61        [JsonProperty(PropertyName = "config")]
 3262        public Descriptor Config { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets list of V2 image layer information
 66        /// </summary>
 67        [JsonProperty(PropertyName = "layers")]
 10468        public IList<Descriptor> Layers { get; set; }
 69
 70    }
 71}