< Summary

Class:Microsoft.Azure.Management.Search.Models.Identity
Assembly:Microsoft.Azure.Management.Search
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Management.Search\src\Generated\Models\Identity.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:79
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_PrincipalId()-0%100%
get_TenantId()-0%100%
get_Type()-0%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Management.Search\src\Generated\Models\Identity.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.Management.Search.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Identity for the resource.
 18    /// </summary>
 19    public partial class Identity
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the Identity class.
 23        /// </summary>
 024        public Identity()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the Identity class.
 31        /// </summary>
 32        /// <param name="type">The identity type. Possible values include:
 33        /// 'None', 'SystemAssigned'</param>
 34        /// <param name="principalId">The principal ID of resource
 35        /// identity.</param>
 36        /// <param name="tenantId">The tenant ID of resource.</param>
 037        public Identity(IdentityType type, string principalId = default(string), string tenantId = default(string))
 38        {
 039            PrincipalId = principalId;
 040            TenantId = tenantId;
 041            Type = type;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets the principal ID of resource identity.
 52        /// </summary>
 53        [JsonProperty(PropertyName = "principalId")]
 054        public string PrincipalId { get; private set; }
 55
 56        /// <summary>
 57        /// Gets the tenant ID of resource.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "tenantId")]
 060        public string TenantId { get; private set; }
 61
 62        /// <summary>
 63        /// Gets or sets the identity type. Possible values include: 'None',
 64        /// 'SystemAssigned'
 65        /// </summary>
 66        [JsonProperty(PropertyName = "type")]
 067        public IdentityType Type { get; set; }
 68
 69        /// <summary>
 70        /// Validate the object.
 71        /// </summary>
 72        /// <exception cref="Rest.ValidationException">
 73        /// Thrown if validation fails
 74        /// </exception>
 75        public virtual void Validate()
 76        {
 077        }
 78    }
 79}