< Summary

Class:Microsoft.Azure.Batch.DiskEncryptionConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\DiskEncryptionConfiguration.cs
Covered lines:14
Uncovered lines:2
Coverable lines:16
Total lines:96
Line coverage:87.5% (14 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
.ctor(...)-100%100%
get_Targets()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%
Microsoft.Azure.Batch.ITransportObjectProvider<Microsoft.Azure.Batch.Protocol.Models.DiskEncryptionConfiguration>.GetTransportObject()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\DiskEncryptionConfiguration.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for license information.
 3//
 4// Code generated by Microsoft (R) AutoRest Code Generator.
 5// Changes may cause incorrect behavior and will be lost if the code is
 6// regenerated.
 7
 8//
 9// This file was autogenerated by a tool.
 10// Do not modify it.
 11//
 12
 13namespace Microsoft.Azure.Batch
 14{
 15    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// The disk encryption configuration applied on compute nodes in the pool. Disk encryption configuration is not sup
 22    /// on Linux pool created with Shared Image Gallery Image.
 23    /// </summary>
 24    public partial class DiskEncryptionConfiguration : ITransportObjectProvider<Models.DiskEncryptionConfiguration>, IPr
 25    {
 26        #region Constructors
 27        /// <summary>
 28        /// Initializes a new instance of the <see cref="DiskEncryptionConfiguration"/> class.
 29        /// </summary>
 30        /// <param name='targets'>The list of disk targets Batch Service will encrypt on the compute node.</param>
 22431        public DiskEncryptionConfiguration(
 22432            IList<Common.DiskEncryptionTarget> targets)
 33        {
 22434            this.Targets = targets;
 22435        }
 36
 29537        internal DiskEncryptionConfiguration(Models.DiskEncryptionConfiguration protocolObject)
 38        {
 29539            this.Targets = UtilitiesInternal.ConvertEnumCollection<Models.DiskEncryptionTarget, Common.DiskEncryptionTar
 29540        }
 41
 42        #endregion Constructors
 43
 44        #region DiskEncryptionConfiguration
 45
 46        /// <summary>
 47        /// Gets the list of disk targets Batch Service will encrypt on the compute node.
 48        /// </summary>
 49        /// <remarks>
 50        /// If omitted, no disks on the compute nodes in the pool will be encrypted. On Linux pool, only <see cref="Comm
 51        /// is supported; on Windows pool, <see cref="Common.DiskEncryptionTarget.OsDisk"/> and <see cref="Common.DiskEn
 52        /// must be specified.
 53        /// </remarks>
 74254        public IList<Common.DiskEncryptionTarget> Targets { get; }
 55
 56        #endregion // DiskEncryptionConfiguration
 57
 58        #region IPropertyMetadata
 59
 60        bool IModifiable.HasBeenModified
 61        {
 62            //This class is compile time readonly so it cannot have been modified
 063            get { return false; }
 64        }
 65
 66        bool IReadOnly.IsReadOnly
 67        {
 068            get { return true; }
 69            set
 70            {
 71                // This class is compile time readonly already
 24672            }
 73        }
 74
 75        #endregion // IPropertyMetadata
 76
 77        #region Internal/private methods
 78
 79        /// <summary>
 80        /// Return a protocol object of the requested type.
 81        /// </summary>
 82        /// <returns>The protocol object of the requested type.</returns>
 83        Models.DiskEncryptionConfiguration ITransportObjectProvider<Models.DiskEncryptionConfiguration>.GetTransportObje
 84        {
 22385            Models.DiskEncryptionConfiguration result = new Models.DiskEncryptionConfiguration()
 22386            {
 22387                Targets = UtilitiesInternal.ConvertEnumCollection<Common.DiskEncryptionTarget, Models.DiskEncryptionTarg
 22388            };
 89
 22390            return result;
 91        }
 92
 93
 94        #endregion // Internal/private methods
 95    }
 96}