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

com.pulumi.gcp.osconfig.kotlin.outputs.PatchDeploymentPatchConfigWindowsUpdate.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.osconfig.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property classifications Only apply updates of these windows update classifications. If empty, all updates are applied.
 * Each value may be one of: `CRITICAL`, `SECURITY`, `DEFINITION`, `DRIVER`, `FEATURE_PACK`, `SERVICE_PACK`, `TOOL`, `UPDATE_ROLLUP`, `UPDATE`.
 * @property excludes List of KBs to exclude from update.
 * @property exclusivePatches An exclusive list of kbs to be updated. These are the only patches that will be updated.
 * This field must not be used with other patch configurations.
 */
public data class PatchDeploymentPatchConfigWindowsUpdate(
    public val classifications: List? = null,
    public val excludes: List? = null,
    public val exclusivePatches: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.osconfig.outputs.PatchDeploymentPatchConfigWindowsUpdate): PatchDeploymentPatchConfigWindowsUpdate = PatchDeploymentPatchConfigWindowsUpdate(
            classifications = javaType.classifications().map({ args0 -> args0 }),
            excludes = javaType.excludes().map({ args0 -> args0 }),
            exclusivePatches = javaType.exclusivePatches().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy