MetricExpressionRule¶
-
class
oci.data_science.models.
MetricExpressionRule
(**kwargs)¶ Bases:
object
The metric expression rule base.
Attributes
METRIC_EXPRESSION_RULE_TYPE_CUSTOM_EXPRESSION
A constant which can be used with the metric_expression_rule_type property of a MetricExpressionRule. METRIC_EXPRESSION_RULE_TYPE_PREDEFINED_EXPRESSION
A constant which can be used with the metric_expression_rule_type property of a MetricExpressionRule. metric_expression_rule_type
[Required] Gets the metric_expression_rule_type of this MetricExpressionRule. Methods
__init__
(**kwargs)Initializes a new MetricExpressionRule object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
METRIC_EXPRESSION_RULE_TYPE_CUSTOM_EXPRESSION
= 'CUSTOM_EXPRESSION'¶ A constant which can be used with the metric_expression_rule_type property of a MetricExpressionRule. This constant has a value of “CUSTOM_EXPRESSION”
-
METRIC_EXPRESSION_RULE_TYPE_PREDEFINED_EXPRESSION
= 'PREDEFINED_EXPRESSION'¶ A constant which can be used with the metric_expression_rule_type property of a MetricExpressionRule. This constant has a value of “PREDEFINED_EXPRESSION”
-
__init__
(**kwargs)¶ Initializes a new MetricExpressionRule object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: metric_expression_rule_type (str) – The value to assign to the metric_expression_rule_type property of this MetricExpressionRule. Allowed values for this property are: “PREDEFINED_EXPRESSION”, “CUSTOM_EXPRESSION”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
metric_expression_rule_type
¶ [Required] Gets the metric_expression_rule_type of this MetricExpressionRule. The metric expression for creating the alarm used to trigger autoscaling actions on the model deployment.
The following values are supported:
- PREDEFINED_EXPRESSION: An expression built using CPU or Memory metrics emitted by the Model Deployment Monitoring.
- CUSTOM_EXPRESSION: A custom Monitoring Query Language (MQL) expression.
Allowed values for this property are: “PREDEFINED_EXPRESSION”, “CUSTOM_EXPRESSION”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The metric_expression_rule_type of this MetricExpressionRule. Return type: str
-