MetricBasedVerticalScalingPolicyDetails¶
- 
class oci.bds.models.MetricBasedVerticalScalingPolicyDetails(**kwargs)¶
- Bases: - oci.bds.models.auto_scale_policy_details.AutoScalePolicyDetails- Details of a metric based vertical autoscaling policy. - In a metric-based autoscaling policy, an autoscaling action is triggered when a performance metric exceeds a threshold. - Attributes - ACTION_TYPE_HORIZONTAL_SCALING- str(object=’’) -> str - ACTION_TYPE_VERTICAL_SCALING- str(object=’’) -> str - POLICY_TYPE_METRIC_BASED_HORIZONTAL_SCALING_POLICY- str(object=’’) -> str - POLICY_TYPE_METRIC_BASED_VERTICAL_SCALING_POLICY- str(object=’’) -> str - POLICY_TYPE_SCHEDULE_BASED_HORIZONTAL_SCALING_POLICY- str(object=’’) -> str - POLICY_TYPE_SCHEDULE_BASED_VERTICAL_SCALING_POLICY- str(object=’’) -> str - TRIGGER_TYPE_METRIC_BASED- str(object=’’) -> str - TRIGGER_TYPE_SCHEDULE_BASED- str(object=’’) -> str - action_type- [Required] Gets the action_type of this AutoScalePolicyDetails. - policy_type- [Required] Gets the policy_type of this AutoScalePolicyDetails. - scale_down_config- Gets the scale_down_config of this MetricBasedVerticalScalingPolicyDetails. - scale_up_config- Gets the scale_up_config of this MetricBasedVerticalScalingPolicyDetails. - trigger_type- [Required] Gets the trigger_type of this AutoScalePolicyDetails. - Methods - __init__(**kwargs)- Initializes a new MetricBasedVerticalScalingPolicyDetails 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. - 
ACTION_TYPE_HORIZONTAL_SCALING= 'HORIZONTAL_SCALING'¶
 - 
ACTION_TYPE_VERTICAL_SCALING= 'VERTICAL_SCALING'¶
 - 
POLICY_TYPE_METRIC_BASED_HORIZONTAL_SCALING_POLICY= 'METRIC_BASED_HORIZONTAL_SCALING_POLICY'¶
 - 
POLICY_TYPE_METRIC_BASED_VERTICAL_SCALING_POLICY= 'METRIC_BASED_VERTICAL_SCALING_POLICY'¶
 - 
POLICY_TYPE_SCHEDULE_BASED_HORIZONTAL_SCALING_POLICY= 'SCHEDULE_BASED_HORIZONTAL_SCALING_POLICY'¶
 - 
POLICY_TYPE_SCHEDULE_BASED_VERTICAL_SCALING_POLICY= 'SCHEDULE_BASED_VERTICAL_SCALING_POLICY'¶
 - 
TRIGGER_TYPE_METRIC_BASED= 'METRIC_BASED'¶
 - 
TRIGGER_TYPE_SCHEDULE_BASED= 'SCHEDULE_BASED'¶
 - 
__init__(**kwargs)¶
- Initializes a new MetricBasedVerticalScalingPolicyDetails object with values from keyword arguments. The default value of the - policy_typeattribute of this class is- METRIC_BASED_VERTICAL_SCALING_POLICYand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):- Parameters: - policy_type (str) – The value to assign to the policy_type property of this MetricBasedVerticalScalingPolicyDetails. Allowed values for this property are: “METRIC_BASED_VERTICAL_SCALING_POLICY”, “METRIC_BASED_HORIZONTAL_SCALING_POLICY”, “SCHEDULE_BASED_VERTICAL_SCALING_POLICY”, “SCHEDULE_BASED_HORIZONTAL_SCALING_POLICY”
- trigger_type (str) – The value to assign to the trigger_type property of this MetricBasedVerticalScalingPolicyDetails. Allowed values for this property are: “METRIC_BASED”, “SCHEDULE_BASED”
- action_type (str) – The value to assign to the action_type property of this MetricBasedVerticalScalingPolicyDetails. Allowed values for this property are: “VERTICAL_SCALING”, “HORIZONTAL_SCALING”
- scale_up_config (oci.bds.models.MetricBasedVerticalScaleUpConfig) – The value to assign to the scale_up_config property of this MetricBasedVerticalScalingPolicyDetails.
- scale_down_config (oci.bds.models.MetricBasedVerticalScaleDownConfig) – The value to assign to the scale_down_config property of this MetricBasedVerticalScalingPolicyDetails.
 
 - 
action_type¶
- [Required] Gets the action_type of this AutoScalePolicyDetails. The type of autoscaling action to take. - Allowed values for this property are: “VERTICAL_SCALING”, “HORIZONTAL_SCALING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The action_type of this AutoScalePolicyDetails. - Return type: - str 
 - 
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. 
 - 
policy_type¶
- [Required] Gets the policy_type of this AutoScalePolicyDetails. Type of autoscaling policy. - Allowed values for this property are: “METRIC_BASED_VERTICAL_SCALING_POLICY”, “METRIC_BASED_HORIZONTAL_SCALING_POLICY”, “SCHEDULE_BASED_VERTICAL_SCALING_POLICY”, “SCHEDULE_BASED_HORIZONTAL_SCALING_POLICY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The policy_type of this AutoScalePolicyDetails. - Return type: - str 
 - 
scale_down_config¶
- Gets the scale_down_config of this MetricBasedVerticalScalingPolicyDetails. - Returns: - The scale_down_config of this MetricBasedVerticalScalingPolicyDetails. - Return type: - oci.bds.models.MetricBasedVerticalScaleDownConfig 
 - 
scale_up_config¶
- Gets the scale_up_config of this MetricBasedVerticalScalingPolicyDetails. - Returns: - The scale_up_config of this MetricBasedVerticalScalingPolicyDetails. - Return type: - oci.bds.models.MetricBasedVerticalScaleUpConfig 
 - 
trigger_type¶
- [Required] Gets the trigger_type of this AutoScalePolicyDetails. The type of autoscaling trigger. - Allowed values for this property are: “METRIC_BASED”, “SCHEDULE_BASED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The trigger_type of this AutoScalePolicyDetails. - Return type: - str 
 
-