< Summary

Class:Microsoft.Azure.Graph.RBAC.Models.PasswordProfile
Assembly:Microsoft.Azure.Graph.RBAC
File(s):C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\PasswordProfile.cs
Covered lines:6
Uncovered lines:7
Coverable lines:13
Total lines:86
Line coverage:46.1% (6 of 13)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AdditionalProperties()-0%100%
get_Password()-100%100%
get_ForceChangePasswordNextLogin()-100%100%
Validate()-66.67%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\PasswordProfile.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.Graph.RBAC.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// The password profile associated with a user.
 21    /// </summary>
 22    public partial class PasswordProfile
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the PasswordProfile class.
 26        /// </summary>
 427        public PasswordProfile()
 28        {
 29            CustomInit();
 430        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the PasswordProfile class.
 34        /// </summary>
 35        /// <param name="password">Password</param>
 36        /// <param name="additionalProperties">Unmatched properties from the
 37        /// message are deserialized this collection</param>
 38        /// <param name="forceChangePasswordNextLogin">Whether to force a
 39        /// password change on next login.</param>
 040        public PasswordProfile(string password, IDictionary<string, object> additionalProperties = default(IDictionary<s
 41        {
 042            AdditionalProperties = additionalProperties;
 043            Password = password;
 044            ForceChangePasswordNextLogin = forceChangePasswordNextLogin;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets or sets unmatched properties from the message are deserialized
 55        /// this collection
 56        /// </summary>
 57        [JsonExtensionData]
 058        public IDictionary<string, object> AdditionalProperties { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets password
 62        /// </summary>
 63        [JsonProperty(PropertyName = "password")]
 1264        public string Password { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets whether to force a password change on next login.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "forceChangePasswordNextLogin")]
 870        public bool? ForceChangePasswordNextLogin { get; set; }
 71
 72        /// <summary>
 73        /// Validate the object.
 74        /// </summary>
 75        /// <exception cref="ValidationException">
 76        /// Thrown if validation fails
 77        /// </exception>
 78        public virtual void Validate()
 79        {
 480            if (Password == null)
 81            {
 082                throw new ValidationException(ValidationRules.CannotBeNull, "Password");
 83            }
 484        }
 85    }
 86}