| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | 11 | | { |
| | 12 | | /// <summary> Schema of the Data property of an EventGridEvent for an Microsoft.MachineLearningServices.DatasetDrift |
| | 13 | | public partial class MachineLearningServicesDatasetDriftDetectedEventData |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of MachineLearningServicesDatasetDriftDetectedEventData. </summary> |
| 0 | 16 | | internal MachineLearningServicesDatasetDriftDetectedEventData() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of MachineLearningServicesDatasetDriftDetectedEventData. </summary> |
| | 21 | | /// <param name="dataDriftId"> The ID of the data drift monitor that triggered the event. </param> |
| | 22 | | /// <param name="dataDriftName"> The name of the data drift monitor that triggered the event. </param> |
| | 23 | | /// <param name="runId"> The ID of the Run that detected data drift. </param> |
| | 24 | | /// <param name="baseDatasetId"> The ID of the base Dataset used to detect drift. </param> |
| | 25 | | /// <param name="targetDatasetId"> The ID of the target Dataset used to detect drift. </param> |
| | 26 | | /// <param name="driftCoefficient"> The coefficient result that triggered the event. </param> |
| | 27 | | /// <param name="startTime"> The start time of the target dataset time series that resulted in drift detection. |
| | 28 | | /// <param name="endTime"> The end time of the target dataset time series that resulted in drift detection. </pa |
| 2 | 29 | | internal MachineLearningServicesDatasetDriftDetectedEventData(string dataDriftId, string dataDriftName, string r |
| | 30 | | { |
| 2 | 31 | | DataDriftId = dataDriftId; |
| 2 | 32 | | DataDriftName = dataDriftName; |
| 2 | 33 | | RunId = runId; |
| 2 | 34 | | BaseDatasetId = baseDatasetId; |
| 2 | 35 | | TargetDatasetId = targetDatasetId; |
| 2 | 36 | | DriftCoefficient = driftCoefficient; |
| 2 | 37 | | StartTime = startTime; |
| 2 | 38 | | EndTime = endTime; |
| 2 | 39 | | } |
| | 40 | |
|
| | 41 | | /// <summary> The ID of the data drift monitor that triggered the event. </summary> |
| 0 | 42 | | public string DataDriftId { get; } |
| | 43 | | /// <summary> The name of the data drift monitor that triggered the event. </summary> |
| 2 | 44 | | public string DataDriftName { get; } |
| | 45 | | /// <summary> The ID of the Run that detected data drift. </summary> |
| 0 | 46 | | public string RunId { get; } |
| | 47 | | /// <summary> The ID of the base Dataset used to detect drift. </summary> |
| 0 | 48 | | public string BaseDatasetId { get; } |
| | 49 | | /// <summary> The ID of the target Dataset used to detect drift. </summary> |
| 0 | 50 | | public string TargetDatasetId { get; } |
| | 51 | | /// <summary> The coefficient result that triggered the event. </summary> |
| 0 | 52 | | public double? DriftCoefficient { get; } |
| | 53 | | /// <summary> The start time of the target dataset time series that resulted in drift detection. </summary> |
| 0 | 54 | | public DateTimeOffset? StartTime { get; } |
| | 55 | | /// <summary> The end time of the target dataset time series that resulted in drift detection. </summary> |
| 0 | 56 | | public DateTimeOffset? EndTime { get; } |
| | 57 | | } |
| | 58 | | } |