Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.3 KB

File metadata and controls

26 lines (20 loc) · 1.3 KB

IntersightClient::OsTemplateFile

Properties

Name Type Description Notes
class_id String The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to 'os.TemplateFile']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'os.TemplateFile']
name String The name of the OS Template File that user uploads for unattended installation. [optional]
placeholders Array<String> [optional]
template_content String 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]

Example

require 'intersight_client'

instance = IntersightClient::OsTemplateFile.new(
  class_id: null,
  object_type: null,
  name: null,
  placeholders: null,
  template_content: null
)