| | 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.ApplicationInsights.Query.Models |
| | 12 | | { |
| | 13 | | using Newtonsoft.Json; |
| | 14 | | using System.Collections; |
| | 15 | | using System.Collections.Generic; |
| | 16 | | using System.Linq; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// The exception info |
| | 20 | | /// </summary> |
| | 21 | | public partial class EventsExceptionInfo |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the EventsExceptionInfo class. |
| | 25 | | /// </summary> |
| 13 | 26 | | public EventsExceptionInfo() |
| | 27 | | { |
| | 28 | | CustomInit(); |
| 13 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> |
| | 32 | | /// Initializes a new instance of the EventsExceptionInfo class. |
| | 33 | | /// </summary> |
| | 34 | | /// <param name="severityLevel">The severity level of the |
| | 35 | | /// exception</param> |
| | 36 | | /// <param name="problemId">The problem ID of the exception</param> |
| | 37 | | /// <param name="handledAt">Indicates where the exception was handled |
| | 38 | | /// at</param> |
| | 39 | | /// <param name="assembly">The assembly which threw the |
| | 40 | | /// exception</param> |
| | 41 | | /// <param name="method">The method that threw the exception</param> |
| | 42 | | /// <param name="message">The message of the exception</param> |
| | 43 | | /// <param name="type">The type of the exception</param> |
| | 44 | | /// <param name="outerType">The outer type of the exception</param> |
| | 45 | | /// <param name="outerMethod">The outer method of the exception</param> |
| | 46 | | /// <param name="outerAssembly">The outer assmebly of the |
| | 47 | | /// exception</param> |
| | 48 | | /// <param name="outerMessage">The outer message of the |
| | 49 | | /// exception</param> |
| | 50 | | /// <param name="innermostType">The inner most type of the |
| | 51 | | /// exception</param> |
| | 52 | | /// <param name="innermostMessage">The inner most message of the |
| | 53 | | /// exception</param> |
| | 54 | | /// <param name="innermostMethod">The inner most method of the |
| | 55 | | /// exception</param> |
| | 56 | | /// <param name="innermostAssembly">The inner most assembly of the |
| | 57 | | /// exception</param> |
| | 58 | | /// <param name="details">The details of the exception</param> |
| 0 | 59 | | public EventsExceptionInfo(int? severityLevel = default(int?), string problemId = default(string), string handle |
| | 60 | | { |
| 0 | 61 | | SeverityLevel = severityLevel; |
| 0 | 62 | | ProblemId = problemId; |
| 0 | 63 | | HandledAt = handledAt; |
| 0 | 64 | | Assembly = assembly; |
| 0 | 65 | | Method = method; |
| 0 | 66 | | Message = message; |
| 0 | 67 | | Type = type; |
| 0 | 68 | | OuterType = outerType; |
| 0 | 69 | | OuterMethod = outerMethod; |
| 0 | 70 | | OuterAssembly = outerAssembly; |
| 0 | 71 | | OuterMessage = outerMessage; |
| 0 | 72 | | InnermostType = innermostType; |
| 0 | 73 | | InnermostMessage = innermostMessage; |
| 0 | 74 | | InnermostMethod = innermostMethod; |
| 0 | 75 | | InnermostAssembly = innermostAssembly; |
| 0 | 76 | | Details = details; |
| | 77 | | CustomInit(); |
| 0 | 78 | | } |
| | 79 | |
|
| | 80 | | /// <summary> |
| | 81 | | /// An initialization method that performs custom operations like setting defaults |
| | 82 | | /// </summary> |
| | 83 | | partial void CustomInit(); |
| | 84 | |
|
| | 85 | | /// <summary> |
| | 86 | | /// Gets or sets the severity level of the exception |
| | 87 | | /// </summary> |
| | 88 | | [JsonProperty(PropertyName = "severityLevel")] |
| 17 | 89 | | public int? SeverityLevel { get; set; } |
| | 90 | |
|
| | 91 | | /// <summary> |
| | 92 | | /// Gets or sets the problem ID of the exception |
| | 93 | | /// </summary> |
| | 94 | | [JsonProperty(PropertyName = "problemId")] |
| 28 | 95 | | public string ProblemId { get; set; } |
| | 96 | |
|
| | 97 | | /// <summary> |
| | 98 | | /// Gets or sets indicates where the exception was handled at |
| | 99 | | /// </summary> |
| | 100 | | [JsonProperty(PropertyName = "handledAt")] |
| 17 | 101 | | public string HandledAt { get; set; } |
| | 102 | |
|
| | 103 | | /// <summary> |
| | 104 | | /// Gets or sets the assembly which threw the exception |
| | 105 | | /// </summary> |
| | 106 | | [JsonProperty(PropertyName = "assembly")] |
| 28 | 107 | | public string Assembly { get; set; } |
| | 108 | |
|
| | 109 | | /// <summary> |
| | 110 | | /// Gets or sets the method that threw the exception |
| | 111 | | /// </summary> |
| | 112 | | [JsonProperty(PropertyName = "method")] |
| 17 | 113 | | public string Method { get; set; } |
| | 114 | |
|
| | 115 | | /// <summary> |
| | 116 | | /// Gets or sets the message of the exception |
| | 117 | | /// </summary> |
| | 118 | | [JsonProperty(PropertyName = "message")] |
| 17 | 119 | | public string Message { get; set; } |
| | 120 | |
|
| | 121 | | /// <summary> |
| | 122 | | /// Gets or sets the type of the exception |
| | 123 | | /// </summary> |
| | 124 | | [JsonProperty(PropertyName = "type")] |
| 28 | 125 | | public string Type { get; set; } |
| | 126 | |
|
| | 127 | | /// <summary> |
| | 128 | | /// Gets or sets the outer type of the exception |
| | 129 | | /// </summary> |
| | 130 | | [JsonProperty(PropertyName = "outerType")] |
| 17 | 131 | | public string OuterType { get; set; } |
| | 132 | |
|
| | 133 | | /// <summary> |
| | 134 | | /// Gets or sets the outer method of the exception |
| | 135 | | /// </summary> |
| | 136 | | [JsonProperty(PropertyName = "outerMethod")] |
| 17 | 137 | | public string OuterMethod { get; set; } |
| | 138 | |
|
| | 139 | | /// <summary> |
| | 140 | | /// Gets or sets the outer assmebly of the exception |
| | 141 | | /// </summary> |
| | 142 | | [JsonProperty(PropertyName = "outerAssembly")] |
| 17 | 143 | | public string OuterAssembly { get; set; } |
| | 144 | |
|
| | 145 | | /// <summary> |
| | 146 | | /// Gets or sets the outer message of the exception |
| | 147 | | /// </summary> |
| | 148 | | [JsonProperty(PropertyName = "outerMessage")] |
| 17 | 149 | | public string OuterMessage { get; set; } |
| | 150 | |
|
| | 151 | | /// <summary> |
| | 152 | | /// Gets or sets the inner most type of the exception |
| | 153 | | /// </summary> |
| | 154 | | [JsonProperty(PropertyName = "innermostType")] |
| 17 | 155 | | public string InnermostType { get; set; } |
| | 156 | |
|
| | 157 | | /// <summary> |
| | 158 | | /// Gets or sets the inner most message of the exception |
| | 159 | | /// </summary> |
| | 160 | | [JsonProperty(PropertyName = "innermostMessage")] |
| 17 | 161 | | public string InnermostMessage { get; set; } |
| | 162 | |
|
| | 163 | | /// <summary> |
| | 164 | | /// Gets or sets the inner most method of the exception |
| | 165 | | /// </summary> |
| | 166 | | [JsonProperty(PropertyName = "innermostMethod")] |
| 17 | 167 | | public string InnermostMethod { get; set; } |
| | 168 | |
|
| | 169 | | /// <summary> |
| | 170 | | /// Gets or sets the inner most assembly of the exception |
| | 171 | | /// </summary> |
| | 172 | | [JsonProperty(PropertyName = "innermostAssembly")] |
| 17 | 173 | | public string InnermostAssembly { get; set; } |
| | 174 | |
|
| | 175 | | /// <summary> |
| | 176 | | /// Gets or sets the details of the exception |
| | 177 | | /// </summary> |
| | 178 | | [JsonProperty(PropertyName = "details")] |
| 162 | 179 | | public IList<EventsExceptionDetail> Details { get; set; } |
| | 180 | |
|
| | 181 | | } |
| | 182 | | } |