Package io.fabric8.kubernetes.client.dsl
Interface Listable<T>
-
- All Known Subinterfaces:
AnyNamespaceOperation<T,L,R>,FilterWatchListDeletable<T,L,R>,MixedOperation<T,L,R>,NonNamespaceOperation<T,L,R>,ParameterMixedOperation<T,L,R>
public interface Listable<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Tlist()Tlist(io.fabric8.kubernetes.api.model.ListOptions listOptions)List resource from Kubernetes API server.Tlist(Integer limitVal, String continueVal)Deprecated.: Please uselist(ListOptions)instead
-
-
-
Method Detail
-
list
T list()
-
list
@Deprecated T list(Integer limitVal, String continueVal)
Deprecated.: Please uselist(ListOptions)insteadList resources from APIServer.- Parameters:
limitVal- number of resources to listcontinueVal- an offset to pick listing from- Returns:
- resource list
-
list
T list(io.fabric8.kubernetes.api.model.ListOptions listOptions)
List resource from Kubernetes API server.The passed in options may be modified as a side-effect of this call.
Values that already exist at this context, such as the labels and fields will be overridden on the passed in options regardless of initial values.- Parameters:
listOptions- ListOptions is the query options to a standard REST list call.- Returns:
- list of resource type
-
-