ResponderExecutionAggregation

class oci.cloud_guard.models.ResponderExecutionAggregation(**kwargs)

Bases: object

Provides the dimensions and their corresponding count value.

Methods

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

Attributes

count [Required] Gets the count of this ResponderExecutionAggregation.
dimensions_map [Required] Gets the dimensions_map of this ResponderExecutionAggregation.
__init__(**kwargs)

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

Parameters:
  • dimensions_map (dict(str, str)) – The value to assign to the dimensions_map property of this ResponderExecutionAggregation.
  • count (int) – The value to assign to the count property of this ResponderExecutionAggregation.
count

[Required] Gets the count of this ResponderExecutionAggregation. The number of occurrences with given dimensions

Returns:The count of this ResponderExecutionAggregation.
Return type:int
dimensions_map

[Required] Gets the dimensions_map of this ResponderExecutionAggregation. The key-value pairs of dimensions and their names. The key corresponds to the Analytic Dimension(s) chosen, and the value corresponds to the value of the dimension from the data. E.g. if the Analytic Dimension chosen is “RISK_LEVEL”, then the value will be like “CRITICAL”. If the Analytic Dimensions chosen are “RISK_LEVEL” and “RESOURCE_TYPE”, then the map will have two key-value pairs of form {“RISK_LEVEL” : “CRITICAL, “RESOURCE_TYPE” : “LOAD_BALANCER”}

Returns:The dimensions_map of this ResponderExecutionAggregation.
Return type:dict(str, str)