Show / Hide Table of Contents

Class FailedMetricRecord

The record of a single metric object that failed input validation and the reason for the failure.

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

Properties

Message

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

An error message indicating the reason that the indicated metric object failed input validation.

Remarks

Required

MetricData

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

Identifier of a metric object that failed input validation.

Remarks

Required

In this article
Back to top