# -*- coding: utf-8 -*-
[docs]class Type9Enum(object):
"""Implementation of the 'Type9' enum.
Specifies the children nodes combine type.
Attributes:
LINEAR: TODO: type description here.
STRIPE: TODO: type description here.
MIRROR: TODO: type description here.
RAID5: TODO: type description here.
RAID6: TODO: type description here.
ZERO: TODO: type description here.
THIN: TODO: type description here.
THINPOOL: TODO: type description here.
SNAPSHOT: TODO: type description here.
CACHE: TODO: type description here.
CACHEPOOL: TODO: type description here.
"""
LINEAR = 'Linear'
STRIPE = 'Stripe'
MIRROR = 'Mirror'
RAID5 = 'Raid5'
RAID6 = 'Raid6'
ZERO = 'Zero'
THIN = 'Thin'
THINPOOL = 'ThinPool'
SNAPSHOT = 'Snapshot'
CACHE = 'Cache'
CACHEPOOL = 'CachePool'