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

com.pulumi.cloudflare.kotlin.inputs.PageRuleActionsMinifyArgs.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: 5.40.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.cloudflare.kotlin.inputs

import com.pulumi.cloudflare.inputs.PageRuleActionsMinifyArgs.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

/**
 *
 * @property css Whether CSS should be minified. Valid values are `"on"` or `"off"`.
 * @property html Whether HTML should be minified. Valid values are `"on"` or `"off"`.
 * @property js Whether Javascript should be minified. Valid values are `"on"` or `"off"`.
 */
public data class PageRuleActionsMinifyArgs(
    public val css: Output,
    public val html: Output,
    public val js: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.PageRuleActionsMinifyArgs =
        com.pulumi.cloudflare.inputs.PageRuleActionsMinifyArgs.builder()
            .css(css.applyValue({ args0 -> args0 }))
            .html(html.applyValue({ args0 -> args0 }))
            .js(js.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PageRuleActionsMinifyArgs].
 */
@PulumiTagMarker
public class PageRuleActionsMinifyArgsBuilder internal constructor() {
    private var css: Output? = null

    private var html: Output? = null

    private var js: Output? = null

    /**
     * @param value Whether CSS should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("wkmdnuhkbliubceu")
    public suspend fun css(`value`: Output) {
        this.css = value
    }

    /**
     * @param value Whether HTML should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("dvbbridymiwbxjqq")
    public suspend fun html(`value`: Output) {
        this.html = value
    }

    /**
     * @param value Whether Javascript should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("grgarwdwfbsridpy")
    public suspend fun js(`value`: Output) {
        this.js = value
    }

    /**
     * @param value Whether CSS should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("rxxbbdpxodhpthlp")
    public suspend fun css(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.css = mapped
    }

    /**
     * @param value Whether HTML should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("ycdtxkkdfvnowwsx")
    public suspend fun html(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.html = mapped
    }

    /**
     * @param value Whether Javascript should be minified. Valid values are `"on"` or `"off"`.
     */
    @JvmName("julktrdewupmjbci")
    public suspend fun js(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.js = mapped
    }

    internal fun build(): PageRuleActionsMinifyArgs = PageRuleActionsMinifyArgs(
        css = css ?: throw PulumiNullFieldException("css"),
        html = html ?: throw PulumiNullFieldException("html"),
        js = js ?: throw PulumiNullFieldException("js"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy