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

com.pulumi.cloudflare.kotlin.inputs.GetZonePlainArgs.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.GetZonePlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getZone.
 * @property accountId The account identifier to target for the resource.
 * @property name The name of the zone. Must provide only one of `zone_id`, `name`.
 * @property zoneId The zone identifier to target for the resource. Must provide only one of `zone_id`, `name`.
 */
public data class GetZonePlainArgs(
    public val accountId: String? = null,
    public val name: String? = null,
    public val zoneId: String? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.cloudflare.inputs.GetZonePlainArgs =
        com.pulumi.cloudflare.inputs.GetZonePlainArgs.builder()
            .accountId(accountId?.let({ args0 -> args0 }))
            .name(name?.let({ args0 -> args0 }))
            .zoneId(zoneId?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetZonePlainArgs].
 */
@PulumiTagMarker
public class GetZonePlainArgsBuilder internal constructor() {
    private var accountId: String? = null

    private var name: String? = null

    private var zoneId: String? = null

    /**
     * @param value The account identifier to target for the resource.
     */
    @JvmName("iormpupfjqsuhovc")
    public suspend fun accountId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.accountId = mapped
    }

    /**
     * @param value The name of the zone. Must provide only one of `zone_id`, `name`.
     */
    @JvmName("ivmvxofmvwdxrfgf")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.name = mapped
    }

    /**
     * @param value The zone identifier to target for the resource. Must provide only one of `zone_id`, `name`.
     */
    @JvmName("eqipftbrnvyyhbhr")
    public suspend fun zoneId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.zoneId = mapped
    }

    internal fun build(): GetZonePlainArgs = GetZonePlainArgs(
        accountId = accountId,
        name = name,
        zoneId = zoneId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy