SystemApi - axios parameter creator

  • Parameters

    Returns {
        getEndpointInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getLogFile: ((name: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getPingSystem: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getPublicSystemInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getServerLogs: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getSystemInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getWakeOnLanInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        postPingSystem: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        restartApplication: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        shutdownApplication: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
    }

    • getEndpointInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets information about the request endpoint.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getLogFile: ((name: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets a log file.

        • (name, options?): Promise<RequestArgs>
        • Parameters

          • name: string

            The name of the log file to get.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getPingSystem: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Pings the system.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getPublicSystemInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets public information about the server.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getServerLogs: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets a list of available server log files.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getSystemInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets information about the server.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getWakeOnLanInfo: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets wake on lan information.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • postPingSystem: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Pings the system.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • restartApplication: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Restarts the application.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • shutdownApplication: ((options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Shuts down the application.

        • (options?): Promise<RequestArgs>
        • Parameters

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>