A TemplateFile is an OS specific answer file that helps with the unattended installation. The file can also be a template file with placeholders instead of actual answers. Intersight supports the golang template syntax specified in https://golang.org/pkg/text/template/. The values for these placeholders shall be given during OS installation in the form of 'additionalProperties' in os.OsInstall object.
Name | Type | Description | Notes |
---|---|---|---|
name | str | The name of the OS Template File that user uploads for unattended installation. | [optional] |
placeholders | list[str] | [optional] | |
template_content | str | The content of the entire template file is stored as value. The content can either be a static file content or a template content. The template is expected to conform to the golang template syntax. The placeholders, if any, would be populated and the values provided would be used to populate this template. | [optional] |