ArmContainerServiceModelFactory.ManagedClusterWorkloadAutoScalerProfile Method

Definition

Overloads

ManagedClusterWorkloadAutoScalerProfile(Nullable<Boolean>, ManagedClusterVerticalPodAutoscaler)

Source:
ArmContainerServiceModelFactory.cs
public static Azure.ResourceManager.ContainerService.Models.ManagedClusterWorkloadAutoScalerProfile ManagedClusterWorkloadAutoScalerProfile(bool? isKedaEnabled = default, Azure.ResourceManager.ContainerService.Models.ManagedClusterVerticalPodAutoscaler verticalPodAutoscaler = default);
static member ManagedClusterWorkloadAutoScalerProfile : Nullable<bool> * Azure.ResourceManager.ContainerService.Models.ManagedClusterVerticalPodAutoscaler -> Azure.ResourceManager.ContainerService.Models.ManagedClusterWorkloadAutoScalerProfile
Public Shared Function ManagedClusterWorkloadAutoScalerProfile (Optional isKedaEnabled As Nullable(Of Boolean) = Nothing, Optional verticalPodAutoscaler As ManagedClusterVerticalPodAutoscaler = Nothing) As ManagedClusterWorkloadAutoScalerProfile

Parameters

isKedaEnabled
Nullable<Boolean>

Whether to enable KEDA.

verticalPodAutoscaler
ManagedClusterVerticalPodAutoscaler

VPA (Vertical Pod Autoscaler) settings for the workload auto-scaler profile.

Returns

A new ManagedClusterWorkloadAutoScalerProfile instance for mocking.

Applies to

ManagedClusterWorkloadAutoScalerProfile(Nullable<Boolean>, Nullable<Boolean>)

Source:
ArmContainerServiceModelFactory.cs
Source:
ArmContainerServiceModelFactory.cs

Initializes a new instance of ManagedClusterWorkloadAutoScalerProfile.

public static Azure.ResourceManager.ContainerService.Models.ManagedClusterWorkloadAutoScalerProfile ManagedClusterWorkloadAutoScalerProfile(bool? isKedaEnabled = default, bool? isVpaEnabled = default);
public static Azure.ResourceManager.ContainerService.Models.ManagedClusterWorkloadAutoScalerProfile ManagedClusterWorkloadAutoScalerProfile(bool? isKedaEnabled, bool? isVpaEnabled);
static member ManagedClusterWorkloadAutoScalerProfile : Nullable<bool> * Nullable<bool> -> Azure.ResourceManager.ContainerService.Models.ManagedClusterWorkloadAutoScalerProfile
Public Shared Function ManagedClusterWorkloadAutoScalerProfile (Optional isKedaEnabled As Nullable(Of Boolean) = Nothing, Optional isVpaEnabled As Nullable(Of Boolean) = Nothing) As ManagedClusterWorkloadAutoScalerProfile
Public Shared Function ManagedClusterWorkloadAutoScalerProfile (isKedaEnabled As Nullable(Of Boolean), isVpaEnabled As Nullable(Of Boolean)) As ManagedClusterWorkloadAutoScalerProfile

Parameters

isKedaEnabled
Nullable<Boolean>

Whether to enable KEDA.

isVpaEnabled
Nullable<Boolean>

Whether to enable VPA add-on in cluster. Default value is false.

Returns

A new ManagedClusterWorkloadAutoScalerProfile instance for mocking.

Applies to