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

com.pulumi.azure.batch.kotlin.outputs.PoolWindow.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.batch.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 *
 * @property enableAutomaticUpdates Whether automatic updates are enabled on the virtual machine. Defaults to `true`.
 */
public data class PoolWindow(
    public val enableAutomaticUpdates: Boolean? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.PoolWindow): PoolWindow =
            PoolWindow(
                enableAutomaticUpdates = javaType.enableAutomaticUpdates().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy