< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.ManifestList
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\ManifestList.cs
Covered lines:9
Uncovered lines:6
Coverable lines:15
Total lines:157
Line coverage:60% (9 of 15)
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()-0%100%
get_Manifests()-0%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        {
 11            var manifest = new V2Manifest
 12            {
 13                Layers = v.Layers,
 14                SchemaVersion = v.SchemaVersion,
 15                Config = v.Config,
 16                MediaType = v.MediaType
 17            };
 18            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        {
 250            var manifest = new ManifestList
 251            {
 252                Manifests = v.Manifests,
 253                SchemaVersion = v.SchemaVersion,
 254                MediaType = v.MediaType
 255            };
 256            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\ManifestList.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 multi-arch-manifest file
 20    /// </summary>
 21    public partial class ManifestList : Manifest
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ManifestList class.
 25        /// </summary>
 426        public ManifestList()
 27        {
 28            CustomInit();
 429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ManifestList class.
 33        /// </summary>
 34        /// <param name="schemaVersion">Schema version</param>
 35        /// <param name="mediaType">Media type for this Manifest</param>
 36        /// <param name="manifests">List of V2 image layer information</param>
 37        public ManifestList(int? schemaVersion = default(int?), string mediaType = default(string), IList<ManifestListAt
 038            : base(schemaVersion)
 39        {
 040            MediaType = mediaType;
 041            Manifests = manifests;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets media type for this Manifest
 52        /// </summary>
 53        [JsonProperty(PropertyName = "mediaType")]
 054        public string MediaType { get; set; }
 55
 56        /// <summary>
 57        /// Gets or sets list of V2 image layer information
 58        /// </summary>
 59        [JsonProperty(PropertyName = "manifests")]
 060        public IList<ManifestListAttributes> Manifests { get; set; }
 61
 62    }
 63}