Source code for models.type_deploy_cert_parameters_enum

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

[docs]class TypeDeployCertParametersEnum(object): """Implementation of the 'Type_DeployCertParameters' 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'