Service type
Signature:
export type Service = {
    name: string;
    container: ClientCode;
    restart?: ServiceRestart;
    dependsOn?: Set<string>;
    configuration?: string;
    restartIntensity?: RestartIntensity;
    command?: string;
    parameters?: ServiceParameters;
};
References: ClientCode, ServiceRestart, RestartIntensity, ServiceParameters