< Summary

Class:Microsoft.Azure.EventGrid.Models.MachineLearningServicesRunStatusChangedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MachineLearningServicesRunStatusChangedEventData.cs
Covered lines:8
Uncovered lines:10
Coverable lines:18
Total lines:109
Line coverage:44.4% (8 of 18)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ExperimentId()-0%100%
get_ExperimentName()-100%100%
get_RunId()-100%100%
get_RunType()-100%100%
get_RunTags()-100%100%
get_RunProperties()-100%100%
get_RunStatus()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MachineLearningServicesRunStatusChangedEventData.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.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Schema of the Data property of an EventGridEvent for an
 18    /// Microsoft.MachineLearningServices.RunStatusChanged event.
 19    /// </summary>
 20    public partial class MachineLearningServicesRunStatusChangedEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the
 24        /// MachineLearningServicesRunStatusChangedEventData class.
 25        /// </summary>
 126        public MachineLearningServicesRunStatusChangedEventData()
 27        {
 28            CustomInit();
 129        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the
 33        /// MachineLearningServicesRunStatusChangedEventData class.
 34        /// </summary>
 35        /// <param name="experimentId">The ID of the experiment that the
 36        /// Machine Learning Run belongs to.</param>
 37        /// <param name="experimentName">The name of the experiment that the
 38        /// Machine Learning Run belongs to.</param>
 39        /// <param name="runId">The ID of the Machine Learning Run.</param>
 40        /// <param name="runType">The Run Type of the Machine Learning
 41        /// Run.</param>
 42        /// <param name="runTags">The tags of the Machine Learning Run.</param>
 43        /// <param name="runProperties">The properties of the Machine Learning
 44        /// Run.</param>
 45        /// <param name="runStatus">The status of the Machine Learning
 46        /// Run.</param>
 047        public MachineLearningServicesRunStatusChangedEventData(string experimentId = default(string), string experiment
 48        {
 049            ExperimentId = experimentId;
 050            ExperimentName = experimentName;
 051            RunId = runId;
 052            RunType = runType;
 053            RunTags = runTags;
 054            RunProperties = runProperties;
 055            RunStatus = runStatus;
 56            CustomInit();
 057        }
 58
 59        /// <summary>
 60        /// An initialization method that performs custom operations like setting defaults
 61        /// </summary>
 62        partial void CustomInit();
 63
 64        /// <summary>
 65        /// Gets or sets the ID of the experiment that the Machine Learning Run
 66        /// belongs to.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "experimentId")]
 069        public string ExperimentId { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets the name of the experiment that the Machine Learning
 73        /// Run belongs to.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "experimentName")]
 276        public string ExperimentName { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets the ID of the Machine Learning Run.
 80        /// </summary>
 81        [JsonProperty(PropertyName = "runId")]
 282        public string RunId { get; set; }
 83
 84        /// <summary>
 85        /// Gets or sets the Run Type of the Machine Learning Run.
 86        /// </summary>
 87        [JsonProperty(PropertyName = "runType")]
 288        public string RunType { get; set; }
 89
 90        /// <summary>
 91        /// Gets or sets the tags of the Machine Learning Run.
 92        /// </summary>
 93        [JsonProperty(PropertyName = "runTags")]
 294        public object RunTags { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets the properties of the Machine Learning Run.
 98        /// </summary>
 99        [JsonProperty(PropertyName = "runProperties")]
 2100        public object RunProperties { get; set; }
 101
 102        /// <summary>
 103        /// Gets or sets the status of the Machine Learning Run.
 104        /// </summary>
 105        [JsonProperty(PropertyName = "runStatus")]
 2106        public string RunStatus { get; set; }
 107
 108    }
 109}