
com.pulumi.azure.compute.kotlin.outputs.WindowsVirtualMachineAdditionalUnattendContent.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property content The XML formatted content that is added to the unattend.xml file for the specified path and component. Changing this forces a new resource to be created.
* @property setting The name of the setting to which the content applies. Possible values are `AutoLogon` and `FirstLogonCommands`. Changing this forces a new resource to be created.
*/
public data class WindowsVirtualMachineAdditionalUnattendContent(
public val content: String,
public val setting: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.WindowsVirtualMachineAdditionalUnattendContent): WindowsVirtualMachineAdditionalUnattendContent =
WindowsVirtualMachineAdditionalUnattendContent(
content = javaType.content(),
setting = javaType.setting(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy