< Summary

Class:Microsoft.Azure.Graph.RBAC.Models.ServicePrincipalBase
Assembly:Microsoft.Azure.Graph.RBAC
File(s):C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\ServicePrincipalBase.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:107
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_AccountEnabled()-0%100%
get_AppRoleAssignmentRequired()-0%100%
get_KeyCredentials()-0%100%
get_PasswordCredentials()-0%100%
get_ServicePrincipalType()-0%100%
get_Tags()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\ServicePrincipalBase.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 Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Active Directory service principal common properties shared among GET,
 20    /// POST and PATCH
 21    /// </summary>
 22    public partial class ServicePrincipalBase
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the ServicePrincipalBase class.
 26        /// </summary>
 027        public ServicePrincipalBase()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the ServicePrincipalBase class.
 34        /// </summary>
 35        /// <param name="accountEnabled">whether or not the service principal
 36        /// account is enabled</param>
 37        /// <param name="appRoleAssignmentRequired">Specifies whether an
 38        /// AppRoleAssignment to a user or group is required before Azure AD
 39        /// will issue a user or access token to the application.</param>
 40        /// <param name="keyCredentials">The collection of key credentials
 41        /// associated with the service principal.</param>
 42        /// <param name="passwordCredentials">The collection of password
 43        /// credentials associated with the service principal.</param>
 44        /// <param name="servicePrincipalType">the type of the service
 45        /// principal</param>
 46        /// <param name="tags">Optional list of tags that you can apply to your
 47        /// service principals. Not nullable.</param>
 048        public ServicePrincipalBase(bool? accountEnabled = default(bool?), bool? appRoleAssignmentRequired = default(boo
 49        {
 050            AccountEnabled = accountEnabled;
 051            AppRoleAssignmentRequired = appRoleAssignmentRequired;
 052            KeyCredentials = keyCredentials;
 053            PasswordCredentials = passwordCredentials;
 054            ServicePrincipalType = servicePrincipalType;
 055            Tags = tags;
 56            CustomInit();
 057        }
 58
 59        /// <summary>
 60        /// An initialization method that performs custom operations like setting defaults
 61        /// </summary>
 62        partial void CustomInit();
 63
 64        /// <summary>
 65        /// Gets or sets whether or not the service principal account is
 66        /// enabled
 67        /// </summary>
 68        [JsonProperty(PropertyName = "accountEnabled")]
 069        public bool? AccountEnabled { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets specifies whether an AppRoleAssignment to a user or
 73        /// group is required before Azure AD will issue a user or access token
 74        /// to the application.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "appRoleAssignmentRequired")]
 077        public bool? AppRoleAssignmentRequired { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets the collection of key credentials associated with the
 81        /// service principal.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "keyCredentials")]
 084        public IList<KeyCredential> KeyCredentials { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets the collection of password credentials associated with
 88        /// the service principal.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "passwordCredentials")]
 091        public IList<PasswordCredential> PasswordCredentials { get; set; }
 92
 93        /// <summary>
 94        /// Gets or sets the type of the service principal
 95        /// </summary>
 96        [JsonProperty(PropertyName = "servicePrincipalType")]
 097        public string ServicePrincipalType { get; set; }
 98
 99        /// <summary>
 100        /// Gets or sets optional list of tags that you can apply to your
 101        /// service principals. Not nullable.
 102        /// </summary>
 103        [JsonProperty(PropertyName = "tags")]
 0104        public IList<string> Tags { get; set; }
 105
 106    }
 107}