
com.pulumi.azurenative.testbase.kotlin.inputs.DraftPackageIntuneAppMetadataArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.testbase.kotlin.inputs
import com.pulumi.azurenative.testbase.inputs.DraftPackageIntuneAppMetadataArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The metadata of Intune app(s) used for generation.
* @property intuneApp The Metadata of the Intune App through intunewin file uploading.
* @property intuneAppDependencies The Metadata of dependencies of the Intune App through intunewin file uploading.
*/
public data class DraftPackageIntuneAppMetadataArgs(
public val intuneApp: Output? = null,
public val intuneAppDependencies: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.testbase.inputs.DraftPackageIntuneAppMetadataArgs =
com.pulumi.azurenative.testbase.inputs.DraftPackageIntuneAppMetadataArgs.builder()
.intuneApp(intuneApp?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.intuneAppDependencies(
intuneAppDependencies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [DraftPackageIntuneAppMetadataArgs].
*/
@PulumiTagMarker
public class DraftPackageIntuneAppMetadataArgsBuilder internal constructor() {
private var intuneApp: Output? = null
private var intuneAppDependencies: Output>? = null
/**
* @param value The Metadata of the Intune App through intunewin file uploading.
*/
@JvmName("ingsgjjlphegktwd")
public suspend fun intuneApp(`value`: Output) {
this.intuneApp = value
}
/**
* @param value The Metadata of dependencies of the Intune App through intunewin file uploading.
*/
@JvmName("yppmiykstpnwrhgm")
public suspend fun intuneAppDependencies(`value`: Output>) {
this.intuneAppDependencies = value
}
@JvmName("atkojjqgvopaxqns")
public suspend fun intuneAppDependencies(vararg values: Output) {
this.intuneAppDependencies = Output.all(values.asList())
}
/**
* @param values The Metadata of dependencies of the Intune App through intunewin file uploading.
*/
@JvmName("rlbdksdtckvmsokd")
public suspend fun intuneAppDependencies(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy