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

com.pulumi.gcp.compute.kotlin.inputs.RouterNatLogConfigArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.compute.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.inputs.RouterNatLogConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property enable Indicates whether or not to export logs.
 * @property filter Specifies the desired filtering of logs on this NAT.
 * Possible values are: `ERRORS_ONLY`, `TRANSLATIONS_ONLY`, `ALL`.
 */
public data class RouterNatLogConfigArgs(
    public val enable: Output,
    public val filter: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.inputs.RouterNatLogConfigArgs =
        com.pulumi.gcp.compute.inputs.RouterNatLogConfigArgs.builder()
            .enable(enable.applyValue({ args0 -> args0 }))
            .filter(filter.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RouterNatLogConfigArgs].
 */
@PulumiTagMarker
public class RouterNatLogConfigArgsBuilder internal constructor() {
    private var enable: Output? = null

    private var filter: Output? = null

    /**
     * @param value Indicates whether or not to export logs.
     */
    @JvmName("wsnkrvajbopvjyxj")
    public suspend fun enable(`value`: Output) {
        this.enable = value
    }

    /**
     * @param value Specifies the desired filtering of logs on this NAT.
     * Possible values are: `ERRORS_ONLY`, `TRANSLATIONS_ONLY`, `ALL`.
     */
    @JvmName("kwwgcpmmbdnpscnr")
    public suspend fun filter(`value`: Output) {
        this.filter = value
    }

    /**
     * @param value Indicates whether or not to export logs.
     */
    @JvmName("hvbmoufkmgrqjjrc")
    public suspend fun enable(`value`: Boolean) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.enable = mapped
    }

    /**
     * @param value Specifies the desired filtering of logs on this NAT.
     * Possible values are: `ERRORS_ONLY`, `TRANSLATIONS_ONLY`, `ALL`.
     */
    @JvmName("ucsmvgqxtoavwucg")
    public suspend fun filter(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.filter = mapped
    }

    internal fun build(): RouterNatLogConfigArgs = RouterNatLogConfigArgs(
        enable = enable ?: throw PulumiNullFieldException("enable"),
        filter = filter ?: throw PulumiNullFieldException("filter"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy