Show / Hide Table of Contents

Class ManagedComputeClusterWorkloadAutoScalingPolicy

The scaling policy to enable autoscaling of workload on the managed compute cluster type compute target .

Inheritance
object
ManagedComputeClusterWorkloadScalingPolicy
ManagedComputeClusterWorkloadAutoScalingPolicy
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 ManagedComputeClusterWorkloadAutoScalingPolicy : ManagedComputeClusterWorkloadScalingPolicy

Properties

AutoScalingPolicies

Declaration
[Required(ErrorMessage = "AutoScalingPolicies is required.")]
[JsonProperty(PropertyName = "autoScalingPolicies")]
public List<ManagedComputeClusterWorkloadAutoScalingPolicyDetails> AutoScalingPolicies { get; set; }
Property Value
Type Description
List<ManagedComputeClusterWorkloadAutoScalingPolicyDetails>

The list of autoscaling policy details.

Remarks

Required

IsEnabled

Declaration
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Whether the autoscaling policy is enabled.

In this article
Back to top