< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
ToSerializedValue(...)-0%0%
ToSerializedValue(...)-0%0%
ParseIndexerExecutionStatus(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\IndexerExecutionStatus.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 Newtonsoft.Json.Converters;
 15    using System.Runtime;
 16    using System.Runtime.Serialization;
 17
 18    /// <summary>
 19    /// Defines values for IndexerExecutionStatus.
 20    /// </summary>
 21    [JsonConverter(typeof(StringEnumConverter))]
 22    public enum IndexerExecutionStatus
 23    {
 24        [EnumMember(Value = "transientFailure")]
 25        TransientFailure,
 26        [EnumMember(Value = "success")]
 27        Success,
 28        [EnumMember(Value = "inProgress")]
 29        InProgress,
 30        [EnumMember(Value = "reset")]
 31        Reset
 32    }
 33    internal static class IndexerExecutionStatusEnumExtension
 34    {
 35        internal static string ToSerializedValue(this IndexerExecutionStatus? value)
 36        {
 037            return value == null ? null : ((IndexerExecutionStatus)value).ToSerializedValue();
 38        }
 39
 40        internal static string ToSerializedValue(this IndexerExecutionStatus value)
 41        {
 42            switch( value )
 43            {
 44                case IndexerExecutionStatus.TransientFailure:
 045                    return "transientFailure";
 46                case IndexerExecutionStatus.Success:
 047                    return "success";
 48                case IndexerExecutionStatus.InProgress:
 049                    return "inProgress";
 50                case IndexerExecutionStatus.Reset:
 051                    return "reset";
 52            }
 053            return null;
 54        }
 55
 56        internal static IndexerExecutionStatus? ParseIndexerExecutionStatus(this string value)
 57        {
 58            switch( value )
 59            {
 60                case "transientFailure":
 061                    return IndexerExecutionStatus.TransientFailure;
 62                case "success":
 063                    return IndexerExecutionStatus.Success;
 64                case "inProgress":
 065                    return IndexerExecutionStatus.InProgress;
 66                case "reset":
 067                    return IndexerExecutionStatus.Reset;
 68            }
 069            return null;
 70        }
 71    }
 72}