MCPcopy Index your code
hub / github.com/kubernetes-client/python / list

Method list

kubernetes/informer/cache.py:76–79  ·  view source on GitHub ↗

Return a snapshot list of all cached objects.

(self)

Source from the content-addressed store, hash-verified

74 # --- public read API ---
75
76 def list(self):
77 """Return a snapshot list of all cached objects."""
78 with self._rlock:
79 return list(self._objects.values())
80
81 def list_keys(self):
82 """Return a snapshot list of all cache keys."""

Calls 1

valuesMethod · 0.45