Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 933 Bytes

File metadata and controls

28 lines (21 loc) · 933 Bytes

V1ForZone

ForZone provides information about which zones should consume this endpoint.

Properties

Name Type Description Notes
name str name represents the name of the zone.

Example

from kubernetes.client.models.v1_for_zone import V1ForZone

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

# convert the object into a dict
v1_for_zone_dict = v1_for_zone_instance.to_dict()
# create an instance of V1ForZone from a dict
v1_for_zone_from_dict = V1ForZone.from_dict(v1_for_zone_dict)

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