Source code for models.type_couchbase_protection_source_enum

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

[docs]class TypeCouchbaseProtectionSourceEnum(object): """Implementation of the 'Type_CouchbaseProtectionSource' enum. Specifies the type of the managed Object in Couchbase Protection Source. Specifies the type of an Couchbase source entity. 'kCluster' indicates a Couchbase cluster distributed over several physical nodes. 'kBucket' indicates a bucket within the Couchbase environment. Attributes: KCLUSTER: TODO: type description here. KBUCKET: TODO: type description here. """ KCLUSTER = 'kCluster' KBUCKET = 'kBucket'