Source code for models.encryption_policy_vault_enum

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

[docs]class EncryptionPolicyVaultEnum(object): """Implementation of the 'EncryptionPolicy_Vault' enum. Specifies whether to send and store data in an encrypted format. 'kEncryptionNone' indicates the data is not encrypted. 'kEncryptionStrong' indicates the data is encrypted. Attributes: KENCRYPTIONNONE: TODO: type description here. KENCRYPTIONSTRONG: TODO: type description here. KENCRYPTIONWEAK: TODO: type description here. """ KENCRYPTIONNONE = 'kEncryptionNone' KENCRYPTIONSTRONG = 'kEncryptionStrong' KENCRYPTIONWEAK = 'kEncryptionWeak'