/** * The ProtectionPolicyProjection model module. * @module Ntnx/ProtectionPolicyProjection * @version 4.3.1 * @class ProtectionPolicyProjection * @extends ProtectionPolicy * * @param { string } name Name of the protection policy. * * @param { ReplicationLocation[] } replicationLocations Indicates all the locations participating in the protection policy. You can specify up to 3 replication locations. * * @param { ReplicationConfiguration[] } replicationConfigurations Specifies the connections between various replication locations and its schedule. Connections from both source-to-target and target-to-source should be specified. */ export default class ProtectionPolicyProjection extends ProtectionPolicy { } import ProtectionPolicy from "./ProtectionPolicy";