# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class VaultGroupEnum(object):
"""Implementation of the 'VaultGroup' enum.
Specifies the cloud vendor type.
Attributes:
KAWS: TODO: type description here.
KQSTAR: TODO: type description here.
KS3C: TODO: type description here.
KAZURE: TODO: type description here.
KNAS: TODO: type description here.
KORACLE: TODO: type description here.
KOTHER: TODO: type description here.
KGCP: TODO: type description here.
"""
KAWS = 'kAws'
KQSTAR = 'kQStar'
KS3C = 'kS3C'
KAZURE = 'kAzure'
KNAS = 'kNas'
KORACLE = 'kOracle'
KOTHER = 'kOther'
KGCP = 'kGcp'