ServiceCIDRStatus describes the current state of the ServiceCIDR.
| Name | Type | Description | Notes |
|---|---|---|---|
| conditions | List[V1Condition] | conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR. Current service state | [optional] |
from kubernetes.client.models.v1_service_cidr_status import V1ServiceCIDRStatus
# TODO update the JSON string below
json = "{}"
# create an instance of V1ServiceCIDRStatus from a JSON string
v1_service_cidr_status_instance = V1ServiceCIDRStatus.from_json(json)
# print the JSON string representation of the object
print(V1ServiceCIDRStatus.to_json())
# convert the object into a dict
v1_service_cidr_status_dict = v1_service_cidr_status_instance.to_dict()
# create an instance of V1ServiceCIDRStatus from a dict
v1_service_cidr_status_from_dict = V1ServiceCIDRStatus.from_dict(v1_service_cidr_status_dict)