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

com.pulumi.gcp.certificateauthority.kotlin.inputs.CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs.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.certificateauthority.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.certificateauthority.inputs.CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property objectIdPaths An ObjectId specifies an object identifier (OID). These provide context and describe types in ASN.1 messages.
 */
public data class CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs(
    public val objectIdPaths: Output>,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.certificateauthority.inputs.CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs =
        com.pulumi.gcp.certificateauthority.inputs.CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs.builder()
            .objectIdPaths(objectIdPaths.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs].
 */
@PulumiTagMarker
public class CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgsBuilder internal constructor() {
    private var objectIdPaths: Output>? = null

    /**
     * @param value An ObjectId specifies an object identifier (OID). These provide context and describe types in ASN.1 messages.
     */
    @JvmName("wuxytlxafwpnigql")
    public suspend fun objectIdPaths(`value`: Output>) {
        this.objectIdPaths = value
    }

    @JvmName("rdxxeyjcnnihmwoo")
    public suspend fun objectIdPaths(vararg values: Output) {
        this.objectIdPaths = Output.all(values.asList())
    }

    /**
     * @param values An ObjectId specifies an object identifier (OID). These provide context and describe types in ASN.1 messages.
     */
    @JvmName("putqyyqvsnksqsvg")
    public suspend fun objectIdPaths(values: List>) {
        this.objectIdPaths = Output.all(values)
    }

    /**
     * @param value An ObjectId specifies an object identifier (OID). These provide context and describe types in ASN.1 messages.
     */
    @JvmName("gvvehhtviglbmlae")
    public suspend fun objectIdPaths(`value`: List) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.objectIdPaths = mapped
    }

    /**
     * @param values An ObjectId specifies an object identifier (OID). These provide context and describe types in ASN.1 messages.
     */
    @JvmName("ktrnfsjiktmimmqy")
    public suspend fun objectIdPaths(vararg values: Int) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.objectIdPaths = mapped
    }

    internal fun build(): CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs =
        CertificateConfigX509ConfigKeyUsageUnknownExtendedKeyUsageArgs(
            objectIdPaths = objectIdPaths ?: throw PulumiNullFieldException("objectIdPaths"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy