# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class CompressionPolicyVaultEnum(object):
    """Implementation of the 'CompressionPolicy_Vault' enum.
    Specifies whether to send data to the Vault in a
    compressed format.
    'kCompressionNone' indicates that data is not compressed.
    'kCompressionLow' indicates that data is compressed using LZ4 or Snappy.
    'kCompressionHigh' indicates that data is compressed in Gzip.
    Attributes:
        KCOMPRESSIONNONE: TODO: type description here.
        KCOMPRESSIONLOW: TODO: type description here.
        KCOMPRESSIONHIGH: TODO: type description here.
    """
    KCOMPRESSIONNONE = 'kCompressionNone'
    KCOMPRESSIONLOW = 'kCompressionLow'
    KCOMPRESSIONHIGH = 'kCompressionHigh'