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

com.pulumi.azurenative.azurefleet.kotlin.outputs.AdditionalUnattendContentResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.azurefleet.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * 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.
 * @property componentName The component name. Currently, the only allowable value is
 * Microsoft-Windows-Shell-Setup.
 * @property passName The pass name. Currently, 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 AdditionalUnattendContentResponse(
    public val componentName: String? = null,
    public val passName: String? = null,
    public val settingName: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.outputs.AdditionalUnattendContentResponse): AdditionalUnattendContentResponse = AdditionalUnattendContentResponse(
            componentName = javaType.componentName().map({ args0 -> args0 }).orElse(null),
            passName = javaType.passName().map({ args0 -> args0 }).orElse(null),
            settingName = javaType.settingName().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy