![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.testbase.kotlin.inputs.TargetOSInfoArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.testbase.kotlin.inputs
import com.pulumi.azurenative.testbase.inputs.TargetOSInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The information of the target OS to be tested.
* @property baselineOSs Specifies the baseline OSs to be tested.
* @property insiderChannelIds Insider Channel Ids. Only used for feature update.
* @property osUpdateType Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
* @property targetOSImageIds Specifies the ids of the target OSs from Custom Images to be tested.
* @property targetOSs Specifies the target OSs to be tested.
*/
public data class TargetOSInfoArgs(
public val baselineOSs: Output>? = null,
public val insiderChannelIds: Output>? = null,
public val osUpdateType: Output,
public val targetOSImageIds: Output>? = null,
public val targetOSs: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.testbase.inputs.TargetOSInfoArgs =
com.pulumi.azurenative.testbase.inputs.TargetOSInfoArgs.builder()
.baselineOSs(baselineOSs?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.insiderChannelIds(insiderChannelIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.osUpdateType(osUpdateType.applyValue({ args0 -> args0 }))
.targetOSImageIds(targetOSImageIds?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.targetOSs(targetOSs?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [TargetOSInfoArgs].
*/
@PulumiTagMarker
public class TargetOSInfoArgsBuilder internal constructor() {
private var baselineOSs: Output>? = null
private var insiderChannelIds: Output>? = null
private var osUpdateType: Output? = null
private var targetOSImageIds: Output>? = null
private var targetOSs: Output>? = null
/**
* @param value Specifies the baseline OSs to be tested.
*/
@JvmName("oenpcpxjyjibnhvc")
public suspend fun baselineOSs(`value`: Output>) {
this.baselineOSs = value
}
@JvmName("rxkkkcprfggiettw")
public suspend fun baselineOSs(vararg values: Output) {
this.baselineOSs = Output.all(values.asList())
}
/**
* @param values Specifies the baseline OSs to be tested.
*/
@JvmName("xeaujaevwnxynffc")
public suspend fun baselineOSs(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy