Source code for models_v2.target_type_2_enum

# -*- coding: utf-8 -*-

[docs]class TargetType2Enum(object): """Implementation of the 'TargetType2' enum. Specifies the type of target to which replication need to be performed. Attributes: REMOTECLUSTER: TODO: type description here. AWS: TODO: type description here. AZURE: TODO: type description here. """ REMOTECLUSTER = 'RemoteCluster' AWS = 'AWS' AZURE = 'Azure'