Class MetricTargetArgs
MetricTarget defines the target value, average value, or average utilization of a specific metric
Inherited Members
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 MetricTargetArgs : ResourceArgs
Properties
View SourceAverageUtilization
averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type
Declaration
public Input<int> AverageUtilization { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
AverageValue
averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
Declaration
public Input<string> AverageValue { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Type
type represents whether the metric type is Utilization, Value, or AverageValue
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Value
value is the target value of the metric (as a quantity).
Declaration
public Input<string> Value { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |