< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.VerifyFaceToPersonRequest
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\VerifyFaceToPersonRequest.cs
Covered lines:6
Uncovered lines:17
Coverable lines:23
Total lines:125
Line coverage:26% (6 of 23)
Covered branches:0
Total branches:12
Branch coverage:0% (0 of 12)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_FaceId()-100%100%
get_PersonGroupId()-100%100%
get_LargePersonGroupId()-100%100%
get_PersonId()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\VerifyFaceToPersonRequest.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.CognitiveServices.Vision.Face.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// Request body for face to person verification.
 19    /// </summary>
 20    public partial class VerifyFaceToPersonRequest
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the VerifyFaceToPersonRequest class.
 24        /// </summary>
 825        public VerifyFaceToPersonRequest()
 26        {
 27            CustomInit();
 828        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the VerifyFaceToPersonRequest class.
 32        /// </summary>
 33        /// <param name="faceId">FaceId of the face, comes from Face -
 34        /// Detect</param>
 35        /// <param name="personId">Specify a certain person in a person group
 36        /// or a large person group. personId is created in PersonGroup Person
 37        /// - Create or LargePersonGroup Person - Create.</param>
 38        /// <param name="personGroupId">Using existing personGroupId and
 39        /// personId for fast loading a specified person. personGroupId is
 40        /// created in PersonGroup - Create. Parameter personGroupId and
 41        /// largePersonGroupId should not be provided at the same time.</param>
 42        /// <param name="largePersonGroupId">Using existing largePersonGroupId
 43        /// and personId for fast loading a specified person.
 44        /// largePersonGroupId is created in LargePersonGroup - Create.
 45        /// Parameter personGroupId and largePersonGroupId should not be
 46        /// provided at the same time.</param>
 047        public VerifyFaceToPersonRequest(System.Guid faceId, System.Guid personId, string personGroupId = default(string
 48        {
 049            FaceId = faceId;
 050            PersonGroupId = personGroupId;
 051            LargePersonGroupId = largePersonGroupId;
 052            PersonId = personId;
 53            CustomInit();
 054        }
 55
 56        /// <summary>
 57        /// An initialization method that performs custom operations like setting defaults
 58        /// </summary>
 59        partial void CustomInit();
 60
 61        /// <summary>
 62        /// Gets or sets faceId of the face, comes from Face - Detect
 63        /// </summary>
 64        [JsonProperty(PropertyName = "faceId")]
 1665        public System.Guid FaceId { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets using existing personGroupId and personId for fast
 69        /// loading a specified person. personGroupId is created in PersonGroup
 70        /// - Create. Parameter personGroupId and largePersonGroupId should not
 71        /// be provided at the same time.
 72        /// </summary>
 73        [JsonProperty(PropertyName = "personGroupId")]
 1674        public string PersonGroupId { get; set; }
 75
 76        /// <summary>
 77        /// Gets or sets using existing largePersonGroupId and personId for
 78        /// fast loading a specified person. largePersonGroupId is created in
 79        /// LargePersonGroup - Create. Parameter personGroupId and
 80        /// largePersonGroupId should not be provided at the same time.
 81        /// </summary>
 82        [JsonProperty(PropertyName = "largePersonGroupId")]
 1683        public string LargePersonGroupId { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets specify a certain person in a person group or a large
 87        /// person group. personId is created in PersonGroup Person - Create or
 88        /// LargePersonGroup Person - Create.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "personId")]
 1691        public System.Guid PersonId { get; set; }
 92
 93        /// <summary>
 94        /// Validate the object.
 95        /// </summary>
 96        /// <exception cref="ValidationException">
 97        /// Thrown if validation fails
 98        /// </exception>
 99        public virtual void Validate()
 100        {
 0101            if (PersonGroupId != null)
 102            {
 0103                if (PersonGroupId.Length > 64)
 104                {
 0105                    throw new ValidationException(ValidationRules.MaxLength, "PersonGroupId", 64);
 106                }
 0107                if (!System.Text.RegularExpressions.Regex.IsMatch(PersonGroupId, "^[a-z0-9-_]+$"))
 108                {
 0109                    throw new ValidationException(ValidationRules.Pattern, "PersonGroupId", "^[a-z0-9-_]+$");
 110                }
 111            }
 0112            if (LargePersonGroupId != null)
 113            {
 0114                if (LargePersonGroupId.Length > 64)
 115                {
 0116                    throw new ValidationException(ValidationRules.MaxLength, "LargePersonGroupId", 64);
 117                }
 0118                if (!System.Text.RegularExpressions.Regex.IsMatch(LargePersonGroupId, "^[a-z0-9-_]+$"))
 119                {
 0120                    throw new ValidationException(ValidationRules.Pattern, "LargePersonGroupId", "^[a-z0-9-_]+$");
 121                }
 122            }
 0123        }
 124    }
 125}