![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.compute.kotlin.outputs.ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property component Specifies the name of the component to configure with the added content. The only allowable value is `Microsoft-Windows-Shell-Setup`.
* @property content Specifies the base-64 encoded XML formatted content that is added to the unattend.xml file for the specified path and component.
* @property pass Specifies the name of the pass that the content applies to. The only allowable value is `oobeSystem`.
* @property settingName Specifies the name of the setting to which the content applies. Possible values are: `FirstLogonCommands` and `AutoLogon`.
*/
public data class ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig(
public val component: String,
public val content: String,
public val pass: String,
public val settingName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig): ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig =
ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig(
component = javaType.component(),
content = javaType.content(),
pass = javaType.pass(),
settingName = javaType.settingName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy