Interface IngressRuleFluent<A extends IngressRuleFluent<A>>
-
- All Superinterfaces:
io.fabric8.kubernetes.api.builder.Fluent<A>
- All Known Subinterfaces:
IngressSpecFluent.RulesNested<N>
- All Known Implementing Classes:
IngressRuleBuilder
,IngressRuleFluentImpl
,IngressSpecFluentImpl.RulesNestedImpl
public interface IngressRuleFluent<A extends IngressRuleFluent<A>> extends io.fabric8.kubernetes.api.builder.Fluent<A>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IngressRuleFluent.HttpNested<N>
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description HTTPIngressRuleValue
buildHttp()
IngressRuleFluent.HttpNested<A>
editHttp()
IngressRuleFluent.HttpNested<A>
editOrNewHttp()
IngressRuleFluent.HttpNested<A>
editOrNewHttpLike(HTTPIngressRuleValue item)
String
getHost()
HTTPIngressRuleValue
getHttp()
Deprecated.Boolean
hasHost()
Boolean
hasHttp()
A
withHost(String host)
A
withHttp(HTTPIngressRuleValue http)
A
withNewHost(String arg1)
A
withNewHost(StringBuffer arg1)
A
withNewHost(StringBuilder arg1)
IngressRuleFluent.HttpNested<A>
withNewHttp()
IngressRuleFluent.HttpNested<A>
withNewHttpLike(HTTPIngressRuleValue item)
-
-
-
Method Detail
-
getHost
String getHost()
-
hasHost
Boolean hasHost()
-
withNewHost
A withNewHost(StringBuilder arg1)
-
withNewHost
A withNewHost(StringBuffer arg1)
-
getHttp
@Deprecated HTTPIngressRuleValue getHttp()
Deprecated.This method has been deprecated, please use method buildHttp instead.- Returns:
- The buildable object.
-
buildHttp
HTTPIngressRuleValue buildHttp()
-
withHttp
A withHttp(HTTPIngressRuleValue http)
-
hasHttp
Boolean hasHttp()
-
withNewHttp
IngressRuleFluent.HttpNested<A> withNewHttp()
-
withNewHttpLike
IngressRuleFluent.HttpNested<A> withNewHttpLike(HTTPIngressRuleValue item)
-
editHttp
IngressRuleFluent.HttpNested<A> editHttp()
-
editOrNewHttp
IngressRuleFluent.HttpNested<A> editOrNewHttp()
-
editOrNewHttpLike
IngressRuleFluent.HttpNested<A> editOrNewHttpLike(HTTPIngressRuleValue item)
-
-