| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> Schema of the Data property of an EventGridEvent for an Microsoft.MachineLearningServices.RunCompleted |
| | 11 | | public partial class MachineLearningServicesRunCompletedEventData |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of MachineLearningServicesRunCompletedEventData. </summary> |
| 0 | 14 | | internal MachineLearningServicesRunCompletedEventData() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of MachineLearningServicesRunCompletedEventData. </summary> |
| | 19 | | /// <param name="experimentId"> The ID of the experiment that the run belongs to. </param> |
| | 20 | | /// <param name="experimentName"> The name of the experiment that the run belongs to. </param> |
| | 21 | | /// <param name="runId"> The ID of the Run that was completed. </param> |
| | 22 | | /// <param name="runType"> The Run Type of the completed Run. </param> |
| | 23 | | /// <param name="runTags"> The tags of the completed Run. </param> |
| | 24 | | /// <param name="runProperties"> The properties of the completed Run. </param> |
| 2 | 25 | | internal MachineLearningServicesRunCompletedEventData(string experimentId, string experimentName, string runId, |
| | 26 | | { |
| 2 | 27 | | ExperimentId = experimentId; |
| 2 | 28 | | ExperimentName = experimentName; |
| 2 | 29 | | RunId = runId; |
| 2 | 30 | | RunType = runType; |
| 2 | 31 | | RunTags = runTags; |
| 2 | 32 | | RunProperties = runProperties; |
| 2 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <summary> The ID of the experiment that the run belongs to. </summary> |
| 0 | 36 | | public string ExperimentId { get; } |
| | 37 | | /// <summary> The name of the experiment that the run belongs to. </summary> |
| 2 | 38 | | public string ExperimentName { get; } |
| | 39 | | /// <summary> The ID of the Run that was completed. </summary> |
| 2 | 40 | | public string RunId { get; } |
| | 41 | | /// <summary> The Run Type of the completed Run. </summary> |
| 0 | 42 | | public string RunType { get; } |
| | 43 | | /// <summary> The tags of the completed Run. </summary> |
| 0 | 44 | | public object RunTags { get; } |
| | 45 | | /// <summary> The properties of the completed Run. </summary> |
| 0 | 46 | | public object RunProperties { get; } |
| | 47 | | } |
| | 48 | | } |