SetTools sets the tools for the inventory. Returns self for chaining.
(tools []ServerTool)
| 65 | |
| 66 | // SetTools sets the tools for the inventory. Returns self for chaining. |
| 67 | func (b *Builder) SetTools(tools []ServerTool) *Builder { |
| 68 | b.tools = tools |
| 69 | return b |
| 70 | } |
| 71 | |
| 72 | // SetResources sets the resource templates for the inventory. Returns self for chaining. |
| 73 | func (b *Builder) SetResources(resources []ServerResourceTemplate) *Builder { |
no outgoing calls