< Summary

Class:Microsoft.Azure.Search.Models.KeyPhraseExtractionSkill
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\KeyPhraseExtractionSkill.cs
Covered lines:10
Uncovered lines:0
Coverable lines:10
Total lines:98
Line coverage:100% (10 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-100%100%
get_DefaultLanguageCode()-100%100%
get_MaxKeyPhraseCount()-100%100%
Validate()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\KeyPhraseExtractionSkill.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.Search.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// A skill that uses text analytics for key phrase extraction.
 20    /// <see
 21    /// href="https://docs.microsoft.com/azure/search/cognitive-search-skill-keyphrases"
 22    /// />
 23    /// </summary>
 24    [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.KeyPhraseExtractionSkill")]
 25    public partial class KeyPhraseExtractionSkill : Skill
 26    {
 27        /// <summary>
 28        /// Initializes a new instance of the KeyPhraseExtractionSkill class.
 29        /// </summary>
 1030        public KeyPhraseExtractionSkill()
 31        {
 32            CustomInit();
 1033        }
 34
 35        /// <summary>
 36        /// Initializes a new instance of the KeyPhraseExtractionSkill class.
 37        /// </summary>
 38        /// <param name="inputs">Inputs of the skills could be a column in the
 39        /// source data set, or the output of an upstream skill.</param>
 40        /// <param name="outputs">The output of a skill is either a field in a
 41        /// search index, or a value that can be consumed as an input by
 42        /// another skill.</param>
 43        /// <param name="name">The name of the skill which uniquely identifies
 44        /// it within the skillset. A skill with no name defined will be given
 45        /// a default name of its 1-based index in the skills array, prefixed
 46        /// with the character '#'.</param>
 47        /// <param name="description">The description of the skill which
 48        /// describes the inputs, outputs, and usage of the skill.</param>
 49        /// <param name="context">Represents the level at which operations take
 50        /// place, such as the document root or document content (for example,
 51        /// /document or /document/content). The default is /document.</param>
 52        /// <param name="defaultLanguageCode">A value indicating which language
 53        /// code to use. Default is en. Possible values include: 'da', 'nl',
 54        /// 'en', 'fi', 'fr', 'de', 'it', 'ja', 'ko', 'no', 'pl', 'pt-PT',
 55        /// 'pt-BR', 'ru', 'es', 'sv'</param>
 56        /// <param name="maxKeyPhraseCount">A number indicating how many key
 57        /// phrases to return. If absent, all identified key phrases will be
 58        /// returned.</param>
 59        public KeyPhraseExtractionSkill(IList<InputFieldMappingEntry> inputs, IList<OutputFieldMappingEntry> outputs, st
 1060            : base(inputs, outputs, name, description, context)
 61        {
 1062            DefaultLanguageCode = defaultLanguageCode;
 1063            MaxKeyPhraseCount = maxKeyPhraseCount;
 64            CustomInit();
 1065        }
 66
 67        /// <summary>
 68        /// An initialization method that performs custom operations like setting defaults
 69        /// </summary>
 70        partial void CustomInit();
 71
 72        /// <summary>
 73        /// Gets or sets a value indicating which language code to use. Default
 74        /// is en. Possible values include: 'da', 'nl', 'en', 'fi', 'fr', 'de',
 75        /// 'it', 'ja', 'ko', 'no', 'pl', 'pt-PT', 'pt-BR', 'ru', 'es', 'sv'
 76        /// </summary>
 77        [JsonProperty(PropertyName = "defaultLanguageCode")]
 5878        public KeyPhraseExtractionSkillLanguage? DefaultLanguageCode { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets a number indicating how many key phrases to return. If
 82        /// absent, all identified key phrases will be returned.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "maxKeyPhraseCount")]
 5085        public int? MaxKeyPhraseCount { get; set; }
 86
 87        /// <summary>
 88        /// Validate the object.
 89        /// </summary>
 90        /// <exception cref="Rest.ValidationException">
 91        /// Thrown if validation fails
 92        /// </exception>
 93        public override void Validate()
 94        {
 1095            base.Validate();
 1096        }
 97    }
 98}