Show / Hide Table of Contents

Class MetricError

Metric error content.

Inheritance
object
MetricError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DblmService.Models
Assembly: OCI.DotNetSDK.Dblm.dll
Syntax
public class MetricError

Properties

ContentType

Declaration
[Required(ErrorMessage = "ContentType is required.")]
[JsonProperty(PropertyName = "contentType")]
public string ContentType { get; set; }
Property Value
Type Description
string

Content type

Remarks

Required

Data

Declaration
[Required(ErrorMessage = "Data is required.")]
[JsonProperty(PropertyName = "data")]
public string Data { get; set; }
Property Value
Type Description
string

Data

Remarks

Required

ErrorType

Declaration
[Required(ErrorMessage = "ErrorType is required.")]
[JsonProperty(PropertyName = "errorType")]
public string ErrorType { get; set; }
Property Value
Type Description
string

Error type

Remarks

Required

Level

Declaration
[Required(ErrorMessage = "Level is required.")]
[JsonProperty(PropertyName = "level")]
public string Level { get; set; }
Property Value
Type Description
string

Level

Remarks

Required

Subject

Declaration
[Required(ErrorMessage = "Subject is required.")]
[JsonProperty(PropertyName = "subject")]
public string Subject { get; set; }
Property Value
Type Description
string

Subject

Remarks

Required

TimeGenerated

Declaration
[Required(ErrorMessage = "TimeGenerated is required.")]
[JsonProperty(PropertyName = "timeGenerated")]
public DateTime? TimeGenerated { get; set; }
Property Value
Type Description
DateTime?

Time the error record was generated

Remarks

Required

In this article
Back to top