ScalingConfiguration

class oci.data_science.models.ScalingConfiguration(**kwargs)

Bases: object

Scaling configuration for the metric expression rule.

Attributes

SCALING_CONFIGURATION_TYPE_QUERY A constant which can be used with the scaling_configuration_type property of a ScalingConfiguration.
SCALING_CONFIGURATION_TYPE_THRESHOLD A constant which can be used with the scaling_configuration_type property of a ScalingConfiguration.
instance_count_adjustment Gets the instance_count_adjustment of this ScalingConfiguration.
pending_duration Gets the pending_duration of this ScalingConfiguration.
scaling_configuration_type [Required] Gets the scaling_configuration_type of this ScalingConfiguration.

Methods

__init__(**kwargs) Initializes a new ScalingConfiguration 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.
SCALING_CONFIGURATION_TYPE_QUERY = 'QUERY'

A constant which can be used with the scaling_configuration_type property of a ScalingConfiguration. This constant has a value of “QUERY”

SCALING_CONFIGURATION_TYPE_THRESHOLD = 'THRESHOLD'

A constant which can be used with the scaling_configuration_type property of a ScalingConfiguration. This constant has a value of “THRESHOLD”

__init__(**kwargs)

Initializes a new ScalingConfiguration 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:
  • scaling_configuration_type (str) – The value to assign to the scaling_configuration_type property of this ScalingConfiguration. Allowed values for this property are: “THRESHOLD”, “QUERY”
  • pending_duration (str) – The value to assign to the pending_duration property of this ScalingConfiguration.
  • instance_count_adjustment (int) – The value to assign to the instance_count_adjustment property of this ScalingConfiguration.
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.

instance_count_adjustment

Gets the instance_count_adjustment of this ScalingConfiguration. The value is used for adjusting the count of instances by.

Returns:The instance_count_adjustment of this ScalingConfiguration.
Return type:int
pending_duration

Gets the pending_duration of this ScalingConfiguration. The period of time that the condition defined in the alarm must persist before the alarm state changes from “OK” to “FIRING” or vice versa. For example, a value of 5 minutes means that the alarm must persist in breaching the condition for five minutes before the alarm updates its state to “FIRING”; likewise, the alarm must persist in not breaching the condition for five minutes before the alarm updates its state to “OK.”

The duration is specified as a string in ISO 8601 format (PT10M for ten minutes or PT1H for one hour). Minimum: PT3M. Maximum: PT1H. Default: PT3M.

Returns:The pending_duration of this ScalingConfiguration.
Return type:str
scaling_configuration_type

[Required] Gets the scaling_configuration_type of this ScalingConfiguration. The type of scaling configuration.

Allowed values for this property are: “THRESHOLD”, “QUERY”

Returns:The scaling_configuration_type of this ScalingConfiguration.
Return type:str