
com.pulumi.azure.compute.kotlin.outputs.WindowsVirtualMachineScaleSetAdditionalUnattendContent.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 WindowsVirtualMachineScaleSetAdditionalUnattendContent(
public val content: String,
public val setting: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.compute.outputs.WindowsVirtualMachineScaleSetAdditionalUnattendContent):
WindowsVirtualMachineScaleSetAdditionalUnattendContent =
WindowsVirtualMachineScaleSetAdditionalUnattendContent(
content = javaType.content(),
setting = javaType.setting(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy