< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.V1Manifest
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\V1Manifest.cs
Covered lines:18
Uncovered lines:9
Coverable lines:27
Total lines:189
Line coverage:66.6% (18 of 27)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
op_Explicit(...)-100%100%
.ctor()-100%100%
.ctor(...)-0%100%
get_Architecture()-100%100%
get_Name()-100%100%
get_Tag()-100%100%
get_FsLayers()-100%100%
get_History()-100%100%
get_Signatures()-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        {
 229            var manifest = new V1Manifest
 230            {
 231                Architecture = v.Architecture,
 232                FsLayers = v.FsLayers,
 233                History = v.History,
 234                Name = v.Name,
 235                Signatures = v.Signatures,
 236                Tag = v.Tag,
 237                SchemaVersion = v.SchemaVersion
 238            };
 239            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\V1Manifest.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 V1 manifest file
 20    /// </summary>
 21    public partial class V1Manifest : Manifest
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the V1Manifest class.
 25        /// </summary>
 426        public V1Manifest()
 27        {
 28            CustomInit();
 429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the V1Manifest class.
 33        /// </summary>
 34        /// <param name="schemaVersion">Schema version</param>
 35        /// <param name="architecture">CPU architecture</param>
 36        /// <param name="name">Image name</param>
 37        /// <param name="tag">Image tag</param>
 38        /// <param name="fsLayers">List of layer information</param>
 39        /// <param name="history">Image history</param>
 40        /// <param name="signatures">Image signature</param>
 41        public V1Manifest(int? schemaVersion = default(int?), string architecture = default(string), string name = defau
 042            : base(schemaVersion)
 43        {
 044            Architecture = architecture;
 045            Name = name;
 046            Tag = tag;
 047            FsLayers = fsLayers;
 048            History = history;
 049            Signatures = signatures;
 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        /// <summary>
 59        /// Gets or sets CPU architecture
 60        /// </summary>
 61        [JsonProperty(PropertyName = "architecture")]
 862        public string Architecture { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets image name
 66        /// </summary>
 67        [JsonProperty(PropertyName = "name")]
 868        public string Name { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets image tag
 72        /// </summary>
 73        [JsonProperty(PropertyName = "tag")]
 874        public string Tag { get; set; }
 75
 76        /// <summary>
 77        /// Gets or sets list of layer information
 78        /// </summary>
 79        [JsonProperty(PropertyName = "fsLayers")]
 7080        public IList<FsLayer> FsLayers { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets image history
 84        /// </summary>
 85        [JsonProperty(PropertyName = "history")]
 7086        public IList<History> History { get; set; }
 87
 88        /// <summary>
 89        /// Gets or sets image signature
 90        /// </summary>
 91        [JsonProperty(PropertyName = "signatures")]
 092        public IList<ImageSignature> Signatures { get; set; }
 93
 94    }
 95}