Package-level declarations
Types
Link copied to clipboard
data class CrossVersionObjectReference(val apiVersion: String? = null, val kind: String, val name: String)
CrossVersionObjectReference contains enough information to let you identify the referred resource.
Link copied to clipboard
data class CrossVersionObjectReferencePatch(val apiVersion: String? = null, val kind: String? = null, val name: String? = null)
CrossVersionObjectReference contains enough information to let you identify the referred resource.
Link copied to clipboard
data class HorizontalPodAutoscaler(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: HorizontalPodAutoscalerSpec? = null, val status: HorizontalPodAutoscalerStatus? = null)
configuration of a horizontal pod autoscaler.
Link copied to clipboard
data class HorizontalPodAutoscalerSpec(val maxReplicas: Int, val minReplicas: Int? = null, val scaleTargetRef: CrossVersionObjectReference, val targetCPUUtilizationPercentage: Int? = null)
specification of a horizontal pod autoscaler.
Link copied to clipboard
data class HorizontalPodAutoscalerSpecPatch(val maxReplicas: Int? = null, val minReplicas: Int? = null, val scaleTargetRef: CrossVersionObjectReferencePatch? = null, val targetCPUUtilizationPercentage: Int? = null)
specification of a horizontal pod autoscaler.
Link copied to clipboard
Link copied to clipboard