< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_NextRunTime()-100%100%
get_RecentJob()-100%100%
get_EndTime()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\JobScheduleExecutionInformation.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 Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Contains information about Jobs that have been and will be run under a
 18    /// Job Schedule.
 19    /// </summary>
 20    public partial class JobScheduleExecutionInformation
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the JobScheduleExecutionInformation
 24        /// class.
 25        /// </summary>
 50026        public JobScheduleExecutionInformation()
 27        {
 28            CustomInit();
 50029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the JobScheduleExecutionInformation
 33        /// class.
 34        /// </summary>
 35        /// <param name="nextRunTime">The next time at which a Job will be
 36        /// created under this schedule.</param>
 37        /// <param name="recentJob">Information about the most recent Job under
 38        /// the Job Schedule.</param>
 39        /// <param name="endTime">The time at which the schedule ended.</param>
 040        public JobScheduleExecutionInformation(System.DateTime? nextRunTime = default(System.DateTime?), RecentJob recen
 41        {
 042            NextRunTime = nextRunTime;
 043            RecentJob = recentJob;
 044            EndTime = endTime;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets or sets the next time at which a Job will be created under
 55        /// this schedule.
 56        /// </summary>
 57        /// <remarks>
 58        /// This property is meaningful only if the schedule is in the active
 59        /// state when the time comes around. For example, if the schedule is
 60        /// disabled, no Job will be created at nextRunTime unless the Job is
 61        /// enabled before then.
 62        /// </remarks>
 63        [JsonProperty(PropertyName = "nextRunTime")]
 122864        public System.DateTime? NextRunTime { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets information about the most recent Job under the Job
 68        /// Schedule.
 69        /// </summary>
 70        /// <remarks>
 71        /// This property is present only if the at least one Job has run under
 72        /// the schedule.
 73        /// </remarks>
 74        [JsonProperty(PropertyName = "recentJob")]
 125675        public RecentJob RecentJob { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets the time at which the schedule ended.
 79        /// </summary>
 80        /// <remarks>
 81        /// This property is set only if the Job Schedule is in the completed
 82        /// state.
 83        /// </remarks>
 84        [JsonProperty(PropertyName = "endTime")]
 125485        public System.DateTime? EndTime { get; set; }
 86
 87    }
 88}