pub struct CheClusterServerDevfileRegistryRoute {
pub annotations: Option<BTreeMap<String, String>>,
pub domain: Option<String>,
pub labels: Option<String>,
}Expand description
Deprecated. The value of this flag is ignored. The devfile registry route custom settings.
Fields§
§annotations: Option<BTreeMap<String, String>>Unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.
domain: Option<String>Operator uses the domain to generate a hostname for a route.
In a conjunction with labels it creates a route, which is served by a non-default Ingress controller.
The generated host name will follow this pattern: <route-name>-<route-namespace>.<domain>.
labels: Option<String>Comma separated list of labels that can be used to organize and categorize objects by scoping and selecting.
Trait Implementations§
Source§impl Clone for CheClusterServerDevfileRegistryRoute
impl Clone for CheClusterServerDevfileRegistryRoute
Source§fn clone(&self) -> CheClusterServerDevfileRegistryRoute
fn clone(&self) -> CheClusterServerDevfileRegistryRoute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CheClusterServerDevfileRegistryRoute
impl Default for CheClusterServerDevfileRegistryRoute
Source§fn default() -> CheClusterServerDevfileRegistryRoute
fn default() -> CheClusterServerDevfileRegistryRoute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheClusterServerDevfileRegistryRoute
impl<'de> Deserialize<'de> for CheClusterServerDevfileRegistryRoute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CheClusterServerDevfileRegistryRoute
impl PartialEq for CheClusterServerDevfileRegistryRoute
Source§fn eq(&self, other: &CheClusterServerDevfileRegistryRoute) -> bool
fn eq(&self, other: &CheClusterServerDevfileRegistryRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CheClusterServerDevfileRegistryRoute
Auto Trait Implementations§
impl Freeze for CheClusterServerDevfileRegistryRoute
impl RefUnwindSafe for CheClusterServerDevfileRegistryRoute
impl Send for CheClusterServerDevfileRegistryRoute
impl Sync for CheClusterServerDevfileRegistryRoute
impl Unpin for CheClusterServerDevfileRegistryRoute
impl UnwindSafe for CheClusterServerDevfileRegistryRoute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more