Show / Hide Table of Contents

Class CostAnomalyEventAnalyticSummary

A CostAnomalyEventAnalyticSummary.

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

Properties

AverageCostImpact

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

The average cost impact of the anomaly events in the given time period.

Remarks

Required

AverageCostVariance

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

The average cost variance of the anomaly events in the given time period.

Remarks

Required

Count

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

The number of cost anomaly events in the given time period.

Remarks

Required

In this article
Back to top