Class CustomResourceSubresourceScale
- java.lang.Object
-
- com.pulumi.kubernetes.apiextensions.v1beta1.outputs.CustomResourceSubresourceScale
-
public final class CustomResourceSubresourceScale extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CustomResourceSubresourceScale.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomResourceSubresourceScale.Builder
builder()
static CustomResourceSubresourceScale.Builder
builder(CustomResourceSubresourceScale defaults)
java.util.Optional<java.lang.String>
labelSelectorPath()
java.lang.String
specReplicasPath()
java.lang.String
statusReplicasPath()
-
-
-
Method Detail
-
labelSelectorPath
public java.util.Optional<java.lang.String> labelSelectorPath()
- Returns:
- labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.
-
specReplicasPath
public java.lang.String specReplicasPath()
- Returns:
- specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.
-
statusReplicasPath
public java.lang.String statusReplicasPath()
- Returns:
- statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.
-
builder
public static CustomResourceSubresourceScale.Builder builder()
-
builder
public static CustomResourceSubresourceScale.Builder builder(CustomResourceSubresourceScale defaults)
-
-