[][src]Struct k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1beta1::CustomResourceDefinitionNames

pub struct CustomResourceDefinitionNames {
    pub categories: Option<Vec<String>>,
    pub kind: String,
    pub list_kind: Option<String>,
    pub plural: String,
    pub short_names: Option<Vec<String>>,
    pub singular: Option<String>,
}

CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition

Fields

categories: Option<Vec<String>>

categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all.

kind: String

kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the kind attribute in API calls.

list_kind: Option<String>

listKind is the serialized kind of the list for this resource. Defaults to "kindList".

plural: String

plural is the plural name of the resource to serve. The custom resources are served under /apis/\<group\>/\<version\>/.../\<plural\>. Must match the name of the CustomResourceDefinition (in the form \<names.plural\>.\<group\>). Must be all lowercase.

short_names: Option<Vec<String>>

shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get \<shortname\>. It must be all lowercase.

singular: Option<String>

singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased kind.

Trait Implementations

impl Clone for CustomResourceDefinitionNames[src]

impl Debug for CustomResourceDefinitionNames[src]

impl Default for CustomResourceDefinitionNames[src]

impl<'de> Deserialize<'de> for CustomResourceDefinitionNames[src]

impl PartialEq<CustomResourceDefinitionNames> for CustomResourceDefinitionNames[src]

impl Serialize for CustomResourceDefinitionNames[src]

impl StructuralPartialEq for CustomResourceDefinitionNames[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.