< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\ImageAnalysisSkill.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 analyzes image files. It extracts a rich set of visual
 20    /// features based on the image content.
 21    /// <see
 22    /// href="https://docs.microsoft.com/azure/search/cognitive-search-skill-image-analysis"
 23    /// />
 24    /// </summary>
 25    [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Vision.ImageAnalysisSkill")]
 26    public partial class ImageAnalysisSkill : Skill
 27    {
 28        /// <summary>
 29        /// Initializes a new instance of the ImageAnalysisSkill class.
 30        /// </summary>
 431        public ImageAnalysisSkill()
 32        {
 33            CustomInit();
 434        }
 35
 36        /// <summary>
 37        /// Initializes a new instance of the ImageAnalysisSkill class.
 38        /// </summary>
 39        /// <param name="inputs">Inputs of the skills could be a column in the
 40        /// source data set, or the output of an upstream skill.</param>
 41        /// <param name="outputs">The output of a skill is either a field in a
 42        /// search index, or a value that can be consumed as an input by
 43        /// another skill.</param>
 44        /// <param name="name">The name of the skill which uniquely identifies
 45        /// it within the skillset. A skill with no name defined will be given
 46        /// a default name of its 1-based index in the skills array, prefixed
 47        /// with the character '#'.</param>
 48        /// <param name="description">The description of the skill which
 49        /// describes the inputs, outputs, and usage of the skill.</param>
 50        /// <param name="context">Represents the level at which operations take
 51        /// place, such as the document root or document content (for example,
 52        /// /document or /document/content). The default is /document.</param>
 53        /// <param name="defaultLanguageCode">A value indicating which language
 54        /// code to use. Default is en. Possible values include: 'en',
 55        /// 'zh'</param>
 56        /// <param name="visualFeatures">A list of visual features.</param>
 57        /// <param name="details">A string indicating which domain-specific
 58        /// details to return.</param>
 59        public ImageAnalysisSkill(IList<InputFieldMappingEntry> inputs, IList<OutputFieldMappingEntry> outputs, string n
 460            : base(inputs, outputs, name, description, context)
 61        {
 462            DefaultLanguageCode = defaultLanguageCode;
 463            VisualFeatures = visualFeatures;
 464            Details = details;
 65            CustomInit();
 466        }
 67
 68        /// <summary>
 69        /// An initialization method that performs custom operations like setting defaults
 70        /// </summary>
 71        partial void CustomInit();
 72
 73        /// <summary>
 74        /// Gets or sets a value indicating which language code to use. Default
 75        /// is en. Possible values include: 'en', 'zh'
 76        /// </summary>
 77        [JsonProperty(PropertyName = "defaultLanguageCode")]
 2278        public ImageAnalysisSkillLanguage? DefaultLanguageCode { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets a list of visual features.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "visualFeatures")]
 2284        public IList<VisualFeature> VisualFeatures { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets a string indicating which domain-specific details to
 88        /// return.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "details")]
 2291        public IList<ImageDetail> Details { get; set; }
 92
 93        /// <summary>
 94        /// Validate the object.
 95        /// </summary>
 96        /// <exception cref="Rest.ValidationException">
 97        /// Thrown if validation fails
 98        /// </exception>
 99        public override void Validate()
 100        {
 4101            base.Validate();
 4102        }
 103    }
 104}