@rockcarver/frodo-lib
Version:
A library to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.
20 lines • 592 B
TypeScript
import { State } from '../../shared/State';
export declare enum RestartStatus {
restarting = "restarting",
ready = "ready"
}
/**
* Get status
* @returns {Promise<RestartStatus>} a promise that resolves to a string indicating status
*/
export declare function getStatus({ state, }: {
state: State;
}): Promise<RestartStatus>;
/**
* Initiate restart
* @returns {Promise<string>} a promise that resolves to a string indicating status
*/
export declare function initiateRestart({ state, }: {
state: State;
}): Promise<RestartStatus>;
//# sourceMappingURL=StartupApi.d.ts.map