Source code for models.algorithm_enum
# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class AlgorithmEnum(object):
"""Implementation of the 'Algorithm' enum.
Algorthm used for erasure coding.
REED_SOLOMON indicates the algorithm used for erasure coding.
LRC indicates the algorithm used for erasure coding.
Attributes:
REED_SOLOMON: TODO: type description here.
LRC: TODO: type description here.
"""
REED_SOLOMON = 'REED_SOLOMON'
LRC = 'LRC'