< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.QueryBody
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\QueryBody.cs
Covered lines:0
Uncovered lines:13
Coverable lines:13
Total lines:91
Line coverage:0% (0 of 13)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Query()-0%100%
get_Timespan()-0%100%
get_Applications()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\QueryBody.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.ApplicationInsights.Query.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// The Analytics query. Learn more about the [Analytics query
 21    /// syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/)
 22    /// </summary>
 23    public partial class QueryBody
 24    {
 25        /// <summary>
 26        /// Initializes a new instance of the QueryBody class.
 27        /// </summary>
 028        public QueryBody()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the QueryBody class.
 35        /// </summary>
 36        /// <param name="query">The query to execute.</param>
 37        /// <param name="timespan">Optional. The timespan over which to query
 38        /// data. This is an ISO8601 time period value.  This timespan is
 39        /// applied in addition to any that are specified in the query
 40        /// expression.</param>
 41        /// <param name="applications">A list of Application IDs for
 42        /// cross-application queries.</param>
 043        public QueryBody(string query, string timespan = default(string), IList<string> applications = default(IList<str
 44        {
 045            Query = query;
 046            Timespan = timespan;
 047            Applications = applications;
 48            CustomInit();
 049        }
 50
 51        /// <summary>
 52        /// An initialization method that performs custom operations like setting defaults
 53        /// </summary>
 54        partial void CustomInit();
 55
 56        /// <summary>
 57        /// Gets or sets the query to execute.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "query")]
 060        public string Query { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets optional. The timespan over which to query data. This
 64        /// is an ISO8601 time period value.  This timespan is applied in
 65        /// addition to any that are specified in the query expression.
 66        /// </summary>
 67        [JsonProperty(PropertyName = "timespan")]
 068        public string Timespan { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets a list of Application IDs for cross-application
 72        /// queries.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "applications")]
 075        public IList<string> Applications { get; set; }
 76
 77        /// <summary>
 78        /// Validate the object.
 79        /// </summary>
 80        /// <exception cref="ValidationException">
 81        /// Thrown if validation fails
 82        /// </exception>
 83        public virtual void Validate()
 84        {
 085            if (Query == null)
 86            {
 087                throw new ValidationException(ValidationRules.CannotBeNull, "Query");
 88            }
 089        }
 90    }
 91}