UNPKG

node-tfe

Version:

A Typescript Client for Terraform Cloud/Enterprise V2 API

16 lines (15 loc) 481 B
import { Serializer } from 'jsonapi-serializer'; export interface WorkspaceUpdateOptions { agentPoolID?: string; allowDestroyPlan?: boolean; autoApply?: boolean; name?: string; executionMode?: string; fileTriggersEnabled?: boolean; queueAllRuns?: boolean; speculativeEnabled?: boolean; terraformVersion?: string; triggerPrefixes?: string[]; workingDirectory?: string; } export declare const WorkspaceUpdateOptionsSerializer: Serializer;