Show / Hide Table of Contents

Class SummarizeMetricsDataRequest

Inheritance
object
SummarizeMetricsDataRequest
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 SummarizeMetricsDataRequest : IOciRequest
Examples

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

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment containing the resources monitored by the metric that you are searching for. Use tenancyId to search in the root compartment.
Example: ocid1.compartment.oc1..exampleuniqueID

Remarks

Required

CompartmentIdInSubtree

Declaration
[HttpConverter(TargetEnum.Query, "compartmentIdInSubtree")]
public bool? CompartmentIdInSubtree { get; set; }
Property Value
Type Description
bool?

When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.

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.

SummarizeMetricsDataDetails

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

The dimensions used to filter for metrics.

Remarks

Required

Implements

IOciRequest
In this article
Back to top