# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class TypeCertificateDetailsEnum(object):
"""Implementation of the 'Type_CertificateDetails' enum.
Specifies the type of the host such as 'kSapHana', 'kSapOracle', etc.
Specifies the host type of host for generating and deploying a
Certificate.
'kOther' indicates it is any of the other hosts.
'kSapOracle' indicates it is a SAP Oracle host.
'kSapHana' indicates it is a SAP HANA host.
Attributes:
KOTHER: TODO: type description here.
KSAPORACLE: TODO: type description here.
KSAPHANA: TODO: type description here.
"""
KOTHER = 'kOther'
KSAPORACLE = 'kSapOracle'
KSAPHANA = 'kSapHana'