Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1012 Bytes

File metadata and controls

28 lines (21 loc) · 1012 Bytes

V1DaemonEndpoint

DaemonEndpoint contains information about a single Daemon endpoint.

Properties

Name Type Description Notes
port int Port number of the given endpoint.

Example

from kubernetes.client.models.v1_daemon_endpoint import V1DaemonEndpoint

# TODO update the JSON string below
json = "{}"
# create an instance of V1DaemonEndpoint from a JSON string
v1_daemon_endpoint_instance = V1DaemonEndpoint.from_json(json)
# print the JSON string representation of the object
print(V1DaemonEndpoint.to_json())

# convert the object into a dict
v1_daemon_endpoint_dict = v1_daemon_endpoint_instance.to_dict()
# create an instance of V1DaemonEndpoint from a dict
v1_daemon_endpoint_from_dict = V1DaemonEndpoint.from_dict(v1_daemon_endpoint_dict)

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