v2beta1

package
v3.10.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 19, 2021 License: Apache-2.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ContainerResourceMetricSource

type ContainerResourceMetricSource struct {
	// container is the name of the container in the pods of the scaling target
	Container string `pulumi:"container"`
	// name is the name of the resource in question.
	Name string `pulumi:"name"`
	// targetAverageUtilization 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.
	TargetAverageUtilization *int `pulumi:"targetAverageUtilization"`
	// targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
	TargetAverageValue *string `pulumi:"targetAverageValue"`
}

ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

type ContainerResourceMetricSourceArgs

type ContainerResourceMetricSourceArgs struct {
	// container is the name of the container in the pods of the scaling target
	Container pulumi.StringInput `pulumi:"container"`
	// name is the name of the resource in question.
	Name pulumi.StringInput `pulumi:"name"`
	// targetAverageUtilization 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.
	TargetAverageUtilization pulumi.IntPtrInput `pulumi:"targetAverageUtilization"`
	// targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
	TargetAverageValue pulumi.StringPtrInput `pulumi:"targetAverageValue"`
}

ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

func (ContainerResourceMetricSourceArgs) ElementType

func (ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourceOutput

func (i ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourceOutput() ContainerResourceMetricSourceOutput

func (ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourceOutputWithContext

func (i ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourceOutputWithContext(ctx context.Context) ContainerResourceMetricSourceOutput

func (ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourcePtrOutput

func (i ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourcePtrOutput() ContainerResourceMetricSourcePtrOutput

func (ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourcePtrOutputWithContext

func (i ContainerResourceMetricSourceArgs) ToContainerResourceMetricSourcePtrOutputWithContext(ctx context.Context) ContainerResourceMetricSourcePtrOutput

type ContainerResourceMetricSourceInput

type ContainerResourceMetricSourceInput interface {
	pulumi.Input

	ToContainerResourceMetricSourceOutput() ContainerResourceMetricSourceOutput
	ToContainerResourceMetricSourceOutputWithContext(context.Context) ContainerResourceMetricSourceOutput
}

ContainerResourceMetricSourceInput is an input type that accepts ContainerResourceMetricSourceArgs and ContainerResourceMetricSourceOutput values. You can construct a concrete instance of `ContainerResourceMetricSourceInput` via:

ContainerResourceMetricSourceArgs{...}

type ContainerResourceMetricSourceOutput

type ContainerResourceMetricSourceOutput struct{ *pulumi.OutputState }

ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

func (ContainerResourceMetricSourceOutput) Container

container is the name of the container in the pods of the scaling target

func (ContainerResourceMetricSourceOutput) ElementType

func (ContainerResourceMetricSourceOutput) Name

name is the name of the resource in question.

func (ContainerResourceMetricSourceOutput) TargetAverageUtilization

func (o ContainerResourceMetricSourceOutput) TargetAverageUtilization() pulumi.IntPtrOutput

targetAverageUtilization 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.

func (ContainerResourceMetricSourceOutput) TargetAverageValue

targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.

func (ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourceOutput

func (o ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourceOutput() ContainerResourceMetricSourceOutput

func (ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourceOutputWithContext

func (o ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourceOutputWithContext(ctx context.Context) ContainerResourceMetricSourceOutput

func (ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourcePtrOutput

func (o ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourcePtrOutput() ContainerResourceMetricSourcePtrOutput

func (ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourcePtrOutputWithContext

func (o ContainerResourceMetricSourceOutput) ToContainerResourceMetricSourcePtrOutputWithContext(ctx context.Context) ContainerResourceMetricSourcePtrOutput

type ContainerResourceMetricSourcePtrInput

type ContainerResourceMetricSourcePtrInput interface {
	pulumi.Input

	ToContainerResourceMetricSourcePtrOutput() ContainerResourceMetricSourcePtrOutput
	ToContainerResourceMetricSourcePtrOutputWithContext(context.Context) ContainerResourceMetricSourcePtrOutput
}

ContainerResourceMetricSourcePtrInput is an input type that accepts ContainerResourceMetricSourceArgs, ContainerResourceMetricSourcePtr and ContainerResourceMetricSourcePtrOutput values. You can construct a concrete instance of `ContainerResourceMetricSourcePtrInput` via:

        ContainerResourceMetricSourceArgs{...}

or:

        nil

type ContainerResourceMetricSourcePtrOutput

type ContainerResourceMetricSourcePtrOutput struct{ *pulumi.OutputState }

func (ContainerResourceMetricSourcePtrOutput) Container

container is the name of the container in the pods of the scaling target

func (ContainerResourceMetricSourcePtrOutput) Elem

func (ContainerResourceMetricSourcePtrOutput) ElementType

func (ContainerResourceMetricSourcePtrOutput) Name

name is the name of the resource in question.

func (ContainerResourceMetricSourcePtrOutput) TargetAverageUtilization

func (o ContainerResourceMetricSourcePtrOutput) TargetAverageUtilization() pulumi.IntPtrOutput

targetAverageUtilization 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.

func (ContainerResourceMetricSourcePtrOutput) TargetAverageValue

targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.

func (ContainerResourceMetricSourcePtrOutput) ToContainerResourceMetricSourcePtrOutput

func (o ContainerResourceMetricSourcePtrOutput) ToContainerResourceMetricSourcePtrOutput() ContainerResourceMetricSourcePtrOutput

func (ContainerResourceMetricSourcePtrOutput) ToContainerResourceMetricSourcePtrOutputWithContext

func (o ContainerResourceMetricSourcePtrOutput) ToContainerResourceMetricSourcePtrOutputWithContext(ctx context.Context) ContainerResourceMetricSourcePtrOutput

type ContainerResourceMetricStatus

type ContainerResourceMetricStatus struct {
	// container is the name of the container in the pods of the scaling target
	Container string `pulumi:"container"`
	// currentAverageUtilization is the current 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.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.
	CurrentAverageUtilization *int `pulumi:"currentAverageUtilization"`
	// currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
	CurrentAverageValue string `pulumi:"currentAverageValue"`
	// name is the name of the resource in question.
	Name string `pulumi:"name"`
}

ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

type ContainerResourceMetricStatusArgs

type ContainerResourceMetricStatusArgs struct {
	// container is the name of the container in the pods of the scaling target
	Container pulumi.StringInput `pulumi:"container"`
	// currentAverageUtilization is the current 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.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.
	CurrentAverageUtilization pulumi.IntPtrInput `pulumi:"currentAverageUtilization"`
	// currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
	CurrentAverageValue pulumi.StringInput `pulumi:"currentAverageValue"`
	// name is the name of the resource in question.
	Name pulumi.StringInput `pulumi:"name"`
}

ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (ContainerResourceMetricStatusArgs) ElementType

func (ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusOutput

func (i ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusOutput() ContainerResourceMetricStatusOutput

func (ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusOutputWithContext

func (i ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusOutputWithContext(ctx context.Context) ContainerResourceMetricStatusOutput

func (ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusPtrOutput

func (i ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusPtrOutput() ContainerResourceMetricStatusPtrOutput

func (ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusPtrOutputWithContext

func (i ContainerResourceMetricStatusArgs) ToContainerResourceMetricStatusPtrOutputWithContext(ctx context.Context) ContainerResourceMetricStatusPtrOutput

type ContainerResourceMetricStatusInput

type ContainerResourceMetricStatusInput interface {
	pulumi.Input

	ToContainerResourceMetricStatusOutput() ContainerResourceMetricStatusOutput
	ToContainerResourceMetricStatusOutputWithContext(context.Context) ContainerResourceMetricStatusOutput
}

ContainerResourceMetricStatusInput is an input type that accepts ContainerResourceMetricStatusArgs and ContainerResourceMetricStatusOutput values. You can construct a concrete instance of `ContainerResourceMetricStatusInput` via:

ContainerResourceMetricStatusArgs{...}

type ContainerResourceMetricStatusOutput

type ContainerResourceMetricStatusOutput struct{ *pulumi.OutputState }

ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (ContainerResourceMetricStatusOutput) Container

container is the name of the container in the pods of the scaling target

func (ContainerResourceMetricStatusOutput) CurrentAverageUtilization

func (o ContainerResourceMetricStatusOutput) CurrentAverageUtilization() pulumi.IntPtrOutput

currentAverageUtilization is the current 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. It will only be present if `targetAverageValue` was set in the corresponding metric specification.

func (ContainerResourceMetricStatusOutput) CurrentAverageValue

currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.

func (ContainerResourceMetricStatusOutput) ElementType

func (ContainerResourceMetricStatusOutput) Name

name is the name of the resource in question.

func (ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusOutput

func (o ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusOutput() ContainerResourceMetricStatusOutput

func (ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusOutputWithContext

func (o ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusOutputWithContext(ctx context.Context) ContainerResourceMetricStatusOutput

func (ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusPtrOutput

func (o ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusPtrOutput() ContainerResourceMetricStatusPtrOutput

func (ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusPtrOutputWithContext

func (o ContainerResourceMetricStatusOutput) ToContainerResourceMetricStatusPtrOutputWithContext(ctx context.Context) ContainerResourceMetricStatusPtrOutput

type ContainerResourceMetricStatusPtrInput

type ContainerResourceMetricStatusPtrInput interface {
	pulumi.Input

	ToContainerResourceMetricStatusPtrOutput() ContainerResourceMetricStatusPtrOutput
	ToContainerResourceMetricStatusPtrOutputWithContext(context.Context) ContainerResourceMetricStatusPtrOutput
}

ContainerResourceMetricStatusPtrInput is an input type that accepts ContainerResourceMetricStatusArgs, ContainerResourceMetricStatusPtr and ContainerResourceMetricStatusPtrOutput values. You can construct a concrete instance of `ContainerResourceMetricStatusPtrInput` via:

        ContainerResourceMetricStatusArgs{...}

or:

        nil

type ContainerResourceMetricStatusPtrOutput

type ContainerResourceMetricStatusPtrOutput struct{ *pulumi.OutputState }

func (ContainerResourceMetricStatusPtrOutput) Container

container is the name of the container in the pods of the scaling target

func (ContainerResourceMetricStatusPtrOutput) CurrentAverageUtilization

func (o ContainerResourceMetricStatusPtrOutput) CurrentAverageUtilization() pulumi.IntPtrOutput

currentAverageUtilization is the current 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. It will only be present if `targetAverageValue` was set in the corresponding metric specification.

func (ContainerResourceMetricStatusPtrOutput) CurrentAverageValue

currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.

func (ContainerResourceMetricStatusPtrOutput) Elem

func (ContainerResourceMetricStatusPtrOutput) ElementType

func (ContainerResourceMetricStatusPtrOutput) Name

name is the name of the resource in question.

func (ContainerResourceMetricStatusPtrOutput) ToContainerResourceMetricStatusPtrOutput

func (o ContainerResourceMetricStatusPtrOutput) ToContainerResourceMetricStatusPtrOutput() ContainerResourceMetricStatusPtrOutput

func (ContainerResourceMetricStatusPtrOutput) ToContainerResourceMetricStatusPtrOutputWithContext

func (o ContainerResourceMetricStatusPtrOutput) ToContainerResourceMetricStatusPtrOutputWithContext(ctx context.Context) ContainerResourceMetricStatusPtrOutput

type CrossVersionObjectReference

type CrossVersionObjectReference struct {
	// API version of the referent
	ApiVersion *string `pulumi:"apiVersion"`
	// Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
	Kind string `pulumi:"kind"`
	// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name string `pulumi:"name"`
}

CrossVersionObjectReference contains enough information to let you identify the referred resource.

type CrossVersionObjectReferenceArgs

type CrossVersionObjectReferenceArgs struct {
	// API version of the referent
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
	Kind pulumi.StringInput `pulumi:"kind"`
	// Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name pulumi.StringInput `pulumi:"name"`
}

CrossVersionObjectReference contains enough information to let you identify the referred resource.

func (CrossVersionObjectReferenceArgs) ElementType

func (CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferenceOutput

func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferenceOutput() CrossVersionObjectReferenceOutput

func (CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferenceOutputWithContext

func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferenceOutputWithContext(ctx context.Context) CrossVersionObjectReferenceOutput

func (CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutput

func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutput() CrossVersionObjectReferencePtrOutput

func (CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutputWithContext

func (i CrossVersionObjectReferenceArgs) ToCrossVersionObjectReferencePtrOutputWithContext(ctx context.Context) CrossVersionObjectReferencePtrOutput

type CrossVersionObjectReferenceInput

type CrossVersionObjectReferenceInput interface {
	pulumi.Input

	ToCrossVersionObjectReferenceOutput() CrossVersionObjectReferenceOutput
	ToCrossVersionObjectReferenceOutputWithContext(context.Context) CrossVersionObjectReferenceOutput
}

CrossVersionObjectReferenceInput is an input type that accepts CrossVersionObjectReferenceArgs and CrossVersionObjectReferenceOutput values. You can construct a concrete instance of `CrossVersionObjectReferenceInput` via:

CrossVersionObjectReferenceArgs{...}

type CrossVersionObjectReferenceOutput

type CrossVersionObjectReferenceOutput struct{ *pulumi.OutputState }

CrossVersionObjectReference contains enough information to let you identify the referred resource.

func (CrossVersionObjectReferenceOutput) ApiVersion

API version of the referent

func (CrossVersionObjectReferenceOutput) ElementType

func (CrossVersionObjectReferenceOutput) Name

Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names

func (CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferenceOutput

func (o CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferenceOutput() CrossVersionObjectReferenceOutput

func (CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferenceOutputWithContext

func (o CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferenceOutputWithContext(ctx context.Context) CrossVersionObjectReferenceOutput

func (CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferencePtrOutput

func (o CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferencePtrOutput() CrossVersionObjectReferencePtrOutput

func (CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferencePtrOutputWithContext

func (o CrossVersionObjectReferenceOutput) ToCrossVersionObjectReferencePtrOutputWithContext(ctx context.Context) CrossVersionObjectReferencePtrOutput

type CrossVersionObjectReferencePtrInput

type CrossVersionObjectReferencePtrInput interface {
	pulumi.Input

	ToCrossVersionObjectReferencePtrOutput() CrossVersionObjectReferencePtrOutput
	ToCrossVersionObjectReferencePtrOutputWithContext(context.Context) CrossVersionObjectReferencePtrOutput
}

CrossVersionObjectReferencePtrInput is an input type that accepts CrossVersionObjectReferenceArgs, CrossVersionObjectReferencePtr and CrossVersionObjectReferencePtrOutput values. You can construct a concrete instance of `CrossVersionObjectReferencePtrInput` via:

        CrossVersionObjectReferenceArgs{...}

or:

        nil

type CrossVersionObjectReferencePtrOutput

type CrossVersionObjectReferencePtrOutput struct{ *pulumi.OutputState }

func (CrossVersionObjectReferencePtrOutput) ApiVersion

API version of the referent

func (CrossVersionObjectReferencePtrOutput) Elem

func (CrossVersionObjectReferencePtrOutput) ElementType

func (CrossVersionObjectReferencePtrOutput) Name

Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names

func (CrossVersionObjectReferencePtrOutput) ToCrossVersionObjectReferencePtrOutput

func (o CrossVersionObjectReferencePtrOutput) ToCrossVersionObjectReferencePtrOutput() CrossVersionObjectReferencePtrOutput

func (CrossVersionObjectReferencePtrOutput) ToCrossVersionObjectReferencePtrOutputWithContext

func (o CrossVersionObjectReferencePtrOutput) ToCrossVersionObjectReferencePtrOutputWithContext(ctx context.Context) CrossVersionObjectReferencePtrOutput

type ExternalMetricSource

type ExternalMetricSource struct {
	// metricName is the name of the metric in question.
	MetricName string `pulumi:"metricName"`
	// metricSelector is used to identify a specific time series within a given metric.
	MetricSelector *metav1.LabelSelector `pulumi:"metricSelector"`
	// targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.
	TargetAverageValue *string `pulumi:"targetAverageValue"`
	// targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.
	TargetValue *string `pulumi:"targetValue"`
}

ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one "target" type should be set.

type ExternalMetricSourceArgs

type ExternalMetricSourceArgs struct {
	// metricName is the name of the metric in question.
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// metricSelector is used to identify a specific time series within a given metric.
	MetricSelector metav1.LabelSelectorPtrInput `pulumi:"metricSelector"`
	// targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.
	TargetAverageValue pulumi.StringPtrInput `pulumi:"targetAverageValue"`
	// targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.
	TargetValue pulumi.StringPtrInput `pulumi:"targetValue"`
}

ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one "target" type should be set.

func (ExternalMetricSourceArgs) ElementType

func (ExternalMetricSourceArgs) ElementType() reflect.Type

func (ExternalMetricSourceArgs) ToExternalMetricSourceOutput

func (i ExternalMetricSourceArgs) ToExternalMetricSourceOutput() ExternalMetricSourceOutput

func (ExternalMetricSourceArgs) ToExternalMetricSourceOutputWithContext

func (i ExternalMetricSourceArgs) ToExternalMetricSourceOutputWithContext(ctx context.Context) ExternalMetricSourceOutput

func (ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutput

func (i ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutput() ExternalMetricSourcePtrOutput

func (ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutputWithContext

func (i ExternalMetricSourceArgs) ToExternalMetricSourcePtrOutputWithContext(ctx context.Context) ExternalMetricSourcePtrOutput

type ExternalMetricSourceInput

type ExternalMetricSourceInput interface {
	pulumi.Input

	ToExternalMetricSourceOutput() ExternalMetricSourceOutput
	ToExternalMetricSourceOutputWithContext(context.Context) ExternalMetricSourceOutput
}

ExternalMetricSourceInput is an input type that accepts ExternalMetricSourceArgs and ExternalMetricSourceOutput values. You can construct a concrete instance of `ExternalMetricSourceInput` via:

ExternalMetricSourceArgs{...}

type ExternalMetricSourceOutput

type ExternalMetricSourceOutput struct{ *pulumi.OutputState }

ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one "target" type should be set.

func (ExternalMetricSourceOutput) ElementType

func (ExternalMetricSourceOutput) ElementType() reflect.Type

func (ExternalMetricSourceOutput) MetricName

metricName is the name of the metric in question.

func (ExternalMetricSourceOutput) MetricSelector

metricSelector is used to identify a specific time series within a given metric.

func (ExternalMetricSourceOutput) TargetAverageValue

func (o ExternalMetricSourceOutput) TargetAverageValue() pulumi.StringPtrOutput

targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.

func (ExternalMetricSourceOutput) TargetValue

targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.

func (ExternalMetricSourceOutput) ToExternalMetricSourceOutput

func (o ExternalMetricSourceOutput) ToExternalMetricSourceOutput() ExternalMetricSourceOutput

func (ExternalMetricSourceOutput) ToExternalMetricSourceOutputWithContext

func (o ExternalMetricSourceOutput) ToExternalMetricSourceOutputWithContext(ctx context.Context) ExternalMetricSourceOutput

func (ExternalMetricSourceOutput) ToExternalMetricSourcePtrOutput

func (o ExternalMetricSourceOutput) ToExternalMetricSourcePtrOutput() ExternalMetricSourcePtrOutput

func (ExternalMetricSourceOutput) ToExternalMetricSourcePtrOutputWithContext

func (o ExternalMetricSourceOutput) ToExternalMetricSourcePtrOutputWithContext(ctx context.Context) ExternalMetricSourcePtrOutput

type ExternalMetricSourcePtrInput

type ExternalMetricSourcePtrInput interface {
	pulumi.Input

	ToExternalMetricSourcePtrOutput() ExternalMetricSourcePtrOutput
	ToExternalMetricSourcePtrOutputWithContext(context.Context) ExternalMetricSourcePtrOutput
}

ExternalMetricSourcePtrInput is an input type that accepts ExternalMetricSourceArgs, ExternalMetricSourcePtr and ExternalMetricSourcePtrOutput values. You can construct a concrete instance of `ExternalMetricSourcePtrInput` via:

        ExternalMetricSourceArgs{...}

or:

        nil

type ExternalMetricSourcePtrOutput

type ExternalMetricSourcePtrOutput struct{ *pulumi.OutputState }

func (ExternalMetricSourcePtrOutput) Elem

func (ExternalMetricSourcePtrOutput) ElementType

func (ExternalMetricSourcePtrOutput) MetricName

metricName is the name of the metric in question.

func (ExternalMetricSourcePtrOutput) MetricSelector

metricSelector is used to identify a specific time series within a given metric.

func (ExternalMetricSourcePtrOutput) TargetAverageValue

func (o ExternalMetricSourcePtrOutput) TargetAverageValue() pulumi.StringPtrOutput

targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.

func (ExternalMetricSourcePtrOutput) TargetValue

targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.

func (ExternalMetricSourcePtrOutput) ToExternalMetricSourcePtrOutput

func (o ExternalMetricSourcePtrOutput) ToExternalMetricSourcePtrOutput() ExternalMetricSourcePtrOutput

func (ExternalMetricSourcePtrOutput) ToExternalMetricSourcePtrOutputWithContext

func (o ExternalMetricSourcePtrOutput) ToExternalMetricSourcePtrOutputWithContext(ctx context.Context) ExternalMetricSourcePtrOutput

type ExternalMetricStatus

type ExternalMetricStatus struct {
	// currentAverageValue is the current value of metric averaged over autoscaled pods.
	CurrentAverageValue *string `pulumi:"currentAverageValue"`
	// currentValue is the current value of the metric (as a quantity)
	CurrentValue string `pulumi:"currentValue"`
	// metricName is the name of a metric used for autoscaling in metric system.
	MetricName string `pulumi:"metricName"`
	// metricSelector is used to identify a specific time series within a given metric.
	MetricSelector *metav1.LabelSelector `pulumi:"metricSelector"`
}

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

type ExternalMetricStatusArgs

type ExternalMetricStatusArgs struct {
	// currentAverageValue is the current value of metric averaged over autoscaled pods.
	CurrentAverageValue pulumi.StringPtrInput `pulumi:"currentAverageValue"`
	// currentValue is the current value of the metric (as a quantity)
	CurrentValue pulumi.StringInput `pulumi:"currentValue"`
	// metricName is the name of a metric used for autoscaling in metric system.
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// metricSelector is used to identify a specific time series within a given metric.
	MetricSelector metav1.LabelSelectorPtrInput `pulumi:"metricSelector"`
}

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

func (ExternalMetricStatusArgs) ElementType

func (ExternalMetricStatusArgs) ElementType() reflect.Type

func (ExternalMetricStatusArgs) ToExternalMetricStatusOutput

func (i ExternalMetricStatusArgs) ToExternalMetricStatusOutput() ExternalMetricStatusOutput

func (ExternalMetricStatusArgs) ToExternalMetricStatusOutputWithContext

func (i ExternalMetricStatusArgs) ToExternalMetricStatusOutputWithContext(ctx context.Context) ExternalMetricStatusOutput

func (ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutput

func (i ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutput() ExternalMetricStatusPtrOutput

func (ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutputWithContext

func (i ExternalMetricStatusArgs) ToExternalMetricStatusPtrOutputWithContext(ctx context.Context) ExternalMetricStatusPtrOutput

type ExternalMetricStatusInput

type ExternalMetricStatusInput interface {
	pulumi.Input

	ToExternalMetricStatusOutput() ExternalMetricStatusOutput
	ToExternalMetricStatusOutputWithContext(context.Context) ExternalMetricStatusOutput
}

ExternalMetricStatusInput is an input type that accepts ExternalMetricStatusArgs and ExternalMetricStatusOutput values. You can construct a concrete instance of `ExternalMetricStatusInput` via:

ExternalMetricStatusArgs{...}

type ExternalMetricStatusOutput

type ExternalMetricStatusOutput struct{ *pulumi.OutputState }

ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

func (ExternalMetricStatusOutput) CurrentAverageValue

func (o ExternalMetricStatusOutput) CurrentAverageValue() pulumi.StringPtrOutput

currentAverageValue is the current value of metric averaged over autoscaled pods.

func (ExternalMetricStatusOutput) CurrentValue

currentValue is the current value of the metric (as a quantity)

func (ExternalMetricStatusOutput) ElementType

func (ExternalMetricStatusOutput) ElementType() reflect.Type

func (ExternalMetricStatusOutput) MetricName

metricName is the name of a metric used for autoscaling in metric system.

func (ExternalMetricStatusOutput) MetricSelector

metricSelector is used to identify a specific time series within a given metric.

func (ExternalMetricStatusOutput) ToExternalMetricStatusOutput

func (o ExternalMetricStatusOutput) ToExternalMetricStatusOutput() ExternalMetricStatusOutput

func (ExternalMetricStatusOutput) ToExternalMetricStatusOutputWithContext

func (o ExternalMetricStatusOutput) ToExternalMetricStatusOutputWithContext(ctx context.Context) ExternalMetricStatusOutput

func (ExternalMetricStatusOutput) ToExternalMetricStatusPtrOutput

func (o ExternalMetricStatusOutput) ToExternalMetricStatusPtrOutput() ExternalMetricStatusPtrOutput

func (ExternalMetricStatusOutput) ToExternalMetricStatusPtrOutputWithContext

func (o ExternalMetricStatusOutput) ToExternalMetricStatusPtrOutputWithContext(ctx context.Context) ExternalMetricStatusPtrOutput

type ExternalMetricStatusPtrInput

type ExternalMetricStatusPtrInput interface {
	pulumi.Input

	ToExternalMetricStatusPtrOutput() ExternalMetricStatusPtrOutput
	ToExternalMetricStatusPtrOutputWithContext(context.Context) ExternalMetricStatusPtrOutput
}

ExternalMetricStatusPtrInput is an input type that accepts ExternalMetricStatusArgs, ExternalMetricStatusPtr and ExternalMetricStatusPtrOutput values. You can construct a concrete instance of `ExternalMetricStatusPtrInput` via:

        ExternalMetricStatusArgs{...}

or:

        nil

type ExternalMetricStatusPtrOutput

type ExternalMetricStatusPtrOutput struct{ *pulumi.OutputState }

func (ExternalMetricStatusPtrOutput) CurrentAverageValue

func (o ExternalMetricStatusPtrOutput) CurrentAverageValue() pulumi.StringPtrOutput

currentAverageValue is the current value of metric averaged over autoscaled pods.

func (ExternalMetricStatusPtrOutput) CurrentValue

currentValue is the current value of the metric (as a quantity)

func (ExternalMetricStatusPtrOutput) Elem

func (ExternalMetricStatusPtrOutput) ElementType

func (ExternalMetricStatusPtrOutput) MetricName

metricName is the name of a metric used for autoscaling in metric system.

func (ExternalMetricStatusPtrOutput) MetricSelector

metricSelector is used to identify a specific time series within a given metric.

func (ExternalMetricStatusPtrOutput) ToExternalMetricStatusPtrOutput

func (o ExternalMetricStatusPtrOutput) ToExternalMetricStatusPtrOutput() ExternalMetricStatusPtrOutput

func (ExternalMetricStatusPtrOutput) ToExternalMetricStatusPtrOutputWithContext

func (o ExternalMetricStatusPtrOutput) ToExternalMetricStatusPtrOutputWithContext(ctx context.Context) ExternalMetricStatusPtrOutput

type HorizontalPodAutoscaler

type HorizontalPodAutoscaler struct {
	pulumi.CustomResourceState

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrOutput `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrOutput `pulumi:"kind"`
	// metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata metav1.ObjectMetaPtrOutput `pulumi:"metadata"`
	// spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
	Spec HorizontalPodAutoscalerSpecPtrOutput `pulumi:"spec"`
	// status is the current information about the autoscaler.
	Status HorizontalPodAutoscalerStatusPtrOutput `pulumi:"status"`
}

HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

func GetHorizontalPodAutoscaler

func GetHorizontalPodAutoscaler(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *HorizontalPodAutoscalerState, opts ...pulumi.ResourceOption) (*HorizontalPodAutoscaler, error)

GetHorizontalPodAutoscaler gets an existing HorizontalPodAutoscaler resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewHorizontalPodAutoscaler

func NewHorizontalPodAutoscaler(ctx *pulumi.Context,
	name string, args *HorizontalPodAutoscalerArgs, opts ...pulumi.ResourceOption) (*HorizontalPodAutoscaler, error)

NewHorizontalPodAutoscaler registers a new resource with the given unique name, arguments, and options.

func (*HorizontalPodAutoscaler) ElementType

func (*HorizontalPodAutoscaler) ElementType() reflect.Type

func (*HorizontalPodAutoscaler) ToHorizontalPodAutoscalerOutput

func (i *HorizontalPodAutoscaler) ToHorizontalPodAutoscalerOutput() HorizontalPodAutoscalerOutput

func (*HorizontalPodAutoscaler) ToHorizontalPodAutoscalerOutputWithContext

func (i *HorizontalPodAutoscaler) ToHorizontalPodAutoscalerOutputWithContext(ctx context.Context) HorizontalPodAutoscalerOutput

func (*HorizontalPodAutoscaler) ToHorizontalPodAutoscalerPtrOutput

func (i *HorizontalPodAutoscaler) ToHorizontalPodAutoscalerPtrOutput() HorizontalPodAutoscalerPtrOutput

func (*HorizontalPodAutoscaler) ToHorizontalPodAutoscalerPtrOutputWithContext

func (i *HorizontalPodAutoscaler) ToHorizontalPodAutoscalerPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerPtrOutput

type HorizontalPodAutoscalerArgs

type HorizontalPodAutoscalerArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput
	// metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata metav1.ObjectMetaPtrInput
	// spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
	Spec HorizontalPodAutoscalerSpecPtrInput
}

The set of arguments for constructing a HorizontalPodAutoscaler resource.

func (HorizontalPodAutoscalerArgs) ElementType

type HorizontalPodAutoscalerArray

type HorizontalPodAutoscalerArray []HorizontalPodAutoscalerInput

func (HorizontalPodAutoscalerArray) ElementType

func (HorizontalPodAutoscalerArray) ToHorizontalPodAutoscalerArrayOutput

func (i HorizontalPodAutoscalerArray) ToHorizontalPodAutoscalerArrayOutput() HorizontalPodAutoscalerArrayOutput

func (HorizontalPodAutoscalerArray) ToHorizontalPodAutoscalerArrayOutputWithContext

func (i HorizontalPodAutoscalerArray) ToHorizontalPodAutoscalerArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerArrayOutput

type HorizontalPodAutoscalerArrayInput

type HorizontalPodAutoscalerArrayInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerArrayOutput() HorizontalPodAutoscalerArrayOutput
	ToHorizontalPodAutoscalerArrayOutputWithContext(context.Context) HorizontalPodAutoscalerArrayOutput
}

HorizontalPodAutoscalerArrayInput is an input type that accepts HorizontalPodAutoscalerArray and HorizontalPodAutoscalerArrayOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerArrayInput` via:

HorizontalPodAutoscalerArray{ HorizontalPodAutoscalerArgs{...} }

type HorizontalPodAutoscalerArrayOutput

type HorizontalPodAutoscalerArrayOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerArrayOutput) ElementType

func (HorizontalPodAutoscalerArrayOutput) Index

func (HorizontalPodAutoscalerArrayOutput) ToHorizontalPodAutoscalerArrayOutput

func (o HorizontalPodAutoscalerArrayOutput) ToHorizontalPodAutoscalerArrayOutput() HorizontalPodAutoscalerArrayOutput

func (HorizontalPodAutoscalerArrayOutput) ToHorizontalPodAutoscalerArrayOutputWithContext

func (o HorizontalPodAutoscalerArrayOutput) ToHorizontalPodAutoscalerArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerArrayOutput

type HorizontalPodAutoscalerCondition

type HorizontalPodAutoscalerCondition struct {
	// lastTransitionTime is the last time the condition transitioned from one status to another
	LastTransitionTime *string `pulumi:"lastTransitionTime"`
	// message is a human-readable explanation containing details about the transition
	Message *string `pulumi:"message"`
	// reason is the reason for the condition's last transition.
	Reason *string `pulumi:"reason"`
	// status is the status of the condition (True, False, Unknown)
	Status string `pulumi:"status"`
	// type describes the current condition
	Type string `pulumi:"type"`
}

HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

type HorizontalPodAutoscalerConditionArgs

type HorizontalPodAutoscalerConditionArgs struct {
	// lastTransitionTime is the last time the condition transitioned from one status to another
	LastTransitionTime pulumi.StringPtrInput `pulumi:"lastTransitionTime"`
	// message is a human-readable explanation containing details about the transition
	Message pulumi.StringPtrInput `pulumi:"message"`
	// reason is the reason for the condition's last transition.
	Reason pulumi.StringPtrInput `pulumi:"reason"`
	// status is the status of the condition (True, False, Unknown)
	Status pulumi.StringInput `pulumi:"status"`
	// type describes the current condition
	Type pulumi.StringInput `pulumi:"type"`
}

HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

func (HorizontalPodAutoscalerConditionArgs) ElementType

func (HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerConditionOutput

func (i HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerConditionOutput() HorizontalPodAutoscalerConditionOutput

func (HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerConditionOutputWithContext

func (i HorizontalPodAutoscalerConditionArgs) ToHorizontalPodAutoscalerConditionOutputWithContext(ctx context.Context) HorizontalPodAutoscalerConditionOutput

type HorizontalPodAutoscalerConditionArray

type HorizontalPodAutoscalerConditionArray []HorizontalPodAutoscalerConditionInput

func (HorizontalPodAutoscalerConditionArray) ElementType

func (HorizontalPodAutoscalerConditionArray) ToHorizontalPodAutoscalerConditionArrayOutput

func (i HorizontalPodAutoscalerConditionArray) ToHorizontalPodAutoscalerConditionArrayOutput() HorizontalPodAutoscalerConditionArrayOutput

func (HorizontalPodAutoscalerConditionArray) ToHorizontalPodAutoscalerConditionArrayOutputWithContext

func (i HorizontalPodAutoscalerConditionArray) ToHorizontalPodAutoscalerConditionArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerConditionArrayOutput

type HorizontalPodAutoscalerConditionArrayInput

type HorizontalPodAutoscalerConditionArrayInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerConditionArrayOutput() HorizontalPodAutoscalerConditionArrayOutput
	ToHorizontalPodAutoscalerConditionArrayOutputWithContext(context.Context) HorizontalPodAutoscalerConditionArrayOutput
}

HorizontalPodAutoscalerConditionArrayInput is an input type that accepts HorizontalPodAutoscalerConditionArray and HorizontalPodAutoscalerConditionArrayOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerConditionArrayInput` via:

HorizontalPodAutoscalerConditionArray{ HorizontalPodAutoscalerConditionArgs{...} }

type HorizontalPodAutoscalerConditionArrayOutput

type HorizontalPodAutoscalerConditionArrayOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerConditionArrayOutput) ElementType

func (HorizontalPodAutoscalerConditionArrayOutput) Index

func (HorizontalPodAutoscalerConditionArrayOutput) ToHorizontalPodAutoscalerConditionArrayOutput

func (o HorizontalPodAutoscalerConditionArrayOutput) ToHorizontalPodAutoscalerConditionArrayOutput() HorizontalPodAutoscalerConditionArrayOutput

func (HorizontalPodAutoscalerConditionArrayOutput) ToHorizontalPodAutoscalerConditionArrayOutputWithContext

func (o HorizontalPodAutoscalerConditionArrayOutput) ToHorizontalPodAutoscalerConditionArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerConditionArrayOutput

type HorizontalPodAutoscalerConditionInput

type HorizontalPodAutoscalerConditionInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerConditionOutput() HorizontalPodAutoscalerConditionOutput
	ToHorizontalPodAutoscalerConditionOutputWithContext(context.Context) HorizontalPodAutoscalerConditionOutput
}

HorizontalPodAutoscalerConditionInput is an input type that accepts HorizontalPodAutoscalerConditionArgs and HorizontalPodAutoscalerConditionOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerConditionInput` via:

HorizontalPodAutoscalerConditionArgs{...}

type HorizontalPodAutoscalerConditionOutput

type HorizontalPodAutoscalerConditionOutput struct{ *pulumi.OutputState }

HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

func (HorizontalPodAutoscalerConditionOutput) ElementType

func (HorizontalPodAutoscalerConditionOutput) LastTransitionTime

lastTransitionTime is the last time the condition transitioned from one status to another

func (HorizontalPodAutoscalerConditionOutput) Message

message is a human-readable explanation containing details about the transition

func (HorizontalPodAutoscalerConditionOutput) Reason

reason is the reason for the condition's last transition.

func (HorizontalPodAutoscalerConditionOutput) Status

status is the status of the condition (True, False, Unknown)

func (HorizontalPodAutoscalerConditionOutput) ToHorizontalPodAutoscalerConditionOutput

func (o HorizontalPodAutoscalerConditionOutput) ToHorizontalPodAutoscalerConditionOutput() HorizontalPodAutoscalerConditionOutput

func (HorizontalPodAutoscalerConditionOutput) ToHorizontalPodAutoscalerConditionOutputWithContext

func (o HorizontalPodAutoscalerConditionOutput) ToHorizontalPodAutoscalerConditionOutputWithContext(ctx context.Context) HorizontalPodAutoscalerConditionOutput

func (HorizontalPodAutoscalerConditionOutput) Type

type describes the current condition

type HorizontalPodAutoscalerInput

type HorizontalPodAutoscalerInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerOutput() HorizontalPodAutoscalerOutput
	ToHorizontalPodAutoscalerOutputWithContext(ctx context.Context) HorizontalPodAutoscalerOutput
}

type HorizontalPodAutoscalerList

type HorizontalPodAutoscalerList struct {
	pulumi.CustomResourceState

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrOutput `pulumi:"apiVersion"`
	// items is the list of horizontal pod autoscaler objects.
	Items HorizontalPodAutoscalerTypeArrayOutput `pulumi:"items"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrOutput `pulumi:"kind"`
	// metadata is the standard list metadata.
	Metadata metav1.ListMetaPtrOutput `pulumi:"metadata"`
}

HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.

func GetHorizontalPodAutoscalerList

func GetHorizontalPodAutoscalerList(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *HorizontalPodAutoscalerListState, opts ...pulumi.ResourceOption) (*HorizontalPodAutoscalerList, error)

GetHorizontalPodAutoscalerList gets an existing HorizontalPodAutoscalerList resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewHorizontalPodAutoscalerList

func NewHorizontalPodAutoscalerList(ctx *pulumi.Context,
	name string, args *HorizontalPodAutoscalerListArgs, opts ...pulumi.ResourceOption) (*HorizontalPodAutoscalerList, error)

NewHorizontalPodAutoscalerList registers a new resource with the given unique name, arguments, and options.

func (*HorizontalPodAutoscalerList) ElementType

func (*HorizontalPodAutoscalerList) ElementType() reflect.Type

func (*HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListOutput

func (i *HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListOutput() HorizontalPodAutoscalerListOutput

func (*HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListOutputWithContext

func (i *HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListOutput

func (*HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListPtrOutput

func (i *HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListPtrOutput() HorizontalPodAutoscalerListPtrOutput

func (*HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListPtrOutputWithContext

func (i *HorizontalPodAutoscalerList) ToHorizontalPodAutoscalerListPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListPtrOutput

type HorizontalPodAutoscalerListArgs

type HorizontalPodAutoscalerListArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput
	// items is the list of horizontal pod autoscaler objects.
	Items HorizontalPodAutoscalerTypeArrayInput
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput
	// metadata is the standard list metadata.
	Metadata metav1.ListMetaPtrInput
}

The set of arguments for constructing a HorizontalPodAutoscalerList resource.

func (HorizontalPodAutoscalerListArgs) ElementType

type HorizontalPodAutoscalerListArray

type HorizontalPodAutoscalerListArray []HorizontalPodAutoscalerListInput

func (HorizontalPodAutoscalerListArray) ElementType

func (HorizontalPodAutoscalerListArray) ToHorizontalPodAutoscalerListArrayOutput

func (i HorizontalPodAutoscalerListArray) ToHorizontalPodAutoscalerListArrayOutput() HorizontalPodAutoscalerListArrayOutput

func (HorizontalPodAutoscalerListArray) ToHorizontalPodAutoscalerListArrayOutputWithContext

func (i HorizontalPodAutoscalerListArray) ToHorizontalPodAutoscalerListArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListArrayOutput

type HorizontalPodAutoscalerListArrayInput

type HorizontalPodAutoscalerListArrayInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerListArrayOutput() HorizontalPodAutoscalerListArrayOutput
	ToHorizontalPodAutoscalerListArrayOutputWithContext(context.Context) HorizontalPodAutoscalerListArrayOutput
}

HorizontalPodAutoscalerListArrayInput is an input type that accepts HorizontalPodAutoscalerListArray and HorizontalPodAutoscalerListArrayOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerListArrayInput` via:

HorizontalPodAutoscalerListArray{ HorizontalPodAutoscalerListArgs{...} }

type HorizontalPodAutoscalerListArrayOutput

type HorizontalPodAutoscalerListArrayOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerListArrayOutput) ElementType

func (HorizontalPodAutoscalerListArrayOutput) Index

func (HorizontalPodAutoscalerListArrayOutput) ToHorizontalPodAutoscalerListArrayOutput

func (o HorizontalPodAutoscalerListArrayOutput) ToHorizontalPodAutoscalerListArrayOutput() HorizontalPodAutoscalerListArrayOutput

func (HorizontalPodAutoscalerListArrayOutput) ToHorizontalPodAutoscalerListArrayOutputWithContext

func (o HorizontalPodAutoscalerListArrayOutput) ToHorizontalPodAutoscalerListArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListArrayOutput

type HorizontalPodAutoscalerListInput

type HorizontalPodAutoscalerListInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerListOutput() HorizontalPodAutoscalerListOutput
	ToHorizontalPodAutoscalerListOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListOutput
}

type HorizontalPodAutoscalerListMap

type HorizontalPodAutoscalerListMap map[string]HorizontalPodAutoscalerListInput

func (HorizontalPodAutoscalerListMap) ElementType

func (HorizontalPodAutoscalerListMap) ToHorizontalPodAutoscalerListMapOutput

func (i HorizontalPodAutoscalerListMap) ToHorizontalPodAutoscalerListMapOutput() HorizontalPodAutoscalerListMapOutput

func (HorizontalPodAutoscalerListMap) ToHorizontalPodAutoscalerListMapOutputWithContext

func (i HorizontalPodAutoscalerListMap) ToHorizontalPodAutoscalerListMapOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListMapOutput

type HorizontalPodAutoscalerListMapInput

type HorizontalPodAutoscalerListMapInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerListMapOutput() HorizontalPodAutoscalerListMapOutput
	ToHorizontalPodAutoscalerListMapOutputWithContext(context.Context) HorizontalPodAutoscalerListMapOutput
}

HorizontalPodAutoscalerListMapInput is an input type that accepts HorizontalPodAutoscalerListMap and HorizontalPodAutoscalerListMapOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerListMapInput` via:

HorizontalPodAutoscalerListMap{ "key": HorizontalPodAutoscalerListArgs{...} }

type HorizontalPodAutoscalerListMapOutput

type HorizontalPodAutoscalerListMapOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerListMapOutput) ElementType

func (HorizontalPodAutoscalerListMapOutput) MapIndex

func (HorizontalPodAutoscalerListMapOutput) ToHorizontalPodAutoscalerListMapOutput

func (o HorizontalPodAutoscalerListMapOutput) ToHorizontalPodAutoscalerListMapOutput() HorizontalPodAutoscalerListMapOutput

func (HorizontalPodAutoscalerListMapOutput) ToHorizontalPodAutoscalerListMapOutputWithContext

func (o HorizontalPodAutoscalerListMapOutput) ToHorizontalPodAutoscalerListMapOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListMapOutput

type HorizontalPodAutoscalerListOutput

type HorizontalPodAutoscalerListOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerListOutput) ElementType

func (HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListOutput

func (o HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListOutput() HorizontalPodAutoscalerListOutput

func (HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListOutputWithContext

func (o HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListOutput

func (HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListPtrOutput

func (o HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListPtrOutput() HorizontalPodAutoscalerListPtrOutput

func (HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListPtrOutputWithContext

func (o HorizontalPodAutoscalerListOutput) ToHorizontalPodAutoscalerListPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListPtrOutput

type HorizontalPodAutoscalerListPtrInput

type HorizontalPodAutoscalerListPtrInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerListPtrOutput() HorizontalPodAutoscalerListPtrOutput
	ToHorizontalPodAutoscalerListPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListPtrOutput
}

type HorizontalPodAutoscalerListPtrOutput

type HorizontalPodAutoscalerListPtrOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerListPtrOutput) Elem added in v3.7.2

func (HorizontalPodAutoscalerListPtrOutput) ElementType

func (HorizontalPodAutoscalerListPtrOutput) ToHorizontalPodAutoscalerListPtrOutput

func (o HorizontalPodAutoscalerListPtrOutput) ToHorizontalPodAutoscalerListPtrOutput() HorizontalPodAutoscalerListPtrOutput

func (HorizontalPodAutoscalerListPtrOutput) ToHorizontalPodAutoscalerListPtrOutputWithContext

func (o HorizontalPodAutoscalerListPtrOutput) ToHorizontalPodAutoscalerListPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListPtrOutput

type HorizontalPodAutoscalerListState

type HorizontalPodAutoscalerListState struct {
}

func (HorizontalPodAutoscalerListState) ElementType

type HorizontalPodAutoscalerListType

type HorizontalPodAutoscalerListType struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// items is the list of horizontal pod autoscaler objects.
	Items []HorizontalPodAutoscalerType `pulumi:"items"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// metadata is the standard list metadata.
	Metadata *metav1.ListMeta `pulumi:"metadata"`
}

HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.

type HorizontalPodAutoscalerListTypeArgs

type HorizontalPodAutoscalerListTypeArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// items is the list of horizontal pod autoscaler objects.
	Items HorizontalPodAutoscalerTypeArrayInput `pulumi:"items"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// metadata is the standard list metadata.
	Metadata metav1.ListMetaPtrInput `pulumi:"metadata"`
}

HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.

func (HorizontalPodAutoscalerListTypeArgs) ElementType

func (HorizontalPodAutoscalerListTypeArgs) ToHorizontalPodAutoscalerListTypeOutput

func (i HorizontalPodAutoscalerListTypeArgs) ToHorizontalPodAutoscalerListTypeOutput() HorizontalPodAutoscalerListTypeOutput

func (HorizontalPodAutoscalerListTypeArgs) ToHorizontalPodAutoscalerListTypeOutputWithContext

func (i HorizontalPodAutoscalerListTypeArgs) ToHorizontalPodAutoscalerListTypeOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListTypeOutput

type HorizontalPodAutoscalerListTypeInput

type HorizontalPodAutoscalerListTypeInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerListTypeOutput() HorizontalPodAutoscalerListTypeOutput
	ToHorizontalPodAutoscalerListTypeOutputWithContext(context.Context) HorizontalPodAutoscalerListTypeOutput
}

HorizontalPodAutoscalerListTypeInput is an input type that accepts HorizontalPodAutoscalerListTypeArgs and HorizontalPodAutoscalerListTypeOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerListTypeInput` via:

HorizontalPodAutoscalerListTypeArgs{...}

type HorizontalPodAutoscalerListTypeOutput

type HorizontalPodAutoscalerListTypeOutput struct{ *pulumi.OutputState }

HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.

func (HorizontalPodAutoscalerListTypeOutput) ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (HorizontalPodAutoscalerListTypeOutput) ElementType

func (HorizontalPodAutoscalerListTypeOutput) Items

items is the list of horizontal pod autoscaler objects.

func (HorizontalPodAutoscalerListTypeOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (HorizontalPodAutoscalerListTypeOutput) Metadata

metadata is the standard list metadata.

func (HorizontalPodAutoscalerListTypeOutput) ToHorizontalPodAutoscalerListTypeOutput

func (o HorizontalPodAutoscalerListTypeOutput) ToHorizontalPodAutoscalerListTypeOutput() HorizontalPodAutoscalerListTypeOutput

func (HorizontalPodAutoscalerListTypeOutput) ToHorizontalPodAutoscalerListTypeOutputWithContext

func (o HorizontalPodAutoscalerListTypeOutput) ToHorizontalPodAutoscalerListTypeOutputWithContext(ctx context.Context) HorizontalPodAutoscalerListTypeOutput

type HorizontalPodAutoscalerMap

type HorizontalPodAutoscalerMap map[string]HorizontalPodAutoscalerInput

func (HorizontalPodAutoscalerMap) ElementType

func (HorizontalPodAutoscalerMap) ElementType() reflect.Type

func (HorizontalPodAutoscalerMap) ToHorizontalPodAutoscalerMapOutput

func (i HorizontalPodAutoscalerMap) ToHorizontalPodAutoscalerMapOutput() HorizontalPodAutoscalerMapOutput

func (HorizontalPodAutoscalerMap) ToHorizontalPodAutoscalerMapOutputWithContext

func (i HorizontalPodAutoscalerMap) ToHorizontalPodAutoscalerMapOutputWithContext(ctx context.Context) HorizontalPodAutoscalerMapOutput

type HorizontalPodAutoscalerMapInput

type HorizontalPodAutoscalerMapInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerMapOutput() HorizontalPodAutoscalerMapOutput
	ToHorizontalPodAutoscalerMapOutputWithContext(context.Context) HorizontalPodAutoscalerMapOutput
}

HorizontalPodAutoscalerMapInput is an input type that accepts HorizontalPodAutoscalerMap and HorizontalPodAutoscalerMapOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerMapInput` via:

HorizontalPodAutoscalerMap{ "key": HorizontalPodAutoscalerArgs{...} }

type HorizontalPodAutoscalerMapOutput

type HorizontalPodAutoscalerMapOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerMapOutput) ElementType

func (HorizontalPodAutoscalerMapOutput) MapIndex

func (HorizontalPodAutoscalerMapOutput) ToHorizontalPodAutoscalerMapOutput

func (o HorizontalPodAutoscalerMapOutput) ToHorizontalPodAutoscalerMapOutput() HorizontalPodAutoscalerMapOutput

func (HorizontalPodAutoscalerMapOutput) ToHorizontalPodAutoscalerMapOutputWithContext

func (o HorizontalPodAutoscalerMapOutput) ToHorizontalPodAutoscalerMapOutputWithContext(ctx context.Context) HorizontalPodAutoscalerMapOutput

type HorizontalPodAutoscalerOutput

type HorizontalPodAutoscalerOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerOutput) ElementType

func (HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerOutput

func (o HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerOutput() HorizontalPodAutoscalerOutput

func (HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerOutputWithContext

func (o HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerOutputWithContext(ctx context.Context) HorizontalPodAutoscalerOutput

func (HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerPtrOutput

func (o HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerPtrOutput() HorizontalPodAutoscalerPtrOutput

func (HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerPtrOutputWithContext

func (o HorizontalPodAutoscalerOutput) ToHorizontalPodAutoscalerPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerPtrOutput

type HorizontalPodAutoscalerPtrInput

type HorizontalPodAutoscalerPtrInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerPtrOutput() HorizontalPodAutoscalerPtrOutput
	ToHorizontalPodAutoscalerPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerPtrOutput
}

type HorizontalPodAutoscalerPtrOutput

type HorizontalPodAutoscalerPtrOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerPtrOutput) Elem added in v3.7.2

func (HorizontalPodAutoscalerPtrOutput) ElementType

func (HorizontalPodAutoscalerPtrOutput) ToHorizontalPodAutoscalerPtrOutput

func (o HorizontalPodAutoscalerPtrOutput) ToHorizontalPodAutoscalerPtrOutput() HorizontalPodAutoscalerPtrOutput

func (HorizontalPodAutoscalerPtrOutput) ToHorizontalPodAutoscalerPtrOutputWithContext

func (o HorizontalPodAutoscalerPtrOutput) ToHorizontalPodAutoscalerPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerPtrOutput

type HorizontalPodAutoscalerSpec

type HorizontalPodAutoscalerSpec struct {
	// maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.
	MaxReplicas int `pulumi:"maxReplicas"`
	// metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods.  Ergo, metrics used must decrease as the pod count is increased, and vice-versa.  See the individual metric source types for more information about how each type of metric must respond.
	Metrics []MetricSpec `pulumi:"metrics"`
	// minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured.  Scaling is active as long as at least one metric value is available.
	MinReplicas *int `pulumi:"minReplicas"`
	// scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
	ScaleTargetRef CrossVersionObjectReference `pulumi:"scaleTargetRef"`
}

HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.

type HorizontalPodAutoscalerSpecArgs

type HorizontalPodAutoscalerSpecArgs struct {
	// maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.
	MaxReplicas pulumi.IntInput `pulumi:"maxReplicas"`
	// metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods.  Ergo, metrics used must decrease as the pod count is increased, and vice-versa.  See the individual metric source types for more information about how each type of metric must respond.
	Metrics MetricSpecArrayInput `pulumi:"metrics"`
	// minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured.  Scaling is active as long as at least one metric value is available.
	MinReplicas pulumi.IntPtrInput `pulumi:"minReplicas"`
	// scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
	ScaleTargetRef CrossVersionObjectReferenceInput `pulumi:"scaleTargetRef"`
}

HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.

func (HorizontalPodAutoscalerSpecArgs) ElementType

func (HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecOutput

func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecOutput() HorizontalPodAutoscalerSpecOutput

func (HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecOutputWithContext

func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecOutputWithContext(ctx context.Context) HorizontalPodAutoscalerSpecOutput

func (HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutput

func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutput() HorizontalPodAutoscalerSpecPtrOutput

func (HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutputWithContext

func (i HorizontalPodAutoscalerSpecArgs) ToHorizontalPodAutoscalerSpecPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerSpecPtrOutput

type HorizontalPodAutoscalerSpecInput

type HorizontalPodAutoscalerSpecInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerSpecOutput() HorizontalPodAutoscalerSpecOutput
	ToHorizontalPodAutoscalerSpecOutputWithContext(context.Context) HorizontalPodAutoscalerSpecOutput
}

HorizontalPodAutoscalerSpecInput is an input type that accepts HorizontalPodAutoscalerSpecArgs and HorizontalPodAutoscalerSpecOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerSpecInput` via:

HorizontalPodAutoscalerSpecArgs{...}

type HorizontalPodAutoscalerSpecOutput

type HorizontalPodAutoscalerSpecOutput struct{ *pulumi.OutputState }

HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.

func (HorizontalPodAutoscalerSpecOutput) ElementType

func (HorizontalPodAutoscalerSpecOutput) MaxReplicas

maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.

func (HorizontalPodAutoscalerSpecOutput) Metrics

metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.

func (HorizontalPodAutoscalerSpecOutput) MinReplicas

minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.

func (HorizontalPodAutoscalerSpecOutput) ScaleTargetRef

scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.

func (HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecOutput

func (o HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecOutput() HorizontalPodAutoscalerSpecOutput

func (HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecOutputWithContext

func (o HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecOutputWithContext(ctx context.Context) HorizontalPodAutoscalerSpecOutput

func (HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecPtrOutput

func (o HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecPtrOutput() HorizontalPodAutoscalerSpecPtrOutput

func (HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecPtrOutputWithContext

func (o HorizontalPodAutoscalerSpecOutput) ToHorizontalPodAutoscalerSpecPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerSpecPtrOutput

type HorizontalPodAutoscalerSpecPtrInput

type HorizontalPodAutoscalerSpecPtrInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerSpecPtrOutput() HorizontalPodAutoscalerSpecPtrOutput
	ToHorizontalPodAutoscalerSpecPtrOutputWithContext(context.Context) HorizontalPodAutoscalerSpecPtrOutput
}

HorizontalPodAutoscalerSpecPtrInput is an input type that accepts HorizontalPodAutoscalerSpecArgs, HorizontalPodAutoscalerSpecPtr and HorizontalPodAutoscalerSpecPtrOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerSpecPtrInput` via:

        HorizontalPodAutoscalerSpecArgs{...}

or:

        nil

type HorizontalPodAutoscalerSpecPtrOutput

type HorizontalPodAutoscalerSpecPtrOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerSpecPtrOutput) Elem

func (HorizontalPodAutoscalerSpecPtrOutput) ElementType

func (HorizontalPodAutoscalerSpecPtrOutput) MaxReplicas

maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.

func (HorizontalPodAutoscalerSpecPtrOutput) Metrics

metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.

func (HorizontalPodAutoscalerSpecPtrOutput) MinReplicas

minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.

func (HorizontalPodAutoscalerSpecPtrOutput) ScaleTargetRef

scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.

func (HorizontalPodAutoscalerSpecPtrOutput) ToHorizontalPodAutoscalerSpecPtrOutput

func (o HorizontalPodAutoscalerSpecPtrOutput) ToHorizontalPodAutoscalerSpecPtrOutput() HorizontalPodAutoscalerSpecPtrOutput

func (HorizontalPodAutoscalerSpecPtrOutput) ToHorizontalPodAutoscalerSpecPtrOutputWithContext

func (o HorizontalPodAutoscalerSpecPtrOutput) ToHorizontalPodAutoscalerSpecPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerSpecPtrOutput

type HorizontalPodAutoscalerState

type HorizontalPodAutoscalerState struct {
}

func (HorizontalPodAutoscalerState) ElementType

type HorizontalPodAutoscalerStatus

type HorizontalPodAutoscalerStatus struct {
	// conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.
	Conditions []HorizontalPodAutoscalerCondition `pulumi:"conditions"`
	// currentMetrics is the last read state of the metrics used by this autoscaler.
	CurrentMetrics []MetricStatus `pulumi:"currentMetrics"`
	// currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.
	CurrentReplicas int `pulumi:"currentReplicas"`
	// desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.
	DesiredReplicas int `pulumi:"desiredReplicas"`
	// lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
	LastScaleTime *string `pulumi:"lastScaleTime"`
	// observedGeneration is the most recent generation observed by this autoscaler.
	ObservedGeneration *int `pulumi:"observedGeneration"`
}

HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.

type HorizontalPodAutoscalerStatusArgs

type HorizontalPodAutoscalerStatusArgs struct {
	// conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.
	Conditions HorizontalPodAutoscalerConditionArrayInput `pulumi:"conditions"`
	// currentMetrics is the last read state of the metrics used by this autoscaler.
	CurrentMetrics MetricStatusArrayInput `pulumi:"currentMetrics"`
	// currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.
	CurrentReplicas pulumi.IntInput `pulumi:"currentReplicas"`
	// desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.
	DesiredReplicas pulumi.IntInput `pulumi:"desiredReplicas"`
	// lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
	LastScaleTime pulumi.StringPtrInput `pulumi:"lastScaleTime"`
	// observedGeneration is the most recent generation observed by this autoscaler.
	ObservedGeneration pulumi.IntPtrInput `pulumi:"observedGeneration"`
}

HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.

func (HorizontalPodAutoscalerStatusArgs) ElementType

func (HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusOutput

func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusOutput() HorizontalPodAutoscalerStatusOutput

func (HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusOutputWithContext

func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusOutputWithContext(ctx context.Context) HorizontalPodAutoscalerStatusOutput

func (HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOutput

func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOutput() HorizontalPodAutoscalerStatusPtrOutput

func (HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOutputWithContext

func (i HorizontalPodAutoscalerStatusArgs) ToHorizontalPodAutoscalerStatusPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerStatusPtrOutput

type HorizontalPodAutoscalerStatusInput

type HorizontalPodAutoscalerStatusInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerStatusOutput() HorizontalPodAutoscalerStatusOutput
	ToHorizontalPodAutoscalerStatusOutputWithContext(context.Context) HorizontalPodAutoscalerStatusOutput
}

HorizontalPodAutoscalerStatusInput is an input type that accepts HorizontalPodAutoscalerStatusArgs and HorizontalPodAutoscalerStatusOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerStatusInput` via:

HorizontalPodAutoscalerStatusArgs{...}

type HorizontalPodAutoscalerStatusOutput

type HorizontalPodAutoscalerStatusOutput struct{ *pulumi.OutputState }

HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.

func (HorizontalPodAutoscalerStatusOutput) Conditions

conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

func (HorizontalPodAutoscalerStatusOutput) CurrentMetrics

currentMetrics is the last read state of the metrics used by this autoscaler.

func (HorizontalPodAutoscalerStatusOutput) CurrentReplicas

currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

func (HorizontalPodAutoscalerStatusOutput) DesiredReplicas

desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

func (HorizontalPodAutoscalerStatusOutput) ElementType

func (HorizontalPodAutoscalerStatusOutput) LastScaleTime

lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.

func (HorizontalPodAutoscalerStatusOutput) ObservedGeneration

observedGeneration is the most recent generation observed by this autoscaler.

func (HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusOutput

func (o HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusOutput() HorizontalPodAutoscalerStatusOutput

func (HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusOutputWithContext

func (o HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusOutputWithContext(ctx context.Context) HorizontalPodAutoscalerStatusOutput

func (HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusPtrOutput

func (o HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusPtrOutput() HorizontalPodAutoscalerStatusPtrOutput

func (HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusPtrOutputWithContext

func (o HorizontalPodAutoscalerStatusOutput) ToHorizontalPodAutoscalerStatusPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerStatusPtrOutput

type HorizontalPodAutoscalerStatusPtrInput

type HorizontalPodAutoscalerStatusPtrInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerStatusPtrOutput() HorizontalPodAutoscalerStatusPtrOutput
	ToHorizontalPodAutoscalerStatusPtrOutputWithContext(context.Context) HorizontalPodAutoscalerStatusPtrOutput
}

HorizontalPodAutoscalerStatusPtrInput is an input type that accepts HorizontalPodAutoscalerStatusArgs, HorizontalPodAutoscalerStatusPtr and HorizontalPodAutoscalerStatusPtrOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerStatusPtrInput` via:

        HorizontalPodAutoscalerStatusArgs{...}

or:

        nil

type HorizontalPodAutoscalerStatusPtrOutput

type HorizontalPodAutoscalerStatusPtrOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerStatusPtrOutput) Conditions

conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.

func (HorizontalPodAutoscalerStatusPtrOutput) CurrentMetrics

currentMetrics is the last read state of the metrics used by this autoscaler.

func (HorizontalPodAutoscalerStatusPtrOutput) CurrentReplicas

currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

func (HorizontalPodAutoscalerStatusPtrOutput) DesiredReplicas

desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

func (HorizontalPodAutoscalerStatusPtrOutput) Elem

func (HorizontalPodAutoscalerStatusPtrOutput) ElementType

func (HorizontalPodAutoscalerStatusPtrOutput) LastScaleTime

lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.

func (HorizontalPodAutoscalerStatusPtrOutput) ObservedGeneration

observedGeneration is the most recent generation observed by this autoscaler.

func (HorizontalPodAutoscalerStatusPtrOutput) ToHorizontalPodAutoscalerStatusPtrOutput

func (o HorizontalPodAutoscalerStatusPtrOutput) ToHorizontalPodAutoscalerStatusPtrOutput() HorizontalPodAutoscalerStatusPtrOutput

func (HorizontalPodAutoscalerStatusPtrOutput) ToHorizontalPodAutoscalerStatusPtrOutputWithContext

func (o HorizontalPodAutoscalerStatusPtrOutput) ToHorizontalPodAutoscalerStatusPtrOutputWithContext(ctx context.Context) HorizontalPodAutoscalerStatusPtrOutput

type HorizontalPodAutoscalerType

type HorizontalPodAutoscalerType struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata *metav1.ObjectMeta `pulumi:"metadata"`
	// spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
	Spec *HorizontalPodAutoscalerSpec `pulumi:"spec"`
	// status is the current information about the autoscaler.
	Status *HorizontalPodAutoscalerStatus `pulumi:"status"`
}

HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

type HorizontalPodAutoscalerTypeArgs

type HorizontalPodAutoscalerTypeArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata metav1.ObjectMetaPtrInput `pulumi:"metadata"`
	// spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.
	Spec HorizontalPodAutoscalerSpecPtrInput `pulumi:"spec"`
	// status is the current information about the autoscaler.
	Status HorizontalPodAutoscalerStatusPtrInput `pulumi:"status"`
}

HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

func (HorizontalPodAutoscalerTypeArgs) ElementType

func (HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutput

func (i HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutput() HorizontalPodAutoscalerTypeOutput

func (HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutputWithContext

func (i HorizontalPodAutoscalerTypeArgs) ToHorizontalPodAutoscalerTypeOutputWithContext(ctx context.Context) HorizontalPodAutoscalerTypeOutput

type HorizontalPodAutoscalerTypeArray

type HorizontalPodAutoscalerTypeArray []HorizontalPodAutoscalerTypeInput

func (HorizontalPodAutoscalerTypeArray) ElementType

func (HorizontalPodAutoscalerTypeArray) ToHorizontalPodAutoscalerTypeArrayOutput

func (i HorizontalPodAutoscalerTypeArray) ToHorizontalPodAutoscalerTypeArrayOutput() HorizontalPodAutoscalerTypeArrayOutput

func (HorizontalPodAutoscalerTypeArray) ToHorizontalPodAutoscalerTypeArrayOutputWithContext

func (i HorizontalPodAutoscalerTypeArray) ToHorizontalPodAutoscalerTypeArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerTypeArrayOutput

type HorizontalPodAutoscalerTypeArrayInput

type HorizontalPodAutoscalerTypeArrayInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerTypeArrayOutput() HorizontalPodAutoscalerTypeArrayOutput
	ToHorizontalPodAutoscalerTypeArrayOutputWithContext(context.Context) HorizontalPodAutoscalerTypeArrayOutput
}

HorizontalPodAutoscalerTypeArrayInput is an input type that accepts HorizontalPodAutoscalerTypeArray and HorizontalPodAutoscalerTypeArrayOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerTypeArrayInput` via:

HorizontalPodAutoscalerTypeArray{ HorizontalPodAutoscalerTypeArgs{...} }

type HorizontalPodAutoscalerTypeArrayOutput

type HorizontalPodAutoscalerTypeArrayOutput struct{ *pulumi.OutputState }

func (HorizontalPodAutoscalerTypeArrayOutput) ElementType

func (HorizontalPodAutoscalerTypeArrayOutput) Index

func (HorizontalPodAutoscalerTypeArrayOutput) ToHorizontalPodAutoscalerTypeArrayOutput

func (o HorizontalPodAutoscalerTypeArrayOutput) ToHorizontalPodAutoscalerTypeArrayOutput() HorizontalPodAutoscalerTypeArrayOutput

func (HorizontalPodAutoscalerTypeArrayOutput) ToHorizontalPodAutoscalerTypeArrayOutputWithContext

func (o HorizontalPodAutoscalerTypeArrayOutput) ToHorizontalPodAutoscalerTypeArrayOutputWithContext(ctx context.Context) HorizontalPodAutoscalerTypeArrayOutput

type HorizontalPodAutoscalerTypeInput

type HorizontalPodAutoscalerTypeInput interface {
	pulumi.Input

	ToHorizontalPodAutoscalerTypeOutput() HorizontalPodAutoscalerTypeOutput
	ToHorizontalPodAutoscalerTypeOutputWithContext(context.Context) HorizontalPodAutoscalerTypeOutput
}

HorizontalPodAutoscalerTypeInput is an input type that accepts HorizontalPodAutoscalerTypeArgs and HorizontalPodAutoscalerTypeOutput values. You can construct a concrete instance of `HorizontalPodAutoscalerTypeInput` via:

HorizontalPodAutoscalerTypeArgs{...}

type HorizontalPodAutoscalerTypeOutput

type HorizontalPodAutoscalerTypeOutput struct{ *pulumi.OutputState }

HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

func (HorizontalPodAutoscalerTypeOutput) ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (HorizontalPodAutoscalerTypeOutput) ElementType

func (HorizontalPodAutoscalerTypeOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (HorizontalPodAutoscalerTypeOutput) Metadata

metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

func (HorizontalPodAutoscalerTypeOutput) Spec

spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status.

func (HorizontalPodAutoscalerTypeOutput) Status

status is the current information about the autoscaler.

func (HorizontalPodAutoscalerTypeOutput) ToHorizontalPodAutoscalerTypeOutput

func (o HorizontalPodAutoscalerTypeOutput) ToHorizontalPodAutoscalerTypeOutput() HorizontalPodAutoscalerTypeOutput

func (HorizontalPodAutoscalerTypeOutput) ToHorizontalPodAutoscalerTypeOutputWithContext

func (o HorizontalPodAutoscalerTypeOutput) ToHorizontalPodAutoscalerTypeOutputWithContext(ctx context.Context) HorizontalPodAutoscalerTypeOutput

type MetricSpec

type MetricSpec struct {
	// container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.
	ContainerResource *ContainerResourceMetricSource `pulumi:"containerResource"`
	// external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
	External *ExternalMetricSource `pulumi:"external"`
	// object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
	Object *ObjectMetricSource `pulumi:"object"`
	// pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value.
	Pods *PodsMetricSource `pulumi:"pods"`
	// resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	Resource *ResourceMetricSource `pulumi:"resource"`
	// type is the type of metric source.  It should be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
	Type string `pulumi:"type"`
}

MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

type MetricSpecArgs

type MetricSpecArgs struct {
	// container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.
	ContainerResource ContainerResourceMetricSourcePtrInput `pulumi:"containerResource"`
	// external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
	External ExternalMetricSourcePtrInput `pulumi:"external"`
	// object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
	Object ObjectMetricSourcePtrInput `pulumi:"object"`
	// pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value.
	Pods PodsMetricSourcePtrInput `pulumi:"pods"`
	// resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	Resource ResourceMetricSourcePtrInput `pulumi:"resource"`
	// type is the type of metric source.  It should be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
	Type pulumi.StringInput `pulumi:"type"`
}

MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

func (MetricSpecArgs) ElementType

func (MetricSpecArgs) ElementType() reflect.Type

func (MetricSpecArgs) ToMetricSpecOutput

func (i MetricSpecArgs) ToMetricSpecOutput() MetricSpecOutput

func (MetricSpecArgs) ToMetricSpecOutputWithContext

func (i MetricSpecArgs) ToMetricSpecOutputWithContext(ctx context.Context) MetricSpecOutput

type MetricSpecArray

type MetricSpecArray []MetricSpecInput

func (MetricSpecArray) ElementType

func (MetricSpecArray) ElementType() reflect.Type

func (MetricSpecArray) ToMetricSpecArrayOutput

func (i MetricSpecArray) ToMetricSpecArrayOutput() MetricSpecArrayOutput

func (MetricSpecArray) ToMetricSpecArrayOutputWithContext

func (i MetricSpecArray) ToMetricSpecArrayOutputWithContext(ctx context.Context) MetricSpecArrayOutput

type MetricSpecArrayInput

type MetricSpecArrayInput interface {
	pulumi.Input

	ToMetricSpecArrayOutput() MetricSpecArrayOutput
	ToMetricSpecArrayOutputWithContext(context.Context) MetricSpecArrayOutput
}

MetricSpecArrayInput is an input type that accepts MetricSpecArray and MetricSpecArrayOutput values. You can construct a concrete instance of `MetricSpecArrayInput` via:

MetricSpecArray{ MetricSpecArgs{...} }

type MetricSpecArrayOutput

type MetricSpecArrayOutput struct{ *pulumi.OutputState }

func (MetricSpecArrayOutput) ElementType

func (MetricSpecArrayOutput) ElementType() reflect.Type

func (MetricSpecArrayOutput) Index

func (MetricSpecArrayOutput) ToMetricSpecArrayOutput

func (o MetricSpecArrayOutput) ToMetricSpecArrayOutput() MetricSpecArrayOutput

func (MetricSpecArrayOutput) ToMetricSpecArrayOutputWithContext

func (o MetricSpecArrayOutput) ToMetricSpecArrayOutputWithContext(ctx context.Context) MetricSpecArrayOutput

type MetricSpecInput

type MetricSpecInput interface {
	pulumi.Input

	ToMetricSpecOutput() MetricSpecOutput
	ToMetricSpecOutputWithContext(context.Context) MetricSpecOutput
}

MetricSpecInput is an input type that accepts MetricSpecArgs and MetricSpecOutput values. You can construct a concrete instance of `MetricSpecInput` via:

MetricSpecArgs{...}

type MetricSpecOutput

type MetricSpecOutput struct{ *pulumi.OutputState }

MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

func (MetricSpecOutput) ContainerResource

container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag.

func (MetricSpecOutput) ElementType

func (MetricSpecOutput) ElementType() reflect.Type

func (MetricSpecOutput) External

external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).

func (MetricSpecOutput) Object

object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

func (MetricSpecOutput) Pods

pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

func (MetricSpecOutput) Resource

resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (MetricSpecOutput) ToMetricSpecOutput

func (o MetricSpecOutput) ToMetricSpecOutput() MetricSpecOutput

func (MetricSpecOutput) ToMetricSpecOutputWithContext

func (o MetricSpecOutput) ToMetricSpecOutputWithContext(ctx context.Context) MetricSpecOutput

func (MetricSpecOutput) Type

type is the type of metric source. It should be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled

type MetricStatus

type MetricStatus struct {
	// container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	ContainerResource *ContainerResourceMetricStatus `pulumi:"containerResource"`
	// external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
	External *ExternalMetricStatus `pulumi:"external"`
	// object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
	Object *ObjectMetricStatus `pulumi:"object"`
	// pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value.
	Pods *PodsMetricStatus `pulumi:"pods"`
	// resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	Resource *ResourceMetricStatus `pulumi:"resource"`
	// type is the type of metric source.  It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
	Type string `pulumi:"type"`
}

MetricStatus describes the last-read state of a single metric.

type MetricStatusArgs

type MetricStatusArgs struct {
	// container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	ContainerResource ContainerResourceMetricStatusPtrInput `pulumi:"containerResource"`
	// external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).
	External ExternalMetricStatusPtrInput `pulumi:"external"`
	// object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).
	Object ObjectMetricStatusPtrInput `pulumi:"object"`
	// pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second).  The values will be averaged together before being compared to the target value.
	Pods PodsMetricStatusPtrInput `pulumi:"pods"`
	// resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.
	Resource ResourceMetricStatusPtrInput `pulumi:"resource"`
	// type is the type of metric source.  It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled
	Type pulumi.StringInput `pulumi:"type"`
}

MetricStatus describes the last-read state of a single metric.

func (MetricStatusArgs) ElementType

func (MetricStatusArgs) ElementType() reflect.Type

func (MetricStatusArgs) ToMetricStatusOutput

func (i MetricStatusArgs) ToMetricStatusOutput() MetricStatusOutput

func (MetricStatusArgs) ToMetricStatusOutputWithContext

func (i MetricStatusArgs) ToMetricStatusOutputWithContext(ctx context.Context) MetricStatusOutput

type MetricStatusArray

type MetricStatusArray []MetricStatusInput

func (MetricStatusArray) ElementType

func (MetricStatusArray) ElementType() reflect.Type

func (MetricStatusArray) ToMetricStatusArrayOutput

func (i MetricStatusArray) ToMetricStatusArrayOutput() MetricStatusArrayOutput

func (MetricStatusArray) ToMetricStatusArrayOutputWithContext

func (i MetricStatusArray) ToMetricStatusArrayOutputWithContext(ctx context.Context) MetricStatusArrayOutput

type MetricStatusArrayInput

type MetricStatusArrayInput interface {
	pulumi.Input

	ToMetricStatusArrayOutput() MetricStatusArrayOutput
	ToMetricStatusArrayOutputWithContext(context.Context) MetricStatusArrayOutput
}

MetricStatusArrayInput is an input type that accepts MetricStatusArray and MetricStatusArrayOutput values. You can construct a concrete instance of `MetricStatusArrayInput` via:

MetricStatusArray{ MetricStatusArgs{...} }

type MetricStatusArrayOutput

type MetricStatusArrayOutput struct{ *pulumi.OutputState }

func (MetricStatusArrayOutput) ElementType

func (MetricStatusArrayOutput) ElementType() reflect.Type

func (MetricStatusArrayOutput) Index

func (MetricStatusArrayOutput) ToMetricStatusArrayOutput

func (o MetricStatusArrayOutput) ToMetricStatusArrayOutput() MetricStatusArrayOutput

func (MetricStatusArrayOutput) ToMetricStatusArrayOutputWithContext

func (o MetricStatusArrayOutput) ToMetricStatusArrayOutputWithContext(ctx context.Context) MetricStatusArrayOutput

type MetricStatusInput

type MetricStatusInput interface {
	pulumi.Input

	ToMetricStatusOutput() MetricStatusOutput
	ToMetricStatusOutputWithContext(context.Context) MetricStatusOutput
}

MetricStatusInput is an input type that accepts MetricStatusArgs and MetricStatusOutput values. You can construct a concrete instance of `MetricStatusInput` via:

MetricStatusArgs{...}

type MetricStatusOutput

type MetricStatusOutput struct{ *pulumi.OutputState }

MetricStatus describes the last-read state of a single metric.

func (MetricStatusOutput) ContainerResource

container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (MetricStatusOutput) ElementType

func (MetricStatusOutput) ElementType() reflect.Type

func (MetricStatusOutput) External

external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).

func (MetricStatusOutput) Object

object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

func (MetricStatusOutput) Pods

pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

func (MetricStatusOutput) Resource

resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (MetricStatusOutput) ToMetricStatusOutput

func (o MetricStatusOutput) ToMetricStatusOutput() MetricStatusOutput

func (MetricStatusOutput) ToMetricStatusOutputWithContext

func (o MetricStatusOutput) ToMetricStatusOutputWithContext(ctx context.Context) MetricStatusOutput

func (MetricStatusOutput) Type

type is the type of metric source. It will be one of "ContainerResource", "External", "Object", "Pods" or "Resource", each corresponds to a matching field in the object. Note: "ContainerResource" type is available on when the feature-gate HPAContainerMetrics is enabled

type ObjectMetricSource

type ObjectMetricSource struct {
	// averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
	AverageValue *string `pulumi:"averageValue"`
	// metricName is the name of the metric in question.
	MetricName string `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
	Selector *metav1.LabelSelector `pulumi:"selector"`
	// target is the described Kubernetes object.
	Target CrossVersionObjectReference `pulumi:"target"`
	// targetValue is the target value of the metric (as a quantity).
	TargetValue string `pulumi:"targetValue"`
}

ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

type ObjectMetricSourceArgs

type ObjectMetricSourceArgs struct {
	// averageValue is the target value of the average of the metric across all relevant pods (as a quantity)
	AverageValue pulumi.StringPtrInput `pulumi:"averageValue"`
	// metricName is the name of the metric in question.
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
	Selector metav1.LabelSelectorPtrInput `pulumi:"selector"`
	// target is the described Kubernetes object.
	Target CrossVersionObjectReferenceInput `pulumi:"target"`
	// targetValue is the target value of the metric (as a quantity).
	TargetValue pulumi.StringInput `pulumi:"targetValue"`
}

ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (ObjectMetricSourceArgs) ElementType

func (ObjectMetricSourceArgs) ElementType() reflect.Type

func (ObjectMetricSourceArgs) ToObjectMetricSourceOutput

func (i ObjectMetricSourceArgs) ToObjectMetricSourceOutput() ObjectMetricSourceOutput

func (ObjectMetricSourceArgs) ToObjectMetricSourceOutputWithContext

func (i ObjectMetricSourceArgs) ToObjectMetricSourceOutputWithContext(ctx context.Context) ObjectMetricSourceOutput

func (ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutput

func (i ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutput() ObjectMetricSourcePtrOutput

func (ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutputWithContext

func (i ObjectMetricSourceArgs) ToObjectMetricSourcePtrOutputWithContext(ctx context.Context) ObjectMetricSourcePtrOutput

type ObjectMetricSourceInput

type ObjectMetricSourceInput interface {
	pulumi.Input

	ToObjectMetricSourceOutput() ObjectMetricSourceOutput
	ToObjectMetricSourceOutputWithContext(context.Context) ObjectMetricSourceOutput
}

ObjectMetricSourceInput is an input type that accepts ObjectMetricSourceArgs and ObjectMetricSourceOutput values. You can construct a concrete instance of `ObjectMetricSourceInput` via:

ObjectMetricSourceArgs{...}

type ObjectMetricSourceOutput

type ObjectMetricSourceOutput struct{ *pulumi.OutputState }

ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (ObjectMetricSourceOutput) AverageValue

averageValue is the target value of the average of the metric across all relevant pods (as a quantity)

func (ObjectMetricSourceOutput) ElementType

func (ObjectMetricSourceOutput) ElementType() reflect.Type

func (ObjectMetricSourceOutput) MetricName

metricName is the name of the metric in question.

func (ObjectMetricSourceOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.

func (ObjectMetricSourceOutput) Target

target is the described Kubernetes object.

func (ObjectMetricSourceOutput) TargetValue

targetValue is the target value of the metric (as a quantity).

func (ObjectMetricSourceOutput) ToObjectMetricSourceOutput

func (o ObjectMetricSourceOutput) ToObjectMetricSourceOutput() ObjectMetricSourceOutput

func (ObjectMetricSourceOutput) ToObjectMetricSourceOutputWithContext

func (o ObjectMetricSourceOutput) ToObjectMetricSourceOutputWithContext(ctx context.Context) ObjectMetricSourceOutput

func (ObjectMetricSourceOutput) ToObjectMetricSourcePtrOutput

func (o ObjectMetricSourceOutput) ToObjectMetricSourcePtrOutput() ObjectMetricSourcePtrOutput

func (ObjectMetricSourceOutput) ToObjectMetricSourcePtrOutputWithContext

func (o ObjectMetricSourceOutput) ToObjectMetricSourcePtrOutputWithContext(ctx context.Context) ObjectMetricSourcePtrOutput

type ObjectMetricSourcePtrInput

type ObjectMetricSourcePtrInput interface {
	pulumi.Input

	ToObjectMetricSourcePtrOutput() ObjectMetricSourcePtrOutput
	ToObjectMetricSourcePtrOutputWithContext(context.Context) ObjectMetricSourcePtrOutput
}

ObjectMetricSourcePtrInput is an input type that accepts ObjectMetricSourceArgs, ObjectMetricSourcePtr and ObjectMetricSourcePtrOutput values. You can construct a concrete instance of `ObjectMetricSourcePtrInput` via:

        ObjectMetricSourceArgs{...}

or:

        nil

type ObjectMetricSourcePtrOutput

type ObjectMetricSourcePtrOutput struct{ *pulumi.OutputState }

func (ObjectMetricSourcePtrOutput) AverageValue

averageValue is the target value of the average of the metric across all relevant pods (as a quantity)

func (ObjectMetricSourcePtrOutput) Elem

func (ObjectMetricSourcePtrOutput) ElementType

func (ObjectMetricSourcePtrOutput) MetricName

metricName is the name of the metric in question.

func (ObjectMetricSourcePtrOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.

func (ObjectMetricSourcePtrOutput) Target

target is the described Kubernetes object.

func (ObjectMetricSourcePtrOutput) TargetValue

targetValue is the target value of the metric (as a quantity).

func (ObjectMetricSourcePtrOutput) ToObjectMetricSourcePtrOutput

func (o ObjectMetricSourcePtrOutput) ToObjectMetricSourcePtrOutput() ObjectMetricSourcePtrOutput

func (ObjectMetricSourcePtrOutput) ToObjectMetricSourcePtrOutputWithContext

func (o ObjectMetricSourcePtrOutput) ToObjectMetricSourcePtrOutputWithContext(ctx context.Context) ObjectMetricSourcePtrOutput

type ObjectMetricStatus

type ObjectMetricStatus struct {
	// averageValue is the current value of the average of the metric across all relevant pods (as a quantity)
	AverageValue *string `pulumi:"averageValue"`
	// currentValue is the current value of the metric (as a quantity).
	CurrentValue string `pulumi:"currentValue"`
	// metricName is the name of the metric in question.
	MetricName string `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.
	Selector *metav1.LabelSelector `pulumi:"selector"`
	// target is the described Kubernetes object.
	Target CrossVersionObjectReference `pulumi:"target"`
}

ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

type ObjectMetricStatusArgs

type ObjectMetricStatusArgs struct {
	// averageValue is the current value of the average of the metric across all relevant pods (as a quantity)
	AverageValue pulumi.StringPtrInput `pulumi:"averageValue"`
	// currentValue is the current value of the metric (as a quantity).
	CurrentValue pulumi.StringInput `pulumi:"currentValue"`
	// metricName is the name of the metric in question.
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.
	Selector metav1.LabelSelectorPtrInput `pulumi:"selector"`
	// target is the described Kubernetes object.
	Target CrossVersionObjectReferenceInput `pulumi:"target"`
}

ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (ObjectMetricStatusArgs) ElementType

func (ObjectMetricStatusArgs) ElementType() reflect.Type

func (ObjectMetricStatusArgs) ToObjectMetricStatusOutput

func (i ObjectMetricStatusArgs) ToObjectMetricStatusOutput() ObjectMetricStatusOutput

func (ObjectMetricStatusArgs) ToObjectMetricStatusOutputWithContext

func (i ObjectMetricStatusArgs) ToObjectMetricStatusOutputWithContext(ctx context.Context) ObjectMetricStatusOutput

func (ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutput

func (i ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutput() ObjectMetricStatusPtrOutput

func (ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutputWithContext

func (i ObjectMetricStatusArgs) ToObjectMetricStatusPtrOutputWithContext(ctx context.Context) ObjectMetricStatusPtrOutput

type ObjectMetricStatusInput

type ObjectMetricStatusInput interface {
	pulumi.Input

	ToObjectMetricStatusOutput() ObjectMetricStatusOutput
	ToObjectMetricStatusOutputWithContext(context.Context) ObjectMetricStatusOutput
}

ObjectMetricStatusInput is an input type that accepts ObjectMetricStatusArgs and ObjectMetricStatusOutput values. You can construct a concrete instance of `ObjectMetricStatusInput` via:

ObjectMetricStatusArgs{...}

type ObjectMetricStatusOutput

type ObjectMetricStatusOutput struct{ *pulumi.OutputState }

ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).

func (ObjectMetricStatusOutput) AverageValue

averageValue is the current value of the average of the metric across all relevant pods (as a quantity)

func (ObjectMetricStatusOutput) CurrentValue

func (o ObjectMetricStatusOutput) CurrentValue() pulumi.StringOutput

currentValue is the current value of the metric (as a quantity).

func (ObjectMetricStatusOutput) ElementType

func (ObjectMetricStatusOutput) ElementType() reflect.Type

func (ObjectMetricStatusOutput) MetricName

metricName is the name of the metric in question.

func (ObjectMetricStatusOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.

func (ObjectMetricStatusOutput) Target

target is the described Kubernetes object.

func (ObjectMetricStatusOutput) ToObjectMetricStatusOutput

func (o ObjectMetricStatusOutput) ToObjectMetricStatusOutput() ObjectMetricStatusOutput

func (ObjectMetricStatusOutput) ToObjectMetricStatusOutputWithContext

func (o ObjectMetricStatusOutput) ToObjectMetricStatusOutputWithContext(ctx context.Context) ObjectMetricStatusOutput

func (ObjectMetricStatusOutput) ToObjectMetricStatusPtrOutput

func (o ObjectMetricStatusOutput) ToObjectMetricStatusPtrOutput() ObjectMetricStatusPtrOutput

func (ObjectMetricStatusOutput) ToObjectMetricStatusPtrOutputWithContext

func (o ObjectMetricStatusOutput) ToObjectMetricStatusPtrOutputWithContext(ctx context.Context) ObjectMetricStatusPtrOutput

type ObjectMetricStatusPtrInput

type ObjectMetricStatusPtrInput interface {
	pulumi.Input

	ToObjectMetricStatusPtrOutput() ObjectMetricStatusPtrOutput
	ToObjectMetricStatusPtrOutputWithContext(context.Context) ObjectMetricStatusPtrOutput
}

ObjectMetricStatusPtrInput is an input type that accepts ObjectMetricStatusArgs, ObjectMetricStatusPtr and ObjectMetricStatusPtrOutput values. You can construct a concrete instance of `ObjectMetricStatusPtrInput` via:

        ObjectMetricStatusArgs{...}

or:

        nil

type ObjectMetricStatusPtrOutput

type ObjectMetricStatusPtrOutput struct{ *pulumi.OutputState }

func (ObjectMetricStatusPtrOutput) AverageValue

averageValue is the current value of the average of the metric across all relevant pods (as a quantity)

func (ObjectMetricStatusPtrOutput) CurrentValue

currentValue is the current value of the metric (as a quantity).

func (ObjectMetricStatusPtrOutput) Elem

func (ObjectMetricStatusPtrOutput) ElementType

func (ObjectMetricStatusPtrOutput) MetricName

metricName is the name of the metric in question.

func (ObjectMetricStatusPtrOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.

func (ObjectMetricStatusPtrOutput) Target

target is the described Kubernetes object.

func (ObjectMetricStatusPtrOutput) ToObjectMetricStatusPtrOutput

func (o ObjectMetricStatusPtrOutput) ToObjectMetricStatusPtrOutput() ObjectMetricStatusPtrOutput

func (ObjectMetricStatusPtrOutput) ToObjectMetricStatusPtrOutputWithContext

func (o ObjectMetricStatusPtrOutput) ToObjectMetricStatusPtrOutputWithContext(ctx context.Context) ObjectMetricStatusPtrOutput

type PodsMetricSource

type PodsMetricSource struct {
	// metricName is the name of the metric in question
	MetricName string `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
	Selector *metav1.LabelSelector `pulumi:"selector"`
	// targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)
	TargetAverageValue string `pulumi:"targetAverageValue"`
}

PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

type PodsMetricSourceArgs

type PodsMetricSourceArgs struct {
	// metricName is the name of the metric in question
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.
	Selector metav1.LabelSelectorPtrInput `pulumi:"selector"`
	// targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)
	TargetAverageValue pulumi.StringInput `pulumi:"targetAverageValue"`
}

PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

func (PodsMetricSourceArgs) ElementType

func (PodsMetricSourceArgs) ElementType() reflect.Type

func (PodsMetricSourceArgs) ToPodsMetricSourceOutput

func (i PodsMetricSourceArgs) ToPodsMetricSourceOutput() PodsMetricSourceOutput

func (PodsMetricSourceArgs) ToPodsMetricSourceOutputWithContext

func (i PodsMetricSourceArgs) ToPodsMetricSourceOutputWithContext(ctx context.Context) PodsMetricSourceOutput

func (PodsMetricSourceArgs) ToPodsMetricSourcePtrOutput

func (i PodsMetricSourceArgs) ToPodsMetricSourcePtrOutput() PodsMetricSourcePtrOutput

func (PodsMetricSourceArgs) ToPodsMetricSourcePtrOutputWithContext

func (i PodsMetricSourceArgs) ToPodsMetricSourcePtrOutputWithContext(ctx context.Context) PodsMetricSourcePtrOutput

type PodsMetricSourceInput

type PodsMetricSourceInput interface {
	pulumi.Input

	ToPodsMetricSourceOutput() PodsMetricSourceOutput
	ToPodsMetricSourceOutputWithContext(context.Context) PodsMetricSourceOutput
}

PodsMetricSourceInput is an input type that accepts PodsMetricSourceArgs and PodsMetricSourceOutput values. You can construct a concrete instance of `PodsMetricSourceInput` via:

PodsMetricSourceArgs{...}

type PodsMetricSourceOutput

type PodsMetricSourceOutput struct{ *pulumi.OutputState }

PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

func (PodsMetricSourceOutput) ElementType

func (PodsMetricSourceOutput) ElementType() reflect.Type

func (PodsMetricSourceOutput) MetricName

metricName is the name of the metric in question

func (PodsMetricSourceOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.

func (PodsMetricSourceOutput) TargetAverageValue

func (o PodsMetricSourceOutput) TargetAverageValue() pulumi.StringOutput

targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)

func (PodsMetricSourceOutput) ToPodsMetricSourceOutput

func (o PodsMetricSourceOutput) ToPodsMetricSourceOutput() PodsMetricSourceOutput

func (PodsMetricSourceOutput) ToPodsMetricSourceOutputWithContext

func (o PodsMetricSourceOutput) ToPodsMetricSourceOutputWithContext(ctx context.Context) PodsMetricSourceOutput

func (PodsMetricSourceOutput) ToPodsMetricSourcePtrOutput

func (o PodsMetricSourceOutput) ToPodsMetricSourcePtrOutput() PodsMetricSourcePtrOutput

func (PodsMetricSourceOutput) ToPodsMetricSourcePtrOutputWithContext

func (o PodsMetricSourceOutput) ToPodsMetricSourcePtrOutputWithContext(ctx context.Context) PodsMetricSourcePtrOutput

type PodsMetricSourcePtrInput

type PodsMetricSourcePtrInput interface {
	pulumi.Input

	ToPodsMetricSourcePtrOutput() PodsMetricSourcePtrOutput
	ToPodsMetricSourcePtrOutputWithContext(context.Context) PodsMetricSourcePtrOutput
}

PodsMetricSourcePtrInput is an input type that accepts PodsMetricSourceArgs, PodsMetricSourcePtr and PodsMetricSourcePtrOutput values. You can construct a concrete instance of `PodsMetricSourcePtrInput` via:

        PodsMetricSourceArgs{...}

or:

        nil

type PodsMetricSourcePtrOutput

type PodsMetricSourcePtrOutput struct{ *pulumi.OutputState }

func (PodsMetricSourcePtrOutput) Elem

func (PodsMetricSourcePtrOutput) ElementType

func (PodsMetricSourcePtrOutput) ElementType() reflect.Type

func (PodsMetricSourcePtrOutput) MetricName

metricName is the name of the metric in question

func (PodsMetricSourcePtrOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.

func (PodsMetricSourcePtrOutput) TargetAverageValue

func (o PodsMetricSourcePtrOutput) TargetAverageValue() pulumi.StringPtrOutput

targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)

func (PodsMetricSourcePtrOutput) ToPodsMetricSourcePtrOutput

func (o PodsMetricSourcePtrOutput) ToPodsMetricSourcePtrOutput() PodsMetricSourcePtrOutput

func (PodsMetricSourcePtrOutput) ToPodsMetricSourcePtrOutputWithContext

func (o PodsMetricSourcePtrOutput) ToPodsMetricSourcePtrOutputWithContext(ctx context.Context) PodsMetricSourcePtrOutput

type PodsMetricStatus

type PodsMetricStatus struct {
	// currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)
	CurrentAverageValue string `pulumi:"currentAverageValue"`
	// metricName is the name of the metric in question
	MetricName string `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.
	Selector *metav1.LabelSelector `pulumi:"selector"`
}

PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).

type PodsMetricStatusArgs

type PodsMetricStatusArgs struct {
	// currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)
	CurrentAverageValue pulumi.StringInput `pulumi:"currentAverageValue"`
	// metricName is the name of the metric in question
	MetricName pulumi.StringInput `pulumi:"metricName"`
	// selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.
	Selector metav1.LabelSelectorPtrInput `pulumi:"selector"`
}

PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).

func (PodsMetricStatusArgs) ElementType

func (PodsMetricStatusArgs) ElementType() reflect.Type

func (PodsMetricStatusArgs) ToPodsMetricStatusOutput

func (i PodsMetricStatusArgs) ToPodsMetricStatusOutput() PodsMetricStatusOutput

func (PodsMetricStatusArgs) ToPodsMetricStatusOutputWithContext

func (i PodsMetricStatusArgs) ToPodsMetricStatusOutputWithContext(ctx context.Context) PodsMetricStatusOutput

func (PodsMetricStatusArgs) ToPodsMetricStatusPtrOutput

func (i PodsMetricStatusArgs) ToPodsMetricStatusPtrOutput() PodsMetricStatusPtrOutput

func (PodsMetricStatusArgs) ToPodsMetricStatusPtrOutputWithContext

func (i PodsMetricStatusArgs) ToPodsMetricStatusPtrOutputWithContext(ctx context.Context) PodsMetricStatusPtrOutput

type PodsMetricStatusInput

type PodsMetricStatusInput interface {
	pulumi.Input

	ToPodsMetricStatusOutput() PodsMetricStatusOutput
	ToPodsMetricStatusOutputWithContext(context.Context) PodsMetricStatusOutput
}

PodsMetricStatusInput is an input type that accepts PodsMetricStatusArgs and PodsMetricStatusOutput values. You can construct a concrete instance of `PodsMetricStatusInput` via:

PodsMetricStatusArgs{...}

type PodsMetricStatusOutput

type PodsMetricStatusOutput struct{ *pulumi.OutputState }

PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).

func (PodsMetricStatusOutput) CurrentAverageValue

func (o PodsMetricStatusOutput) CurrentAverageValue() pulumi.StringOutput

currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)

func (PodsMetricStatusOutput) ElementType

func (PodsMetricStatusOutput) ElementType() reflect.Type

func (PodsMetricStatusOutput) MetricName

metricName is the name of the metric in question

func (PodsMetricStatusOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.

func (PodsMetricStatusOutput) ToPodsMetricStatusOutput

func (o PodsMetricStatusOutput) ToPodsMetricStatusOutput() PodsMetricStatusOutput

func (PodsMetricStatusOutput) ToPodsMetricStatusOutputWithContext

func (o PodsMetricStatusOutput) ToPodsMetricStatusOutputWithContext(ctx context.Context) PodsMetricStatusOutput

func (PodsMetricStatusOutput) ToPodsMetricStatusPtrOutput

func (o PodsMetricStatusOutput) ToPodsMetricStatusPtrOutput() PodsMetricStatusPtrOutput

func (PodsMetricStatusOutput) ToPodsMetricStatusPtrOutputWithContext

func (o PodsMetricStatusOutput) ToPodsMetricStatusPtrOutputWithContext(ctx context.Context) PodsMetricStatusPtrOutput

type PodsMetricStatusPtrInput

type PodsMetricStatusPtrInput interface {
	pulumi.Input

	ToPodsMetricStatusPtrOutput() PodsMetricStatusPtrOutput
	ToPodsMetricStatusPtrOutputWithContext(context.Context) PodsMetricStatusPtrOutput
}

PodsMetricStatusPtrInput is an input type that accepts PodsMetricStatusArgs, PodsMetricStatusPtr and PodsMetricStatusPtrOutput values. You can construct a concrete instance of `PodsMetricStatusPtrInput` via:

        PodsMetricStatusArgs{...}

or:

        nil

type PodsMetricStatusPtrOutput

type PodsMetricStatusPtrOutput struct{ *pulumi.OutputState }

func (PodsMetricStatusPtrOutput) CurrentAverageValue

func (o PodsMetricStatusPtrOutput) CurrentAverageValue() pulumi.StringPtrOutput

currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)

func (PodsMetricStatusPtrOutput) Elem

func (PodsMetricStatusPtrOutput) ElementType

func (PodsMetricStatusPtrOutput) ElementType() reflect.Type

func (PodsMetricStatusPtrOutput) MetricName

metricName is the name of the metric in question

func (PodsMetricStatusPtrOutput) Selector

selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.

func (PodsMetricStatusPtrOutput) ToPodsMetricStatusPtrOutput

func (o PodsMetricStatusPtrOutput) ToPodsMetricStatusPtrOutput() PodsMetricStatusPtrOutput

func (PodsMetricStatusPtrOutput) ToPodsMetricStatusPtrOutputWithContext

func (o PodsMetricStatusPtrOutput) ToPodsMetricStatusPtrOutputWithContext(ctx context.Context) PodsMetricStatusPtrOutput

type ResourceMetricSource

type ResourceMetricSource struct {
	// name is the name of the resource in question.
	Name string `pulumi:"name"`
	// targetAverageUtilization 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.
	TargetAverageUtilization *int `pulumi:"targetAverageUtilization"`
	// targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
	TargetAverageValue *string `pulumi:"targetAverageValue"`
}

ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

type ResourceMetricSourceArgs

type ResourceMetricSourceArgs struct {
	// name is the name of the resource in question.
	Name pulumi.StringInput `pulumi:"name"`
	// targetAverageUtilization 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.
	TargetAverageUtilization pulumi.IntPtrInput `pulumi:"targetAverageUtilization"`
	// targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.
	TargetAverageValue pulumi.StringPtrInput `pulumi:"targetAverageValue"`
}

ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

func (ResourceMetricSourceArgs) ElementType

func (ResourceMetricSourceArgs) ElementType() reflect.Type

func (ResourceMetricSourceArgs) ToResourceMetricSourceOutput

func (i ResourceMetricSourceArgs) ToResourceMetricSourceOutput() ResourceMetricSourceOutput

func (ResourceMetricSourceArgs) ToResourceMetricSourceOutputWithContext

func (i ResourceMetricSourceArgs) ToResourceMetricSourceOutputWithContext(ctx context.Context) ResourceMetricSourceOutput

func (ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutput

func (i ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutput() ResourceMetricSourcePtrOutput

func (ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutputWithContext

func (i ResourceMetricSourceArgs) ToResourceMetricSourcePtrOutputWithContext(ctx context.Context) ResourceMetricSourcePtrOutput

type ResourceMetricSourceInput

type ResourceMetricSourceInput interface {
	pulumi.Input

	ToResourceMetricSourceOutput() ResourceMetricSourceOutput
	ToResourceMetricSourceOutputWithContext(context.Context) ResourceMetricSourceOutput
}

ResourceMetricSourceInput is an input type that accepts ResourceMetricSourceArgs and ResourceMetricSourceOutput values. You can construct a concrete instance of `ResourceMetricSourceInput` via:

ResourceMetricSourceArgs{...}

type ResourceMetricSourceOutput

type ResourceMetricSourceOutput struct{ *pulumi.OutputState }

ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.

func (ResourceMetricSourceOutput) ElementType

func (ResourceMetricSourceOutput) ElementType() reflect.Type

func (ResourceMetricSourceOutput) Name

name is the name of the resource in question.

func (ResourceMetricSourceOutput) TargetAverageUtilization

func (o ResourceMetricSourceOutput) TargetAverageUtilization() pulumi.IntPtrOutput

targetAverageUtilization 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.

func (ResourceMetricSourceOutput) TargetAverageValue

func (o ResourceMetricSourceOutput) TargetAverageValue() pulumi.StringPtrOutput

targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.

func (ResourceMetricSourceOutput) ToResourceMetricSourceOutput

func (o ResourceMetricSourceOutput) ToResourceMetricSourceOutput() ResourceMetricSourceOutput

func (ResourceMetricSourceOutput) ToResourceMetricSourceOutputWithContext

func (o ResourceMetricSourceOutput) ToResourceMetricSourceOutputWithContext(ctx context.Context) ResourceMetricSourceOutput

func (ResourceMetricSourceOutput) ToResourceMetricSourcePtrOutput

func (o ResourceMetricSourceOutput) ToResourceMetricSourcePtrOutput() ResourceMetricSourcePtrOutput

func (ResourceMetricSourceOutput) ToResourceMetricSourcePtrOutputWithContext

func (o ResourceMetricSourceOutput) ToResourceMetricSourcePtrOutputWithContext(ctx context.Context) ResourceMetricSourcePtrOutput

type ResourceMetricSourcePtrInput

type ResourceMetricSourcePtrInput interface {
	pulumi.Input

	ToResourceMetricSourcePtrOutput() ResourceMetricSourcePtrOutput
	ToResourceMetricSourcePtrOutputWithContext(context.Context) ResourceMetricSourcePtrOutput
}

ResourceMetricSourcePtrInput is an input type that accepts ResourceMetricSourceArgs, ResourceMetricSourcePtr and ResourceMetricSourcePtrOutput values. You can construct a concrete instance of `ResourceMetricSourcePtrInput` via:

        ResourceMetricSourceArgs{...}

or:

        nil

type ResourceMetricSourcePtrOutput

type ResourceMetricSourcePtrOutput struct{ *pulumi.OutputState }

func (ResourceMetricSourcePtrOutput) Elem

func (ResourceMetricSourcePtrOutput) ElementType

func (ResourceMetricSourcePtrOutput) Name

name is the name of the resource in question.

func (ResourceMetricSourcePtrOutput) TargetAverageUtilization

func (o ResourceMetricSourcePtrOutput) TargetAverageUtilization() pulumi.IntPtrOutput

targetAverageUtilization 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.

func (ResourceMetricSourcePtrOutput) TargetAverageValue

func (o ResourceMetricSourcePtrOutput) TargetAverageValue() pulumi.StringPtrOutput

targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.

func (ResourceMetricSourcePtrOutput) ToResourceMetricSourcePtrOutput

func (o ResourceMetricSourcePtrOutput) ToResourceMetricSourcePtrOutput() ResourceMetricSourcePtrOutput

func (ResourceMetricSourcePtrOutput) ToResourceMetricSourcePtrOutputWithContext

func (o ResourceMetricSourcePtrOutput) ToResourceMetricSourcePtrOutputWithContext(ctx context.Context) ResourceMetricSourcePtrOutput

type ResourceMetricStatus

type ResourceMetricStatus struct {
	// currentAverageUtilization is the current 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.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.
	CurrentAverageUtilization *int `pulumi:"currentAverageUtilization"`
	// currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
	CurrentAverageValue string `pulumi:"currentAverageValue"`
	// name is the name of the resource in question.
	Name string `pulumi:"name"`
}

ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

type ResourceMetricStatusArgs

type ResourceMetricStatusArgs struct {
	// currentAverageUtilization is the current 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.  It will only be present if `targetAverageValue` was set in the corresponding metric specification.
	CurrentAverageUtilization pulumi.IntPtrInput `pulumi:"currentAverageUtilization"`
	// currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.
	CurrentAverageValue pulumi.StringInput `pulumi:"currentAverageValue"`
	// name is the name of the resource in question.
	Name pulumi.StringInput `pulumi:"name"`
}

ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (ResourceMetricStatusArgs) ElementType

func (ResourceMetricStatusArgs) ElementType() reflect.Type

func (ResourceMetricStatusArgs) ToResourceMetricStatusOutput

func (i ResourceMetricStatusArgs) ToResourceMetricStatusOutput() ResourceMetricStatusOutput

func (ResourceMetricStatusArgs) ToResourceMetricStatusOutputWithContext

func (i ResourceMetricStatusArgs) ToResourceMetricStatusOutputWithContext(ctx context.Context) ResourceMetricStatusOutput

func (ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutput

func (i ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutput() ResourceMetricStatusPtrOutput

func (ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutputWithContext

func (i ResourceMetricStatusArgs) ToResourceMetricStatusPtrOutputWithContext(ctx context.Context) ResourceMetricStatusPtrOutput

type ResourceMetricStatusInput

type ResourceMetricStatusInput interface {
	pulumi.Input

	ToResourceMetricStatusOutput() ResourceMetricStatusOutput
	ToResourceMetricStatusOutputWithContext(context.Context) ResourceMetricStatusOutput
}

ResourceMetricStatusInput is an input type that accepts ResourceMetricStatusArgs and ResourceMetricStatusOutput values. You can construct a concrete instance of `ResourceMetricStatusInput` via:

ResourceMetricStatusArgs{...}

type ResourceMetricStatusOutput

type ResourceMetricStatusOutput struct{ *pulumi.OutputState }

ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

func (ResourceMetricStatusOutput) CurrentAverageUtilization

func (o ResourceMetricStatusOutput) CurrentAverageUtilization() pulumi.IntPtrOutput

currentAverageUtilization is the current 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. It will only be present if `targetAverageValue` was set in the corresponding metric specification.

func (ResourceMetricStatusOutput) CurrentAverageValue

func (o ResourceMetricStatusOutput) CurrentAverageValue() pulumi.StringOutput

currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.

func (ResourceMetricStatusOutput) ElementType

func (ResourceMetricStatusOutput) ElementType() reflect.Type

func (ResourceMetricStatusOutput) Name

name is the name of the resource in question.

func (ResourceMetricStatusOutput) ToResourceMetricStatusOutput

func (o ResourceMetricStatusOutput) ToResourceMetricStatusOutput() ResourceMetricStatusOutput

func (ResourceMetricStatusOutput) ToResourceMetricStatusOutputWithContext

func (o ResourceMetricStatusOutput) ToResourceMetricStatusOutputWithContext(ctx context.Context) ResourceMetricStatusOutput

func (ResourceMetricStatusOutput) ToResourceMetricStatusPtrOutput

func (o ResourceMetricStatusOutput) ToResourceMetricStatusPtrOutput() ResourceMetricStatusPtrOutput

func (ResourceMetricStatusOutput) ToResourceMetricStatusPtrOutputWithContext

func (o ResourceMetricStatusOutput) ToResourceMetricStatusPtrOutputWithContext(ctx context.Context) ResourceMetricStatusPtrOutput

type ResourceMetricStatusPtrInput

type ResourceMetricStatusPtrInput interface {
	pulumi.Input

	ToResourceMetricStatusPtrOutput() ResourceMetricStatusPtrOutput
	ToResourceMetricStatusPtrOutputWithContext(context.Context) ResourceMetricStatusPtrOutput
}

ResourceMetricStatusPtrInput is an input type that accepts ResourceMetricStatusArgs, ResourceMetricStatusPtr and ResourceMetricStatusPtrOutput values. You can construct a concrete instance of `ResourceMetricStatusPtrInput` via:

        ResourceMetricStatusArgs{...}

or:

        nil

type ResourceMetricStatusPtrOutput

type ResourceMetricStatusPtrOutput struct{ *pulumi.OutputState }

func (ResourceMetricStatusPtrOutput) CurrentAverageUtilization

func (o ResourceMetricStatusPtrOutput) CurrentAverageUtilization() pulumi.IntPtrOutput

currentAverageUtilization is the current 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. It will only be present if `targetAverageValue` was set in the corresponding metric specification.

func (ResourceMetricStatusPtrOutput) CurrentAverageValue

func (o ResourceMetricStatusPtrOutput) CurrentAverageValue() pulumi.StringPtrOutput

currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.

func (ResourceMetricStatusPtrOutput) Elem

func (ResourceMetricStatusPtrOutput) ElementType

func (ResourceMetricStatusPtrOutput) Name

name is the name of the resource in question.

func (ResourceMetricStatusPtrOutput) ToResourceMetricStatusPtrOutput

func (o ResourceMetricStatusPtrOutput) ToResourceMetricStatusPtrOutput() ResourceMetricStatusPtrOutput

func (ResourceMetricStatusPtrOutput) ToResourceMetricStatusPtrOutputWithContext

func (o ResourceMetricStatusPtrOutput) ToResourceMetricStatusPtrOutputWithContext(ctx context.Context) ResourceMetricStatusPtrOutput

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL