NodeDaemonEndpoints lists ports opened by daemons running on the Node.
| Name | Type | Description | Notes |
|---|---|---|---|
| kubelet_endpoint | V1DaemonEndpoint | [optional] |
from kubernetes.client.models.v1_node_daemon_endpoints import V1NodeDaemonEndpoints
# TODO update the JSON string below
json = "{}"
# create an instance of V1NodeDaemonEndpoints from a JSON string
v1_node_daemon_endpoints_instance = V1NodeDaemonEndpoints.from_json(json)
# print the JSON string representation of the object
print(V1NodeDaemonEndpoints.to_json())
# convert the object into a dict
v1_node_daemon_endpoints_dict = v1_node_daemon_endpoints_instance.to_dict()
# create an instance of V1NodeDaemonEndpoints from a dict
v1_node_daemon_endpoints_from_dict = V1NodeDaemonEndpoints.from_dict(v1_node_daemon_endpoints_dict)