@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 680 B
TypeScript
/** Creates instance snapshots with support for both local and distant region deployment. Creates a snapshot locally in the current region, and optionally creates an additional snapshot in a distant region when distant region parameters are provided. */
export interface CreateSnapshot {
/** Name of the remote region where the distant snapshot will be created (optional) */
distantRegionName?: string;
/** Name for the snapshot that will be created in the distant region (optional) */
distantSnapshotName?: string;
/** Name for the snapshot that will be created in the current region */
snapshotName: string;
}
//# sourceMappingURL=CreateSnapshot.d.ts.map