![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.security.kotlin.inputs.DefenderCspmGcpOfferingArgs.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.security.kotlin.inputs
import com.pulumi.azurenative.security.inputs.DefenderCspmGcpOfferingArgs.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.jvm.JvmName
/**
* The CSPM P1 for GCP offering
* @property offeringType The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*/
public data class DefenderCspmGcpOfferingArgs(
public val offeringType: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.security.inputs.DefenderCspmGcpOfferingArgs =
com.pulumi.azurenative.security.inputs.DefenderCspmGcpOfferingArgs.builder()
.offeringType(offeringType.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DefenderCspmGcpOfferingArgs].
*/
@PulumiTagMarker
public class DefenderCspmGcpOfferingArgsBuilder internal constructor() {
private var offeringType: Output? = null
/**
* @param value The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*/
@JvmName("avgdoinottvtxfoo")
public suspend fun offeringType(`value`: Output) {
this.offeringType = value
}
/**
* @param value The type of the security offering.
* Expected value is 'DefenderCspmGcp'.
*/
@JvmName("htemakramvpxsgqn")
public suspend fun offeringType(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.offeringType = mapped
}
internal fun build(): DefenderCspmGcpOfferingArgs = DefenderCspmGcpOfferingArgs(
offeringType = offeringType ?: throw PulumiNullFieldException("offeringType"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy