@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 753 B
TypeScript
import { BandwidthInstance } from './BandwidthInstance';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** HourlyInstanceBandwidth */
export interface HourlyInstanceBandwidth {
/** 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 incoming bandwidth details */
incomingBandwidth?: BandwidthInstance;
/** Instance outgoing bandwidth details */
outgoingBandwidth?: BandwidthInstance;
/** Region */
region: string;
/** Total price */
totalPrice: number;
}
//# sourceMappingURL=HourlyInstanceBandwidth.d.ts.map