NodeAddress contains information for the node's address.
| Name | Type | Description | Notes |
|---|---|---|---|
| address | str | The node address. | |
| type | str | Node address type, one of Hostname, ExternalIP or InternalIP. |
from kubernetes.client.models.v1_node_address import V1NodeAddress
# TODO update the JSON string below
json = "{}"
# create an instance of V1NodeAddress from a JSON string
v1_node_address_instance = V1NodeAddress.from_json(json)
# print the JSON string representation of the object
print(V1NodeAddress.to_json())
# convert the object into a dict
v1_node_address_dict = v1_node_address_instance.to_dict()
# create an instance of V1NodeAddress from a dict
v1_node_address_from_dict = V1NodeAddress.from_dict(v1_node_address_dict)