Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.08 KB

File metadata and controls

28 lines (21 loc) · 1.08 KB

V1NodeDaemonEndpoints

NodeDaemonEndpoints lists ports opened by daemons running on the Node.

Properties

Name Type Description Notes
kubelet_endpoint V1DaemonEndpoint [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]