UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 497 B
import { InstructionGuide } from './InstructionGuide'; /** Stack */ export interface Stack { /** Stack last commit */ commit: string; /** Stack description */ description: string; /** GIT repository */ gitRepository: string; /** Instructions to start the stack */ instructions: InstructionGuide[]; /** Stack name */ name: string; /** Stack release tag */ release: string; /** Stack uuid */ uuid: string; } //# sourceMappingURL=Stack.d.ts.map