@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 576 B
TypeScript
import { Component } from './Component';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** RegionalizedResource */
export interface RegionalizedResource {
/** List of components */
components: Component[];
/** 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;
/** Region of the resource */
region: string;
}
//# sourceMappingURL=RegionalizedResource.d.ts.map