< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_AppId()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\ServicePrincipalCreateParameters.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    /// Request parameters for creating a new service principal.
 21    /// </summary>
 22    public partial class ServicePrincipalCreateParameters : ServicePrincipalBase
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the ServicePrincipalCreateParameters
 26        /// class.
 27        /// </summary>
 028        public ServicePrincipalCreateParameters()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the ServicePrincipalCreateParameters
 35        /// class.
 36        /// </summary>
 37        /// <param name="appId">The application ID.</param>
 38        /// <param name="accountEnabled">whether or not the service principal
 39        /// account is enabled</param>
 40        /// <param name="appRoleAssignmentRequired">Specifies whether an
 41        /// AppRoleAssignment to a user or group is required before Azure AD
 42        /// will issue a user or access token to the application.</param>
 43        /// <param name="keyCredentials">The collection of key credentials
 44        /// associated with the service principal.</param>
 45        /// <param name="passwordCredentials">The collection of password
 46        /// credentials associated with the service principal.</param>
 47        /// <param name="servicePrincipalType">the type of the service
 48        /// principal</param>
 49        /// <param name="tags">Optional list of tags that you can apply to your
 50        /// service principals. Not nullable.</param>
 51        public ServicePrincipalCreateParameters(string appId, bool? accountEnabled = default(bool?), bool? appRoleAssign
 052            : base(accountEnabled, appRoleAssignmentRequired, keyCredentials, passwordCredentials, servicePrincipalType,
 53        {
 054            AppId = appId;
 55            CustomInit();
 056        }
 57
 58        /// <summary>
 59        /// An initialization method that performs custom operations like setting defaults
 60        /// </summary>
 61        partial void CustomInit();
 62
 63        /// <summary>
 64        /// Gets or sets the application ID.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "appId")]
 067        public string AppId { get; set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public virtual void Validate()
 76        {
 077            if (AppId == null)
 78            {
 079                throw new ValidationException(ValidationRules.CannotBeNull, "AppId");
 80            }
 081        }
 82    }
 83}