import { HourlyRancherDetail } from './HourlyRancherDetail';
import { Quantity } from './Quantity';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
import { Price } from '../../order/Price';
/** HourlyRancher */
export interface HourlyRancher {
    /** 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;
    /** Details about hourly Rancher */
    details: HourlyRancherDetail[];
    /** Hours of Rancher */
    quantity: Quantity;
    /** Instance reference */
    reference: string;
    /** Instance region */
    region: string;
    /** Savings Plan IDs */
    savingsPlanIds?: string[];
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=HourlyRancher.d.ts.map