/** * The ConsistencyRuleProjection model module. * @module Ntnx/ConsistencyRuleProjection * @version 4.3.1 * @class ConsistencyRuleProjection * @extends ConsistencyRule * * @param { string } name Name of the consistency rule. * * @param { string[] } categoryIds Specifies the list of external identifiers of categories that must form the consistency rule. This consistently protects any VM or volume group associated with this category. The number of entities attached to these categories should not exceed 32, and should reside in the same cluster. */ export default class ConsistencyRuleProjection extends ConsistencyRule { } import ConsistencyRule from "./ConsistencyRule";