UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

24 lines 874 B
import { Domain } from './website/Domain'; import { StatusEnum } from './website/StatusEnum'; /** A website on your hosting */ export interface Website { /** Domains of the website */ domains: Domain[]; /** Display name of the hosting */ hostingDisplayName: string; /** Name of the hosting service */ hostingServiceName: string; /** Website numeric identifier */ id: number; /** Customizable name of the website */ name?: string; /** Relative path on the hosting filesystem the website is deployed into */ path: string; /** Current status of the website */ status: StatusEnum; /** Branch of the repository containing the website source code to deploy */ vcsBranch: string; /** URL of the repository containing the website source code to deploy */ vcsUrl: string; } //# sourceMappingURL=Website.d.ts.map