Source code for models_v2.ip_preference_enum

# -*- coding: utf-8 -*-

[docs]class IpPreferenceEnum(object): """Implementation of the 'IpPreference' enum. Specifies IP preference of the cluster to be Ipv4/Ipv6. It is Ipv4 by default. Attributes: IPV4: TODO: type description here. IPV6: TODO: type description here. """ IPV4 = 'Ipv4' IPV6 = 'Ipv6'