@hashgraph/solo
    Preparing search index...

    Represents the execution of a helm command and is responsible for parsing the response.

    Index

    Constructors

    • Creates a new HelmExecution instance.

      Parameters

      • command: string[]

        The command array to execute

      • workingDirectory: string

        The working directory for the process

      • environmentVariables: Record<string, string>

        The environment variables to set

      Returns HelmExecution

    Methods

    • Executes the command and waits for completion with a timeout.

      Parameters

      • timeout: Duration

        The maximum time to wait, or null to wait indefinitely

      Returns Promise<void>

      A promise that resolves when the command completes or rejects on timeout

    • Gets the response as a parsed object.

      Type Parameters

      • T

      Parameters

      • responseClass: new (...arguments_: any[]) => T

        The class to parse the response into

      Returns Promise<T>

      A promise that resolves with the parsed response

    • Gets the response as a list of parsed objects.

      Type Parameters

      • T

      Parameters

      • responseClass: new (...arguments_: any[]) => T

        The class to parse each item in the response into

      Returns Promise<T[]>

      A promise that resolves with the parsed response list

    • Gets the response as a list of parsed objects with a timeout.

      Type Parameters

      • T

      Parameters

      • responseClass: new (...arguments_: any[]) => T

        The class to parse each item in the response into

      • timeout: Duration

        The maximum time to wait, or null to wait indefinitely

      Returns Promise<T[]>

      A promise that resolves with the parsed response list or rejects on timeout

    • Gets the response as a parsed object with a timeout.

      Type Parameters

      • T

      Parameters

      • responseClass: new (...arguments_: any[]) => T

        The class to parse the response into

      • timeout: Duration

        The maximum time to wait, or null to wait indefinitely

      Returns Promise<T>

      A promise that resolves with the parsed response or rejects on timeout

    • Waits for the process to complete with a timeout.

      Parameters

      • timeout: Duration

        The maximum time to wait, or null to wait indefinitely

      Returns Promise<boolean>

      A promise that resolves with true if the process completed, or false if it timed out