< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.UserIdentity
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\UserIdentity.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:73
Line coverage:100% (8 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_UserName()-100%100%
get_AutoUser()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\UserIdentity.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.Linq;
 15
 16    /// <summary>
 17    /// The definition of the user identity under which the Task is run.
 18    /// </summary>
 19    /// <remarks>
 20    /// Specify either the userName or autoUser property, but not both.
 21    /// </remarks>
 22    public partial class UserIdentity
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the UserIdentity class.
 26        /// </summary>
 331727        public UserIdentity()
 28        {
 29            CustomInit();
 331730        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the UserIdentity class.
 34        /// </summary>
 35        /// <param name="userName">The name of the user identity under which
 36        /// the Task is run.</param>
 37        /// <param name="autoUser">The auto user under which the Task is
 38        /// run.</param>
 139        public UserIdentity(string userName = default(string), AutoUserSpecification autoUser = default(AutoUserSpecific
 40        {
 141            UserName = userName;
 142            AutoUser = autoUser;
 43            CustomInit();
 144        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets or sets the name of the user identity under which the Task is
 53        /// run.
 54        /// </summary>
 55        /// <remarks>
 56        /// The userName and autoUser properties are mutually exclusive; you
 57        /// must specify one but not both.
 58        /// </remarks>
 59        [JsonProperty(PropertyName = "username")]
 747060        public string UserName { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets the auto user under which the Task is run.
 64        /// </summary>
 65        /// <remarks>
 66        /// The userName and autoUser properties are mutually exclusive; you
 67        /// must specify one but not both.
 68        /// </remarks>
 69        [JsonProperty(PropertyName = "autoUser")]
 745170        public AutoUserSpecification AutoUser { get; set; }
 71
 72    }
 73}