Source code for models.address_family_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class AddressFamilyEnum(object): """Implementation of the 'AddressFamily' enum. Specifies the enum for the IP address families. 'kUnknown' indicates IP address families are unknown. 'kIPv4' indicates IP addresses used are from IPv4 family. 'kIPv6' indicates IP addresses used are from IPv6 family. Attributes: KUNKNOWN: TODO: type description here. KIPV4: TODO: type description here. KIPV6: TODO: type description here. """ KUNKNOWN = 'kUnknown' KIPV4 = 'kIPv4' KIPV6 = 'kIPv6'