( baseUri url.URL, organization string, tenant string, token *auth.AuthToken, debug bool, settings plugin.ExecutionSettings, logger log.Logger, )
| 848 | } |
| 849 | |
| 850 | func NewOrchestratorClient( |
| 851 | baseUri url.URL, |
| 852 | organization string, |
| 853 | tenant string, |
| 854 | token *auth.AuthToken, |
| 855 | debug bool, |
| 856 | settings plugin.ExecutionSettings, |
| 857 | logger log.Logger, |
| 858 | ) *OrchestratorClient { |
| 859 | return &OrchestratorClient{ |
| 860 | baseUri, |
| 861 | organization, |
| 862 | tenant, |
| 863 | token, |
| 864 | debug, |
| 865 | settings, |
| 866 | logger, |
| 867 | } |
| 868 | } |
no outgoing calls
no test coverage detected