Package io.fabric8.kubernetes.client.dsl
Interface CreateOrReplaceDeletable<T>
-
- All Superinterfaces:
CreateOrReplaceable<T>,Deletable,Replaceable<T>,Timeoutable,Updatable<T>
- All Known Subinterfaces:
CertificateSigningRequestResource<T>,ExtensibleResource<T>,NamespaceableResource<T>,PodResource,Resource<T>,RollableScalableResource<T>,ScalableResource<T>,ServiceAccountResource,ServiceResource<T>,V1beta1CertificateSigningRequestResource<T>
- All Known Implementing Classes:
ExtensibleResourceAdapter,ResourceAdapter
public interface CreateOrReplaceDeletable<T> extends Deletable, CreateOrReplaceable<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateOrReplaceDeletable<T>withTimeout(long timeout, TimeUnit unit)Perform the delete operation as blocking, waiting for finalizers, for up to the given timeoutdefault CreateOrReplaceDeletable<T>withTimeoutInMillis(long timeoutInMillis)Perform the delete operation as blocking, waiting for finalizers, for up to the given timeout-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.CreateOrReplaceable
create, createOrReplace
-
Methods inherited from interface io.fabric8.kubernetes.client.dsl.Replaceable
replaceStatus, updateStatus
-
-
-
-
Method Detail
-
withTimeout
CreateOrReplaceDeletable<T> withTimeout(long timeout, TimeUnit unit)
Description copied from interface:DeletablePerform the delete operation as blocking, waiting for finalizers, for up to the given timeout- Specified by:
withTimeoutin interfaceDeletable- Specified by:
withTimeoutin interfaceTimeoutable- Parameters:
timeout- 0 indicates no wait
-
withTimeoutInMillis
default CreateOrReplaceDeletable<T> withTimeoutInMillis(long timeoutInMillis)
Description copied from interface:DeletablePerform the delete operation as blocking, waiting for finalizers, for up to the given timeout- Specified by:
withTimeoutInMillisin interfaceDeletable- Specified by:
withTimeoutInMillisin interfaceTimeoutable- Parameters:
timeoutInMillis- 0 indicates no wait
-
-