• LogForwardersApi - functional programming interface

    Parameters

    Returns {
        createLogForwarder(groupId, appId, body, options?) => Promise<((axios?, basePath?) => AxiosPromise<LogForwarder>)>;
        deleteGwarder(groupId, appId, forwarderId, options?) => Promise<((axios?, basePath?) => AxiosPromise<void>)>;
        disableLogForwarder(groupId, appId, forwarderId, options?) => Promise<((axios?, basePath?) => AxiosPromise<void>)>;
        enableLogForwarder(groupId, appId, forwarderId, options?) => Promise<((axios?, basePath?) => AxiosPromise<void>)>;
        getLogForwarder(groupId, appId, forwarderId, options?) => Promise<((axios?, basePath?) => AxiosPromise<LogForwarder>)>;
        listLogForwarders(groupId, appId, options?) => Promise<((axios?, basePath?) => AxiosPromise<any>)>;
        updateLogForwarder(groupId, appId, forwarderId, body, options?) => Promise<((axios?, basePath?) => AxiosPromise<LogForwarder>)>;
    }

    • createLogForwarder:function
    • deleteGwarder:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<void>)>

        Summary

        Delete a log forwarder.

        Throws

    • disableLogForwarder:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<void>)>

        Summary

        Disable a log forwarder.

        Throws

    • enableLogForwarder:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<void>)>

        Summary

        Enable a log forwarder.

        Throws

    • getLogForwarder:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<LogForwarder>)>

        Summary

        Get a specific log forwarder.

        Throws

    • listLogForwarders:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<any>)>

        Summary

        List log forwarders.

        Throws

    • updateLogForwarder:function
      • Parameters

        Returns Promise<((axios?, basePath?) => AxiosPromise<LogForwarder>)>

        Summary

        Update a log forwarder.

        Throws

    Export

Generated using TypeDoc