< Summary

Class:Microsoft.Azure.OperationalInsights.Models.QueryBody
Assembly:Microsoft.Azure.OperationalInsights
File(s):C:\Git\azure-sdk-for-net\sdk\operationalinsights\Microsoft.Azure.OperationalInsights\src\Generated\Models\QueryBody.cs
Covered lines:5
Uncovered lines:8
Coverable lines:13
Total lines:86
Line coverage:38.4% (5 of 13)
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_Query()-100%100%
get_Timespan()-100%100%
get_Workspaces()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\operationalinsights\Microsoft.Azure.OperationalInsights\src\Generated\Models\QueryBody.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.OperationalInsights.Models
 8{
 9    using Microsoft.Rest;
 10    using Newtonsoft.Json;
 11    using System.Collections;
 12    using System.Collections.Generic;
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// The Analytics query. Learn more about the [Analytics query
 17    /// syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/)
 18    /// </summary>
 19    public partial class QueryBody
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the QueryBody class.
 23        /// </summary>
 824        public QueryBody()
 25        {
 26            CustomInit();
 827        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the QueryBody class.
 31        /// </summary>
 32        /// <param name="query">The query to execute.</param>
 33        /// <param name="timespan">Optional. The timespan over which to query
 34        /// data. This is an ISO8601 time period value.  This timespan is
 35        /// applied in addition to any that are specified in the query
 36        /// expression.</param>
 37        /// <param name="workspaces">A list of workspaces that are included in
 38        /// the query.</param>
 039        public QueryBody(string query, System.TimeSpan? timespan = default(System.TimeSpan?), IList<string> workspaces =
 40        {
 041            Query = query;
 042            Timespan = timespan;
 043            Workspaces = workspaces;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets or sets the query to execute.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "query")]
 1656        public string Query { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets optional. The timespan over which to query data. This
 60        /// is an ISO8601 time period value.  This timespan is applied in
 61        /// addition to any that are specified in the query expression.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "timespan")]
 1664        public System.TimeSpan? Timespan { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets a list of workspaces that are included in the query.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "workspaces")]
 1670        public IList<string> Workspaces { get; set; }
 71
 72        /// <summary>
 73        /// Validate the object.
 74        /// </summary>
 75        /// <exception cref="ValidationException">
 76        /// Thrown if validation fails
 77        /// </exception>
 78        public virtual void Validate()
 79        {
 080            if (Query == null)
 81            {
 082                throw new ValidationException(ValidationRules.CannotBeNull, "Query");
 83            }
 084        }
 85    }
 86}