Creates a new HelmExecution instance.
The command array to execute
The working directory for the process
The environment variables to set
Executes the command and waits for completion.
A promise that resolves when the command completes
Executes the command and waits for completion with a timeout.
The maximum time to wait, or null to wait indefinitely
A promise that resolves when the command completes or rejects on timeout
Gets the exit code of the process.
The exit code or null if the process hasn't completed
Gets the standard error of the process.
concatenated standard error as a string
Gets the standard output of the process.
concatenated standard output as a string
Waits for the process to complete.
A promise that resolves when the process completes
Waits for the process to complete with a timeout.
The maximum time to wait, or null to wait indefinitely
A promise that resolves with true if the process completed, or false if it timed out
Represents the execution of a helm command and is responsible for parsing the response.