Package io.fabric8.kubernetes.api.model
Interface LoadBalancerIngressFluent<A extends LoadBalancerIngressFluent<A>>
-
- All Superinterfaces:
Fluent<A>
- All Known Subinterfaces:
LoadBalancerStatusFluent.IngressNested<N>,WatchEventFluent.LoadBalancerIngressObjectNested<N>
- All Known Implementing Classes:
LoadBalancerIngressBuilder,LoadBalancerIngressFluentImpl,LoadBalancerStatusFluentImpl.IngressNestedImpl,WatchEventFluentImpl.LoadBalancerIngressObjectNestedImpl
public interface LoadBalancerIngressFluent<A extends LoadBalancerIngressFluent<A>> extends Fluent<A>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceLoadBalancerIngressFluent.PortsNested<N>
-
Method Summary
-
-
-
Method Detail
-
getHostname
String getHostname()
-
hasHostname
Boolean hasHostname()
-
withNewHostname
A withNewHostname(StringBuilder arg1)
-
withNewHostname
A withNewHostname(StringBuffer arg1)
-
getIp
String getIp()
-
hasIp
Boolean hasIp()
-
withNewIp
A withNewIp(StringBuilder arg1)
-
withNewIp
A withNewIp(StringBuffer arg1)
-
addToPorts
A addToPorts(int index, PortStatus item)
-
setToPorts
A setToPorts(int index, PortStatus item)
-
addToPorts
A addToPorts(PortStatus... items)
-
addAllToPorts
A addAllToPorts(Collection<PortStatus> items)
-
removeFromPorts
A removeFromPorts(PortStatus... items)
-
removeAllFromPorts
A removeAllFromPorts(Collection<PortStatus> items)
-
removeMatchingFromPorts
A removeMatchingFromPorts(Predicate<PortStatusBuilder> predicate)
-
getPorts
@Deprecated List<PortStatus> getPorts()
Deprecated.This method has been deprecated, please use method buildPorts instead.- Returns:
- The buildable object.
-
buildPorts
List<PortStatus> buildPorts()
-
buildPort
PortStatus buildPort(int index)
-
buildFirstPort
PortStatus buildFirstPort()
-
buildLastPort
PortStatus buildLastPort()
-
buildMatchingPort
PortStatus buildMatchingPort(Predicate<PortStatusBuilder> predicate)
-
hasMatchingPort
Boolean hasMatchingPort(Predicate<PortStatusBuilder> predicate)
-
withPorts
A withPorts(List<PortStatus> ports)
-
withPorts
A withPorts(PortStatus... ports)
-
hasPorts
Boolean hasPorts()
-
addNewPort
LoadBalancerIngressFluent.PortsNested<A> addNewPort()
-
addNewPortLike
LoadBalancerIngressFluent.PortsNested<A> addNewPortLike(PortStatus item)
-
setNewPortLike
LoadBalancerIngressFluent.PortsNested<A> setNewPortLike(int index, PortStatus item)
-
editPort
LoadBalancerIngressFluent.PortsNested<A> editPort(int index)
-
editFirstPort
LoadBalancerIngressFluent.PortsNested<A> editFirstPort()
-
editLastPort
LoadBalancerIngressFluent.PortsNested<A> editLastPort()
-
editMatchingPort
LoadBalancerIngressFluent.PortsNested<A> editMatchingPort(Predicate<PortStatusBuilder> predicate)
-
-