AssetAggregation

class oci.cloud_bridge.models.AssetAggregation(**kwargs)

Bases: object

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

Methods

__init__(**kwargs) Initializes a new AssetAggregation object with values from keyword arguments.

Attributes

aggregated_property [Required] Gets the aggregated_property of this AssetAggregation.
count Gets the count of this AssetAggregation.
dimensions Gets the dimensions of this AssetAggregation.
max Gets the max of this AssetAggregation.
mean Gets the mean of this AssetAggregation.
min Gets the min of this AssetAggregation.
sum Gets the sum of this AssetAggregation.
__init__(**kwargs)

Initializes a new AssetAggregation object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • dimensions (dict(str, str)) – The value to assign to the dimensions property of this AssetAggregation.
  • count (int) – The value to assign to the count property of this AssetAggregation.
  • max (float) – The value to assign to the max property of this AssetAggregation.
  • mean (float) – The value to assign to the mean property of this AssetAggregation.
  • min (float) – The value to assign to the min property of this AssetAggregation.
  • sum (float) – The value to assign to the sum property of this AssetAggregation.
  • aggregated_property (str) – The value to assign to the aggregated_property property of this AssetAggregation.
aggregated_property

[Required] Gets the aggregated_property of this AssetAggregation. Aggregated property.

Returns:The aggregated_property of this AssetAggregation.
Return type:str
count

Gets the count of this AssetAggregation. Returns the total number of observations from the group of assets.

Returns:The count of this AssetAggregation.
Return type:int
dimensions

Gets the dimensions of this AssetAggregation. The dimensions along which assets can be aggregated for analytics.

Returns:The dimensions of this AssetAggregation.
Return type:dict(str, str)
max

Gets the max of this AssetAggregation. Returns the highest value from all the assets.

Returns:The max of this AssetAggregation.
Return type:float
mean

Gets the mean of this AssetAggregation. Returns the value of sum divided by count from the group of assets.

Returns:The mean of this AssetAggregation.
Return type:float
min

Gets the min of this AssetAggregation. Returns the lowest value from the group of assets.

Returns:The min of this AssetAggregation.
Return type:float
sum

Gets the sum of this AssetAggregation. Returns all values added together from the group of assets.

Returns:The sum of this AssetAggregation.
Return type:float