< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-100%100%
get_Password()-100%100%
get_ElevationLevel()-100%100%
get_LinuxUserConfiguration()-100%100%
get_WindowsUserConfiguration()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\UserAccount.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    /// Properties used to create a user used to execute Tasks on an Azure
 18    /// Batch Compute Node.
 19    /// </summary>
 20    public partial class UserAccount
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the UserAccount class.
 24        /// </summary>
 358525        public UserAccount()
 26        {
 27            CustomInit();
 358528        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the UserAccount class.
 32        /// </summary>
 33        /// <param name="name">The name of the user Account.</param>
 34        /// <param name="password">The password for the user Account.</param>
 35        /// <param name="elevationLevel">The elevation level of the user
 36        /// Account.</param>
 37        /// <param name="linuxUserConfiguration">The Linux-specific user
 38        /// configuration for the user Account.</param>
 39        /// <param name="windowsUserConfiguration">The Windows-specific user
 40        /// configuration for the user Account.</param>
 041        public UserAccount(string name, string password, ElevationLevel? elevationLevel = default(ElevationLevel?), Linu
 42        {
 043            Name = name;
 044            Password = password;
 045            ElevationLevel = elevationLevel;
 046            LinuxUserConfiguration = linuxUserConfiguration;
 047            WindowsUserConfiguration = windowsUserConfiguration;
 48            CustomInit();
 049        }
 50
 51        /// <summary>
 52        /// An initialization method that performs custom operations like setting defaults
 53        /// </summary>
 54        partial void CustomInit();
 55
 56        /// <summary>
 57        /// Gets or sets the name of the user Account.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "name")]
 856460        public string Name { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets the password for the user Account.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "password")]
 859566        public string Password { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the elevation level of the user Account.
 70        /// </summary>
 71        /// <remarks>
 72        /// The default value is nonAdmin. Possible values include: 'nonAdmin',
 73        /// 'admin'
 74        /// </remarks>
 75        [JsonProperty(PropertyName = "elevationLevel")]
 853376        public ElevationLevel? ElevationLevel { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets the Linux-specific user configuration for the user
 80        /// Account.
 81        /// </summary>
 82        /// <remarks>
 83        /// This property is ignored if specified on a Windows Pool. If not
 84        /// specified, the user is created with the default options.
 85        /// </remarks>
 86        [JsonProperty(PropertyName = "linuxUserConfiguration")]
 858387        public LinuxUserConfiguration LinuxUserConfiguration { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets the Windows-specific user configuration for the user
 91        /// Account.
 92        /// </summary>
 93        /// <remarks>
 94        /// This property can only be specified if the user is on a Windows
 95        /// Pool. If not specified and on a Windows Pool, the user is created
 96        /// with the default options.
 97        /// </remarks>
 98        [JsonProperty(PropertyName = "windowsUserConfiguration")]
 858099        public WindowsUserConfiguration WindowsUserConfiguration { get; set; }
 100
 101    }
 102}