PodIP represents a single IP address allocated to the pod.
| Name | Type | Description | Notes |
|---|---|---|---|
| ip | str | IP is the IP address assigned to the pod |
from kubernetes.client.models.v1_pod_ip import V1PodIP
# TODO update the JSON string below
json = "{}"
# create an instance of V1PodIP from a JSON string
v1_pod_ip_instance = V1PodIP.from_json(json)
# print the JSON string representation of the object
print(V1PodIP.to_json())
# convert the object into a dict
v1_pod_ip_dict = v1_pod_ip_instance.to_dict()
# create an instance of V1PodIP from a dict
v1_pod_ip_from_dict = V1PodIP.from_dict(v1_pod_ip_dict)