< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_DocumentCount()-100%100%
get_StorageSize()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\IndexGetStatisticsResult.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.Linq;
 15
 16    /// <summary>
 17    /// Statistics for a given index. Statistics are collected periodically and
 18    /// are not guaranteed to always be up-to-date.
 19    /// </summary>
 20    public partial class IndexGetStatisticsResult
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the IndexGetStatisticsResult class.
 24        /// </summary>
 225        public IndexGetStatisticsResult()
 26        {
 27            CustomInit();
 228        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the IndexGetStatisticsResult class.
 32        /// </summary>
 33        /// <param name="documentCount">The number of documents in the
 34        /// index.</param>
 35        /// <param name="storageSize">The amount of storage in bytes consumed
 36        /// by the index.</param>
 037        public IndexGetStatisticsResult(long documentCount = default(long), long storageSize = default(long))
 38        {
 039            DocumentCount = documentCount;
 040            StorageSize = storageSize;
 41            CustomInit();
 042        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets the number of documents in the index.
 51        /// </summary>
 52        [JsonProperty(PropertyName = "documentCount")]
 453        public long DocumentCount { get; private set; }
 54
 55        /// <summary>
 56        /// Gets the amount of storage in bytes consumed by the index.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "storageSize")]
 459        public long StorageSize { get; private set; }
 60
 61    }
 62}