Source code for models.type_kubernetes_protection_source_enum

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

[docs]class TypeKubernetesProtectionSourceEnum(object): """Implementation of the 'Type_KubernetesProtectionSource' enum. Specifies the type of the entity in a Kubernetes environment. Specifies the type of a Kubernetes Protection Source. 'kCluster' indicates a Kubernetes Cluster. 'kNamespace' indicates a namespace in a Kubernetes Cluster. 'kService' indicates a service running on a Kubernetes Cluster. Attributes: KCLUSTER: TODO: type description here. KNAMESPACE: TODO: type description here. KSERVICE: TODO: type description here. """ KCLUSTER = 'kCluster' KNAMESPACE = 'kNamespace' KSERVICE = 'kService'