Show / Hide Table of Contents

Class AssetAggregation

The result of an analytics aggregation on a set of assets.

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

Properties

AggregatedProperty

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

Aggregated property.

Remarks

Required

Count

Declaration
[JsonProperty(PropertyName = "count")]
public long? Count { get; set; }
Property Value
Type Description
long?

Returns the total number of observations from the group of assets.

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, string> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, string>

The dimensions along which assets can be aggregated for analytics.

Max

Declaration
[JsonProperty(PropertyName = "max")]
public double Max { get; set; }
Property Value
Type Description
double

Returns the highest value from all the assets.

Mean

Declaration
[JsonProperty(PropertyName = "mean")]
public double Mean { get; set; }
Property Value
Type Description
double

Returns the value of sum divided by count from the group of assets.

Min

Declaration
[JsonProperty(PropertyName = "min")]
public double Min { get; set; }
Property Value
Type Description
double

Returns the lowest value from the group of assets.

Sum

Declaration
[JsonProperty(PropertyName = "sum")]
public double Sum { get; set; }
Property Value
Type Description
double

Returns all values added together from the group of assets.

In this article
Back to top