[−][src]Struct k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::CustomResourceSubresourceScale
CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.
Fields
label_selector_path: Option<String>
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.
spec_replicas_path: String
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.
status_replicas_path: String
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.
Trait Implementations
impl Clone for CustomResourceSubresourceScale
[src]
pub fn clone(&self) -> CustomResourceSubresourceScale
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for CustomResourceSubresourceScale
[src]
impl Default for CustomResourceSubresourceScale
[src]
pub fn default() -> CustomResourceSubresourceScale
[src]
impl<'de> Deserialize<'de> for CustomResourceSubresourceScale
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<CustomResourceSubresourceScale> for CustomResourceSubresourceScale
[src]
pub fn eq(&self, other: &CustomResourceSubresourceScale) -> bool
[src]
pub fn ne(&self, other: &CustomResourceSubresourceScale) -> bool
[src]
impl Serialize for CustomResourceSubresourceScale
[src]
impl StructuralPartialEq for CustomResourceSubresourceScale
[src]
Auto Trait Implementations
impl RefUnwindSafe for CustomResourceSubresourceScale
[src]
impl Send for CustomResourceSubresourceScale
[src]
impl Sync for CustomResourceSubresourceScale
[src]
impl Unpin for CustomResourceSubresourceScale
[src]
impl UnwindSafe for CustomResourceSubresourceScale
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,