Show / Hide Table of Contents

Class HPAScalingPolicyArgs

HPAScalingPolicy is a single policy which must hold true for a specified past interval.

Inheritance
System.Object
InputArgs
ResourceArgs
HPAScalingPolicyArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Autoscaling.V2Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public class HPAScalingPolicyArgs : ResourceArgs

Properties

View Source

PeriodSeconds

PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).

Declaration
public Input<int> PeriodSeconds { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Type

Type is used to specify the scaling policy.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Value

Value contains the amount of change which is permitted by the policy. It must be greater than zero

Declaration
public Input<int> Value { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.