Show / Hide Table of Contents

Class CustomMetricExpressionRule

A custom Monitoring Query Language (MQL) expression for triggering an autoscaling action on the model deployment.

Inheritance
object
MetricExpressionRule
CustomMetricExpressionRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class CustomMetricExpressionRule : MetricExpressionRule

Properties

ScaleInConfiguration

Declaration
[Required(ErrorMessage = "ScaleInConfiguration is required.")]
[JsonProperty(PropertyName = "scaleInConfiguration")]
public CustomExpressionQueryScalingConfiguration ScaleInConfiguration { get; set; }
Property Value
Type Description
CustomExpressionQueryScalingConfiguration
Remarks

Required

ScaleOutConfiguration

Declaration
[Required(ErrorMessage = "ScaleOutConfiguration is required.")]
[JsonProperty(PropertyName = "scaleOutConfiguration")]
public CustomExpressionQueryScalingConfiguration ScaleOutConfiguration { get; set; }
Property Value
Type Description
CustomExpressionQueryScalingConfiguration
Remarks

Required

In this article
Back to top