< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Schedule()-0%100%
get_JobSpecification()-0%100%
get_Metadata()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\JobScheduleUpdateParameter.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.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The set of changes to be made to a Job Schedule.
 20    /// </summary>
 21    public partial class JobScheduleUpdateParameter
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the JobScheduleUpdateParameter class.
 25        /// </summary>
 026        public JobScheduleUpdateParameter()
 27        {
 028            JobSpecification = new JobSpecification();
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the JobScheduleUpdateParameter class.
 34        /// </summary>
 35        /// <param name="schedule">The schedule according to which Jobs will be
 36        /// created.</param>
 37        /// <param name="jobSpecification">Details of the Jobs to be created on
 38        /// this schedule.</param>
 39        /// <param name="metadata">A list of name-value pairs associated with
 40        /// the Job Schedule as metadata.</param>
 041        public JobScheduleUpdateParameter(Schedule schedule, JobSpecification jobSpecification, IList<MetadataItem> meta
 42        {
 043            Schedule = schedule;
 044            JobSpecification = jobSpecification;
 045            Metadata = metadata;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets the schedule according to which Jobs will be created.
 56        /// </summary>
 57        /// <remarks>
 58        /// If you do not specify this element, it is equivalent to passing the
 59        /// default schedule: that is, a single Job scheduled to run
 60        /// immediately.
 61        /// </remarks>
 62        [JsonProperty(PropertyName = "schedule")]
 063        public Schedule Schedule { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets details of the Jobs to be created on this schedule.
 67        /// </summary>
 68        /// <remarks>
 69        /// Updates affect only Jobs that are started after the update has
 70        /// taken place. Any currently active Job continues with the older
 71        /// specification.
 72        /// </remarks>
 73        [JsonProperty(PropertyName = "jobSpecification")]
 074        public JobSpecification JobSpecification { get; set; }
 75
 76        /// <summary>
 77        /// Gets or sets a list of name-value pairs associated with the Job
 78        /// Schedule as metadata.
 79        /// </summary>
 80        /// <remarks>
 81        /// If you do not specify this element, it takes the default value of
 82        /// an empty list; in effect, any existing metadata is deleted.
 83        /// </remarks>
 84        [JsonProperty(PropertyName = "metadata")]
 085        public IList<MetadataItem> Metadata { get; set; }
 86
 87    }
 88}