Struct k8s_openapi::api::core::v1::LoadBalancerIngress [−][src]
pub struct LoadBalancerIngress {
pub hostname: Option<String>,
pub ip: Option<String>,
pub ports: Option<Vec<PortStatus>>,
}
Expand description
LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.
Fields
hostname: Option<String>
Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)
ip: Option<String>
IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)
ports: Option<Vec<PortStatus>>
Ports is a list of records of service ports If used, every port defined in the service should have an entry in it
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LoadBalancerIngress
impl Send for LoadBalancerIngress
impl Sync for LoadBalancerIngress
impl Unpin for LoadBalancerIngress
impl UnwindSafe for LoadBalancerIngress
Blanket Implementations
Mutably borrows from an owned value. Read more