All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.compute.kotlin.outputs.ScaleSetOsProfileWindowsConfigAdditionalUnattendConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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