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

com.pulumi.azure.keyvault.kotlin.inputs.GetCertificateIssuerPlainArgs.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.keyvault.kotlin.inputs

import com.pulumi.azure.keyvault.inputs.GetCertificateIssuerPlainArgs.builder
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

/**
 * A collection of arguments for invoking getCertificateIssuer.
 * @property keyVaultId The ID of the Key Vault in which to locate the Certificate Issuer.
 * @property name The name of the Key Vault Certificate Issuer.
 */
public data class GetCertificateIssuerPlainArgs(
    public val keyVaultId: String,
    public val name: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.keyvault.inputs.GetCertificateIssuerPlainArgs =
        com.pulumi.azure.keyvault.inputs.GetCertificateIssuerPlainArgs.builder()
            .keyVaultId(keyVaultId.let({ args0 -> args0 }))
            .name(name.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetCertificateIssuerPlainArgs].
 */
@PulumiTagMarker
public class GetCertificateIssuerPlainArgsBuilder internal constructor() {
    private var keyVaultId: String? = null

    private var name: String? = null

    /**
     * @param value The ID of the Key Vault in which to locate the Certificate Issuer.
     */
    @JvmName("goajiwyksvtvsvpp")
    public suspend fun keyVaultId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.keyVaultId = mapped
    }

    /**
     * @param value The name of the Key Vault Certificate Issuer.
     */
    @JvmName("yhtullkkdgcbcfue")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.name = mapped
    }

    internal fun build(): GetCertificateIssuerPlainArgs = GetCertificateIssuerPlainArgs(
        keyVaultId = keyVaultId ?: throw PulumiNullFieldException("keyVaultId"),
        name = name ?: throw PulumiNullFieldException("name"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy