| | | 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 | | |
| | | 11 | | namespace 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> |
| | 1 | 26 | | public MachineLearningServicesRunStatusChangedEventData() |
| | | 27 | | { |
| | | 28 | | CustomInit(); |
| | 1 | 29 | | } |
| | | 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> |
| | 0 | 47 | | public MachineLearningServicesRunStatusChangedEventData(string experimentId = default(string), string experiment |
| | | 48 | | { |
| | 0 | 49 | | ExperimentId = experimentId; |
| | 0 | 50 | | ExperimentName = experimentName; |
| | 0 | 51 | | RunId = runId; |
| | 0 | 52 | | RunType = runType; |
| | 0 | 53 | | RunTags = runTags; |
| | 0 | 54 | | RunProperties = runProperties; |
| | 0 | 55 | | RunStatus = runStatus; |
| | | 56 | | CustomInit(); |
| | 0 | 57 | | } |
| | | 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")] |
| | 0 | 69 | | 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")] |
| | 2 | 76 | | 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")] |
| | 2 | 82 | | 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")] |
| | 2 | 88 | | 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")] |
| | 2 | 94 | | 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")] |
| | 2 | 100 | | 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")] |
| | 2 | 106 | | public string RunStatus { get; set; } |
| | | 107 | | |
| | | 108 | | } |
| | | 109 | | } |