Show / Hide Table of Contents

Class PostMetricDataResponseDetails

The response object returned from a PostMetricData operation.

Inheritance
object
PostMetricDataResponseDetails
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 PostMetricDataResponseDetails

Properties

FailedMetrics

Declaration
[JsonProperty(PropertyName = "failedMetrics")]
public List<FailedMetricRecord> FailedMetrics { get; set; }
Property Value
Type Description
List<FailedMetricRecord>

A list of records identifying metric objects that failed input validation and the reasons for the failures.

FailedMetricsCount

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

The number of metric objects that failed input validation.

Remarks

Required

In this article
Back to top