< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.ContainerConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\ContainerConfiguration.cs
Covered lines:6
Uncovered lines:5
Coverable lines:11
Total lines:85
Line coverage:54.5% (6 of 11)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
.cctor()-100%100%
get_ContainerImageNames()-100%100%
get_ContainerRegistries()-100%100%
get_Type()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\ContainerConfiguration.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.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The configuration for container-enabled Pools.
 20    /// </summary>
 21    public partial class ContainerConfiguration
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ContainerConfiguration class.
 25        /// </summary>
 51726        public ContainerConfiguration()
 27        {
 28            CustomInit();
 51729        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ContainerConfiguration class.
 33        /// </summary>
 34        /// <param name="containerImageNames">The collection of container Image
 35        /// names.</param>
 36        /// <param name="containerRegistries">Additional private registries
 37        /// from which containers can be pulled.</param>
 038        public ContainerConfiguration(IList<string> containerImageNames = default(IList<string>), IList<ContainerRegistr
 39        {
 040            ContainerImageNames = containerImageNames;
 041            ContainerRegistries = containerRegistries;
 42            CustomInit();
 043        }
 44        /// <summary>
 45        /// Static constructor for ContainerConfiguration class.
 46        /// </summary>
 47        static ContainerConfiguration()
 48        {
 149            Type = "dockerCompatible";
 150        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the collection of container Image names.
 59        /// </summary>
 60        /// <remarks>
 61        /// This is the full Image reference, as would be specified to "docker
 62        /// pull". An Image will be sourced from the default Docker registry
 63        /// unless the Image is fully qualified with an alternative registry.
 64        /// </remarks>
 65        [JsonProperty(PropertyName = "containerImageNames")]
 117866        public IList<string> ContainerImageNames { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets additional private registries from which containers
 70        /// can be pulled.
 71        /// </summary>
 72        /// <remarks>
 73        /// If any Images must be downloaded from a private registry which
 74        /// requires credentials, then those credentials must be provided here.
 75        /// </remarks>
 76        [JsonProperty(PropertyName = "containerRegistries")]
 116977        public IList<ContainerRegistry> ContainerRegistries { get; set; }
 78
 79        /// <summary>
 80        /// </summary>
 81        [JsonProperty(PropertyName = "type")]
 082        public static string Type { get; private set; }
 83
 84    }
 85}