< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.PoolListUsageMetricsOptions
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\PoolListUsageMetricsOptions.cs
Covered lines:2
Uncovered lines:18
Coverable lines:20
Total lines:143
Line coverage:10% (2 of 20)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_StartTime()-0%100%
get_EndTime()-0%100%
get_Filter()-0%100%
get_MaxResults()-0%100%
get_Timeout()-0%100%
get_ClientRequestId()-0%100%
get_ReturnClientRequestId()-0%100%
get_OcpDate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\PoolListUsageMetricsOptions.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.Batch.Protocol.Models
 12{
 13    using Microsoft.Rest;
 14    using Microsoft.Rest.Serialization;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Additional parameters for ListUsageMetrics operation.
 20    /// </summary>
 21    public partial class PoolListUsageMetricsOptions
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the PoolListUsageMetricsOptions
 25        /// class.
 26        /// </summary>
 127        public PoolListUsageMetricsOptions()
 28        {
 29            CustomInit();
 130        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the PoolListUsageMetricsOptions
 34        /// class.
 35        /// </summary>
 36        /// <param name="startTime">The earliest time from which to include
 37        /// metrics. This must be at least two and a half hours before the
 38        /// current time. If not specified this defaults to the start time of
 39        /// the last aggregation interval currently available.</param>
 40        /// <param name="endTime">The latest time from which to include
 41        /// metrics. This must be at least two hours before the current time.
 42        /// If not specified this defaults to the end time of the last
 43        /// aggregation interval currently available.</param>
 44        /// <param name="filter">An OData $filter clause. For more information
 45        /// on constructing this filter, see
 46        /// https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-account-usage-metrics.</p
 47        /// <param name="maxResults">The maximum number of items to return in
 48        /// the response. A maximum of 1000 results will be returned.</param>
 49        /// <param name="timeout">The maximum time that the server can spend
 50        /// processing the request, in seconds. The default is 30
 51        /// seconds.</param>
 52        /// <param name="clientRequestId">The caller-generated request
 53        /// identity, in the form of a GUID with no decoration such as curly
 54        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 55        /// <param name="returnClientRequestId">Whether the server should
 56        /// return the client-request-id in the response.</param>
 57        /// <param name="ocpDate">The time the request was issued. Client
 58        /// libraries typically set this to the current system clock time; set
 59        /// it explicitly if you are calling the REST API directly.</param>
 060        public PoolListUsageMetricsOptions(System.DateTime? startTime = default(System.DateTime?), System.DateTime? endT
 61        {
 062            StartTime = startTime;
 063            EndTime = endTime;
 064            Filter = filter;
 065            MaxResults = maxResults;
 066            Timeout = timeout;
 067            ClientRequestId = clientRequestId;
 068            ReturnClientRequestId = returnClientRequestId;
 069            OcpDate = ocpDate;
 70            CustomInit();
 071        }
 72
 73        /// <summary>
 74        /// An initialization method that performs custom operations like setting defaults
 75        /// </summary>
 76        partial void CustomInit();
 77
 78        /// <summary>
 79        /// Gets or sets the earliest time from which to include metrics. This
 80        /// must be at least two and a half hours before the current time. If
 81        /// not specified this defaults to the start time of the last
 82        /// aggregation interval currently available.
 83        /// </summary>
 84        [Newtonsoft.Json.JsonIgnore]
 085        public System.DateTime? StartTime { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets the latest time from which to include metrics. This
 89        /// must be at least two hours before the current time. If not
 90        /// specified this defaults to the end time of the last aggregation
 91        /// interval currently available.
 92        /// </summary>
 93        [Newtonsoft.Json.JsonIgnore]
 094        public System.DateTime? EndTime { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets an OData $filter clause. For more information on
 98        /// constructing this filter, see
 99        /// https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-account-usage-metrics.
 100        /// </summary>
 101        [Newtonsoft.Json.JsonIgnore]
 0102        public string Filter { get; set; }
 103
 104        /// <summary>
 105        /// Gets or sets the maximum number of items to return in the response.
 106        /// A maximum of 1000 results will be returned.
 107        /// </summary>
 108        [Newtonsoft.Json.JsonIgnore]
 0109        public int? MaxResults { get; set; }
 110
 111        /// <summary>
 112        /// Gets or sets the maximum time that the server can spend processing
 113        /// the request, in seconds. The default is 30 seconds.
 114        /// </summary>
 115        [Newtonsoft.Json.JsonIgnore]
 0116        public int? Timeout { get; set; }
 117
 118        /// <summary>
 119        /// Gets or sets the caller-generated request identity, in the form of
 120        /// a GUID with no decoration such as curly braces, e.g.
 121        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 122        /// </summary>
 123        [Newtonsoft.Json.JsonIgnore]
 0124        public System.Guid? ClientRequestId { get; set; }
 125
 126        /// <summary>
 127        /// Gets or sets whether the server should return the client-request-id
 128        /// in the response.
 129        /// </summary>
 130        [Newtonsoft.Json.JsonIgnore]
 0131        public bool? ReturnClientRequestId { get; set; }
 132
 133        /// <summary>
 134        /// Gets or sets the time the request was issued. Client libraries
 135        /// typically set this to the current system clock time; set it
 136        /// explicitly if you are calling the REST API directly.
 137        /// </summary>
 138        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 139        [Newtonsoft.Json.JsonIgnore]
 0140        public System.DateTime? OcpDate { get; set; }
 141
 142    }
 143}