< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.JobListPreparationAndReleaseTaskStatusOptions
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\JobListPreparationAndReleaseTaskStatusOptions.cs
Covered lines:4
Uncovered lines:14
Coverable lines:18
Total lines:124
Line coverage:22.2% (4 of 18)
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_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\JobListPreparationAndReleaseTaskStatusOptions.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 ListPreparationAndReleaseTaskStatus
 20    /// operation.
 21    /// </summary>
 22    public partial class JobListPreparationAndReleaseTaskStatusOptions
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the
 26        /// JobListPreparationAndReleaseTaskStatusOptions class.
 27        /// </summary>
 228        public JobListPreparationAndReleaseTaskStatusOptions()
 29        {
 30            CustomInit();
 231        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the
 35        /// JobListPreparationAndReleaseTaskStatusOptions class.
 36        /// </summary>
 37        /// <param name="filter">An OData $filter clause. For more information
 38        /// on constructing this filter, see
 39        /// https://docs.microsoft.com/en-us/rest/api/batchservice/odata-filters-in-batch#list-job-preparation-and-relea
 40        /// <param name="select">An OData $select clause.</param>
 41        /// <param name="maxResults">The maximum number of items to return in
 42        /// the response. A maximum of 1000 Tasks can be returned.</param>
 43        /// <param name="timeout">The maximum time that the server can spend
 44        /// processing the request, in seconds. The default is 30
 45        /// seconds.</param>
 46        /// <param name="clientRequestId">The caller-generated request
 47        /// identity, in the form of a GUID with no decoration such as curly
 48        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 49        /// <param name="returnClientRequestId">Whether the server should
 50        /// return the client-request-id in the response.</param>
 51        /// <param name="ocpDate">The time the request was issued. Client
 52        /// libraries typically set this to the current system clock time; set
 53        /// it explicitly if you are calling the REST API directly.</param>
 054        public JobListPreparationAndReleaseTaskStatusOptions(string filter = default(string), string select = default(st
 55        {
 056            Filter = filter;
 057            Select = select;
 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-preparation-and-relea
 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 the maximum number of items to return in the response.
 87        /// A maximum of 1000 Tasks can be returned.
 88        /// </summary>
 89        [Newtonsoft.Json.JsonIgnore]
 090        public int? MaxResults { get; set; }
 91
 92        /// <summary>
 93        /// Gets or sets the maximum time that the server can spend processing
 94        /// the request, in seconds. The default is 30 seconds.
 95        /// </summary>
 96        [Newtonsoft.Json.JsonIgnore]
 097        public int? Timeout { get; set; }
 98
 99        /// <summary>
 100        /// Gets or sets the caller-generated request identity, in the form of
 101        /// a GUID with no decoration such as curly braces, e.g.
 102        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 103        /// </summary>
 104        [Newtonsoft.Json.JsonIgnore]
 0105        public System.Guid? ClientRequestId { get; set; }
 106
 107        /// <summary>
 108        /// Gets or sets whether the server should return the client-request-id
 109        /// in the response.
 110        /// </summary>
 111        [Newtonsoft.Json.JsonIgnore]
 0112        public bool? ReturnClientRequestId { get; set; }
 113
 114        /// <summary>
 115        /// Gets or sets the time the request was issued. Client libraries
 116        /// typically set this to the current system clock time; set it
 117        /// explicitly if you are calling the REST API directly.
 118        /// </summary>
 119        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 120        [Newtonsoft.Json.JsonIgnore]
 0121        public System.DateTime? OcpDate { get; set; }
 122
 123    }
 124}