jenkins script console: list of available jenkins methods?
groovy, jenkins
Solution
You are looking for Jenkins Main Module API.
You may find this answer helpful in getting yourself on your way.
Problem
I would like to use the jenkins script console some more. Where do I have to look in order to find a list of available Objects/Methods that I can use via groovy? Is there something online? Should I browse the source on Github? Where would I start? Like in this example, how would I have known that `hudson.model.Hudson.instance.pluginManager.plugins` exists and is ready to be called from the jenkins script console? ``` println(hudson.model.Hudson.instance.pluginManager.plugins) ``` Thanks!