@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 546 B
TypeScript
import { NetAppServiceSummary } from './NetAppServiceSummary';
/** Result of checking if a service can be a share replication destination */
export interface NetAppShareReplicationServicesCompatibility {
/** Whether service can be used as destination */
compatible: boolean;
/** Indicates why service can't be used as destination if applicable */
reason?: string;
/** Summarized properties of the checked service */
service: NetAppServiceSummary;
}
//# sourceMappingURL=NetAppShareReplicationServicesCompatibility.d.ts.map