UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 494 B
import { ResourceMetadata } from '../iam/ResourceMetadata'; import { OfferEnum } from './OfferEnum'; import { TypeEnum } from './TypeEnum'; /** General information about a alldom service */ export interface AllDomServiceWithIAM { /** IAM resource metadata */ iam?: ResourceMetadata; /** Name of the allDom */ name: string; /** Offer of the allDom */ offer: OfferEnum; /** Type of the allDom */ type: TypeEnum; } //# sourceMappingURL=AllDomServiceWithIAM.d.ts.map