< Summary

Class:Microsoft.Azure.Batch.UserIdentity
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\UserIdentity.cs
C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\UserIdentity.cs
Covered lines:16
Uncovered lines:10
Coverable lines:26
Total lines:132
Line coverage:61.5% (16 of 26)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
.ctor(...)-100%100%
.ctor(...)-33.33%100%
get_AutoUser()-100%100%
get_UserName()-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.UserIdentity>.GetTransportObject()-100%100%
.ctor(...)-0%100%
.ctor(...)-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\UserIdentity.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 definition of the user identity under which the task is run.
 122    /// </summary>
 23    public partial class UserIdentity : ITransportObjectProvider<Models.UserIdentity>, IPropertyMetadata
 124    {
 125        #region Constructors
 26
 275027        internal UserIdentity(Models.UserIdentity protocolObject)
 28        {
 413529            this.AutoUser = UtilitiesInternal.CreateObjectWithNullCheck(protocolObject.AutoUser, o => new AutoUserSpecif
 275030            this.UserName = protocolObject.UserName;
 275031        }
 32
 033        #endregion Constructors
 034
 35        #region UserIdentity
 36
 37        /// <summary>
 38        /// Gets the auto user under which the task is run.
 39        /// </summary>
 40        /// <remarks>
 41        /// The <see cref="UserName"/> and <see cref="AutoUser"/> properties are mutually exclusive; you must specify on
 42        /// but not both.
 43        /// </remarks>
 331844        public AutoUserSpecification AutoUser { get; }
 45
 46        /// <summary>
 47        /// Gets the name of the user identity under which the task is run.
 48        /// </summary>
 49        /// <remarks>
 50        /// The <see cref="UserName"/> and <see cref="AutoUser"/> properties are mutually exclusive; you must specify on
 51        /// but not both.
 52        /// </remarks>
 331753        public string UserName { get; }
 54
 55        #endregion // UserIdentity
 56
 57        #region IPropertyMetadata
 58
 59        bool IModifiable.HasBeenModified
 60        {
 61            //This class is compile time readonly so it cannot have been modified
 062            get { return false; }
 63        }
 64
 65        bool IReadOnly.IsReadOnly
 66        {
 067            get { return true; }
 68            set
 69            {
 70                // This class is compile time readonly already
 192071            }
 72        }
 73
 74        #endregion // IPropertyMetadata
 75
 76        #region Internal/private methods
 77
 78        /// <summary>
 79        /// Return a protocol object of the requested type.
 80        /// </summary>
 81        /// <returns>The protocol object of the requested type.</returns>
 82        Models.UserIdentity ITransportObjectProvider<Models.UserIdentity>.GetTransportObject()
 83        {
 56884            Models.UserIdentity result = new Models.UserIdentity()
 56885            {
 84386                AutoUser = UtilitiesInternal.CreateObjectWithNullCheck(this.AutoUser, (o) => o.GetTransportObject()),
 56887                UserName = this.UserName,
 56888            };
 89
 56890            return result;
 91        }
 92
 93
 94        #endregion // Internal/private methods
 95    }
 96}

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\UserIdentity.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
 8namespace Microsoft.Azure.Batch
 9{
 10    using System;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13    using System.Text;
 14    using System.Threading.Tasks;
 15
 16    public partial class UserIdentity
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the <see cref="UserIdentity"/> class.
 20        /// </summary>
 21        /// <param name="userName">The user name of the user identity.</param>
 022        public UserIdentity(string userName)
 23        {
 024            this.UserName = userName;
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the <see cref="UserIdentity"/> class.
 29        /// </summary>
 30        /// <param name="autoUserSpecification">The auto user under which the task is run.</param>
 031        public UserIdentity(AutoUserSpecification autoUserSpecification)
 32        {
 033            this.AutoUser = autoUserSpecification;
 034        }
 35    }
 36}