< Summary

Class:Microsoft.Azure.Batch.WindowsConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\WindowsConfiguration.cs
Covered lines:14
Uncovered lines:2
Coverable lines:16
Total lines:90
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_EnableAutomaticUpdates()-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.WindowsConfiguration>.GetTransportObject()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\WindowsConfiguration.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    /// Windows operating system settings to apply to the virtual machine.
 22    /// </summary>
 23    public partial class WindowsConfiguration : ITransportObjectProvider<Models.WindowsConfiguration>, IPropertyMetadata
 24    {
 25        #region Constructors
 26        /// <summary>
 27        /// Initializes a new instance of the <see cref="WindowsConfiguration"/> class.
 28        /// </summary>
 29        /// <param name='enableAutomaticUpdates'>Whether automatic updates are enabled on the virtual machine. If unspec
 23830        public WindowsConfiguration(
 23831            bool? enableAutomaticUpdates = default(bool?))
 32        {
 23833            this.EnableAutomaticUpdates = enableAutomaticUpdates;
 23834        }
 35
 27836        internal WindowsConfiguration(Models.WindowsConfiguration protocolObject)
 37        {
 27838            this.EnableAutomaticUpdates = protocolObject.EnableAutomaticUpdates;
 27839        }
 40
 41        #endregion Constructors
 42
 43        #region WindowsConfiguration
 44
 45        /// <summary>
 46        /// Gets whether automatic updates are enabled on the virtual machine. If unspecified, the default value is true
 47        /// </summary>
 75348        public bool? EnableAutomaticUpdates { get; }
 49
 50        #endregion // WindowsConfiguration
 51
 52        #region IPropertyMetadata
 53
 54        bool IModifiable.HasBeenModified
 55        {
 56            //This class is compile time readonly so it cannot have been modified
 057            get { return false; }
 58        }
 59
 60        bool IReadOnly.IsReadOnly
 61        {
 062            get { return true; }
 63            set
 64            {
 65                // This class is compile time readonly already
 23266            }
 67        }
 68
 69        #endregion // IPropertyMetadata
 70
 71        #region Internal/private methods
 72
 73        /// <summary>
 74        /// Return a protocol object of the requested type.
 75        /// </summary>
 76        /// <returns>The protocol object of the requested type.</returns>
 77        Models.WindowsConfiguration ITransportObjectProvider<Models.WindowsConfiguration>.GetTransportObject()
 78        {
 23779            Models.WindowsConfiguration result = new Models.WindowsConfiguration()
 23780            {
 23781                EnableAutomaticUpdates = this.EnableAutomaticUpdates,
 23782            };
 83
 23784            return result;
 85        }
 86
 87
 88        #endregion // Internal/private methods
 89    }
 90}