Interface IngressTLSFluent<A extends IngressTLSFluent<A>>
-
- All Superinterfaces:
io.fabric8.kubernetes.api.builder.Fluent<A>
- All Known Subinterfaces:
IngressSpecFluent.TlsNested<N>
- All Known Implementing Classes:
IngressSpecFluentImpl.TlsNestedImpl
,IngressTLSBuilder
,IngressTLSFluentImpl
public interface IngressTLSFluent<A extends IngressTLSFluent<A>> extends io.fabric8.kubernetes.api.builder.Fluent<A>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description A
addAllToHosts(Collection<String> items)
A
addNewHost(String arg1)
A
addNewHost(StringBuffer arg1)
A
addNewHost(StringBuilder arg1)
A
addToHosts(int index, String item)
A
addToHosts(String... items)
String
getFirstHost()
String
getHost(int index)
List<String>
getHosts()
String
getLastHost()
String
getMatchingHost(Predicate<String> predicate)
String
getSecretName()
Boolean
hasHosts()
Boolean
hasMatchingHost(Predicate<String> predicate)
Boolean
hasSecretName()
A
removeAllFromHosts(Collection<String> items)
A
removeFromHosts(String... items)
A
setToHosts(int index, String item)
A
withHosts(String... hosts)
A
withHosts(List<String> hosts)
A
withNewSecretName(String arg1)
A
withNewSecretName(StringBuffer arg1)
A
withNewSecretName(StringBuilder arg1)
A
withSecretName(String secretName)
-
-
-
Method Detail
-
addAllToHosts
A addAllToHosts(Collection<String> items)
-
removeAllFromHosts
A removeAllFromHosts(Collection<String> items)
-
getHost
String getHost(int index)
-
getFirstHost
String getFirstHost()
-
getLastHost
String getLastHost()
-
hasHosts
Boolean hasHosts()
-
addNewHost
A addNewHost(StringBuilder arg1)
-
addNewHost
A addNewHost(StringBuffer arg1)
-
getSecretName
String getSecretName()
-
hasSecretName
Boolean hasSecretName()
-
withNewSecretName
A withNewSecretName(StringBuilder arg1)
-
withNewSecretName
A withNewSecretName(StringBuffer arg1)
-
-