AdditionalUnattendContentArgs

data class AdditionalUnattendContentArgs(val componentName: Output<ComponentName>? = null, val content: Output<String>? = null, val passName: Output<PassName>? = null, val settingName: Output<Either<String, SettingNames>>? = null) : ConvertibleToJava<AdditionalUnattendContentArgs>

Specifies additional XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup. Contents are defined by setting name, component name, and the pass in which the content is applied.

Constructors

Link copied to clipboard
constructor(componentName: Output<ComponentName>? = null, content: Output<String>? = null, passName: Output<PassName>? = null, settingName: Output<Either<String, SettingNames>>? = null)

Properties

Link copied to clipboard
val componentName: Output<ComponentName>? = null

The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.

Link copied to clipboard
val content: Output<String>? = null

Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.

Link copied to clipboard
val passName: Output<PassName>? = null

The pass name. Currently, the only allowable value is OobeSystem.

Link copied to clipboard
val settingName: Output<Either<String, SettingNames>>? = null

Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.

Functions

Link copied to clipboard
open override fun toJava(): AdditionalUnattendContentArgs