import { InstanceSnapshot } from './InstanceSnapshot';
import { VolumeSnapshot } from './VolumeSnapshot';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** HourlySnapshot */
export interface HourlySnapshot {
    /** Specifies the deployment mode of the region where the resource is deployed (for example, 1-AZ or 3-AZ). Products that are grouped by project or have no region do not include a deployment mode */
    deploymentMode?: RegionTypeEnum;
    /** Instance snapshot details */
    instance?: InstanceSnapshot;
    /** Region */
    region: string;
    /** Total price */
    totalPrice: number;
    /** Volume snapshot details */
    volume?: VolumeSnapshot;
}
//# sourceMappingURL=HourlySnapshot.d.ts.map