< Summary

Class:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models.RegexEntityExtractor
Assembly:Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\RegexEntityExtractor.cs
Covered lines:5
Uncovered lines:14
Coverable lines:19
Total lines:116
Line coverage:26.3% (5 of 19)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_Name()-100%100%
get_TypeId()-0%100%
get_ReadableType()-0%100%
get_Roles()-100%100%
get_RegexPattern()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Language.LUIS.Authoring\src\Generated\Models\RegexEntityExtractor.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.Language.LUIS.Authoring.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    /// Regular Expression Entity Extractor.
 21    /// </summary>
 22    public partial class RegexEntityExtractor
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the RegexEntityExtractor class.
 26        /// </summary>
 327        public RegexEntityExtractor()
 28        {
 29            CustomInit();
 330        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the RegexEntityExtractor class.
 34        /// </summary>
 35        /// <param name="id">The ID of the Entity Model.</param>
 36        /// <param name="readableType">Possible values include: 'Entity
 37        /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity
 38        /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite
 39        /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity
 40        /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor',
 41        /// 'Closed List Entity Extractor', 'Regex Entity Extractor'</param>
 42        /// <param name="name">Name of the Entity Model.</param>
 43        /// <param name="typeId">The type ID of the Entity Model.</param>
 44        /// <param name="regexPattern">The Regular Expression entity
 45        /// pattern.</param>
 046        public RegexEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId = de
 47        {
 048            Id = id;
 049            Name = name;
 050            TypeId = typeId;
 051            ReadableType = readableType;
 052            Roles = roles;
 053            RegexPattern = regexPattern;
 54            CustomInit();
 055        }
 56
 57        /// <summary>
 58        /// An initialization method that performs custom operations like setting defaults
 59        /// </summary>
 60        partial void CustomInit();
 61
 62        /// <summary>
 63        /// Gets or sets the ID of the Entity Model.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "id")]
 066        public System.Guid Id { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets name of the Entity Model.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "name")]
 572        public string Name { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets the type ID of the Entity Model.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "typeId")]
 078        public int? TypeId { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets possible values include: 'Entity Extractor', 'Child
 82        /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical
 83        /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity
 84        /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier',
 85        /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor',
 86        /// 'Regex Entity Extractor'
 87        /// </summary>
 88        [JsonProperty(PropertyName = "readableType")]
 089        public string ReadableType { get; set; }
 90
 91        /// <summary>
 92        /// </summary>
 93        [JsonProperty(PropertyName = "roles")]
 694        public IList<EntityRole> Roles { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets the Regular Expression entity pattern.
 98        /// </summary>
 99        [JsonProperty(PropertyName = "regexPattern")]
 5100        public string RegexPattern { get; set; }
 101
 102        /// <summary>
 103        /// Validate the object.
 104        /// </summary>
 105        /// <exception cref="ValidationException">
 106        /// Thrown if validation fails
 107        /// </exception>
 108        public virtual void Validate()
 109        {
 0110            if (ReadableType == null)
 111            {
 0112                throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType");
 113            }
 0114        }
 115    }
 116}