< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.JobScheduleListOptions
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\JobScheduleListOptions.cs
Covered lines:6
Uncovered lines:14
Coverable lines:20
Total lines:130
Line coverage:30% (6 of 20)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Filter()-100%100%
get_Select()-100%100%
get_Expand()-100%100%
get_MaxResults()-0%100%
get_Timeout()-0%100%
get_ClientRequestId()-100%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\JobScheduleListOptions.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 List operation.
 20    /// </summary>
 21    public partial class JobScheduleListOptions
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the JobScheduleListOptions class.
 25        /// </summary>
 1126        public JobScheduleListOptions()
 27        {
 28            CustomInit();
 1129        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the JobScheduleListOptions class.
 33        /// </summary>
 34        /// <param name="filter">An OData $filter clause. For more information
 35        /// on constructing this filter, see
 36        /// https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-schedules.</param>
 37        /// <param name="select">An OData $select clause.</param>
 38        /// <param name="expand">An OData $expand clause.</param>
 39        /// <param name="maxResults">The maximum number of items to return in
 40        /// the response. A maximum of 1000 Job Schedules can be
 41        /// returned.</param>
 42        /// <param name="timeout">The maximum time that the server can spend
 43        /// processing the request, in seconds. The default is 30
 44        /// seconds.</param>
 45        /// <param name="clientRequestId">The caller-generated request
 46        /// identity, in the form of a GUID with no decoration such as curly
 47        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 48        /// <param name="returnClientRequestId">Whether the server should
 49        /// return the client-request-id in the response.</param>
 50        /// <param name="ocpDate">The time the request was issued. Client
 51        /// libraries typically set this to the current system clock time; set
 52        /// it explicitly if you are calling the REST API directly.</param>
 053        public JobScheduleListOptions(string filter = default(string), string select = default(string), string expand = 
 54        {
 055            Filter = filter;
 056            Select = select;
 057            Expand = expand;
 058            MaxResults = maxResults;
 059            Timeout = timeout;
 060            ClientRequestId = clientRequestId;
 061            ReturnClientRequestId = returnClientRequestId;
 062            OcpDate = ocpDate;
 63            CustomInit();
 064        }
 65
 66        /// <summary>
 67        /// An initialization method that performs custom operations like setting defaults
 68        /// </summary>
 69        partial void CustomInit();
 70
 71        /// <summary>
 72        /// Gets or sets an OData $filter clause. For more information on
 73        /// constructing this filter, see
 74        /// https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-schedules.
 75        /// </summary>
 76        [Newtonsoft.Json.JsonIgnore]
 277        public string Filter { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets an OData $select clause.
 81        /// </summary>
 82        [Newtonsoft.Json.JsonIgnore]
 283        public string Select { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets an OData $expand clause.
 87        /// </summary>
 88        [Newtonsoft.Json.JsonIgnore]
 289        public string Expand { get; set; }
 90
 91        /// <summary>
 92        /// Gets or sets the maximum number of items to return in the response.
 93        /// A maximum of 1000 Job Schedules can be returned.
 94        /// </summary>
 95        [Newtonsoft.Json.JsonIgnore]
 096        public int? MaxResults { get; set; }
 97
 98        /// <summary>
 99        /// Gets or sets the maximum time that the server can spend processing
 100        /// the request, in seconds. The default is 30 seconds.
 101        /// </summary>
 102        [Newtonsoft.Json.JsonIgnore]
 0103        public int? Timeout { get; set; }
 104
 105        /// <summary>
 106        /// Gets or sets the caller-generated request identity, in the form of
 107        /// a GUID with no decoration such as curly braces, e.g.
 108        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 109        /// </summary>
 110        [Newtonsoft.Json.JsonIgnore]
 58111        public System.Guid? ClientRequestId { get; set; }
 112
 113        /// <summary>
 114        /// Gets or sets whether the server should return the client-request-id
 115        /// in the response.
 116        /// </summary>
 117        [Newtonsoft.Json.JsonIgnore]
 0118        public bool? ReturnClientRequestId { get; set; }
 119
 120        /// <summary>
 121        /// Gets or sets the time the request was issued. Client libraries
 122        /// typically set this to the current system clock time; set it
 123        /// explicitly if you are calling the REST API directly.
 124        /// </summary>
 125        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 126        [Newtonsoft.Json.JsonIgnore]
 0127        public System.DateTime? OcpDate { get; set; }
 128
 129    }
 130}