![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.portal.kotlin.inputs.ConfigurationPropertiesArgs.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.portal.kotlin.inputs
import com.pulumi.azurenative.portal.inputs.ConfigurationPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Tenant Configuration Properties with Provisioning state
* @property enforcePrivateMarkdownStorage When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.
*/
public data class ConfigurationPropertiesArgs(
public val enforcePrivateMarkdownStorage: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.portal.inputs.ConfigurationPropertiesArgs =
com.pulumi.azurenative.portal.inputs.ConfigurationPropertiesArgs.builder()
.enforcePrivateMarkdownStorage(
enforcePrivateMarkdownStorage?.applyValue({ args0 ->
args0
}),
).build()
}
/**
* Builder for [ConfigurationPropertiesArgs].
*/
@PulumiTagMarker
public class ConfigurationPropertiesArgsBuilder internal constructor() {
private var enforcePrivateMarkdownStorage: Output? = null
/**
* @param value When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.
*/
@JvmName("ekpglnkndshtegkj")
public suspend fun enforcePrivateMarkdownStorage(`value`: Output) {
this.enforcePrivateMarkdownStorage = value
}
/**
* @param value When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited.
*/
@JvmName("hxbyybfayrnbynqa")
public suspend fun enforcePrivateMarkdownStorage(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enforcePrivateMarkdownStorage = mapped
}
internal fun build(): ConfigurationPropertiesArgs = ConfigurationPropertiesArgs(
enforcePrivateMarkdownStorage = enforcePrivateMarkdownStorage,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy