@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 437 B
TypeScript
import { ActionEnum } from './ActionEnum';
import { StateEnum } from './StateEnum';
/** Current life cycle configuration */
export interface Current {
/** Service creation date */
creationDate?: string;
/** Pending actions */
pendingActions: ActionEnum[];
/** Current life cycle state */
state: StateEnum;
/** Scheduled termination date */
terminationDate?: string;
}
//# sourceMappingURL=Current.d.ts.map