Interface IngressBackendFluent<A extends IngressBackendFluent<A>>
-
- All Superinterfaces:
io.fabric8.kubernetes.api.builder.Fluent<A>
- All Known Subinterfaces:
HTTPIngressPathFluent.BackendNested<N>
,IngressSpecFluent.DefaultBackendNested<N>
- All Known Implementing Classes:
HTTPIngressPathFluentImpl.BackendNestedImpl
,IngressBackendBuilder
,IngressBackendFluentImpl
,IngressSpecFluentImpl.DefaultBackendNestedImpl
public interface IngressBackendFluent<A extends IngressBackendFluent<A>> extends io.fabric8.kubernetes.api.builder.Fluent<A>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IngressBackendFluent.ServiceNested<N>
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IngressServiceBackend
buildService()
IngressBackendFluent.ServiceNested<A>
editOrNewService()
IngressBackendFluent.ServiceNested<A>
editOrNewServiceLike(IngressServiceBackend item)
IngressBackendFluent.ServiceNested<A>
editService()
io.fabric8.kubernetes.api.model.TypedLocalObjectReference
getResource()
IngressServiceBackend
getService()
Deprecated.Boolean
hasResource()
Boolean
hasService()
A
withNewResource(String apiGroup, String kind, String name)
IngressBackendFluent.ServiceNested<A>
withNewService()
IngressBackendFluent.ServiceNested<A>
withNewServiceLike(IngressServiceBackend item)
A
withResource(io.fabric8.kubernetes.api.model.TypedLocalObjectReference resource)
A
withService(IngressServiceBackend service)
-
-
-
Method Detail
-
getResource
io.fabric8.kubernetes.api.model.TypedLocalObjectReference getResource()
-
withResource
A withResource(io.fabric8.kubernetes.api.model.TypedLocalObjectReference resource)
-
hasResource
Boolean hasResource()
-
getService
@Deprecated IngressServiceBackend getService()
Deprecated.This method has been deprecated, please use method buildService instead.- Returns:
- The buildable object.
-
buildService
IngressServiceBackend buildService()
-
withService
A withService(IngressServiceBackend service)
-
hasService
Boolean hasService()
-
withNewService
IngressBackendFluent.ServiceNested<A> withNewService()
-
withNewServiceLike
IngressBackendFluent.ServiceNested<A> withNewServiceLike(IngressServiceBackend item)
-
editService
IngressBackendFluent.ServiceNested<A> editService()
-
editOrNewService
IngressBackendFluent.ServiceNested<A> editOrNewService()
-
editOrNewServiceLike
IngressBackendFluent.ServiceNested<A> editOrNewServiceLike(IngressServiceBackend item)
-
-