Add a new TLSCredentialType to enums.py. This will be used in the future
to support a new resource type that manages TLS/SSL credential objects (
certs, keys, etc).
Signed-off-by: John Mulligan <jmulligan@redhat.com>
# but we want a InputPasswordFilter to be a strict subset of the
# password filter enum.
return PasswordFilter(self.value)
+
+
+class TLSCredentialType(_StrEnum):
+ """Specify the type of a TLS credential."""
+
+ CERT = 'cert'
+ KEY = 'key'
+ CA_CERT = 'ca-cert'