Source code for models_v2.cloud_platform_enum
# -*- coding: utf-8 -*-
[docs]class CloudPlatformEnum(object):
"""Implementation of the 'CloudPlatform' enum.
Specifies the cloud platform to enable tiering.
Attributes:
AWS: TODO: type description here.
AZURE: TODO: type description here.
ORACLE: TODO: type description here.
GOOGLE: TODO: type description here.
"""
AWS = 'AWS'
AZURE = 'Azure'
ORACLE = 'Oracle'
GOOGLE = 'Google'