| | 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.Collections.Generic; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.Iot.Hub.Service.Models |
| | 12 | | { |
| | 13 | | /// <summary> The ConfigurationQueriesTestResponse. </summary> |
| | 14 | | public partial class ConfigurationQueriesTestResponse |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of ConfigurationQueriesTestResponse. </summary> |
| 0 | 17 | | internal ConfigurationQueriesTestResponse() |
| | 18 | | { |
| 0 | 19 | | CustomMetricQueryErrors = new ChangeTrackingDictionary<string, string>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> Initializes a new instance of ConfigurationQueriesTestResponse. </summary> |
| | 23 | | /// <param name="targetConditionError"> The errors from running the target condition query. </param> |
| | 24 | | /// <param name="customMetricQueryErrors"> The errors from running the custom metric query. </param> |
| 0 | 25 | | internal ConfigurationQueriesTestResponse(string targetConditionError, IReadOnlyDictionary<string, string> custo |
| | 26 | | { |
| 0 | 27 | | TargetConditionError = targetConditionError; |
| 0 | 28 | | CustomMetricQueryErrors = customMetricQueryErrors; |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The errors from running the target condition query. </summary> |
| 0 | 32 | | public string TargetConditionError { get; } |
| | 33 | | /// <summary> The errors from running the custom metric query. </summary> |
| 0 | 34 | | public IReadOnlyDictionary<string, string> CustomMetricQueryErrors { get; } |
| | 35 | | } |
| | 36 | | } |