Show / Hide Table of Contents

Class PostMetricDataRequest

Inheritance
object
PostMetricDataRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MonitoringService.Requests
Assembly: OCI.DotNetSDK.Monitoring.dll
Syntax
public class PostMetricDataRequest : IOciRequest
Examples

Click here to see an example of how to use PostMetricData request.

Properties

ContentEncoding

Declaration
[HttpConverter(TargetEnum.Header, "content-encoding")]
public string ContentEncoding { get; set; }
Property Value
Type Description
string

The optional Content-Encoding header that defines the content encodings that were applied to the payload.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Customer part of the request identifier token. If you need to contact Oracle about a particular request, please provide the complete request ID.

PostMetricDataDetails

Declaration
[Required(ErrorMessage = "PostMetricDataDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public PostMetricDataDetails PostMetricDataDetails { get; set; }
Property Value
Type Description
PostMetricDataDetails

An array of metric objects containing raw metric data points to be posted to the Monitoring service.

Remarks

Required

Implements

IOciRequest
In this article
Back to top