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

Method get

kubernetes/base/dynamic/client.py:105–107  ·  view source on GitHub ↗
(self, resource, name=None, namespace=None, **kwargs)

Source from the content-addressed store, hash-verified

103 return body or {}
104
105 def get(self, resource, name=None, namespace=None, **kwargs):
106 path = resource.path(name=name, namespace=namespace)
107 return self.request('get', path, **kwargs)
108
109 def create(self, resource, body=None, namespace=None, **kwargs):
110 body = self.serialize_body(body)

Callers 15

_websocket_requestFunction · 0.45
websocket_callFunction · 0.45
portforward_callFunction · 0.45
dictvalFunction · 0.45
ensure_namespaceMethod · 0.45
replaceMethod · 0.45
patchMethod · 0.45
server_side_applyMethod · 0.45
requestMethod · 0.45

Calls 2

requestMethod · 0.95
pathMethod · 0.45