Show / Hide Table of Contents

Class V1CustomResourceSubresourceScale

CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.

Inheritance
object
V1CustomResourceSubresourceScale
Implements
IEquatable<V1CustomResourceSubresourceScale>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1CustomResourceSubresourceScale : IEquatable<V1CustomResourceSubresourceScale>

Constructors

V1CustomResourceSubresourceScale()

Declaration
public V1CustomResourceSubresourceScale()

V1CustomResourceSubresourceScale(V1CustomResourceSubresourceScale)

Declaration
protected V1CustomResourceSubresourceScale(V1CustomResourceSubresourceScale original)
Parameters
Type Name Description
V1CustomResourceSubresourceScale original

Properties

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

LabelSelectorPath

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.

Declaration
[JsonPropertyName("labelSelectorPath")]
public string LabelSelectorPath { get; set; }
Property Value
Type Description
string

SpecReplicasPath

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.

Declaration
[JsonPropertyName("specReplicasPath")]
public string SpecReplicasPath { get; set; }
Property Value
Type Description
string

StatusReplicasPath

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.

Declaration
[JsonPropertyName("statusReplicasPath")]
public string StatusReplicasPath { get; set; }
Property Value
Type Description
string

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1CustomResourceSubresourceScale?)

Declaration
public virtual bool Equals(V1CustomResourceSubresourceScale? other)
Parameters
Type Name Description
V1CustomResourceSubresourceScale other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1CustomResourceSubresourceScale?, V1CustomResourceSubresourceScale?)

Declaration
public static bool operator ==(V1CustomResourceSubresourceScale? left, V1CustomResourceSubresourceScale? right)
Parameters
Type Name Description
V1CustomResourceSubresourceScale left
V1CustomResourceSubresourceScale right
Returns
Type Description
bool

operator !=(V1CustomResourceSubresourceScale?, V1CustomResourceSubresourceScale?)

Declaration
public static bool operator !=(V1CustomResourceSubresourceScale? left, V1CustomResourceSubresourceScale? right)
Parameters
Type Name Description
V1CustomResourceSubresourceScale left
V1CustomResourceSubresourceScale right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX