pub struct GatewayClassParametersRef {
pub group: String,
pub kind: String,
pub name: String,
pub namespace: Option<String>,
}Expand description
ParametersRef is a reference to a resource that contains the configuration parameters corresponding to the GatewayClass. This is optional if the controller does not require any additional configuration. ParametersRef can reference a standard Kubernetes resource, i.e. ConfigMap, or an implementation-specific custom resource. The resource can be cluster-scoped or namespace-scoped. If the referent cannot be found, the GatewayClass’s “InvalidParameters” status condition will be true. Support: Implementation-specific
Fields§
§group: StringGroup is the group of the referent.
kind: StringKind is kind of the referent.
name: StringName is the name of the referent.
namespace: Option<String>Namespace is the namespace of the referent. This field is required when referring to a Namespace-scoped resource and MUST be unset when referring to a Cluster-scoped resource.
Trait Implementations§
source§impl Clone for GatewayClassParametersRef
impl Clone for GatewayClassParametersRef
source§fn clone(&self) -> GatewayClassParametersRef
fn clone(&self) -> GatewayClassParametersRef
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GatewayClassParametersRef
impl Debug for GatewayClassParametersRef
source§impl<'de> Deserialize<'de> for GatewayClassParametersRef
impl<'de> Deserialize<'de> for GatewayClassParametersRef
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>,
source§impl JsonSchema for GatewayClassParametersRef
impl JsonSchema for GatewayClassParametersRef
source§fn schema_name() -> String
fn schema_name() -> String
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref keyword. Read more