import { HourlyDetail } from './HourlyDetail';
import { Quantity } from './Quantity';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
import { Price } from '../../order/Price';
/** HourlyManagedKubernetesService */
export interface HourlyManagedKubernetesService {
    /** 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 managed kubernetes services */
    details?: HourlyDetail[];
    /** Total hours of usage */
    quantity: Quantity;
    /** Reference */
    reference?: string;
    /** Region */
    region?: string;
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=HourlyManagedKubernetesService.d.ts.map